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

26530 строки
660 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"]
  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. }
  1296. //species
  1297. function getSpeciesInfo(speciesList) {
  1298. let result = new Set();
  1299. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1300. result.add(entry)
  1301. });
  1302. return Array.from(result);
  1303. };
  1304. function getSpeciesInfoHelper(species) {
  1305. if (!speciesData[species]) {
  1306. console.warn(species + " doesn't exist");
  1307. return [];
  1308. }
  1309. if (speciesData[species].parents) {
  1310. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1311. } else {
  1312. return [species];
  1313. }
  1314. }
  1315. characterMakers.push(() => makeCharacter(
  1316. {
  1317. name: "Fen",
  1318. species: ["crux"],
  1319. description: {
  1320. title: "Bio",
  1321. text: "Very furry. Sheds on everything."
  1322. },
  1323. tags: [
  1324. "anthro",
  1325. "goo"
  1326. ]
  1327. },
  1328. {
  1329. back: {
  1330. height: math.unit(2.2428, "meter"),
  1331. weight: math.unit(124.738, "kg"),
  1332. name: "Back",
  1333. image: {
  1334. source: "./media/characters/fen/back.svg",
  1335. extra: 1025 / 935,
  1336. bottom: 0.01
  1337. },
  1338. info: {
  1339. description: {
  1340. mode: "append",
  1341. text: "\n\nHe is not currently looking at you."
  1342. }
  1343. }
  1344. },
  1345. full: {
  1346. height: math.unit(1.34, "meter"),
  1347. weight: math.unit(225, "kg"),
  1348. name: "Full",
  1349. image: {
  1350. source: "./media/characters/fen/full.svg"
  1351. },
  1352. info: {
  1353. description: {
  1354. mode: "append",
  1355. text: "\n\nMunch."
  1356. }
  1357. }
  1358. },
  1359. kneeling: {
  1360. height: math.unit(5.4, "feet"),
  1361. weight: math.unit(124.738, "kg"),
  1362. name: "Kneeling",
  1363. image: {
  1364. source: "./media/characters/fen/kneeling.svg",
  1365. extra: 563 / 507
  1366. }
  1367. },
  1368. goo: {
  1369. height: math.unit(2.8, "feet"),
  1370. weight: math.unit(125, "kg"),
  1371. capacity: math.unit(1, "people"),
  1372. name: "Goo",
  1373. image: {
  1374. source: "./media/characters/fen/goo.svg",
  1375. bottom: 116 / 613
  1376. }
  1377. },
  1378. lounging: {
  1379. height: math.unit(6.5, "feet"),
  1380. weight: math.unit(125, "kg"),
  1381. name: "Lounging",
  1382. image: {
  1383. source: "./media/characters/fen/lounging.svg"
  1384. }
  1385. },
  1386. },
  1387. [
  1388. {
  1389. name: "Normal",
  1390. height: math.unit(2.2428, "meter")
  1391. },
  1392. {
  1393. name: "Big",
  1394. height: math.unit(12, "feet")
  1395. },
  1396. {
  1397. name: "Minimacro",
  1398. height: math.unit(40, "feet"),
  1399. default: true,
  1400. info: {
  1401. description: {
  1402. mode: "append",
  1403. text: "\n\nTOO DAMN BIG"
  1404. }
  1405. }
  1406. },
  1407. {
  1408. name: "Macro",
  1409. height: math.unit(100, "feet"),
  1410. info: {
  1411. description: {
  1412. mode: "append",
  1413. text: "\n\nTOO DAMN BIG"
  1414. }
  1415. }
  1416. },
  1417. {
  1418. name: "Macro+",
  1419. height: math.unit(300, "feet")
  1420. },
  1421. {
  1422. name: "Megamacro",
  1423. height: math.unit(2, "miles")
  1424. }
  1425. ]
  1426. ))
  1427. characterMakers.push(() => makeCharacter(
  1428. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1429. {
  1430. front: {
  1431. height: math.unit(183, "cm"),
  1432. weight: math.unit(80, "kg"),
  1433. name: "Front",
  1434. image: {
  1435. source: "./media/characters/sofia-fluttertail/front.svg",
  1436. bottom: 0.01,
  1437. extra: 2154 / 2081
  1438. }
  1439. },
  1440. frontAlt: {
  1441. height: math.unit(183, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Front (alt)",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1446. }
  1447. },
  1448. back: {
  1449. height: math.unit(183, "cm"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Back",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/back.svg"
  1454. }
  1455. },
  1456. kneeling: {
  1457. height: math.unit(125, "cm"),
  1458. weight: math.unit(80, "kg"),
  1459. name: "Kneeling",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1462. extra: 1033 / 977,
  1463. bottom: 23.7 / 1057
  1464. }
  1465. },
  1466. maw: {
  1467. height: math.unit(183 / 5, "cm"),
  1468. name: "Maw",
  1469. image: {
  1470. source: "./media/characters/sofia-fluttertail/maw.svg"
  1471. }
  1472. },
  1473. mawcloseup: {
  1474. height: math.unit(183 / 5 * 0.41, "cm"),
  1475. name: "Maw (Closeup)",
  1476. image: {
  1477. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1478. }
  1479. },
  1480. },
  1481. [
  1482. {
  1483. name: "Normal",
  1484. height: math.unit(1.83, "meter")
  1485. },
  1486. {
  1487. name: "Size Thief",
  1488. height: math.unit(18, "feet")
  1489. },
  1490. {
  1491. name: "50 Foot Collie",
  1492. height: math.unit(50, "feet")
  1493. },
  1494. {
  1495. name: "Macro",
  1496. height: math.unit(96, "feet"),
  1497. default: true
  1498. },
  1499. {
  1500. name: "Megamerger",
  1501. height: math.unit(650, "feet")
  1502. },
  1503. ]
  1504. ))
  1505. characterMakers.push(() => makeCharacter(
  1506. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1507. {
  1508. front: {
  1509. height: math.unit(7, "feet"),
  1510. weight: math.unit(100, "kg"),
  1511. name: "Front",
  1512. image: {
  1513. source: "./media/characters/march/front.svg",
  1514. extra: 1,
  1515. bottom: 0.015
  1516. }
  1517. },
  1518. foot: {
  1519. height: math.unit(0.9, "feet"),
  1520. name: "Foot",
  1521. image: {
  1522. source: "./media/characters/march/foot.svg"
  1523. }
  1524. },
  1525. },
  1526. [
  1527. {
  1528. name: "Normal",
  1529. height: math.unit(7.9, "feet")
  1530. },
  1531. {
  1532. name: "Macro",
  1533. height: math.unit(220, "meters")
  1534. },
  1535. {
  1536. name: "Megamacro",
  1537. height: math.unit(2.98, "km"),
  1538. default: true
  1539. },
  1540. {
  1541. name: "Gigamacro",
  1542. height: math.unit(15963, "km")
  1543. },
  1544. {
  1545. name: "Teramacro",
  1546. height: math.unit(2980000000, "km")
  1547. },
  1548. {
  1549. name: "Examacro",
  1550. height: math.unit(250, "parsecs")
  1551. },
  1552. ]
  1553. ))
  1554. characterMakers.push(() => makeCharacter(
  1555. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1556. {
  1557. front: {
  1558. height: math.unit(6, "feet"),
  1559. weight: math.unit(60, "kg"),
  1560. name: "Front",
  1561. image: {
  1562. source: "./media/characters/noir/front.svg",
  1563. extra: 1,
  1564. bottom: 0.032
  1565. }
  1566. },
  1567. },
  1568. [
  1569. {
  1570. name: "Normal",
  1571. height: math.unit(6.6, "feet")
  1572. },
  1573. {
  1574. name: "Macro",
  1575. height: math.unit(500, "feet")
  1576. },
  1577. {
  1578. name: "Megamacro",
  1579. height: math.unit(2.5, "km"),
  1580. default: true
  1581. },
  1582. {
  1583. name: "Gigamacro",
  1584. height: math.unit(22500, "km")
  1585. },
  1586. {
  1587. name: "Teramacro",
  1588. height: math.unit(2500000000, "km")
  1589. },
  1590. {
  1591. name: "Examacro",
  1592. height: math.unit(200, "parsecs")
  1593. },
  1594. ]
  1595. ))
  1596. characterMakers.push(() => makeCharacter(
  1597. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1598. {
  1599. front: {
  1600. height: math.unit(7, "feet"),
  1601. weight: math.unit(100, "kg"),
  1602. name: "Front",
  1603. image: {
  1604. source: "./media/characters/okuri/front.svg",
  1605. extra: 1,
  1606. bottom: 0.037
  1607. }
  1608. },
  1609. back: {
  1610. height: math.unit(7, "feet"),
  1611. weight: math.unit(100, "kg"),
  1612. name: "Back",
  1613. image: {
  1614. source: "./media/characters/okuri/back.svg",
  1615. extra: 1,
  1616. bottom: 0.007
  1617. }
  1618. },
  1619. },
  1620. [
  1621. {
  1622. name: "Megamacro",
  1623. height: math.unit(100, "miles"),
  1624. default: true
  1625. },
  1626. ]
  1627. ))
  1628. characterMakers.push(() => makeCharacter(
  1629. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1630. {
  1631. front: {
  1632. height: math.unit(7, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Front",
  1635. image: {
  1636. source: "./media/characters/manny/front.svg",
  1637. extra: 1,
  1638. bottom: 0.06
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/manny/back.svg",
  1647. extra: 1,
  1648. bottom: 0.014
  1649. }
  1650. },
  1651. },
  1652. [
  1653. {
  1654. name: "Normal",
  1655. height: math.unit(7, "feet"),
  1656. },
  1657. {
  1658. name: "Macro",
  1659. height: math.unit(78, "feet"),
  1660. default: true
  1661. },
  1662. {
  1663. name: "Macro+",
  1664. height: math.unit(300, "meters")
  1665. },
  1666. {
  1667. name: "Macro++",
  1668. height: math.unit(2400, "meters")
  1669. },
  1670. {
  1671. name: "Megamacro",
  1672. height: math.unit(5167, "meters")
  1673. },
  1674. {
  1675. name: "Gigamacro",
  1676. height: math.unit(41769, "miles")
  1677. },
  1678. ]
  1679. ))
  1680. characterMakers.push(() => makeCharacter(
  1681. { name: "Adake", species: ["tiger"], 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/adake/front-1.svg"
  1689. }
  1690. },
  1691. frontAlt: {
  1692. height: math.unit(7, "feet"),
  1693. weight: math.unit(100, "kg"),
  1694. name: "Front (Alt)",
  1695. image: {
  1696. source: "./media/characters/adake/front-2.svg",
  1697. extra: 1,
  1698. bottom: 0.01
  1699. }
  1700. },
  1701. back: {
  1702. height: math.unit(7, "feet"),
  1703. weight: math.unit(100, "kg"),
  1704. name: "Back",
  1705. image: {
  1706. source: "./media/characters/adake/back.svg",
  1707. }
  1708. },
  1709. kneel: {
  1710. height: math.unit(5.385, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Kneeling",
  1713. image: {
  1714. source: "./media/characters/adake/kneel.svg",
  1715. bottom: 0.052
  1716. }
  1717. },
  1718. },
  1719. [
  1720. {
  1721. name: "Normal",
  1722. height: math.unit(7, "feet"),
  1723. },
  1724. {
  1725. name: "Macro",
  1726. height: math.unit(78, "feet"),
  1727. default: true
  1728. },
  1729. {
  1730. name: "Macro+",
  1731. height: math.unit(300, "meters")
  1732. },
  1733. {
  1734. name: "Macro++",
  1735. height: math.unit(2400, "meters")
  1736. },
  1737. {
  1738. name: "Megamacro",
  1739. height: math.unit(5167, "meters")
  1740. },
  1741. {
  1742. name: "Gigamacro",
  1743. height: math.unit(41769, "miles")
  1744. },
  1745. ]
  1746. ))
  1747. characterMakers.push(() => makeCharacter(
  1748. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1749. {
  1750. front: {
  1751. height: math.unit(1.65, "meters"),
  1752. weight: math.unit(50, "kg"),
  1753. name: "Front",
  1754. image: {
  1755. source: "./media/characters/elijah/front.svg",
  1756. extra: 858 / 830,
  1757. bottom: 95.5 / 953.8559
  1758. }
  1759. },
  1760. back: {
  1761. height: math.unit(1.65, "meters"),
  1762. weight: math.unit(50, "kg"),
  1763. name: "Back",
  1764. image: {
  1765. source: "./media/characters/elijah/back.svg",
  1766. extra: 895 / 850,
  1767. bottom: 5.3 / 897.956
  1768. }
  1769. },
  1770. frontNsfw: {
  1771. height: math.unit(1.65, "meters"),
  1772. weight: math.unit(50, "kg"),
  1773. name: "Front (NSFW)",
  1774. image: {
  1775. source: "./media/characters/elijah/front-nsfw.svg",
  1776. extra: 858 / 830,
  1777. bottom: 95.5 / 953.8559
  1778. }
  1779. },
  1780. backNsfw: {
  1781. height: math.unit(1.65, "meters"),
  1782. weight: math.unit(50, "kg"),
  1783. name: "Back (NSFW)",
  1784. image: {
  1785. source: "./media/characters/elijah/back-nsfw.svg",
  1786. extra: 895 / 850,
  1787. bottom: 5.3 / 897.956
  1788. }
  1789. },
  1790. dick: {
  1791. height: math.unit(1, "feet"),
  1792. name: "Dick",
  1793. image: {
  1794. source: "./media/characters/elijah/dick.svg"
  1795. }
  1796. },
  1797. beakOpen: {
  1798. height: math.unit(1.25, "feet"),
  1799. name: "Beak (Open)",
  1800. image: {
  1801. source: "./media/characters/elijah/beak-open.svg"
  1802. }
  1803. },
  1804. beakShut: {
  1805. height: math.unit(1.25, "feet"),
  1806. name: "Beak (Shut)",
  1807. image: {
  1808. source: "./media/characters/elijah/beak-shut.svg"
  1809. }
  1810. },
  1811. footFlexing: {
  1812. height: math.unit(1.61, "feet"),
  1813. name: "Foot (Flexing)",
  1814. image: {
  1815. source: "./media/characters/elijah/foot-flexing.svg"
  1816. }
  1817. },
  1818. footStepping: {
  1819. height: math.unit(1.44, "feet"),
  1820. name: "Foot (Stepping)",
  1821. image: {
  1822. source: "./media/characters/elijah/foot-stepping.svg"
  1823. }
  1824. },
  1825. plantigradeLeg: {
  1826. height: math.unit(2.34, "feet"),
  1827. name: "Plantigrade Leg",
  1828. image: {
  1829. source: "./media/characters/elijah/plantigrade-leg.svg"
  1830. }
  1831. },
  1832. plantigradeFootLeft: {
  1833. height: math.unit(0.9, "feet"),
  1834. name: "Plantigrade Foot (Left)",
  1835. image: {
  1836. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1837. }
  1838. },
  1839. plantigradeFootRight: {
  1840. height: math.unit(0.9, "feet"),
  1841. name: "Plantigrade Foot (Right)",
  1842. image: {
  1843. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1844. }
  1845. },
  1846. },
  1847. [
  1848. {
  1849. name: "Normal",
  1850. height: math.unit(1.65, "meters")
  1851. },
  1852. {
  1853. name: "Macro",
  1854. height: math.unit(55, "meters"),
  1855. default: true
  1856. },
  1857. {
  1858. name: "Macro+",
  1859. height: math.unit(105, "meters")
  1860. },
  1861. ]
  1862. ))
  1863. characterMakers.push(() => makeCharacter(
  1864. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1865. {
  1866. front: {
  1867. height: math.unit(11, "feet"),
  1868. weight: math.unit(80, "kg"),
  1869. name: "Front",
  1870. image: {
  1871. source: "./media/characters/rai/front.svg",
  1872. extra: 1,
  1873. bottom: 0.03
  1874. }
  1875. },
  1876. side: {
  1877. height: math.unit(11, "feet"),
  1878. weight: math.unit(80, "kg"),
  1879. name: "Side",
  1880. image: {
  1881. source: "./media/characters/rai/side.svg"
  1882. }
  1883. },
  1884. back: {
  1885. height: math.unit(11, "feet"),
  1886. weight: math.unit(80, "lb"),
  1887. name: "Back",
  1888. image: {
  1889. source: "./media/characters/rai/back.svg",
  1890. extra: 1,
  1891. bottom: 0.01
  1892. }
  1893. },
  1894. feral: {
  1895. height: math.unit(11, "feet"),
  1896. weight: math.unit(800, "lb"),
  1897. name: "Feral",
  1898. image: {
  1899. source: "./media/characters/rai/feral.svg",
  1900. extra: 1050 / 659,
  1901. bottom: 0.07
  1902. }
  1903. },
  1904. dragon: {
  1905. height: math.unit(23, "feet"),
  1906. weight: math.unit(50000, "lb"),
  1907. name: "Dragon",
  1908. image: {
  1909. source: "./media/characters/rai/dragon.svg",
  1910. extra: 2498 / 2030,
  1911. bottom: 85.2 / 2584
  1912. }
  1913. },
  1914. maw: {
  1915. height: math.unit(6 / 3.81416, "feet"),
  1916. name: "Maw",
  1917. image: {
  1918. source: "./media/characters/rai/maw.svg"
  1919. }
  1920. },
  1921. },
  1922. [
  1923. {
  1924. name: "Normal",
  1925. height: math.unit(11, "feet")
  1926. },
  1927. {
  1928. name: "Macro",
  1929. height: math.unit(302, "feet"),
  1930. default: true
  1931. },
  1932. ]
  1933. ))
  1934. characterMakers.push(() => makeCharacter(
  1935. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1936. {
  1937. frontDressed: {
  1938. height: math.unit(216, "feet"),
  1939. weight: math.unit(7000000, "lb"),
  1940. name: "Front (Dressed)",
  1941. image: {
  1942. source: "./media/characters/jazzy/front-dressed.svg",
  1943. extra: 2738 / 2651,
  1944. bottom: 41.8 / 2786
  1945. }
  1946. },
  1947. backDressed: {
  1948. height: math.unit(216, "feet"),
  1949. weight: math.unit(7000000, "lb"),
  1950. name: "Back (Dressed)",
  1951. image: {
  1952. source: "./media/characters/jazzy/back-dressed.svg",
  1953. extra: 2775 / 2673,
  1954. bottom: 36.8 / 2817
  1955. }
  1956. },
  1957. front: {
  1958. height: math.unit(216, "feet"),
  1959. weight: math.unit(7000000, "lb"),
  1960. name: "Front",
  1961. image: {
  1962. source: "./media/characters/jazzy/front.svg",
  1963. extra: 2738 / 2651,
  1964. bottom: 41.8 / 2786
  1965. }
  1966. },
  1967. back: {
  1968. height: math.unit(216, "feet"),
  1969. weight: math.unit(7000000, "lb"),
  1970. name: "Back",
  1971. image: {
  1972. source: "./media/characters/jazzy/back.svg",
  1973. extra: 2775 / 2673,
  1974. bottom: 36.8 / 2817
  1975. }
  1976. },
  1977. maw: {
  1978. height: math.unit(20, "feet"),
  1979. name: "Maw",
  1980. image: {
  1981. source: "./media/characters/jazzy/maw.svg"
  1982. }
  1983. },
  1984. paws: {
  1985. height: math.unit(27.5, "feet"),
  1986. name: "Paws",
  1987. image: {
  1988. source: "./media/characters/jazzy/paws.svg"
  1989. }
  1990. },
  1991. eye: {
  1992. height: math.unit(4.4, "feet"),
  1993. name: "Eye",
  1994. image: {
  1995. source: "./media/characters/jazzy/eye.svg"
  1996. }
  1997. },
  1998. droneOffense: {
  1999. height: math.unit(9.5, "inches"),
  2000. name: "Drone (Offense)",
  2001. image: {
  2002. source: "./media/characters/jazzy/drone-offense.svg"
  2003. }
  2004. },
  2005. droneRecon: {
  2006. height: math.unit(9.5, "inches"),
  2007. name: "Drone (Recon)",
  2008. image: {
  2009. source: "./media/characters/jazzy/drone-recon.svg"
  2010. }
  2011. },
  2012. droneDefense: {
  2013. height: math.unit(9.5, "inches"),
  2014. name: "Drone (Defense)",
  2015. image: {
  2016. source: "./media/characters/jazzy/drone-defense.svg"
  2017. }
  2018. },
  2019. },
  2020. [
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(216, "feet"),
  2024. default: true
  2025. },
  2026. ]
  2027. ))
  2028. characterMakers.push(() => makeCharacter(
  2029. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2030. {
  2031. front: {
  2032. height: math.unit(7, "feet"),
  2033. weight: math.unit(80, "kg"),
  2034. name: "Front",
  2035. image: {
  2036. source: "./media/characters/flamm/front.svg",
  2037. extra: 1794 / 1677,
  2038. bottom: 31.7 / 1828.5
  2039. }
  2040. },
  2041. },
  2042. [
  2043. {
  2044. name: "Normal",
  2045. height: math.unit(9.5, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(200, "feet"),
  2050. default: true
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(80, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/zephiro/front.svg",
  2063. extra: 2309 / 2162,
  2064. bottom: 0.069
  2065. }
  2066. },
  2067. side: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(80, "kg"),
  2070. name: "Side",
  2071. image: {
  2072. source: "./media/characters/zephiro/side.svg",
  2073. extra: 2403 / 2279,
  2074. bottom: 0.015
  2075. }
  2076. },
  2077. back: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(80, "kg"),
  2080. name: "Back",
  2081. image: {
  2082. source: "./media/characters/zephiro/back.svg",
  2083. extra: 2373 / 2244,
  2084. bottom: 0.013
  2085. }
  2086. },
  2087. },
  2088. [
  2089. {
  2090. name: "Micro",
  2091. height: math.unit(3, "inches")
  2092. },
  2093. {
  2094. name: "Normal",
  2095. height: math.unit(5 + 3 / 12, "feet"),
  2096. default: true
  2097. },
  2098. {
  2099. name: "Macro",
  2100. height: math.unit(118, "feet")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(5, "feet"),
  2109. weight: math.unit(90, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/fory/front.svg",
  2113. extra: 2862 / 2674,
  2114. bottom: 180 / 3043.8
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(5, "feet"),
  2119. weight: math.unit(90, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/fory/back.svg",
  2123. extra: 2962 / 2791,
  2124. bottom: 106 / 3071.8
  2125. }
  2126. },
  2127. foot: {
  2128. height: math.unit(2.14, "feet"),
  2129. name: "Foot",
  2130. image: {
  2131. source: "./media/characters/fory/foot.svg"
  2132. }
  2133. },
  2134. },
  2135. [
  2136. {
  2137. name: "Normal",
  2138. height: math.unit(5, "feet")
  2139. },
  2140. {
  2141. name: "Macro",
  2142. height: math.unit(50, "feet"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Megamacro",
  2147. height: math.unit(10, "miles")
  2148. },
  2149. {
  2150. name: "Gigamacro",
  2151. height: math.unit(5, "earths")
  2152. },
  2153. ]
  2154. ))
  2155. characterMakers.push(() => makeCharacter(
  2156. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2157. {
  2158. front: {
  2159. height: math.unit(7, "feet"),
  2160. weight: math.unit(90, "kg"),
  2161. name: "Front",
  2162. image: {
  2163. source: "./media/characters/kurrikage/front.svg",
  2164. extra: 1,
  2165. bottom: 0.035
  2166. }
  2167. },
  2168. back: {
  2169. height: math.unit(7, "feet"),
  2170. weight: math.unit(90, "lb"),
  2171. name: "Back",
  2172. image: {
  2173. source: "./media/characters/kurrikage/back.svg"
  2174. }
  2175. },
  2176. paw: {
  2177. height: math.unit(1.5, "feet"),
  2178. name: "Paw",
  2179. image: {
  2180. source: "./media/characters/kurrikage/paw.svg"
  2181. }
  2182. },
  2183. staff: {
  2184. height: math.unit(6.7, "feet"),
  2185. name: "Staff",
  2186. image: {
  2187. source: "./media/characters/kurrikage/staff.svg"
  2188. }
  2189. },
  2190. peek: {
  2191. height: math.unit(1.05, "feet"),
  2192. name: "Peeking",
  2193. image: {
  2194. source: "./media/characters/kurrikage/peek.svg",
  2195. bottom: 0.08
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(12, "feet"),
  2203. default: true
  2204. },
  2205. {
  2206. name: "Big",
  2207. height: math.unit(20, "feet")
  2208. },
  2209. {
  2210. name: "Macro",
  2211. height: math.unit(500, "feet")
  2212. },
  2213. {
  2214. name: "Megamacro",
  2215. height: math.unit(20, "miles")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(6, "feet"),
  2224. weight: math.unit(75, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/shingo/front.svg",
  2228. extra: 3511 / 3338,
  2229. bottom: 0.005
  2230. }
  2231. },
  2232. },
  2233. [
  2234. {
  2235. name: "Micro",
  2236. height: math.unit(4, "inches")
  2237. },
  2238. {
  2239. name: "Normal",
  2240. height: math.unit(6, "feet"),
  2241. default: true
  2242. },
  2243. {
  2244. name: "Macro",
  2245. height: math.unit(108, "feet")
  2246. }
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2251. {
  2252. side: {
  2253. height: math.unit(6, "feet"),
  2254. weight: math.unit(75, "kg"),
  2255. name: "Side",
  2256. image: {
  2257. source: "./media/characters/aigey/side.svg"
  2258. }
  2259. },
  2260. },
  2261. [
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(200, "feet"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Megamacro",
  2269. height: math.unit(100, "miles")
  2270. },
  2271. ]
  2272. )
  2273. )
  2274. characterMakers.push(() => makeCharacter(
  2275. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2276. {
  2277. front: {
  2278. height: math.unit(5 + 5 / 12, "feet"),
  2279. weight: math.unit(75, "kg"),
  2280. name: "Front",
  2281. image: {
  2282. source: "./media/characters/natasha/front.svg",
  2283. extra: 859 / 824,
  2284. bottom: 23 / 879.6
  2285. }
  2286. },
  2287. frontNsfw: {
  2288. height: math.unit(5 + 5 / 12, "feet"),
  2289. weight: math.unit(75, "kg"),
  2290. name: "Front (NSFW)",
  2291. image: {
  2292. source: "./media/characters/natasha/front-nsfw.svg",
  2293. extra: 859 / 824,
  2294. bottom: 23 / 879.6
  2295. }
  2296. },
  2297. frontErect: {
  2298. height: math.unit(5 + 5 / 12, "feet"),
  2299. weight: math.unit(75, "kg"),
  2300. name: "Front (Erect)",
  2301. image: {
  2302. source: "./media/characters/natasha/front-erect.svg",
  2303. extra: 859 / 824,
  2304. bottom: 23 / 879.6
  2305. }
  2306. },
  2307. back: {
  2308. height: math.unit(5 + 5 / 12, "feet"),
  2309. weight: math.unit(75, "kg"),
  2310. name: "Back",
  2311. image: {
  2312. source: "./media/characters/natasha/back.svg",
  2313. extra: 887.9 / 852.6,
  2314. bottom: 9.7 / 896.4
  2315. }
  2316. },
  2317. backAlt: {
  2318. height: math.unit(5 + 5 / 12, "feet"),
  2319. weight: math.unit(75, "kg"),
  2320. name: "Back (Alt)",
  2321. image: {
  2322. source: "./media/characters/natasha/back-alt.svg",
  2323. extra: 1236.7 / 1192,
  2324. bottom: 22.3 / 1258.2
  2325. }
  2326. },
  2327. dick: {
  2328. height: math.unit(1.772, "feet"),
  2329. name: "Dick",
  2330. image: {
  2331. source: "./media/characters/natasha/dick.svg"
  2332. }
  2333. },
  2334. },
  2335. [
  2336. {
  2337. name: "Normal",
  2338. height: math.unit(5 + 5 / 12, "feet")
  2339. },
  2340. {
  2341. name: "Large",
  2342. height: math.unit(12, "feet")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(100, "feet"),
  2347. default: true
  2348. },
  2349. {
  2350. name: "Macro+",
  2351. height: math.unit(260, "feet")
  2352. },
  2353. {
  2354. name: "Macro++",
  2355. height: math.unit(1, "mile")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2361. {
  2362. front: {
  2363. height: math.unit(6, "feet"),
  2364. weight: math.unit(75, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/malik/front.svg"
  2368. }
  2369. },
  2370. side: {
  2371. height: math.unit(6, "feet"),
  2372. weight: math.unit(75, "kg"),
  2373. name: "Side",
  2374. image: {
  2375. source: "./media/characters/malik/side.svg",
  2376. extra: 1.1539
  2377. }
  2378. },
  2379. back: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(75, "kg"),
  2382. name: "Back",
  2383. image: {
  2384. source: "./media/characters/malik/back.svg"
  2385. }
  2386. },
  2387. },
  2388. [
  2389. {
  2390. name: "Macro",
  2391. height: math.unit(156, "feet"),
  2392. default: true
  2393. },
  2394. {
  2395. name: "Macro+",
  2396. height: math.unit(1188, "feet")
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(6, "feet"),
  2405. weight: math.unit(75, "kg"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/sefer/front.svg",
  2409. extra: 848 / 659,
  2410. bottom: 28.3 / 876.442
  2411. }
  2412. },
  2413. back: {
  2414. height: math.unit(6, "feet"),
  2415. weight: math.unit(75, "kg"),
  2416. name: "Back",
  2417. image: {
  2418. source: "./media/characters/sefer/back.svg",
  2419. extra: 864 / 695,
  2420. bottom: 10 / 871
  2421. }
  2422. },
  2423. frontDressed: {
  2424. height: math.unit(6, "feet"),
  2425. weight: math.unit(75, "kg"),
  2426. name: "Front (Dressed)",
  2427. image: {
  2428. source: "./media/characters/sefer/front-dressed.svg",
  2429. extra: 839 / 653,
  2430. bottom: 37.6 / 878
  2431. }
  2432. },
  2433. },
  2434. [
  2435. {
  2436. name: "Normal",
  2437. height: math.unit(6, "feet"),
  2438. default: true
  2439. },
  2440. ]
  2441. ))
  2442. characterMakers.push(() => makeCharacter(
  2443. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2444. {
  2445. body: {
  2446. height: math.unit(2.2428, "meter"),
  2447. weight: math.unit(124.738, "kg"),
  2448. name: "Body",
  2449. image: {
  2450. extra: 1225 / 1050,
  2451. source: "./media/characters/north/front.svg"
  2452. }
  2453. }
  2454. },
  2455. [
  2456. {
  2457. name: "Micro",
  2458. height: math.unit(4, "inches")
  2459. },
  2460. {
  2461. name: "Macro",
  2462. height: math.unit(63, "meters")
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(101, "miles"),
  2467. default: true
  2468. }
  2469. ]
  2470. ))
  2471. characterMakers.push(() => makeCharacter(
  2472. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2473. {
  2474. angled: {
  2475. height: math.unit(4, "meter"),
  2476. weight: math.unit(150, "kg"),
  2477. name: "Angled",
  2478. image: {
  2479. source: "./media/characters/talan/angled-sfw.svg",
  2480. bottom: 29 / 3734
  2481. }
  2482. },
  2483. angledNsfw: {
  2484. height: math.unit(4, "meter"),
  2485. weight: math.unit(150, "kg"),
  2486. name: "Angled (NSFW)",
  2487. image: {
  2488. source: "./media/characters/talan/angled-nsfw.svg",
  2489. bottom: 29 / 3734
  2490. }
  2491. },
  2492. frontNsfw: {
  2493. height: math.unit(4, "meter"),
  2494. weight: math.unit(150, "kg"),
  2495. name: "Front (NSFW)",
  2496. image: {
  2497. source: "./media/characters/talan/front-nsfw.svg",
  2498. bottom: 29 / 3734
  2499. }
  2500. },
  2501. sideNsfw: {
  2502. height: math.unit(4, "meter"),
  2503. weight: math.unit(150, "kg"),
  2504. name: "Side (NSFW)",
  2505. image: {
  2506. source: "./media/characters/talan/side-nsfw.svg",
  2507. bottom: 29 / 3734
  2508. }
  2509. },
  2510. back: {
  2511. height: math.unit(4, "meter"),
  2512. weight: math.unit(150, "kg"),
  2513. name: "Back",
  2514. image: {
  2515. source: "./media/characters/talan/back.svg"
  2516. }
  2517. },
  2518. dickBottom: {
  2519. height: math.unit(0.621, "meter"),
  2520. name: "Dick (Bottom)",
  2521. image: {
  2522. source: "./media/characters/talan/dick-bottom.svg"
  2523. }
  2524. },
  2525. dickTop: {
  2526. height: math.unit(0.621, "meter"),
  2527. name: "Dick (Top)",
  2528. image: {
  2529. source: "./media/characters/talan/dick-top.svg"
  2530. }
  2531. },
  2532. dickSide: {
  2533. height: math.unit(0.305, "meter"),
  2534. name: "Dick (Side)",
  2535. image: {
  2536. source: "./media/characters/talan/dick-side.svg"
  2537. }
  2538. },
  2539. dickFront: {
  2540. height: math.unit(0.305, "meter"),
  2541. name: "Dick (Front)",
  2542. image: {
  2543. source: "./media/characters/talan/dick-front.svg"
  2544. }
  2545. },
  2546. },
  2547. [
  2548. {
  2549. name: "Normal",
  2550. height: math.unit(4, "meters")
  2551. },
  2552. {
  2553. name: "Macro",
  2554. height: math.unit(100, "meters")
  2555. },
  2556. {
  2557. name: "Megamacro",
  2558. height: math.unit(2, "miles"),
  2559. default: true
  2560. },
  2561. {
  2562. name: "Gigamacro",
  2563. height: math.unit(5000, "miles")
  2564. },
  2565. {
  2566. name: "Teramacro",
  2567. height: math.unit(100, "parsecs")
  2568. }
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2573. {
  2574. front: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Front",
  2578. image: {
  2579. source: "./media/characters/gael'rathus/front.svg"
  2580. }
  2581. },
  2582. frontAlt: {
  2583. height: math.unit(2, "meter"),
  2584. weight: math.unit(90, "kg"),
  2585. name: "Front (alt)",
  2586. image: {
  2587. source: "./media/characters/gael'rathus/front-alt.svg"
  2588. }
  2589. },
  2590. frontAlt2: {
  2591. height: math.unit(2, "meter"),
  2592. weight: math.unit(90, "kg"),
  2593. name: "Front (alt 2)",
  2594. image: {
  2595. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2596. }
  2597. }
  2598. },
  2599. [
  2600. {
  2601. name: "Normal",
  2602. height: math.unit(9, "feet"),
  2603. default: true
  2604. },
  2605. {
  2606. name: "Large",
  2607. height: math.unit(25, "feet")
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(0.25, "miles")
  2612. },
  2613. {
  2614. name: "Megamacro",
  2615. height: math.unit(10, "miles")
  2616. }
  2617. ]
  2618. ))
  2619. characterMakers.push(() => makeCharacter(
  2620. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2621. {
  2622. side: {
  2623. height: math.unit(2, "meter"),
  2624. weight: math.unit(140, "kg"),
  2625. name: "Side",
  2626. image: {
  2627. source: "./media/characters/sosha/side.svg",
  2628. bottom: 0.042
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Normal",
  2635. height: math.unit(12, "feet"),
  2636. default: true
  2637. }
  2638. ]
  2639. ))
  2640. characterMakers.push(() => makeCharacter(
  2641. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2642. {
  2643. side: {
  2644. height: math.unit(5 + 5 / 12, "feet"),
  2645. weight: math.unit(170, "kg"),
  2646. name: "Side",
  2647. image: {
  2648. source: "./media/characters/runnola/side.svg",
  2649. extra: 741 / 448,
  2650. bottom: 0.05
  2651. }
  2652. },
  2653. },
  2654. [
  2655. {
  2656. name: "Small",
  2657. height: math.unit(3, "feet")
  2658. },
  2659. {
  2660. name: "Normal",
  2661. height: math.unit(5 + 5 / 12, "feet"),
  2662. default: true
  2663. },
  2664. {
  2665. name: "Big",
  2666. height: math.unit(10, "feet")
  2667. },
  2668. ]
  2669. ))
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2672. {
  2673. front: {
  2674. height: math.unit(2, "meter"),
  2675. weight: math.unit(50, "kg"),
  2676. name: "Front",
  2677. image: {
  2678. source: "./media/characters/kurribird/front.svg",
  2679. bottom: 0.015
  2680. }
  2681. },
  2682. frontAlt: {
  2683. height: math.unit(1.5, "meter"),
  2684. weight: math.unit(50, "kg"),
  2685. name: "Front (Alt)",
  2686. image: {
  2687. source: "./media/characters/kurribird/front-alt.svg",
  2688. extra: 1.45
  2689. }
  2690. },
  2691. },
  2692. [
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(7, "feet")
  2696. },
  2697. {
  2698. name: "Big",
  2699. height: math.unit(12, "feet"),
  2700. default: true
  2701. },
  2702. {
  2703. name: "Macro",
  2704. height: math.unit(1500, "feet")
  2705. },
  2706. {
  2707. name: "Megamacro",
  2708. height: math.unit(2, "miles")
  2709. }
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2714. {
  2715. front: {
  2716. height: math.unit(2, "meter"),
  2717. weight: math.unit(80, "kg"),
  2718. name: "Front",
  2719. image: {
  2720. source: "./media/characters/elbial/front.svg",
  2721. extra: 1643 / 1556,
  2722. bottom: 60.2 / 1696
  2723. }
  2724. },
  2725. side: {
  2726. height: math.unit(2, "meter"),
  2727. weight: math.unit(80, "kg"),
  2728. name: "Side",
  2729. image: {
  2730. source: "./media/characters/elbial/side.svg",
  2731. extra: 1630 / 1565,
  2732. bottom: 71.5 / 1697
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(2, "meter"),
  2737. weight: math.unit(80, "kg"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/elbial/back.svg",
  2741. extra: 1668 / 1595,
  2742. bottom: 5.6 / 1672
  2743. }
  2744. },
  2745. frontDressed: {
  2746. height: math.unit(2, "meter"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Front (Dressed)",
  2749. image: {
  2750. source: "./media/characters/elbial/front-dressed.svg",
  2751. extra: 1653 / 1584,
  2752. bottom: 57 / 1708
  2753. }
  2754. },
  2755. genitals: {
  2756. height: math.unit(2 / 3.367, "meter"),
  2757. name: "Genitals",
  2758. image: {
  2759. source: "./media/characters/elbial/genitals.svg"
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Large",
  2766. height: math.unit(100, "feet")
  2767. },
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(500, "feet"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Megamacro",
  2775. height: math.unit(10, "miles")
  2776. },
  2777. {
  2778. name: "Gigamacro",
  2779. height: math.unit(25000, "miles")
  2780. },
  2781. {
  2782. name: "Full-Size",
  2783. height: math.unit(8000000, "gigaparsecs")
  2784. }
  2785. ]
  2786. ))
  2787. characterMakers.push(() => makeCharacter(
  2788. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2789. {
  2790. front: {
  2791. height: math.unit(2, "meter"),
  2792. weight: math.unit(60, "kg"),
  2793. name: "Front",
  2794. image: {
  2795. source: "./media/characters/noah/front.svg"
  2796. }
  2797. },
  2798. talons: {
  2799. height: math.unit(0.315, "meter"),
  2800. name: "Talons",
  2801. image: {
  2802. source: "./media/characters/noah/talons.svg"
  2803. }
  2804. }
  2805. },
  2806. [
  2807. {
  2808. name: "Large",
  2809. height: math.unit(50, "feet")
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(750, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(50, "miles")
  2819. },
  2820. {
  2821. name: "Gigamacro",
  2822. height: math.unit(100000, "miles")
  2823. },
  2824. {
  2825. name: "Full-Size",
  2826. height: math.unit(3000000000, "miles")
  2827. }
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(2, "meter"),
  2835. weight: math.unit(80, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/natalya/front.svg"
  2839. }
  2840. },
  2841. back: {
  2842. height: math.unit(2, "meter"),
  2843. weight: math.unit(80, "kg"),
  2844. name: "Back",
  2845. image: {
  2846. source: "./media/characters/natalya/back.svg"
  2847. }
  2848. }
  2849. },
  2850. [
  2851. {
  2852. name: "Normal",
  2853. height: math.unit(150, "feet"),
  2854. default: true
  2855. },
  2856. {
  2857. name: "Megamacro",
  2858. height: math.unit(5, "miles")
  2859. },
  2860. {
  2861. name: "Full-Size",
  2862. height: math.unit(600, "kiloparsecs")
  2863. }
  2864. ]
  2865. ))
  2866. characterMakers.push(() => makeCharacter(
  2867. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2868. {
  2869. front: {
  2870. height: math.unit(2, "meter"),
  2871. weight: math.unit(50, "kg"),
  2872. name: "Front",
  2873. image: {
  2874. source: "./media/characters/erestrebah/front.svg",
  2875. extra: 208 / 193,
  2876. bottom: 0.055
  2877. }
  2878. },
  2879. back: {
  2880. height: math.unit(2, "meter"),
  2881. weight: math.unit(50, "kg"),
  2882. name: "Back",
  2883. image: {
  2884. source: "./media/characters/erestrebah/back.svg",
  2885. extra: 1.3
  2886. }
  2887. }
  2888. },
  2889. [
  2890. {
  2891. name: "Normal",
  2892. height: math.unit(10, "feet")
  2893. },
  2894. {
  2895. name: "Large",
  2896. height: math.unit(50, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Macro",
  2901. height: math.unit(300, "feet")
  2902. },
  2903. {
  2904. name: "Macro+",
  2905. height: math.unit(750, "feet")
  2906. },
  2907. {
  2908. name: "Megamacro",
  2909. height: math.unit(3, "miles")
  2910. }
  2911. ]
  2912. ))
  2913. characterMakers.push(() => makeCharacter(
  2914. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2915. {
  2916. front: {
  2917. height: math.unit(2, "meter"),
  2918. weight: math.unit(80, "kg"),
  2919. name: "Front",
  2920. image: {
  2921. source: "./media/characters/jennifer/front.svg",
  2922. bottom: 0.11,
  2923. extra: 1.16
  2924. }
  2925. },
  2926. frontAlt: {
  2927. height: math.unit(2, "meter"),
  2928. weight: math.unit(80, "kg"),
  2929. name: "Front (Alt)",
  2930. image: {
  2931. source: "./media/characters/jennifer/front-alt.svg"
  2932. }
  2933. }
  2934. },
  2935. [
  2936. {
  2937. name: "Canon Height",
  2938. height: math.unit(120, "feet"),
  2939. default: true
  2940. },
  2941. {
  2942. name: "Macro+",
  2943. height: math.unit(300, "feet")
  2944. },
  2945. {
  2946. name: "Megamacro",
  2947. height: math.unit(20000, "feet")
  2948. }
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(2, "meter"),
  2956. weight: math.unit(50, "kg"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/kalista/front.svg",
  2960. extra: 1947 / 1700,
  2961. bottom: 76.6 / 1412.98
  2962. }
  2963. },
  2964. back: {
  2965. height: math.unit(2, "meter"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Back",
  2968. image: {
  2969. source: "./media/characters/kalista/back.svg",
  2970. extra: 1366 / 1156,
  2971. bottom: 33.9 / 1362.78
  2972. }
  2973. }
  2974. },
  2975. [
  2976. {
  2977. name: "Uncomfortably Small",
  2978. height: math.unit(10, "feet")
  2979. },
  2980. {
  2981. name: "Small",
  2982. height: math.unit(30, "feet")
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(100, "feet"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Macro+",
  2991. height: math.unit(2000, "feet")
  2992. },
  2993. {
  2994. name: "True Form",
  2995. height: math.unit(8924, "miles")
  2996. }
  2997. ]
  2998. ))
  2999. characterMakers.push(() => makeCharacter(
  3000. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3001. {
  3002. front: {
  3003. height: math.unit(2, "meter"),
  3004. weight: math.unit(120, "kg"),
  3005. name: "Front",
  3006. image: {
  3007. source: "./media/characters/ggv/front.svg"
  3008. }
  3009. },
  3010. side: {
  3011. height: math.unit(2, "meter"),
  3012. weight: math.unit(120, "kg"),
  3013. name: "Side",
  3014. image: {
  3015. source: "./media/characters/ggv/side.svg"
  3016. }
  3017. }
  3018. },
  3019. [
  3020. {
  3021. name: "Extremely Puny",
  3022. height: math.unit(9 + 5 / 12, "feet")
  3023. },
  3024. {
  3025. name: "Horribly Small",
  3026. height: math.unit(47.7, "miles"),
  3027. default: true
  3028. },
  3029. {
  3030. name: "Reasonably Sized",
  3031. height: math.unit(25000, "parsecs")
  3032. },
  3033. {
  3034. name: "Slightly Uncompressed",
  3035. height: math.unit(7.77e31, "parsecs")
  3036. },
  3037. {
  3038. name: "Omniversal",
  3039. height: math.unit(1e300, "meters")
  3040. },
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3045. {
  3046. front: {
  3047. height: math.unit(2, "meter"),
  3048. weight: math.unit(75, "lb"),
  3049. name: "Front",
  3050. image: {
  3051. source: "./media/characters/napalm/front.svg"
  3052. }
  3053. },
  3054. back: {
  3055. height: math.unit(2, "meter"),
  3056. weight: math.unit(75, "lb"),
  3057. name: "Back",
  3058. image: {
  3059. source: "./media/characters/napalm/back.svg"
  3060. }
  3061. }
  3062. },
  3063. [
  3064. {
  3065. name: "Standard",
  3066. height: math.unit(55, "feet"),
  3067. default: true
  3068. }
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3073. {
  3074. front: {
  3075. height: math.unit(7 + 5 / 6, "feet"),
  3076. weight: math.unit(325, "lb"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/asana/front.svg",
  3080. extra: 1133 / 1060,
  3081. bottom: 15.2/1148.6
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(7 + 5 / 6, "feet"),
  3086. weight: math.unit(325, "lb"),
  3087. name: "Back",
  3088. image: {
  3089. source: "./media/characters/asana/back.svg",
  3090. extra: 1114 / 1043,
  3091. bottom: 5/1120
  3092. }
  3093. },
  3094. dressedDark: {
  3095. height: math.unit(7 + 5 / 6, "feet"),
  3096. weight: math.unit(325, "lb"),
  3097. name: "Dressed (Dark)",
  3098. image: {
  3099. source: "./media/characters/asana/dressed-dark.svg",
  3100. extra: 1133 / 1060,
  3101. bottom: 15.2/1148.6
  3102. }
  3103. },
  3104. dressedLight: {
  3105. height: math.unit(7 + 5 / 6, "feet"),
  3106. weight: math.unit(325, "lb"),
  3107. name: "Dressed (Light)",
  3108. image: {
  3109. source: "./media/characters/asana/dressed-light.svg",
  3110. extra: 1133 / 1060,
  3111. bottom: 15.2/1148.6
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Standard",
  3118. height: math.unit(7 + 5 / 6, "feet"),
  3119. default: true
  3120. },
  3121. {
  3122. name: "Large",
  3123. height: math.unit(10, "meters")
  3124. },
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(2500, "meters")
  3128. },
  3129. {
  3130. name: "Megamacro",
  3131. height: math.unit(5e6, "meters")
  3132. },
  3133. {
  3134. name: "Examacro",
  3135. height: math.unit(5e12, "lightyears")
  3136. },
  3137. {
  3138. name: "Max Size",
  3139. height: math.unit(1e31, "lightyears")
  3140. }
  3141. ]
  3142. ))
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3145. {
  3146. front: {
  3147. height: math.unit(2, "meter"),
  3148. weight: math.unit(60, "kg"),
  3149. name: "Front",
  3150. image: {
  3151. source: "./media/characters/ebony/front.svg",
  3152. bottom: 0.03,
  3153. extra: 1045 / 810 + 0.03
  3154. }
  3155. },
  3156. side: {
  3157. height: math.unit(2, "meter"),
  3158. weight: math.unit(60, "kg"),
  3159. name: "Side",
  3160. image: {
  3161. source: "./media/characters/ebony/side.svg",
  3162. bottom: 0.03,
  3163. extra: 1045 / 810 + 0.03
  3164. }
  3165. },
  3166. back: {
  3167. height: math.unit(2, "meter"),
  3168. weight: math.unit(60, "kg"),
  3169. name: "Back",
  3170. image: {
  3171. source: "./media/characters/ebony/back.svg",
  3172. bottom: 0.01,
  3173. extra: 1045 / 810 + 0.01
  3174. }
  3175. },
  3176. },
  3177. [
  3178. // TODO check why I did this lol
  3179. {
  3180. name: "Standard",
  3181. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Macro",
  3186. height: math.unit(200, "feet")
  3187. },
  3188. {
  3189. name: "Gigamacro",
  3190. height: math.unit(13000, "km")
  3191. }
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(6, "feet"),
  3199. weight: math.unit(175, "lb"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/mountain/front.svg",
  3203. extra: 972/955,
  3204. bottom: 64/1036.6
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(6, "feet"),
  3209. weight: math.unit(175, "lb"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/mountain/back.svg",
  3213. extra: 970/950,
  3214. bottom: 28.25/999
  3215. }
  3216. },
  3217. },
  3218. [
  3219. {
  3220. name: "Large",
  3221. height: math.unit(20, "meters")
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(300, "meters")
  3226. },
  3227. {
  3228. name: "Gigamacro",
  3229. height: math.unit(10000, "km"),
  3230. default: true
  3231. },
  3232. {
  3233. name: "Examacro",
  3234. height: math.unit(10e9, "lightyears")
  3235. }
  3236. ]
  3237. ))
  3238. characterMakers.push(() => makeCharacter(
  3239. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3240. {
  3241. front: {
  3242. height: math.unit(8, "feet"),
  3243. weight: math.unit(500, "lb"),
  3244. name: "Front",
  3245. image: {
  3246. source: "./media/characters/rick/front.svg"
  3247. }
  3248. }
  3249. },
  3250. [
  3251. {
  3252. name: "Normal",
  3253. height: math.unit(8, "feet"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(5, "km")
  3259. }
  3260. ]
  3261. ))
  3262. characterMakers.push(() => makeCharacter(
  3263. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3264. {
  3265. front: {
  3266. height: math.unit(8, "feet"),
  3267. weight: math.unit(120, "lb"),
  3268. name: "Front",
  3269. image: {
  3270. source: "./media/characters/ona/front.svg"
  3271. }
  3272. },
  3273. frontAlt: {
  3274. height: math.unit(8, "feet"),
  3275. weight: math.unit(120, "lb"),
  3276. name: "Front (Alt)",
  3277. image: {
  3278. source: "./media/characters/ona/front-alt.svg"
  3279. }
  3280. },
  3281. back: {
  3282. height: math.unit(8, "feet"),
  3283. weight: math.unit(120, "lb"),
  3284. name: "Back",
  3285. image: {
  3286. source: "./media/characters/ona/back.svg"
  3287. }
  3288. },
  3289. foot: {
  3290. height: math.unit(1.1, "feet"),
  3291. name: "Foot",
  3292. image: {
  3293. source: "./media/characters/ona/foot.svg"
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Megamacro",
  3300. height: math.unit(70, "km"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Gigamacro",
  3305. height: math.unit(681818, "miles")
  3306. },
  3307. {
  3308. name: "Examacro",
  3309. height: math.unit(3800000, "lightyears")
  3310. },
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(12, "feet"),
  3318. weight: math.unit(3000, "lb"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/mech/front.svg",
  3322. bottom: 0.025,
  3323. }
  3324. },
  3325. back: {
  3326. height: math.unit(12, "feet"),
  3327. weight: math.unit(3000, "lb"),
  3328. name: "Back",
  3329. image: {
  3330. source: "./media/characters/mech/back.svg",
  3331. bottom: 0.03,
  3332. }
  3333. }
  3334. },
  3335. [
  3336. {
  3337. name: "Normal",
  3338. height: math.unit(12, "feet")
  3339. },
  3340. {
  3341. name: "Macro",
  3342. height: math.unit(300, "feet"),
  3343. default: true
  3344. },
  3345. {
  3346. name: "Macro+",
  3347. height: math.unit(1500, "feet")
  3348. },
  3349. ]
  3350. ))
  3351. characterMakers.push(() => makeCharacter(
  3352. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3353. {
  3354. front: {
  3355. height: math.unit(1.3, "meter"),
  3356. weight: math.unit(30, "kg"),
  3357. name: "Front",
  3358. image: {
  3359. source: "./media/characters/gregory/front.svg",
  3360. }
  3361. }
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(1.3, "meter"),
  3367. default: true
  3368. },
  3369. {
  3370. name: "Macro",
  3371. height: math.unit(20, "meter")
  3372. }
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(2.8, "meter"),
  3380. weight: math.unit(200, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/elory/front.svg",
  3384. }
  3385. }
  3386. },
  3387. [
  3388. {
  3389. name: "Normal",
  3390. height: math.unit(2.8, "meter"),
  3391. default: true
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(38, "meter")
  3396. }
  3397. ]
  3398. ))
  3399. characterMakers.push(() => makeCharacter(
  3400. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3401. {
  3402. front: {
  3403. height: math.unit(470, "feet"),
  3404. weight: math.unit(924, "tons"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/angelpatamon/front.svg",
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Normal",
  3414. height: math.unit(470, "feet"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Deity Size I",
  3419. height: math.unit(28651.2, "km")
  3420. },
  3421. {
  3422. name: "Deity Size II",
  3423. height: math.unit(171907.2, "km")
  3424. }
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3429. {
  3430. side: {
  3431. height: math.unit(7.2, "meter"),
  3432. weight: math.unit(8.2, "tons"),
  3433. name: "Side",
  3434. image: {
  3435. source: "./media/characters/cryae/side.svg",
  3436. extra: 3500 / 1500
  3437. }
  3438. }
  3439. },
  3440. [
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(7.2, "meter"),
  3444. default: true
  3445. }
  3446. ]
  3447. ))
  3448. characterMakers.push(() => makeCharacter(
  3449. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3450. {
  3451. front: {
  3452. height: math.unit(6, "feet"),
  3453. weight: math.unit(175, "lb"),
  3454. name: "Front",
  3455. image: {
  3456. source: "./media/characters/xera/front.svg",
  3457. extra: 2377 / 1972,
  3458. bottom: 75.5/2452
  3459. }
  3460. },
  3461. side: {
  3462. height: math.unit(6, "feet"),
  3463. weight: math.unit(175, "lb"),
  3464. name: "Side",
  3465. image: {
  3466. source: "./media/characters/xera/side.svg",
  3467. extra: 2345/2019,
  3468. bottom: 39.7/2384
  3469. }
  3470. },
  3471. back: {
  3472. height: math.unit(6, "feet"),
  3473. weight: math.unit(175, "lb"),
  3474. name: "Back",
  3475. image: {
  3476. source: "./media/characters/xera/back.svg",
  3477. extra: 2095/1984,
  3478. bottom: 67/2166
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Small",
  3485. height: math.unit(10, "feet")
  3486. },
  3487. {
  3488. name: "Macro",
  3489. height: math.unit(500, "meters"),
  3490. default: true
  3491. },
  3492. {
  3493. name: "Macro+",
  3494. height: math.unit(10, "km")
  3495. },
  3496. {
  3497. name: "Gigamacro",
  3498. height: math.unit(25000, "km")
  3499. },
  3500. {
  3501. name: "Teramacro",
  3502. height: math.unit(3e6, "km")
  3503. }
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(6, "feet"),
  3511. weight: math.unit(175, "lb"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/nebula/front.svg",
  3515. extra: 2566/2362,
  3516. bottom: 81/2644
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Small",
  3523. height: math.unit(4.5, "meters")
  3524. },
  3525. {
  3526. name: "Macro",
  3527. height: math.unit(1500, "meters"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Megamacro",
  3532. height: math.unit(150, "km")
  3533. },
  3534. {
  3535. name: "Gigamacro",
  3536. height: math.unit(27000, "km")
  3537. }
  3538. ]
  3539. ))
  3540. characterMakers.push(() => makeCharacter(
  3541. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3542. {
  3543. front: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(225, "lb"),
  3546. name: "Front",
  3547. image: {
  3548. source: "./media/characters/abysgar/front.svg"
  3549. }
  3550. }
  3551. },
  3552. [
  3553. {
  3554. name: "Small",
  3555. height: math.unit(4.5, "meters")
  3556. },
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(1250, "meters"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(125, "km")
  3565. },
  3566. {
  3567. name: "Gigamacro",
  3568. height: math.unit(26000, "km")
  3569. }
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3574. {
  3575. front: {
  3576. height: math.unit(6, "feet"),
  3577. weight: math.unit(180, "lb"),
  3578. name: "Front",
  3579. image: {
  3580. source: "./media/characters/yakuz/front.svg"
  3581. }
  3582. }
  3583. },
  3584. [
  3585. {
  3586. name: "Small",
  3587. height: math.unit(5, "meters")
  3588. },
  3589. {
  3590. name: "Macro",
  3591. height: math.unit(1500, "meters"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(200, "km")
  3597. },
  3598. {
  3599. name: "Gigamacro",
  3600. height: math.unit(100000, "km")
  3601. }
  3602. ]
  3603. ))
  3604. characterMakers.push(() => makeCharacter(
  3605. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3606. {
  3607. front: {
  3608. height: math.unit(6, "feet"),
  3609. weight: math.unit(175, "lb"),
  3610. name: "Front",
  3611. image: {
  3612. source: "./media/characters/mirova/front.svg",
  3613. extra: 3334/3071,
  3614. bottom: 42/3375.6
  3615. }
  3616. }
  3617. },
  3618. [
  3619. {
  3620. name: "Small",
  3621. height: math.unit(5, "meters")
  3622. },
  3623. {
  3624. name: "Macro",
  3625. height: math.unit(900, "meters"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Megamacro",
  3630. height: math.unit(135, "km")
  3631. },
  3632. {
  3633. name: "Gigamacro",
  3634. height: math.unit(20000, "km")
  3635. }
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3640. {
  3641. side: {
  3642. height: math.unit(28.35, "feet"),
  3643. weight: math.unit(99.75, "tons"),
  3644. name: "Side",
  3645. image: {
  3646. source: "./media/characters/asana-mech/side.svg",
  3647. extra: 923/699,
  3648. bottom: 50/975
  3649. }
  3650. },
  3651. chaingun: {
  3652. height: math.unit(7, "feet"),
  3653. weight: math.unit(2400, "lb"),
  3654. name: "Chaingun",
  3655. image: {
  3656. source: "./media/characters/asana-mech/chaingun.svg"
  3657. }
  3658. },
  3659. laser: {
  3660. height: math.unit(7.12, "feet"),
  3661. weight: math.unit(2000, "lb"),
  3662. name: "Laser",
  3663. image: {
  3664. source: "./media/characters/asana-mech/laser.svg"
  3665. }
  3666. },
  3667. },
  3668. [
  3669. {
  3670. name: "Normal",
  3671. height: math.unit(28.35, "feet"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(2500, "feet")
  3677. },
  3678. {
  3679. name: "Megamacro",
  3680. height: math.unit(25, "miles")
  3681. },
  3682. {
  3683. name: "Examacro",
  3684. height: math.unit(6e8, "lightyears")
  3685. },
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(5, "meters"),
  3693. weight: math.unit(1000, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/asche/front.svg",
  3697. extra: 1258/1190,
  3698. bottom: 47/1305
  3699. }
  3700. },
  3701. frontUnderwear: {
  3702. height: math.unit(5, "meters"),
  3703. weight: math.unit(1000, "kg"),
  3704. name: "Front (Underwear)",
  3705. image: {
  3706. source: "./media/characters/asche/front-underwear.svg",
  3707. extra: 1258/1190,
  3708. bottom: 47/1305
  3709. }
  3710. },
  3711. frontDressed: {
  3712. height: math.unit(5, "meters"),
  3713. weight: math.unit(1000, "kg"),
  3714. name: "Front (Dressed)",
  3715. image: {
  3716. source: "./media/characters/asche/front-dressed.svg",
  3717. extra: 1258/1190,
  3718. bottom: 47/1305
  3719. }
  3720. },
  3721. frontArmor: {
  3722. height: math.unit(5, "meters"),
  3723. weight: math.unit(1000, "kg"),
  3724. name: "Front (Armored)",
  3725. image: {
  3726. source: "./media/characters/asche/front-armored.svg",
  3727. extra: 1374 / 1308,
  3728. bottom: 23/1397
  3729. }
  3730. },
  3731. mp724: {
  3732. height: math.unit(0.96, "meters"),
  3733. weight: math.unit(38, "kg"),
  3734. name: "H&K MP724",
  3735. image: {
  3736. source: "./media/characters/asche/h&k-mp724.svg"
  3737. }
  3738. },
  3739. side: {
  3740. height: math.unit(5, "meters"),
  3741. weight: math.unit(1000, "kg"),
  3742. name: "Side",
  3743. image: {
  3744. source: "./media/characters/asche/side.svg",
  3745. extra: 1717 / 1609,
  3746. bottom: 0.005
  3747. }
  3748. },
  3749. back: {
  3750. height: math.unit(5, "meters"),
  3751. weight: math.unit(1000, "kg"),
  3752. name: "Back",
  3753. image: {
  3754. source: "./media/characters/asche/back.svg",
  3755. extra: 1570 / 1501
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "DEFCON 5",
  3762. height: math.unit(5, "meters")
  3763. },
  3764. {
  3765. name: "DEFCON 4",
  3766. height: math.unit(500, "meters"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "DEFCON 3",
  3771. height: math.unit(5, "km")
  3772. },
  3773. {
  3774. name: "DEFCON 2",
  3775. height: math.unit(500, "km")
  3776. },
  3777. {
  3778. name: "DEFCON 1",
  3779. height: math.unit(500000, "km")
  3780. },
  3781. {
  3782. name: "DEFCON 0",
  3783. height: math.unit(3, "gigaparsecs")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(2, "meters"),
  3792. weight: math.unit(76, "kg"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/gale/front.svg"
  3796. }
  3797. },
  3798. frontAlt1: {
  3799. height: math.unit(2, "meters"),
  3800. weight: math.unit(76, "kg"),
  3801. name: "Front (Alt 1)",
  3802. image: {
  3803. source: "./media/characters/gale/front-alt-1.svg"
  3804. }
  3805. },
  3806. frontAlt2: {
  3807. height: math.unit(2, "meters"),
  3808. weight: math.unit(76, "kg"),
  3809. name: "Front (Alt 2)",
  3810. image: {
  3811. source: "./media/characters/gale/front-alt-2.svg"
  3812. }
  3813. },
  3814. },
  3815. [
  3816. {
  3817. name: "Normal",
  3818. height: math.unit(7, "feet")
  3819. },
  3820. {
  3821. name: "Macro",
  3822. height: math.unit(150, "feet"),
  3823. default: true
  3824. },
  3825. {
  3826. name: "Macro+",
  3827. height: math.unit(300, "feet")
  3828. },
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(2, "meters"),
  3836. weight: math.unit(76, "kg"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/draylen/front.svg"
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(150, "feet"),
  3847. default: true
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(7 + 9 / 12, "feet"),
  3856. weight: math.unit(379, "lbs"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/chez/front.svg"
  3860. }
  3861. },
  3862. side: {
  3863. height: math.unit(7 + 9 / 12, "feet"),
  3864. weight: math.unit(379, "lbs"),
  3865. name: "Side",
  3866. image: {
  3867. source: "./media/characters/chez/side.svg"
  3868. }
  3869. }
  3870. },
  3871. [
  3872. {
  3873. name: "Normal",
  3874. height: math.unit(7 + 9 / 12, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "God King",
  3879. height: math.unit(9750000, "meters")
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(6, "feet"),
  3888. weight: math.unit(275, "lbs"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/kaylum/front.svg",
  3892. bottom: 0.01,
  3893. extra: 1166 / 1031
  3894. }
  3895. },
  3896. frontWingless: {
  3897. height: math.unit(6, "feet"),
  3898. weight: math.unit(275, "lbs"),
  3899. name: "Front (Wingless)",
  3900. image: {
  3901. source: "./media/characters/kaylum/front-wingless.svg",
  3902. bottom: 0.01,
  3903. extra: 1117 / 1031
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Normal",
  3910. height: math.unit(3.05, "meters")
  3911. },
  3912. {
  3913. name: "Master",
  3914. height: math.unit(5.5, "meters")
  3915. },
  3916. {
  3917. name: "Rampage",
  3918. height: math.unit(19, "meters")
  3919. },
  3920. {
  3921. name: "Macro Lite",
  3922. height: math.unit(37, "meters")
  3923. },
  3924. {
  3925. name: "Hyper Predator",
  3926. height: math.unit(61, "meters")
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(138, "meters"),
  3931. default: true
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(6, "feet"),
  3940. weight: math.unit(150, "lbs"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/geta/front.svg"
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Micro",
  3950. height: math.unit(3, "inches"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(5 + 5 / 12, "feet")
  3956. }
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3961. {
  3962. front: {
  3963. height: math.unit(6, "feet"),
  3964. weight: math.unit(300, "lbs"),
  3965. name: "Front",
  3966. image: {
  3967. source: "./media/characters/tyrnn/front.svg"
  3968. }
  3969. }
  3970. },
  3971. [
  3972. {
  3973. name: "Main Height",
  3974. height: math.unit(355, "feet"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "Fave. Height",
  3979. height: math.unit(2400, "feet")
  3980. }
  3981. ]
  3982. ))
  3983. characterMakers.push(() => makeCharacter(
  3984. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3985. {
  3986. front: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(300, "lbs"),
  3989. name: "Front",
  3990. image: {
  3991. source: "./media/characters/appledectomy/front.svg"
  3992. }
  3993. }
  3994. },
  3995. [
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(2500, "feet")
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(50, "miles"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Gigamacro",
  4007. height: math.unit(5000, "miles")
  4008. },
  4009. {
  4010. name: "Teramacro",
  4011. height: math.unit(250000, "miles")
  4012. },
  4013. ]
  4014. ))
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(6, "feet"),
  4020. weight: math.unit(200, "lbs"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/vulpes/front.svg",
  4024. extra: 573 / 543,
  4025. bottom: 0.033
  4026. }
  4027. },
  4028. side: {
  4029. height: math.unit(6, "feet"),
  4030. weight: math.unit(200, "lbs"),
  4031. name: "Side",
  4032. image: {
  4033. source: "./media/characters/vulpes/side.svg",
  4034. extra: 573 / 543,
  4035. bottom: 0.01
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(200, "lbs"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/vulpes/back.svg",
  4044. extra: 573 / 543,
  4045. }
  4046. },
  4047. feet: {
  4048. height: math.unit(1.276, "feet"),
  4049. name: "Feet",
  4050. image: {
  4051. source: "./media/characters/vulpes/feet.svg"
  4052. }
  4053. },
  4054. maw: {
  4055. height: math.unit(1.18, "feet"),
  4056. name: "Maw",
  4057. image: {
  4058. source: "./media/characters/vulpes/maw.svg"
  4059. }
  4060. },
  4061. },
  4062. [
  4063. {
  4064. name: "Micro",
  4065. height: math.unit(2, "inches")
  4066. },
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(6.3, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(850, "feet")
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(7500, "feet"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Gigamacro",
  4082. height: math.unit(570000, "miles")
  4083. }
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4088. {
  4089. front: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(210, "lbs"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/rain-fallen/front.svg"
  4095. }
  4096. },
  4097. side: {
  4098. height: math.unit(6, "feet"),
  4099. weight: math.unit(210, "lbs"),
  4100. name: "Side",
  4101. image: {
  4102. source: "./media/characters/rain-fallen/side.svg"
  4103. }
  4104. },
  4105. back: {
  4106. height: math.unit(6, "feet"),
  4107. weight: math.unit(210, "lbs"),
  4108. name: "Back",
  4109. image: {
  4110. source: "./media/characters/rain-fallen/back.svg"
  4111. }
  4112. },
  4113. feral: {
  4114. height: math.unit(9, "feet"),
  4115. weight: math.unit(700, "lbs"),
  4116. name: "Feral",
  4117. image: {
  4118. source: "./media/characters/rain-fallen/feral.svg"
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(5, "meter")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(150, "meter"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Megamacro",
  4134. height: math.unit(278e6, "meter")
  4135. },
  4136. {
  4137. name: "Gigamacro",
  4138. height: math.unit(2e9, "meter")
  4139. },
  4140. {
  4141. name: "Teramacro",
  4142. height: math.unit(8e12, "meter")
  4143. },
  4144. {
  4145. name: "Devourer",
  4146. height: math.unit(14, "zettameters")
  4147. },
  4148. {
  4149. name: "Scarlet King",
  4150. height: math.unit(18, "yottameters")
  4151. },
  4152. {
  4153. name: "Void",
  4154. height: math.unit(6.66e66, "yottameters")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4160. {
  4161. standing: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(180, "lbs"),
  4164. name: "Standing",
  4165. image: {
  4166. source: "./media/characters/zaakira/standing.svg"
  4167. }
  4168. },
  4169. laying: {
  4170. height: math.unit(3, "feet"),
  4171. weight: math.unit(180, "lbs"),
  4172. name: "Laying",
  4173. image: {
  4174. source: "./media/characters/zaakira/laying.svg"
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(12, "feet")
  4182. },
  4183. {
  4184. name: "Macro",
  4185. height: math.unit(279, "feet"),
  4186. default: true
  4187. }
  4188. ]
  4189. ))
  4190. characterMakers.push(() => makeCharacter(
  4191. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4192. {
  4193. front: {
  4194. height: math.unit(6, "feet"),
  4195. weight: math.unit(250, "lbs"),
  4196. name: "Front",
  4197. image: {
  4198. source: "./media/characters/sigvald/front.svg",
  4199. extra: 1000 / 850
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(250, "lbs"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/sigvald/back.svg"
  4208. }
  4209. },
  4210. },
  4211. [
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(8, "feet")
  4215. },
  4216. {
  4217. name: "Large",
  4218. height: math.unit(12, "feet")
  4219. },
  4220. {
  4221. name: "Larger",
  4222. height: math.unit(20, "feet")
  4223. },
  4224. {
  4225. name: "Macro",
  4226. height: math.unit(150, "feet")
  4227. },
  4228. {
  4229. name: "Macro+",
  4230. height: math.unit(200, "feet"),
  4231. default: true
  4232. },
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4237. {
  4238. side: {
  4239. height: math.unit(12, "feet"),
  4240. weight: math.unit(2000, "kg"),
  4241. name: "Side",
  4242. image: {
  4243. source: "./media/characters/scott/side.svg",
  4244. extra: 754 / 724,
  4245. bottom: 0.069
  4246. }
  4247. },
  4248. upright: {
  4249. height: math.unit(12, "feet"),
  4250. weight: math.unit(2000, "kg"),
  4251. name: "Upright",
  4252. image: {
  4253. source: "./media/characters/scott/upright.svg",
  4254. extra: 3881 / 3722,
  4255. bottom: 0.05
  4256. }
  4257. },
  4258. },
  4259. [
  4260. {
  4261. name: "Normal",
  4262. height: math.unit(12, "feet"),
  4263. default: true
  4264. },
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4269. {
  4270. side: {
  4271. height: math.unit(8, "meters"),
  4272. weight: math.unit(84755, "lbs"),
  4273. name: "Side",
  4274. image: {
  4275. source: "./media/characters/tobias/side.svg",
  4276. extra: 1474 / 1096,
  4277. bottom: 38.9 / 1513.1235
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(8, "meters"),
  4285. default: true
  4286. },
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4291. {
  4292. front: {
  4293. height: math.unit(5.5, "feet"),
  4294. weight: math.unit(400, "lbs"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/kieran/front.svg",
  4298. extra: 2694 / 2364,
  4299. bottom: 217 / 2908
  4300. }
  4301. },
  4302. side: {
  4303. height: math.unit(5.5, "feet"),
  4304. weight: math.unit(400, "lbs"),
  4305. name: "Side",
  4306. image: {
  4307. source: "./media/characters/kieran/side.svg",
  4308. extra: 875 / 777,
  4309. bottom: 84.6 / 959
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(5.5, "feet"),
  4317. default: true
  4318. },
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4323. {
  4324. side: {
  4325. height: math.unit(2, "meters"),
  4326. weight: math.unit(70, "kg"),
  4327. name: "Side",
  4328. image: {
  4329. source: "./media/characters/sanya/side.svg",
  4330. bottom: 0.02,
  4331. extra: 1.02
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Small",
  4338. height: math.unit(2, "meters")
  4339. },
  4340. {
  4341. name: "Normal",
  4342. height: math.unit(3, "meters")
  4343. },
  4344. {
  4345. name: "Macro",
  4346. height: math.unit(16, "meters"),
  4347. default: true
  4348. },
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(2, "meters"),
  4356. weight: math.unit(120, "kg"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/miranda/front.svg",
  4360. extra: 195/185,
  4361. bottom: 10.9/206.5
  4362. }
  4363. },
  4364. back: {
  4365. height: math.unit(2, "meters"),
  4366. weight: math.unit(120, "kg"),
  4367. name: "Back",
  4368. image: {
  4369. source: "./media/characters/miranda/back.svg",
  4370. extra: 201/193,
  4371. bottom: 2.3/203.7
  4372. }
  4373. },
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(10, "feet"),
  4379. default: true
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "James", species: ["deer"], tags: ["anthro"] },
  4385. {
  4386. side: {
  4387. height: math.unit(2, "meters"),
  4388. weight: math.unit(100, "kg"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/james/front.svg",
  4392. extra: 10 / 8.5
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(8.5, "feet"),
  4400. default: true
  4401. }
  4402. ]
  4403. ))
  4404. characterMakers.push(() => makeCharacter(
  4405. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4406. {
  4407. side: {
  4408. height: math.unit(9.5, "feet"),
  4409. weight: math.unit(2500, "lbs"),
  4410. name: "Side",
  4411. image: {
  4412. source: "./media/characters/heather/side.svg"
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Normal",
  4419. height: math.unit(9.5, "feet"),
  4420. default: true
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4426. {
  4427. side: {
  4428. height: math.unit(6.5, "feet"),
  4429. weight: math.unit(400, "lbs"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/lukas/side.svg",
  4433. extra: 7.25 / 6.5
  4434. }
  4435. },
  4436. },
  4437. [
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(6.5, "feet"),
  4441. default: true
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4447. {
  4448. side: {
  4449. height: math.unit(5, "feet"),
  4450. weight: math.unit(3000, "lbs"),
  4451. name: "Side",
  4452. image: {
  4453. source: "./media/characters/louise/side.svg"
  4454. }
  4455. },
  4456. },
  4457. [
  4458. {
  4459. name: "Normal",
  4460. height: math.unit(5, "feet"),
  4461. default: true
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4467. {
  4468. side: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(150, "lbs"),
  4471. name: "Side",
  4472. image: {
  4473. source: "./media/characters/ramona/side.svg"
  4474. }
  4475. },
  4476. },
  4477. [
  4478. {
  4479. name: "Normal",
  4480. height: math.unit(5.3, "meters"),
  4481. default: true
  4482. },
  4483. {
  4484. name: "Macro",
  4485. height: math.unit(20, "stories")
  4486. },
  4487. {
  4488. name: "Macro+",
  4489. height: math.unit(50, "stories")
  4490. },
  4491. ]
  4492. ))
  4493. characterMakers.push(() => makeCharacter(
  4494. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4495. {
  4496. standing: {
  4497. height: math.unit(5.75, "feet"),
  4498. weight: math.unit(160, "lbs"),
  4499. name: "Standing",
  4500. image: {
  4501. source: "./media/characters/deerpuff/standing.svg",
  4502. extra: 682 / 624
  4503. }
  4504. },
  4505. sitting: {
  4506. height: math.unit(5.75 / 1.79, "feet"),
  4507. weight: math.unit(160, "lbs"),
  4508. name: "Sitting",
  4509. image: {
  4510. source: "./media/characters/deerpuff/sitting.svg",
  4511. bottom: 44 / 400,
  4512. extra: 1
  4513. }
  4514. },
  4515. taurLaying: {
  4516. height: math.unit(6, "feet"),
  4517. weight: math.unit(400, "lbs"),
  4518. name: "Taur (Laying)",
  4519. image: {
  4520. source: "./media/characters/deerpuff/taur-laying.svg"
  4521. }
  4522. },
  4523. },
  4524. [
  4525. {
  4526. name: "Puffball",
  4527. height: math.unit(6, "inches")
  4528. },
  4529. {
  4530. name: "Normalpuff",
  4531. height: math.unit(5.75, "feet")
  4532. },
  4533. {
  4534. name: "Macropuff",
  4535. height: math.unit(1500, "feet"),
  4536. default: true
  4537. },
  4538. {
  4539. name: "Megapuff",
  4540. height: math.unit(500, "miles")
  4541. },
  4542. {
  4543. name: "Gigapuff",
  4544. height: math.unit(250000, "miles")
  4545. },
  4546. {
  4547. name: "Omegapuff",
  4548. height: math.unit(1000, "lightyears")
  4549. },
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4554. {
  4555. stomping: {
  4556. height: math.unit(6, "feet"),
  4557. weight: math.unit(170, "lbs"),
  4558. name: "Stomping",
  4559. image: {
  4560. source: "./media/characters/vivian/stomping.svg"
  4561. }
  4562. },
  4563. sitting: {
  4564. height: math.unit(6 / 1.75, "feet"),
  4565. weight: math.unit(170, "lbs"),
  4566. name: "Sitting",
  4567. image: {
  4568. source: "./media/characters/vivian/sitting.svg",
  4569. bottom: 1 / 6.4,
  4570. extra: 1,
  4571. }
  4572. },
  4573. },
  4574. [
  4575. {
  4576. name: "Normal",
  4577. height: math.unit(7, "feet"),
  4578. default: true
  4579. },
  4580. {
  4581. name: "Macro",
  4582. height: math.unit(10, "stories")
  4583. },
  4584. {
  4585. name: "Macro+",
  4586. height: math.unit(30, "stories")
  4587. },
  4588. {
  4589. name: "Megamacro",
  4590. height: math.unit(10, "miles")
  4591. },
  4592. {
  4593. name: "Megamacro+",
  4594. height: math.unit(2750000, "meters")
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4600. {
  4601. front: {
  4602. height: math.unit(6, "feet"),
  4603. weight: math.unit(160, "lbs"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/prince/front.svg",
  4607. extra: 3400 / 3000
  4608. }
  4609. },
  4610. jumping: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(160, "lbs"),
  4613. name: "Jumping",
  4614. image: {
  4615. source: "./media/characters/prince/jump.svg",
  4616. extra: 2555 / 2134
  4617. }
  4618. },
  4619. },
  4620. [
  4621. {
  4622. name: "Normal",
  4623. height: math.unit(7.75, "feet"),
  4624. default: true
  4625. },
  4626. {
  4627. name: "Not cute",
  4628. height: math.unit(17, "feet")
  4629. },
  4630. {
  4631. name: "I said NOT",
  4632. height: math.unit(91, "feet")
  4633. },
  4634. {
  4635. name: "Please stop",
  4636. height: math.unit(560, "feet")
  4637. },
  4638. {
  4639. name: "What have you done",
  4640. height: math.unit(2200, "feet")
  4641. },
  4642. {
  4643. name: "Deer God",
  4644. height: math.unit(3.6, "miles")
  4645. },
  4646. ]
  4647. ))
  4648. characterMakers.push(() => makeCharacter(
  4649. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4650. {
  4651. standing: {
  4652. height: math.unit(6, "feet"),
  4653. weight: math.unit(300, "lbs"),
  4654. name: "Standing",
  4655. image: {
  4656. source: "./media/characters/psymon/standing.svg",
  4657. extra: 1888 / 1810,
  4658. bottom: 0.05
  4659. }
  4660. },
  4661. slithering: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(300, "lbs"),
  4664. name: "Slithering",
  4665. image: {
  4666. source: "./media/characters/psymon/slithering.svg",
  4667. extra: 1330 / 1224
  4668. }
  4669. },
  4670. slitheringAlt: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(300, "lbs"),
  4673. name: "Slithering (Alt)",
  4674. image: {
  4675. source: "./media/characters/psymon/slithering-alt.svg",
  4676. extra: 1330 / 1224
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(11.25, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Large",
  4688. height: math.unit(27, "feet")
  4689. },
  4690. {
  4691. name: "Giant",
  4692. height: math.unit(87, "feet")
  4693. },
  4694. {
  4695. name: "Macro",
  4696. height: math.unit(365, "feet")
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(3, "miles")
  4701. },
  4702. {
  4703. name: "World Serpent",
  4704. height: math.unit(8000, "miles")
  4705. },
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(180, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/daimos/front.svg",
  4717. extra: 4160 / 3897,
  4718. bottom: 0.021
  4719. }
  4720. }
  4721. },
  4722. [
  4723. {
  4724. name: "Normal",
  4725. height: math.unit(8, "feet"),
  4726. default: true
  4727. },
  4728. {
  4729. name: "Big Dog",
  4730. height: math.unit(22, "feet")
  4731. },
  4732. {
  4733. name: "Macro",
  4734. height: math.unit(127, "feet")
  4735. },
  4736. {
  4737. name: "Megamacro",
  4738. height: math.unit(3600, "feet")
  4739. },
  4740. ]
  4741. ))
  4742. characterMakers.push(() => makeCharacter(
  4743. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4744. {
  4745. side: {
  4746. height: math.unit(6, "feet"),
  4747. weight: math.unit(180, "lbs"),
  4748. name: "Side",
  4749. image: {
  4750. source: "./media/characters/blake/side.svg",
  4751. extra: 1212 / 1120,
  4752. bottom: 0.05
  4753. }
  4754. },
  4755. crouched: {
  4756. height: math.unit(6 * 0.57, "feet"),
  4757. weight: math.unit(180, "lbs"),
  4758. name: "Crouched",
  4759. image: {
  4760. source: "./media/characters/blake/crouched.svg",
  4761. extra: 840 / 587,
  4762. bottom: 0.04
  4763. }
  4764. },
  4765. bent: {
  4766. height: math.unit(6 * 0.75, "feet"),
  4767. weight: math.unit(180, "lbs"),
  4768. name: "Bent",
  4769. image: {
  4770. source: "./media/characters/blake/bent.svg",
  4771. extra: 592 / 544,
  4772. bottom: 0.035
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(8 + 1 / 6, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Big Backside",
  4784. height: math.unit(37, "feet")
  4785. },
  4786. {
  4787. name: "Subway Shredder",
  4788. height: math.unit(72, "feet")
  4789. },
  4790. {
  4791. name: "City Carver",
  4792. height: math.unit(1675, "feet")
  4793. },
  4794. {
  4795. name: "Tectonic Tweaker",
  4796. height: math.unit(2300, "miles")
  4797. },
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(180, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/guisetto/front.svg",
  4809. extra: 856 / 817,
  4810. bottom: 0.06
  4811. }
  4812. },
  4813. airborne: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(180, "lbs"),
  4816. name: "Airborne",
  4817. image: {
  4818. source: "./media/characters/guisetto/airborne.svg",
  4819. extra: 584 / 525
  4820. }
  4821. },
  4822. },
  4823. [
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(10 + 11 / 12, "feet"),
  4827. default: true
  4828. },
  4829. {
  4830. name: "Large",
  4831. height: math.unit(35, "feet")
  4832. },
  4833. {
  4834. name: "Macro",
  4835. height: math.unit(475, "feet")
  4836. },
  4837. ]
  4838. ))
  4839. characterMakers.push(() => makeCharacter(
  4840. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4841. {
  4842. front: {
  4843. height: math.unit(6, "feet"),
  4844. weight: math.unit(180, "lbs"),
  4845. name: "Front",
  4846. image: {
  4847. source: "./media/characters/luxor/front.svg",
  4848. extra: 2940 / 2152
  4849. }
  4850. },
  4851. back: {
  4852. height: math.unit(6, "feet"),
  4853. weight: math.unit(180, "lbs"),
  4854. name: "Back",
  4855. image: {
  4856. source: "./media/characters/luxor/back.svg",
  4857. extra: 1083 / 960
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Normal",
  4864. height: math.unit(5 + 5 / 6, "feet"),
  4865. default: true
  4866. },
  4867. {
  4868. name: "Lamp",
  4869. height: math.unit(50, "feet")
  4870. },
  4871. {
  4872. name: "Lämp",
  4873. height: math.unit(300, "feet")
  4874. },
  4875. {
  4876. name: "The sun is a lamp",
  4877. height: math.unit(250000, "miles")
  4878. },
  4879. ]
  4880. ))
  4881. characterMakers.push(() => makeCharacter(
  4882. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4883. {
  4884. front: {
  4885. height: math.unit(6, "feet"),
  4886. weight: math.unit(50, "lbs"),
  4887. name: "Front",
  4888. image: {
  4889. source: "./media/characters/huoyan/front.svg"
  4890. }
  4891. },
  4892. side: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(180, "lbs"),
  4895. name: "Side",
  4896. image: {
  4897. source: "./media/characters/huoyan/side.svg"
  4898. }
  4899. },
  4900. },
  4901. [
  4902. {
  4903. name: "Chef",
  4904. height: math.unit(9, "feet")
  4905. },
  4906. {
  4907. name: "Normal",
  4908. height: math.unit(65, "feet"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Macro",
  4913. height: math.unit(780, "feet")
  4914. },
  4915. {
  4916. name: "Flaming Mountain",
  4917. height: math.unit(4.8, "miles")
  4918. },
  4919. {
  4920. name: "Celestial",
  4921. height: math.unit(765000, "miles")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(5 + 3 / 4, "feet"),
  4930. weight: math.unit(120, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/tails/front.svg"
  4934. }
  4935. }
  4936. },
  4937. [
  4938. {
  4939. name: "Normal",
  4940. height: math.unit(5 + 3 / 4, "feet"),
  4941. default: true
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4947. {
  4948. front: {
  4949. height: math.unit(4, "feet"),
  4950. weight: math.unit(50, "lbs"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/rainy/front.svg"
  4954. }
  4955. }
  4956. },
  4957. [
  4958. {
  4959. name: "Macro",
  4960. height: math.unit(800, "feet"),
  4961. default: true
  4962. }
  4963. ]
  4964. ))
  4965. characterMakers.push(() => makeCharacter(
  4966. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4967. {
  4968. front: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(150, "lbs"),
  4971. name: "Front",
  4972. image: {
  4973. source: "./media/characters/rainier/front.svg"
  4974. }
  4975. }
  4976. },
  4977. [
  4978. {
  4979. name: "Micro",
  4980. height: math.unit(2, "mm"),
  4981. default: true
  4982. }
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4987. {
  4988. front: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(180, "lbs"),
  4991. name: "Front",
  4992. image: {
  4993. source: "./media/characters/andy/front.svg"
  4994. }
  4995. }
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(8, "feet"),
  5001. default: true
  5002. },
  5003. {
  5004. name: "Macro",
  5005. height: math.unit(1000, "feet")
  5006. },
  5007. {
  5008. name: "Megamacro",
  5009. height: math.unit(5, "miles")
  5010. },
  5011. {
  5012. name: "Gigamacro",
  5013. height: math.unit(5000, "miles")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5019. {
  5020. front: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(210, "lbs"),
  5023. name: "Front",
  5024. image: {
  5025. source: "./media/characters/cimmaron/front-sfw.svg",
  5026. extra: 701 / 676,
  5027. bottom: 0.046
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(210, "lbs"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/cimmaron/back-sfw.svg",
  5036. extra: 701 / 676,
  5037. bottom: 0.046
  5038. }
  5039. },
  5040. frontNsfw: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(210, "lbs"),
  5043. name: "Front (NSFW)",
  5044. image: {
  5045. source: "./media/characters/cimmaron/front-nsfw.svg",
  5046. extra: 701 / 676,
  5047. bottom: 0.046
  5048. }
  5049. },
  5050. backNsfw: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(210, "lbs"),
  5053. name: "Back (NSFW)",
  5054. image: {
  5055. source: "./media/characters/cimmaron/back-nsfw.svg",
  5056. extra: 701 / 676,
  5057. bottom: 0.046
  5058. }
  5059. },
  5060. dick: {
  5061. height: math.unit(1.714, "feet"),
  5062. name: "Dick",
  5063. image: {
  5064. source: "./media/characters/cimmaron/dick.svg"
  5065. }
  5066. },
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(6, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro Mayor",
  5076. height: math.unit(350, "meters")
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(6, "feet"),
  5085. weight: math.unit(200, "lbs"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/akari/front.svg",
  5089. extra: 962 / 901,
  5090. bottom: 0.04
  5091. }
  5092. }
  5093. },
  5094. [
  5095. {
  5096. name: "Micro",
  5097. height: math.unit(5, "inches"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(7, "feet")
  5103. },
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5108. {
  5109. front: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(140, "lbs"),
  5112. name: "Front",
  5113. image: {
  5114. source: "./media/characters/cynosura/front.svg",
  5115. extra: 896 / 847
  5116. }
  5117. },
  5118. back: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(140, "lbs"),
  5121. name: "Back",
  5122. image: {
  5123. source: "./media/characters/cynosura/back.svg",
  5124. extra: 1365 / 1250
  5125. }
  5126. },
  5127. },
  5128. [
  5129. {
  5130. name: "Micro",
  5131. height: math.unit(4, "inches")
  5132. },
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(5.75, "feet"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Tall",
  5140. height: math.unit(10, "feet")
  5141. },
  5142. {
  5143. name: "Big",
  5144. height: math.unit(20, "feet")
  5145. },
  5146. {
  5147. name: "Macro",
  5148. height: math.unit(50, "feet")
  5149. },
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5154. {
  5155. front: {
  5156. height: math.unit(6, "feet"),
  5157. weight: math.unit(170, "lbs"),
  5158. name: "Front",
  5159. image: {
  5160. source: "./media/characters/gin/front.svg",
  5161. extra: 1.053,
  5162. bottom: 0.025
  5163. }
  5164. },
  5165. foot: {
  5166. height: math.unit(6 / 4.25, "feet"),
  5167. name: "Foot",
  5168. image: {
  5169. source: "./media/characters/gin/foot.svg"
  5170. }
  5171. },
  5172. sole: {
  5173. height: math.unit(6 / 4.40, "feet"),
  5174. name: "Sole",
  5175. image: {
  5176. source: "./media/characters/gin/sole.svg"
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(13 + 2 / 12, "feet")
  5184. },
  5185. {
  5186. name: "Macro",
  5187. height: math.unit(1500, "feet")
  5188. },
  5189. {
  5190. name: "Megamacro",
  5191. height: math.unit(200, "miles"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Gigamacro",
  5196. height: math.unit(500, "megameters")
  5197. },
  5198. {
  5199. name: "Teramacro",
  5200. height: math.unit(15, "lightyears")
  5201. }
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(6 + 1 / 6, "feet"),
  5209. weight: math.unit(178, "lbs"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/guy/front.svg"
  5213. }
  5214. }
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(6 + 1 / 6, "feet"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Large",
  5224. height: math.unit(25 + 7 / 12, "feet")
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(60 + 9 / 12, "feet")
  5229. },
  5230. {
  5231. name: "Macro+",
  5232. height: math.unit(246, "feet")
  5233. },
  5234. {
  5235. name: "Macro++",
  5236. height: math.unit(878, "feet")
  5237. }
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5242. {
  5243. front: {
  5244. height: math.unit(9, "feet"),
  5245. weight: math.unit(800, "lbs"),
  5246. name: "Front",
  5247. image: {
  5248. source: "./media/characters/tiberius/front.svg",
  5249. extra: 2295 / 2071
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(9, "feet"),
  5254. weight: math.unit(800, "lbs"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/tiberius/back.svg",
  5258. extra: 2373 / 2160
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(9, "feet"),
  5266. default: true
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5272. {
  5273. front: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(600, "lbs"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/surgo/front.svg",
  5279. extra: 3591 / 2227
  5280. }
  5281. },
  5282. back: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(600, "lbs"),
  5285. name: "Back",
  5286. image: {
  5287. source: "./media/characters/surgo/back.svg",
  5288. extra: 3557 / 2228
  5289. }
  5290. },
  5291. laying: {
  5292. height: math.unit(6 * 0.85, "feet"),
  5293. weight: math.unit(600, "lbs"),
  5294. name: "Laying",
  5295. image: {
  5296. source: "./media/characters/surgo/laying.svg"
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(6, "feet"),
  5304. default: true
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5310. {
  5311. side: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(150, "lbs"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/cibus/side.svg",
  5317. extra: 800 / 400
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(6, "feet"),
  5325. default: true
  5326. }
  5327. ]
  5328. ))
  5329. characterMakers.push(() => makeCharacter(
  5330. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5331. {
  5332. front: {
  5333. height: math.unit(6, "feet"),
  5334. weight: math.unit(240, "lbs"),
  5335. name: "Front",
  5336. image: {
  5337. source: "./media/characters/nibbles/front.svg"
  5338. }
  5339. },
  5340. side: {
  5341. height: math.unit(6, "feet"),
  5342. weight: math.unit(240, "lbs"),
  5343. name: "Side",
  5344. image: {
  5345. source: "./media/characters/nibbles/side.svg"
  5346. }
  5347. },
  5348. },
  5349. [
  5350. {
  5351. name: "Normal",
  5352. height: math.unit(9, "feet"),
  5353. default: true
  5354. }
  5355. ]
  5356. ))
  5357. characterMakers.push(() => makeCharacter(
  5358. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5359. {
  5360. side: {
  5361. height: math.unit(5 + 1 / 6, "feet"),
  5362. weight: math.unit(130, "lbs"),
  5363. name: "Side",
  5364. image: {
  5365. source: "./media/characters/rikky/side.svg"
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(5 + 1 / 6, "feet")
  5373. },
  5374. {
  5375. name: "Macro",
  5376. height: math.unit(152, "feet"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "Megamacro",
  5381. height: math.unit(7, "miles")
  5382. }
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5387. {
  5388. side: {
  5389. height: math.unit(370, "cm"),
  5390. weight: math.unit(350, "lbs"),
  5391. name: "Side",
  5392. image: {
  5393. source: "./media/characters/malfressa/side.svg"
  5394. }
  5395. },
  5396. walking: {
  5397. height: math.unit(370, "cm"),
  5398. weight: math.unit(350, "lbs"),
  5399. name: "Walking",
  5400. image: {
  5401. source: "./media/characters/malfressa/walking.svg"
  5402. }
  5403. },
  5404. feral: {
  5405. height: math.unit(2500, "cm"),
  5406. weight: math.unit(100000, "lbs"),
  5407. name: "Feral",
  5408. image: {
  5409. source: "./media/characters/malfressa/feral.svg",
  5410. extra: 2108 / 837,
  5411. bottom: 0.02
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(370, "cm")
  5419. },
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(300, "meters"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5429. {
  5430. front: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(60, "kg"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/jaro/front.svg"
  5436. }
  5437. },
  5438. back: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(60, "kg"),
  5441. name: "Back",
  5442. image: {
  5443. source: "./media/characters/jaro/back.svg"
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Micro",
  5450. height: math.unit(7, "inches")
  5451. },
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(5.5, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Minimacro",
  5459. height: math.unit(20, "feet")
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(200, "meters")
  5464. }
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(195, "lb"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/rogue/front.svg"
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "Macro",
  5482. height: math.unit(90, "feet"),
  5483. default: true
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5 + 8 / 12, "feet"),
  5492. weight: math.unit(140, "lb"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/piper/front.svg",
  5496. extra: 3928 / 3681
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Micro",
  5503. height: math.unit(2, "inches")
  5504. },
  5505. {
  5506. name: "Normal",
  5507. height: math.unit(5 + 8 / 12, "feet")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(250, "feet"),
  5512. default: true
  5513. },
  5514. {
  5515. name: "Megamacro",
  5516. height: math.unit(7, "miles")
  5517. },
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5522. {
  5523. front: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(220, "lb"),
  5526. name: "Front",
  5527. image: {
  5528. source: "./media/characters/gemini/front.svg"
  5529. }
  5530. },
  5531. back: {
  5532. height: math.unit(6, "feet"),
  5533. weight: math.unit(220, "lb"),
  5534. name: "Back",
  5535. image: {
  5536. source: "./media/characters/gemini/back.svg"
  5537. }
  5538. },
  5539. kneeling: {
  5540. height: math.unit(6 / 1.5, "feet"),
  5541. weight: math.unit(220, "lb"),
  5542. name: "Kneeling",
  5543. image: {
  5544. source: "./media/characters/gemini/kneeling.svg",
  5545. bottom: 0.02
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(300, "meters"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Megamacro",
  5557. height: math.unit(6900, "meters")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5563. {
  5564. anthro: {
  5565. height: math.unit(2.35, "meters"),
  5566. weight: math.unit(73, "kg"),
  5567. name: "Anthro",
  5568. image: {
  5569. source: "./media/characters/alicia/anthro.svg",
  5570. extra: 2571 / 2385,
  5571. bottom: 75 / 2648
  5572. }
  5573. },
  5574. paw: {
  5575. height: math.unit(1.32, "feet"),
  5576. name: "Paw",
  5577. image: {
  5578. source: "./media/characters/alicia/paw.svg"
  5579. }
  5580. },
  5581. feral: {
  5582. height: math.unit(1.69, "meters"),
  5583. weight: math.unit(73, "kg"),
  5584. name: "Feral",
  5585. image: {
  5586. source: "./media/characters/alicia/feral.svg",
  5587. extra: 2123 / 1715,
  5588. bottom: 222 / 2349
  5589. }
  5590. },
  5591. },
  5592. [
  5593. {
  5594. name: "Normal",
  5595. height: math.unit(2.35, "meters")
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(60, "meters"),
  5600. default: true
  5601. },
  5602. {
  5603. name: "Megamacro",
  5604. height: math.unit(10000, "kilometers")
  5605. },
  5606. ]
  5607. ))
  5608. characterMakers.push(() => makeCharacter(
  5609. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5610. {
  5611. front: {
  5612. height: math.unit(7, "feet"),
  5613. weight: math.unit(250, "lbs"),
  5614. name: "Front",
  5615. image: {
  5616. source: "./media/characters/archy/front.svg"
  5617. }
  5618. }
  5619. },
  5620. [
  5621. {
  5622. name: "Micro",
  5623. height: math.unit(1, "inch")
  5624. },
  5625. {
  5626. name: "Shorty",
  5627. height: math.unit(5, "feet")
  5628. },
  5629. {
  5630. name: "Normal",
  5631. height: math.unit(7, "feet")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(600, "meters"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Megamacro",
  5640. height: math.unit(1, "mile")
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5646. {
  5647. front: {
  5648. height: math.unit(1.65, "meters"),
  5649. weight: math.unit(74, "kg"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/berri/front.svg",
  5653. extra: 857 / 837,
  5654. bottom: 18 / 877
  5655. }
  5656. },
  5657. bum: {
  5658. height: math.unit(1.46, "feet"),
  5659. name: "Bum",
  5660. image: {
  5661. source: "./media/characters/berri/bum.svg"
  5662. }
  5663. },
  5664. mouth: {
  5665. height: math.unit(0.44, "feet"),
  5666. name: "Mouth",
  5667. image: {
  5668. source: "./media/characters/berri/mouth.svg"
  5669. }
  5670. },
  5671. paw: {
  5672. height: math.unit(0.826, "feet"),
  5673. name: "Paw",
  5674. image: {
  5675. source: "./media/characters/berri/paw.svg"
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(1.65, "meters")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(60, "m"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(9.213, "km")
  5692. },
  5693. {
  5694. name: "Planet Eater",
  5695. height: math.unit(489, "megameters")
  5696. },
  5697. {
  5698. name: "Teramacro",
  5699. height: math.unit(2471635000000, "meters")
  5700. },
  5701. {
  5702. name: "Examacro",
  5703. height: math.unit(8.0624e+26, "meters")
  5704. }
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5709. {
  5710. front: {
  5711. height: math.unit(1.72, "meters"),
  5712. weight: math.unit(68, "kg"),
  5713. name: "Front",
  5714. image: {
  5715. source: "./media/characters/lexi/front.svg"
  5716. }
  5717. }
  5718. },
  5719. [
  5720. {
  5721. name: "Very Smol",
  5722. height: math.unit(10, "mm")
  5723. },
  5724. {
  5725. name: "Micro",
  5726. height: math.unit(6.8, "cm"),
  5727. default: true
  5728. },
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(1.72, "m")
  5732. }
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5737. {
  5738. front: {
  5739. height: math.unit(1.69, "meters"),
  5740. weight: math.unit(68, "kg"),
  5741. name: "Front",
  5742. image: {
  5743. source: "./media/characters/martin/front.svg",
  5744. extra: 596 / 581
  5745. }
  5746. }
  5747. },
  5748. [
  5749. {
  5750. name: "Micro",
  5751. height: math.unit(6.85, "cm"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Normal",
  5756. height: math.unit(1.69, "m")
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(1.69, "meters"),
  5765. weight: math.unit(68, "kg"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/juno/front.svg"
  5769. }
  5770. }
  5771. },
  5772. [
  5773. {
  5774. name: "Micro",
  5775. height: math.unit(7, "cm")
  5776. },
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(1.89, "m")
  5780. },
  5781. {
  5782. name: "Macro",
  5783. height: math.unit(353, "meters"),
  5784. default: true
  5785. }
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5790. {
  5791. front: {
  5792. height: math.unit(1.93, "meters"),
  5793. weight: math.unit(83, "kg"),
  5794. name: "Front",
  5795. image: {
  5796. source: "./media/characters/samantha/front.svg"
  5797. }
  5798. },
  5799. frontClothed: {
  5800. height: math.unit(1.93, "meters"),
  5801. weight: math.unit(83, "kg"),
  5802. name: "Front (Clothed)",
  5803. image: {
  5804. source: "./media/characters/samantha/front-clothed.svg"
  5805. }
  5806. },
  5807. back: {
  5808. height: math.unit(1.93, "meters"),
  5809. weight: math.unit(83, "kg"),
  5810. name: "Back",
  5811. image: {
  5812. source: "./media/characters/samantha/back.svg"
  5813. }
  5814. },
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(1.93, "m")
  5820. },
  5821. {
  5822. name: "Macro",
  5823. height: math.unit(74, "meters"),
  5824. default: true
  5825. },
  5826. {
  5827. name: "Macro+",
  5828. height: math.unit(223, "meters"),
  5829. },
  5830. {
  5831. name: "Megamacro",
  5832. height: math.unit(8381, "meters"),
  5833. },
  5834. {
  5835. name: "Megamacro+",
  5836. height: math.unit(12000, "kilometers")
  5837. },
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5842. {
  5843. front: {
  5844. height: math.unit(1.92, "meters"),
  5845. weight: math.unit(80, "kg"),
  5846. name: "Front",
  5847. image: {
  5848. source: "./media/characters/dr-clay/front.svg"
  5849. }
  5850. },
  5851. frontClothed: {
  5852. height: math.unit(1.92, "meters"),
  5853. weight: math.unit(80, "kg"),
  5854. name: "Front (Clothed)",
  5855. image: {
  5856. source: "./media/characters/dr-clay/front-clothed.svg"
  5857. }
  5858. }
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(1.92, "m")
  5864. },
  5865. {
  5866. name: "Macro",
  5867. height: math.unit(214, "meters"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Macro+",
  5872. height: math.unit(12.237, "meters"),
  5873. },
  5874. {
  5875. name: "Megamacro",
  5876. height: math.unit(557, "megameters"),
  5877. },
  5878. {
  5879. name: "Unimaginable",
  5880. height: math.unit(120e9, "lightyears")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(2, "meters"),
  5889. weight: math.unit(80, "kg"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5893. }
  5894. }
  5895. },
  5896. [
  5897. {
  5898. name: "Teramacro",
  5899. height: math.unit(500000, "lightyears"),
  5900. default: true
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(2, "meters"),
  5909. weight: math.unit(150, "kg"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/vemus/front.svg",
  5913. extra: 2384 / 2084,
  5914. bottom: 0.0123
  5915. }
  5916. }
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(3.75, "meters"),
  5922. default: true
  5923. },
  5924. {
  5925. name: "Big",
  5926. height: math.unit(8, "meters")
  5927. },
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(100, "meters")
  5931. },
  5932. {
  5933. name: "Macro+",
  5934. height: math.unit(1500, "meters")
  5935. },
  5936. {
  5937. name: "Stellar",
  5938. height: math.unit(14e8, "meters")
  5939. },
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(2, "meters"),
  5947. weight: math.unit(70, "kg"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/beherit/front.svg",
  5951. extra: 1408 / 1242
  5952. }
  5953. }
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6, "feet")
  5959. },
  5960. {
  5961. name: "Lorg",
  5962. height: math.unit(25, "feet"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Lorger",
  5967. height: math.unit(75, "feet")
  5968. },
  5969. {
  5970. name: "Macro",
  5971. height: math.unit(200, "meters")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(2, "meters"),
  5980. weight: math.unit(150, "kg"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/everett/front.svg",
  5984. extra: 2038 / 1737,
  5985. bottom: 0.03
  5986. }
  5987. },
  5988. paw: {
  5989. height: math.unit(2 / 3.6, "meters"),
  5990. name: "Paw",
  5991. image: {
  5992. source: "./media/characters/everett/paw.svg"
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(15, "feet"),
  6000. default: true
  6001. },
  6002. {
  6003. name: "Lorg",
  6004. height: math.unit(70, "feet"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Lorger",
  6009. height: math.unit(250, "feet")
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(500, "meters")
  6014. },
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(2, "meters"),
  6022. weight: math.unit(86, "kg"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/rose-lion/front.svg"
  6026. }
  6027. },
  6028. bent: {
  6029. height: math.unit(2 / 1.4288, "meters"),
  6030. weight: math.unit(86, "kg"),
  6031. name: "Bent",
  6032. image: {
  6033. source: "./media/characters/rose-lion/bent.svg"
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Mini-Micro",
  6040. height: math.unit(1, "cm")
  6041. },
  6042. {
  6043. name: "Micro",
  6044. height: math.unit(3.5, "inches"),
  6045. default: true
  6046. },
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6 + 1 / 6, "feet")
  6050. },
  6051. {
  6052. name: "Mini-Macro",
  6053. height: math.unit(9 + 10 / 12, "feet")
  6054. },
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6059. {
  6060. front: {
  6061. height: math.unit(2, "meters"),
  6062. weight: math.unit(350, "lbs"),
  6063. name: "Front",
  6064. image: {
  6065. source: "./media/characters/regal/front.svg"
  6066. }
  6067. },
  6068. back: {
  6069. height: math.unit(2, "meters"),
  6070. weight: math.unit(350, "lbs"),
  6071. name: "Back",
  6072. image: {
  6073. source: "./media/characters/regal/back.svg"
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Macro",
  6080. height: math.unit(350, "feet"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(4 + 11 / 12, "feet"),
  6090. weight: math.unit(100, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/opal/front.svg"
  6094. }
  6095. },
  6096. frontAlt: {
  6097. height: math.unit(4 + 11 / 12, "feet"),
  6098. weight: math.unit(100, "lbs"),
  6099. name: "Front (Alt)",
  6100. image: {
  6101. source: "./media/characters/opal/front-alt.svg"
  6102. }
  6103. },
  6104. },
  6105. [
  6106. {
  6107. name: "Small",
  6108. height: math.unit(4 + 11 / 12, "feet")
  6109. },
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(20, "feet"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(120, "feet")
  6118. },
  6119. {
  6120. name: "Megamacro",
  6121. height: math.unit(80, "miles")
  6122. },
  6123. {
  6124. name: "True Size",
  6125. height: math.unit(100000, "lightyears")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(200, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/vector-wuff/front.svg"
  6138. }
  6139. }
  6140. },
  6141. [
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(2.8, "meters")
  6145. },
  6146. {
  6147. name: "Macro",
  6148. height: math.unit(450, "meters"),
  6149. default: true
  6150. },
  6151. {
  6152. name: "Megamacro",
  6153. height: math.unit(15, "kilometers")
  6154. }
  6155. ]
  6156. ))
  6157. characterMakers.push(() => makeCharacter(
  6158. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6159. {
  6160. front: {
  6161. height: math.unit(6, "feet"),
  6162. weight: math.unit(256, "lbs"),
  6163. name: "Front",
  6164. image: {
  6165. source: "./media/characters/dannik/front.svg"
  6166. }
  6167. }
  6168. },
  6169. [
  6170. {
  6171. name: "Macro",
  6172. height: math.unit(69.57, "meters"),
  6173. default: true
  6174. },
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6179. {
  6180. front: {
  6181. height: math.unit(6, "feet"),
  6182. weight: math.unit(120, "lbs"),
  6183. name: "Front",
  6184. image: {
  6185. source: "./media/characters/azura-saharah/front.svg"
  6186. }
  6187. },
  6188. back: {
  6189. height: math.unit(6, "feet"),
  6190. weight: math.unit(120, "lbs"),
  6191. name: "Back",
  6192. image: {
  6193. source: "./media/characters/azura-saharah/back.svg"
  6194. }
  6195. },
  6196. },
  6197. [
  6198. {
  6199. name: "Macro",
  6200. height: math.unit(100, "feet"),
  6201. default: true
  6202. },
  6203. ]
  6204. ))
  6205. characterMakers.push(() => makeCharacter(
  6206. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6207. {
  6208. side: {
  6209. height: math.unit(5 + 4 / 12, "feet"),
  6210. weight: math.unit(163, "lbs"),
  6211. name: "Side",
  6212. image: {
  6213. source: "./media/characters/kennedy/side.svg"
  6214. }
  6215. }
  6216. },
  6217. [
  6218. {
  6219. name: "Standard Doggo",
  6220. height: math.unit(5 + 4 / 12, "feet")
  6221. },
  6222. {
  6223. name: "Big Doggo",
  6224. height: math.unit(25 + 3 / 12, "feet"),
  6225. default: true
  6226. },
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(90, "lbs"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/odi-lunar/front.svg"
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Micro",
  6244. height: math.unit(3, "inches"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(5.5, "feet")
  6250. }
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6255. {
  6256. back: {
  6257. height: math.unit(6, "feet"),
  6258. weight: math.unit(220, "lbs"),
  6259. name: "Back",
  6260. image: {
  6261. source: "./media/characters/mandake/back.svg"
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(7, "feet"),
  6269. default: true
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(78, "feet")
  6274. },
  6275. {
  6276. name: "Macro+",
  6277. height: math.unit(300, "meters")
  6278. },
  6279. {
  6280. name: "Macro++",
  6281. height: math.unit(2400, "feet")
  6282. },
  6283. {
  6284. name: "Megamacro",
  6285. height: math.unit(5167, "meters")
  6286. },
  6287. {
  6288. name: "Gigamacro",
  6289. height: math.unit(41769, "miles")
  6290. },
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6295. {
  6296. front: {
  6297. height: math.unit(6, "feet"),
  6298. weight: math.unit(120, "lbs"),
  6299. name: "Front",
  6300. image: {
  6301. source: "./media/characters/yozey/front.svg"
  6302. }
  6303. },
  6304. frontAlt: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(120, "lbs"),
  6307. name: "Front (Alt)",
  6308. image: {
  6309. source: "./media/characters/yozey/front-alt.svg"
  6310. }
  6311. },
  6312. side: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(120, "lbs"),
  6315. name: "Side",
  6316. image: {
  6317. source: "./media/characters/yozey/side.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Micro",
  6324. height: math.unit(3, "inches"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Normal",
  6329. height: math.unit(6, "feet")
  6330. }
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(103, "lbs"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/valeska-voss/front.svg"
  6342. }
  6343. }
  6344. },
  6345. [
  6346. {
  6347. name: "Mini-Sized Sub",
  6348. height: math.unit(3.1, "inches")
  6349. },
  6350. {
  6351. name: "Mid-Sized Sub",
  6352. height: math.unit(6.2, "inches")
  6353. },
  6354. {
  6355. name: "Full-Sized Sub",
  6356. height: math.unit(9.3, "inches")
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(5 + 2 / 12, "foot"),
  6361. default: true
  6362. },
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(160, "lbs"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/gene-zeta/front.svg",
  6374. bottom: 0.03,
  6375. extra: 1
  6376. }
  6377. }
  6378. },
  6379. [
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(6.25, "foot"),
  6383. default: true
  6384. },
  6385. ]
  6386. ))
  6387. characterMakers.push(() => makeCharacter(
  6388. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6389. {
  6390. front: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(350, "lbs"),
  6393. name: "Front",
  6394. image: {
  6395. source: "./media/characters/razinox/front.svg",
  6396. extra: 1686 / 1548,
  6397. bottom: 28.2 / 1868
  6398. }
  6399. },
  6400. back: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(350, "lbs"),
  6403. name: "Back",
  6404. image: {
  6405. source: "./media/characters/razinox/back.svg",
  6406. extra: 1660 / 1590,
  6407. bottom: 15 / 1665
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(10 + 8 / 12, "foot")
  6415. },
  6416. {
  6417. name: "Minimacro",
  6418. height: math.unit(15, "foot")
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(60, "foot"),
  6423. default: true
  6424. },
  6425. {
  6426. name: "Megamacro",
  6427. height: math.unit(5, "miles")
  6428. },
  6429. {
  6430. name: "Gigamacro",
  6431. height: math.unit(6000, "miles")
  6432. },
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6437. {
  6438. front: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(150, "lbs"),
  6441. name: "Front",
  6442. image: {
  6443. source: "./media/characters/cobalt/front.svg"
  6444. }
  6445. }
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(8 + 1 / 12, "foot")
  6451. },
  6452. {
  6453. name: "Macro",
  6454. height: math.unit(111, "foot"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Supracosmic",
  6459. height: math.unit(1e42, "feet")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(140, "lbs"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/amanda/front.svg"
  6472. }
  6473. }
  6474. },
  6475. [
  6476. {
  6477. name: "Micro",
  6478. height: math.unit(5, "inches"),
  6479. default: true
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(5.59, "feet"),
  6488. weight: math.unit(250, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/teal/front.svg"
  6492. }
  6493. },
  6494. frontAlt: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(250, "lbs"),
  6497. name: "Front (Alt)",
  6498. image: {
  6499. source: "./media/characters/teal/front-alt.svg",
  6500. bottom: 0.04,
  6501. extra: 1
  6502. }
  6503. },
  6504. },
  6505. [
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(12, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(300, "feet")
  6514. },
  6515. ]
  6516. ))
  6517. characterMakers.push(() => makeCharacter(
  6518. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6519. {
  6520. frontCat: {
  6521. height: math.unit(6, "feet"),
  6522. weight: math.unit(180, "lbs"),
  6523. name: "Front (Cat)",
  6524. image: {
  6525. source: "./media/characters/ravin-amulet/front-cat.svg"
  6526. }
  6527. },
  6528. frontCatAlt: {
  6529. height: math.unit(6, "feet"),
  6530. weight: math.unit(180, "lbs"),
  6531. name: "Front (Alt, Cat)",
  6532. image: {
  6533. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6534. }
  6535. },
  6536. frontWerewolf: {
  6537. height: math.unit(6 * 1.2, "feet"),
  6538. weight: math.unit(225, "lbs"),
  6539. name: "Front (Werewolf)",
  6540. image: {
  6541. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6542. }
  6543. },
  6544. backWerewolf: {
  6545. height: math.unit(6 * 1.2, "feet"),
  6546. weight: math.unit(225, "lbs"),
  6547. name: "Back (Werewolf)",
  6548. image: {
  6549. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6550. }
  6551. },
  6552. },
  6553. [
  6554. {
  6555. name: "Nano",
  6556. height: math.unit(1, "micrometer")
  6557. },
  6558. {
  6559. name: "Micro",
  6560. height: math.unit(1, "inch")
  6561. },
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(6, "feet"),
  6565. default: true
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(60, "feet")
  6570. }
  6571. ]
  6572. ))
  6573. characterMakers.push(() => makeCharacter(
  6574. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6575. {
  6576. front: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(165, "lbs"),
  6579. name: "Front",
  6580. image: {
  6581. source: "./media/characters/fluoresce/front.svg"
  6582. }
  6583. }
  6584. },
  6585. [
  6586. {
  6587. name: "Micro",
  6588. height: math.unit(6, "cm")
  6589. },
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(5 + 7 / 12, "feet"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(56, "feet")
  6598. },
  6599. {
  6600. name: "Megamacro",
  6601. height: math.unit(1.9, "miles")
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6607. {
  6608. front: {
  6609. height: math.unit(9 + 6 / 12, "feet"),
  6610. weight: math.unit(523, "lbs"),
  6611. name: "Side",
  6612. image: {
  6613. source: "./media/characters/aurora/side.svg"
  6614. }
  6615. }
  6616. },
  6617. [
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(9 + 6 / 12, "feet")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(96, "feet"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Macro+",
  6629. height: math.unit(243, "feet")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(194, "cm"),
  6638. weight: math.unit(90, "kg"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/ranek/front.svg"
  6642. }
  6643. },
  6644. side: {
  6645. height: math.unit(194, "cm"),
  6646. weight: math.unit(90, "kg"),
  6647. name: "Side",
  6648. image: {
  6649. source: "./media/characters/ranek/side.svg"
  6650. }
  6651. },
  6652. back: {
  6653. height: math.unit(194, "cm"),
  6654. weight: math.unit(90, "kg"),
  6655. name: "Back",
  6656. image: {
  6657. source: "./media/characters/ranek/back.svg"
  6658. }
  6659. },
  6660. feral: {
  6661. height: math.unit(30, "cm"),
  6662. weight: math.unit(1.6, "lbs"),
  6663. name: "Feral",
  6664. image: {
  6665. source: "./media/characters/ranek/feral.svg"
  6666. }
  6667. },
  6668. },
  6669. [
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(194, "cm"),
  6673. default: true
  6674. },
  6675. {
  6676. name: "Macro",
  6677. height: math.unit(100, "meters")
  6678. },
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(5 + 6 / 12, "feet"),
  6686. weight: math.unit(153, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/andrew-cooper/front.svg"
  6690. }
  6691. },
  6692. },
  6693. [
  6694. {
  6695. name: "Nano",
  6696. height: math.unit(1, "mm")
  6697. },
  6698. {
  6699. name: "Micro",
  6700. height: math.unit(2, "inches")
  6701. },
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(5 + 6 / 12, "feet"),
  6705. default: true
  6706. }
  6707. ]
  6708. ))
  6709. characterMakers.push(() => makeCharacter(
  6710. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6711. {
  6712. front: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(180, "lbs"),
  6715. name: "Front",
  6716. image: {
  6717. source: "./media/characters/akane-sato/front.svg",
  6718. extra: 1219 / 1140
  6719. }
  6720. },
  6721. back: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(180, "lbs"),
  6724. name: "Back",
  6725. image: {
  6726. source: "./media/characters/akane-sato/back.svg",
  6727. extra: 1219 / 1170
  6728. }
  6729. },
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(2.5, "meters")
  6735. },
  6736. {
  6737. name: "Macro",
  6738. height: math.unit(250, "meters"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Megamacro",
  6743. height: math.unit(25, "km")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(65, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/rook/front.svg",
  6756. extra: 960 / 950
  6757. }
  6758. }
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(8.8, "feet")
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(88, "feet"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Megamacro",
  6772. height: math.unit(8, "miles")
  6773. },
  6774. ]
  6775. ))
  6776. characterMakers.push(() => makeCharacter(
  6777. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6778. {
  6779. front: {
  6780. height: math.unit(12 + 2 / 12, "feet"),
  6781. weight: math.unit(808, "lbs"),
  6782. name: "Front",
  6783. image: {
  6784. source: "./media/characters/prodigy/front.svg"
  6785. }
  6786. }
  6787. },
  6788. [
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(12 + 2 / 12, "feet"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(143, "feet")
  6797. },
  6798. {
  6799. name: "Macro+",
  6800. height: math.unit(400, "feet")
  6801. },
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(225, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/daniel/front.svg"
  6813. }
  6814. },
  6815. leaning: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(225, "lbs"),
  6818. name: "Leaning",
  6819. image: {
  6820. source: "./media/characters/daniel/leaning.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(1000, "feet"),
  6828. default: true
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(88, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/chiros/front.svg",
  6841. extra: 306 / 226
  6842. }
  6843. },
  6844. side: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(88, "lbs"),
  6847. name: "Side",
  6848. image: {
  6849. source: "./media/characters/chiros/side.svg",
  6850. extra: 306 / 226
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(6, "cm"),
  6858. default: true
  6859. },
  6860. ]
  6861. ))
  6862. characterMakers.push(() => makeCharacter(
  6863. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6864. {
  6865. front: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(100, "lbs"),
  6868. name: "Front",
  6869. image: {
  6870. source: "./media/characters/selka/front.svg",
  6871. extra: 947 / 887
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(5, "cm"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(8 + 3 / 12, "feet"),
  6888. weight: math.unit(424, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/verin/front.svg",
  6892. extra: 1845 / 1550
  6893. }
  6894. },
  6895. frontArmored: {
  6896. height: math.unit(8 + 3 / 12, "feet"),
  6897. weight: math.unit(424, "lbs"),
  6898. name: "Front (Armored)",
  6899. image: {
  6900. source: "./media/characters/verin/front-armor.svg",
  6901. extra: 1845 / 1550,
  6902. bottom: 0.01
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(8 + 3 / 12, "feet"),
  6907. weight: math.unit(424, "lbs"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/verin/back.svg",
  6911. bottom: 0.1,
  6912. extra: 1
  6913. }
  6914. },
  6915. foot: {
  6916. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6917. name: "Foot",
  6918. image: {
  6919. source: "./media/characters/verin/foot.svg"
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(8 + 3 / 12, "feet")
  6927. },
  6928. {
  6929. name: "Minimacro",
  6930. height: math.unit(21, "feet"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(626, "feet")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(2.718, "meters"),
  6944. weight: math.unit(150, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/sovrim-terraquian/front.svg"
  6948. }
  6949. },
  6950. back: {
  6951. height: math.unit(2.718, "meters"),
  6952. weight: math.unit(150, "lbs"),
  6953. name: "Back",
  6954. image: {
  6955. source: "./media/characters/sovrim-terraquian/back.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Micro",
  6962. height: math.unit(2, "inches")
  6963. },
  6964. {
  6965. name: "Small",
  6966. height: math.unit(1, "meter")
  6967. },
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(Math.E, "meters"),
  6971. default: true
  6972. },
  6973. {
  6974. name: "Macro",
  6975. height: math.unit(20, "meters")
  6976. },
  6977. {
  6978. name: "Macro+",
  6979. height: math.unit(400, "meters")
  6980. },
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(7, "feet"),
  6988. weight: math.unit(489, "lbs"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/reece-silvermane/front.svg",
  6992. bottom: 0.02,
  6993. extra: 1
  6994. }
  6995. },
  6996. },
  6997. [
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(1.5, "miles"),
  7001. default: true
  7002. },
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(78, "kg"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/kane/front.svg",
  7014. extra: 978 / 899
  7015. }
  7016. },
  7017. },
  7018. [
  7019. {
  7020. name: "Normal",
  7021. height: math.unit(2.1, "m"),
  7022. },
  7023. {
  7024. name: "Macro",
  7025. height: math.unit(1, "km"),
  7026. default: true
  7027. },
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(6, "feet"),
  7035. weight: math.unit(200, "kg"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/tegon/front.svg",
  7039. bottom: 0.01,
  7040. extra: 1
  7041. }
  7042. },
  7043. },
  7044. [
  7045. {
  7046. name: "Micro",
  7047. height: math.unit(1, "inch")
  7048. },
  7049. {
  7050. name: "Normal",
  7051. height: math.unit(6 + 3 / 12, "feet"),
  7052. default: true
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(300, "feet")
  7057. },
  7058. {
  7059. name: "Megamacro",
  7060. height: math.unit(69, "miles")
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7066. {
  7067. side: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(2304, "lbs"),
  7070. name: "Side",
  7071. image: {
  7072. source: "./media/characters/arcturax/side.svg",
  7073. extra: 790 / 376,
  7074. bottom: 0.01
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Micro",
  7081. height: math.unit(2, "inch")
  7082. },
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(6, "feet")
  7086. },
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(39, "feet"),
  7090. default: true
  7091. },
  7092. {
  7093. name: "Megamacro",
  7094. height: math.unit(7, "miles")
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7100. {
  7101. front: {
  7102. height: math.unit(6, "feet"),
  7103. weight: math.unit(50, "lbs"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/sentri/front.svg",
  7107. extra: 1750 / 1570,
  7108. bottom: 0.025
  7109. }
  7110. },
  7111. frontAlt: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(50, "lbs"),
  7114. name: "Front (Alt)",
  7115. image: {
  7116. source: "./media/characters/sentri/front-alt.svg",
  7117. extra: 1750 / 1570,
  7118. bottom: 0.025
  7119. }
  7120. },
  7121. },
  7122. [
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(15, "feet"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Macro",
  7130. height: math.unit(2500, "feet")
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(5 + 8 / 12, "feet"),
  7139. weight: math.unit(130, "lbs"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/corvin/front.svg",
  7143. extra: 1803 / 1629
  7144. }
  7145. },
  7146. frontShirt: {
  7147. height: math.unit(5 + 8 / 12, "feet"),
  7148. weight: math.unit(130, "lbs"),
  7149. name: "Front (Shirt)",
  7150. image: {
  7151. source: "./media/characters/corvin/front-shirt.svg",
  7152. extra: 1803 / 1629
  7153. }
  7154. },
  7155. frontPoncho: {
  7156. height: math.unit(5 + 8 / 12, "feet"),
  7157. weight: math.unit(130, "lbs"),
  7158. name: "Front (Poncho)",
  7159. image: {
  7160. source: "./media/characters/corvin/front-poncho.svg",
  7161. extra: 1803 / 1629
  7162. }
  7163. },
  7164. side: {
  7165. height: math.unit(5 + 8 / 12, "feet"),
  7166. weight: math.unit(130, "lbs"),
  7167. name: "Side",
  7168. image: {
  7169. source: "./media/characters/corvin/side.svg",
  7170. extra: 1012 / 945
  7171. }
  7172. },
  7173. back: {
  7174. height: math.unit(5 + 8 / 12, "feet"),
  7175. weight: math.unit(130, "lbs"),
  7176. name: "Back",
  7177. image: {
  7178. source: "./media/characters/corvin/back.svg",
  7179. extra: 1803 / 1629
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Micro",
  7186. height: math.unit(3, "inches")
  7187. },
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(5 + 8 / 12, "feet")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(300, "feet"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(500, "miles")
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(135, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/q/front.svg",
  7212. extra: 854 / 752,
  7213. bottom: 0.005
  7214. }
  7215. },
  7216. back: {
  7217. height: math.unit(6, "feet"),
  7218. weight: math.unit(130, "lbs"),
  7219. name: "Back",
  7220. image: {
  7221. source: "./media/characters/q/back.svg",
  7222. extra: 854 / 752
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(90, "feet"),
  7230. default: true
  7231. },
  7232. {
  7233. name: "Extra Macro",
  7234. height: math.unit(300, "feet"),
  7235. },
  7236. {
  7237. name: "BIG WALF",
  7238. height: math.unit(750, "feet"),
  7239. },
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(150, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/carley/front.svg",
  7251. extra: 3927 / 3540,
  7252. bottom: 0.03
  7253. }
  7254. }
  7255. },
  7256. [
  7257. {
  7258. name: "Normal",
  7259. height: math.unit(6 + 3 / 12, "feet")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(185, "feet"),
  7264. default: true
  7265. },
  7266. {
  7267. name: "Megamacro",
  7268. height: math.unit(8, "miles"),
  7269. },
  7270. ]
  7271. ))
  7272. characterMakers.push(() => makeCharacter(
  7273. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7274. {
  7275. front: {
  7276. height: math.unit(3, "feet"),
  7277. weight: math.unit(28, "lbs"),
  7278. name: "Front",
  7279. image: {
  7280. source: "./media/characters/citrine/front.svg"
  7281. }
  7282. }
  7283. },
  7284. [
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(3, "feet"),
  7288. default: true
  7289. }
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7294. {
  7295. front: {
  7296. height: math.unit(14, "feet"),
  7297. weight: math.unit(1450, "kg"),
  7298. capacity: math.unit(15, "people"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/aura-starwind/front.svg",
  7302. extra: 1455 / 1335
  7303. }
  7304. },
  7305. side: {
  7306. height: math.unit(14, "feet"),
  7307. weight: math.unit(1450, "kg"),
  7308. capacity: math.unit(15, "people"),
  7309. name: "Side",
  7310. image: {
  7311. source: "./media/characters/aura-starwind/side.svg",
  7312. extra: 1654 / 1497
  7313. }
  7314. },
  7315. taur: {
  7316. height: math.unit(18, "feet"),
  7317. weight: math.unit(5500, "kg"),
  7318. capacity: math.unit(50, "people"),
  7319. name: "Taur",
  7320. image: {
  7321. source: "./media/characters/aura-starwind/taur.svg",
  7322. extra: 1760 / 1650
  7323. }
  7324. },
  7325. feral: {
  7326. height: math.unit(46, "feet"),
  7327. weight: math.unit(25000, "kg"),
  7328. capacity: math.unit(120, "people"),
  7329. name: "Feral",
  7330. image: {
  7331. source: "./media/characters/aura-starwind/feral.svg"
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(14, "feet"),
  7339. default: true
  7340. },
  7341. {
  7342. name: "Macro",
  7343. height: math.unit(50, "meters")
  7344. },
  7345. {
  7346. name: "Megamacro",
  7347. height: math.unit(5000, "meters")
  7348. },
  7349. {
  7350. name: "Gigamacro",
  7351. height: math.unit(100000, "kilometers")
  7352. },
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(2 + 7 / 12, "feet"),
  7360. weight: math.unit(32, "lbs"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/rivet/front.svg",
  7364. extra: 1716 / 1658,
  7365. bottom: 0.03
  7366. }
  7367. },
  7368. foot: {
  7369. height: math.unit(0.551, "feet"),
  7370. name: "Rivet's Foot",
  7371. image: {
  7372. source: "./media/characters/rivet/foot.svg"
  7373. },
  7374. rename: true
  7375. }
  7376. },
  7377. [
  7378. {
  7379. name: "Micro",
  7380. height: math.unit(1.5, "inches"),
  7381. },
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(2 + 7 / 12, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(85, "feet")
  7390. },
  7391. {
  7392. name: "Megamacro",
  7393. height: math.unit(2.2, "km")
  7394. }
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(5 + 9 / 12, "feet"),
  7402. weight: math.unit(150, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/coffee/front.svg",
  7406. extra: 3666 / 3032,
  7407. bottom: 0.04
  7408. }
  7409. },
  7410. foot: {
  7411. height: math.unit(1.29, "feet"),
  7412. name: "Foot",
  7413. image: {
  7414. source: "./media/characters/coffee/foot.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Micro",
  7421. height: math.unit(2, "inches"),
  7422. },
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(5 + 9 / 12, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(800, "feet")
  7431. },
  7432. {
  7433. name: "Megamacro",
  7434. height: math.unit(25, "miles")
  7435. }
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(6, "feet"),
  7443. weight: math.unit(200, "lbs"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/chari-gal/front.svg",
  7447. extra: 1568 / 1385,
  7448. bottom: 0.047
  7449. }
  7450. },
  7451. gigantamax: {
  7452. height: math.unit(6 * 16, "feet"),
  7453. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7454. name: "Gigantamax",
  7455. image: {
  7456. source: "./media/characters/chari-gal/gigantamax.svg",
  7457. extra: 1124 / 888,
  7458. bottom: 0.03
  7459. }
  7460. },
  7461. },
  7462. [
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(5 + 7 / 12, "feet")
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(200, "feet"),
  7470. default: true
  7471. }
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(6, "feet"),
  7479. weight: math.unit(150, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/nova/front.svg",
  7483. extra: 5000 / 4722,
  7484. bottom: 0.02
  7485. }
  7486. }
  7487. },
  7488. [
  7489. {
  7490. name: "Micro-",
  7491. height: math.unit(0.8, "inches")
  7492. },
  7493. {
  7494. name: "Micro",
  7495. height: math.unit(2, "inches"),
  7496. default: true
  7497. },
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(3 + 1 / 12, "feet"),
  7505. weight: math.unit(21.7, "lbs"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/argent/front.svg",
  7509. extra: 1471 / 1331,
  7510. bottom: 100.8 / 1575.5
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Micro",
  7517. height: math.unit(2, "inches")
  7518. },
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(3 + 1 / 12, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(120, "feet")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7532. {
  7533. lamp: {
  7534. height: math.unit(7 * 1559 / 989, "feet"),
  7535. name: "Magic Lamp",
  7536. image: {
  7537. source: "./media/characters/mira-al-cul/lamp.svg",
  7538. extra: 1617 / 1559
  7539. }
  7540. },
  7541. front: {
  7542. height: math.unit(7, "feet"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/mira-al-cul/front.svg",
  7546. extra: 1044 / 990
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Heavily Restricted",
  7553. height: math.unit(7 * 1559 / 989, "feet")
  7554. },
  7555. {
  7556. name: "Freshly Freed",
  7557. height: math.unit(50 * 1559 / 989, "feet")
  7558. },
  7559. {
  7560. name: "World Encompassing",
  7561. height: math.unit(10000 * 1559 / 989, "miles")
  7562. },
  7563. {
  7564. name: "Galactic",
  7565. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7566. },
  7567. {
  7568. name: "Palmed Universe",
  7569. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Multiversal Matriarch",
  7574. height: math.unit(8.87e10, "yottameters")
  7575. },
  7576. {
  7577. name: "Void Mother",
  7578. height: math.unit(3.14e110, "yottaparsecs")
  7579. },
  7580. ]
  7581. ))
  7582. characterMakers.push(() => makeCharacter(
  7583. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7584. {
  7585. front: {
  7586. height: math.unit(17 + 1 / 12, "feet"),
  7587. weight: math.unit(476.2 * 5, "lbs"),
  7588. name: "Front",
  7589. image: {
  7590. source: "./media/characters/kuro-shi-uchū/front.svg",
  7591. extra: 2329 / 1835,
  7592. bottom: 0.02
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Micro",
  7599. height: math.unit(2, "inches")
  7600. },
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(12, "meters")
  7604. },
  7605. {
  7606. name: "Planetary",
  7607. height: math.unit(0.00929, "AU"),
  7608. default: true
  7609. },
  7610. {
  7611. name: "Universal",
  7612. height: math.unit(20, "gigaparsecs")
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(5 + 2 / 12, "feet"),
  7621. weight: math.unit(120, "lbs"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/katherine/front.svg",
  7625. extra: 2075 / 1969
  7626. }
  7627. },
  7628. dress: {
  7629. height: math.unit(5 + 2 / 12, "feet"),
  7630. weight: math.unit(120, "lbs"),
  7631. name: "Dress",
  7632. image: {
  7633. source: "./media/characters/katherine/dress.svg",
  7634. extra: 2258 / 2064
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(1, "inches"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(5 + 2 / 12, "feet")
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(100, "meters")
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(80, "miles")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(7 + 8 / 12, "feet"),
  7663. weight: math.unit(250, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/yevis/front.svg",
  7667. extra: 1938 / 1755
  7668. }
  7669. }
  7670. },
  7671. [
  7672. {
  7673. name: "Mortal",
  7674. height: math.unit(7 + 8 / 12, "feet")
  7675. },
  7676. {
  7677. name: "Battle",
  7678. height: math.unit(25 + 11 / 12, "feet")
  7679. },
  7680. {
  7681. name: "Wrath",
  7682. height: math.unit(1654 + 11 / 12, "feet")
  7683. },
  7684. {
  7685. name: "Planet Destroyer",
  7686. height: math.unit(12000, "miles")
  7687. },
  7688. {
  7689. name: "Galaxy Conqueror",
  7690. height: math.unit(1.45, "zettameters"),
  7691. default: true
  7692. },
  7693. {
  7694. name: "Universal War",
  7695. height: math.unit(184, "gigaparsecs")
  7696. },
  7697. {
  7698. name: "Eternity War",
  7699. height: math.unit(1.98e55, "yottaparsecs")
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(5 + 8 / 12, "feet"),
  7708. weight: math.unit(63, "kg"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/xavier/front.svg",
  7712. extra: 944 / 883
  7713. }
  7714. },
  7715. frontStretch: {
  7716. height: math.unit(5 + 8 / 12, "feet"),
  7717. weight: math.unit(63, "kg"),
  7718. name: "Stretching",
  7719. image: {
  7720. source: "./media/characters/xavier/front-stretch.svg",
  7721. extra: 962 / 820
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(5 + 8 / 12, "feet")
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(100, "meters"),
  7733. default: true
  7734. },
  7735. {
  7736. name: "McLargeHuge",
  7737. height: math.unit(10, "miles")
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(5 + 5 / 12, "feet"),
  7746. weight: math.unit(150, "lb"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/joshii/front.svg"
  7750. }
  7751. },
  7752. foot: {
  7753. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7754. name: "Foot",
  7755. image: {
  7756. source: "./media/characters/joshii/foot.svg"
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Micro",
  7763. height: math.unit(2, "inches")
  7764. },
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(5 + 5 / 12, "feet"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(785, "feet")
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(24.5, "miles")
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(150, "lb"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/goddess-elizabeth/front.svg",
  7789. extra: 1800 / 1525,
  7790. bottom: 0.005
  7791. }
  7792. },
  7793. foot: {
  7794. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7795. name: "Foot",
  7796. image: {
  7797. source: "./media/characters/goddess-elizabeth/foot.svg"
  7798. }
  7799. },
  7800. mouth: {
  7801. height: math.unit(6, "feet"),
  7802. name: "Mouth",
  7803. image: {
  7804. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(12, "feet")
  7812. },
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(80, "miles"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(15000, "parsecs")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(5 + 9 / 12, "feet"),
  7829. weight: math.unit(144, "lb"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/kara/front.svg"
  7833. }
  7834. },
  7835. feet: {
  7836. height: math.unit(6 / 6.765, "feet"),
  7837. name: "Kara's Feet",
  7838. rename: true,
  7839. image: {
  7840. source: "./media/characters/kara/feet.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(5 + 9 / 12, "feet")
  7848. },
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(174, "feet"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(18, "feet"),
  7861. weight: math.unit(4050, "lb"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/tyrone/front.svg",
  7865. extra: 2520 / 2402,
  7866. bottom: 0.025
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(18, "feet"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Macro",
  7878. height: math.unit(300, "feet")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(7 + 8 / 12, "feet"),
  7887. weight: math.unit(120, "lb"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/danny/front.svg",
  7891. extra: 1490 / 1350
  7892. }
  7893. },
  7894. back: {
  7895. height: math.unit(7 + 8 / 12, "feet"),
  7896. weight: math.unit(120, "lb"),
  7897. name: "Back",
  7898. image: {
  7899. source: "./media/characters/danny/back.svg",
  7900. extra: 1490 / 1350
  7901. }
  7902. },
  7903. },
  7904. [
  7905. {
  7906. name: "Normal",
  7907. height: math.unit(7 + 8 / 12, "feet"),
  7908. default: true
  7909. },
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(3.5, "inches"),
  7917. weight: math.unit(19, "grams"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/mallow/front.svg",
  7921. extra: 471 / 431
  7922. }
  7923. },
  7924. back: {
  7925. height: math.unit(3.5, "inches"),
  7926. weight: math.unit(19, "grams"),
  7927. name: "Back",
  7928. image: {
  7929. source: "./media/characters/mallow/back.svg",
  7930. extra: 471 / 431
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Normal",
  7937. height: math.unit(3.5, "inches"),
  7938. default: true
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(9, "feet"),
  7947. weight: math.unit(230, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/starry-aqua/front.svg"
  7951. }
  7952. },
  7953. back: {
  7954. height: math.unit(9, "feet"),
  7955. weight: math.unit(230, "kg"),
  7956. name: "Back",
  7957. image: {
  7958. source: "./media/characters/starry-aqua/back.svg"
  7959. }
  7960. },
  7961. hand: {
  7962. height: math.unit(9 * 0.1168, "feet"),
  7963. name: "Hand",
  7964. image: {
  7965. source: "./media/characters/starry-aqua/hand.svg"
  7966. }
  7967. },
  7968. foot: {
  7969. height: math.unit(9 * 0.18, "feet"),
  7970. name: "Foot",
  7971. image: {
  7972. source: "./media/characters/starry-aqua/foot.svg"
  7973. }
  7974. }
  7975. },
  7976. [
  7977. {
  7978. name: "Micro",
  7979. height: math.unit(3, "inches")
  7980. },
  7981. {
  7982. name: "Normal",
  7983. height: math.unit(9, "feet")
  7984. },
  7985. {
  7986. name: "Macro",
  7987. height: math.unit(300, "feet"),
  7988. default: true
  7989. },
  7990. {
  7991. name: "Megamacro",
  7992. height: math.unit(3200, "feet")
  7993. }
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(6, "feet"),
  8001. weight: math.unit(230, "lb"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/luka/front.svg",
  8005. extra: 1,
  8006. bottom: 0.025
  8007. }
  8008. },
  8009. },
  8010. [
  8011. {
  8012. name: "Normal",
  8013. height: math.unit(12 + 8 / 12, "feet"),
  8014. default: true
  8015. },
  8016. {
  8017. name: "Minimacro",
  8018. height: math.unit(20, "feet")
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(250, "feet")
  8023. },
  8024. {
  8025. name: "Megamacro",
  8026. height: math.unit(5, "miles")
  8027. },
  8028. {
  8029. name: "Gigamacro",
  8030. height: math.unit(8000, "miles")
  8031. },
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8036. {
  8037. front: {
  8038. height: math.unit(6, "feet"),
  8039. weight: math.unit(150, "lb"),
  8040. name: "Front",
  8041. image: {
  8042. source: "./media/characters/natalie-nightring/front.svg",
  8043. extra: 1,
  8044. bottom: 0.06
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Uh Oh",
  8051. height: math.unit(0.1, "mm")
  8052. },
  8053. {
  8054. name: "Small",
  8055. height: math.unit(3, "inches")
  8056. },
  8057. {
  8058. name: "Human Scale",
  8059. height: math.unit(6, "feet")
  8060. },
  8061. {
  8062. name: "Librarian",
  8063. height: math.unit(50, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Immense",
  8068. height: math.unit(200, "miles")
  8069. },
  8070. ]
  8071. ))
  8072. characterMakers.push(() => makeCharacter(
  8073. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8074. {
  8075. front: {
  8076. height: math.unit(6, "feet"),
  8077. weight: math.unit(180, "lbs"),
  8078. name: "Front",
  8079. image: {
  8080. source: "./media/characters/danni-rosie/front.svg",
  8081. extra: 1260 / 1128,
  8082. bottom: 0.022
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Micro",
  8089. height: math.unit(2, "inches"),
  8090. default: true
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(5 + 9 / 12, "feet"),
  8099. weight: math.unit(220, "lb"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/samantha-kruse/front.svg",
  8103. extra: (985 / 935),
  8104. bottom: 0.03
  8105. }
  8106. },
  8107. frontUndressed: {
  8108. height: math.unit(5 + 9 / 12, "feet"),
  8109. weight: math.unit(220, "lb"),
  8110. name: "Front (Undressed)",
  8111. image: {
  8112. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8113. extra: (973 / 923),
  8114. bottom: 0.025
  8115. }
  8116. },
  8117. fat: {
  8118. height: math.unit(5 + 9 / 12, "feet"),
  8119. weight: math.unit(900, "lb"),
  8120. name: "Front (Fat)",
  8121. image: {
  8122. source: "./media/characters/samantha-kruse/fat.svg",
  8123. extra: 2688 / 2561
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(5 + 9 / 12, "feet"),
  8131. default: true
  8132. }
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8137. {
  8138. back: {
  8139. height: math.unit(5 + 4 / 12, "feet"),
  8140. weight: math.unit(4963, "lb"),
  8141. name: "Back",
  8142. image: {
  8143. source: "./media/characters/amelia-rosie/back.svg",
  8144. extra: 1113 / 963,
  8145. bottom: 0.01
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Level 0",
  8152. height: math.unit(5 + 4 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Level 1",
  8156. height: math.unit(164597, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Level 2",
  8161. height: math.unit(956243, "miles")
  8162. },
  8163. {
  8164. name: "Level 3",
  8165. height: math.unit(29421709423, "miles")
  8166. },
  8167. {
  8168. name: "Level 4",
  8169. height: math.unit(154, "lightyears")
  8170. },
  8171. {
  8172. name: "Level 5",
  8173. height: math.unit(4738272, "lightyears")
  8174. },
  8175. {
  8176. name: "Level 6",
  8177. height: math.unit(145787152896, "lightyears")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(5 + 11 / 12, "feet"),
  8186. weight: math.unit(65, "kg"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/rook-kitara/front.svg",
  8190. extra: 1347 / 1274,
  8191. bottom: 0.005
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Totally Unfair",
  8198. height: math.unit(1.8, "mm")
  8199. },
  8200. {
  8201. name: "Lap Rookie",
  8202. height: math.unit(1.4, "feet")
  8203. },
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(5 + 11 / 12, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "How Did This Happen",
  8211. height: math.unit(80, "miles")
  8212. }
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(7, "feet"),
  8220. weight: math.unit(300, "lb"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/pisces/front.svg",
  8224. extra: 2255 / 2115,
  8225. bottom: 0.03
  8226. }
  8227. },
  8228. back: {
  8229. height: math.unit(7, "feet"),
  8230. weight: math.unit(300, "lb"),
  8231. name: "Back",
  8232. image: {
  8233. source: "./media/characters/pisces/back.svg",
  8234. extra: 2146 / 2055,
  8235. bottom: 0.04
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(7, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Swimming Pool",
  8247. height: math.unit(12.2, "meters")
  8248. },
  8249. {
  8250. name: "Olympic Swimming Pool",
  8251. height: math.unit(56.3, "meters")
  8252. },
  8253. {
  8254. name: "Lake Superior",
  8255. height: math.unit(93900, "meters")
  8256. },
  8257. {
  8258. name: "Mediterranean Sea",
  8259. height: math.unit(644457, "meters")
  8260. },
  8261. {
  8262. name: "World's Oceans",
  8263. height: math.unit(4567491, "meters")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(2.3, "meters"),
  8272. weight: math.unit(120, "kg"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/zelas/front.svg"
  8276. }
  8277. },
  8278. side: {
  8279. height: math.unit(2.3, "meters"),
  8280. weight: math.unit(120, "kg"),
  8281. name: "Side",
  8282. image: {
  8283. source: "./media/characters/zelas/side.svg"
  8284. }
  8285. },
  8286. back: {
  8287. height: math.unit(2.3, "meters"),
  8288. weight: math.unit(120, "kg"),
  8289. name: "Back",
  8290. image: {
  8291. source: "./media/characters/zelas/back.svg"
  8292. }
  8293. },
  8294. foot: {
  8295. height: math.unit(1.116, "feet"),
  8296. name: "Foot",
  8297. image: {
  8298. source: "./media/characters/zelas/foot.svg"
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(2.3, "meters")
  8306. },
  8307. {
  8308. name: "Macro",
  8309. height: math.unit(30, "meters"),
  8310. default: true
  8311. },
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(1, "inch"),
  8319. weight: math.unit(0.21, "grams"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/talbot/front.svg",
  8323. extra: 594 / 544
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Micro",
  8330. height: math.unit(1, "inch"),
  8331. default: true
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8337. {
  8338. front: {
  8339. height: math.unit(3 + 3 / 12, "feet"),
  8340. weight: math.unit(51.8, "lb"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/fliss/front.svg",
  8344. extra: 840 / 640
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Teeny Tiny",
  8351. height: math.unit(1, "mm")
  8352. },
  8353. {
  8354. name: "Small",
  8355. height: math.unit(1, "inch"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Standard Sylveon",
  8360. height: math.unit(3 + 3 / 12, "feet")
  8361. },
  8362. {
  8363. name: "Large Nuisance",
  8364. height: math.unit(33, "feet")
  8365. },
  8366. {
  8367. name: "City Filler",
  8368. height: math.unit(3000, "feet")
  8369. },
  8370. {
  8371. name: "New Horizon",
  8372. height: math.unit(6000, "miles")
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(5, "cm"),
  8381. weight: math.unit(1.94, "g"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/fleta/front.svg",
  8385. extra: 835 / 803
  8386. }
  8387. },
  8388. back: {
  8389. height: math.unit(5, "cm"),
  8390. weight: math.unit(1.94, "g"),
  8391. name: "Back",
  8392. image: {
  8393. source: "./media/characters/fleta/back.svg",
  8394. extra: 835 / 803
  8395. }
  8396. },
  8397. },
  8398. [
  8399. {
  8400. name: "Micro",
  8401. height: math.unit(5, "cm"),
  8402. default: true
  8403. },
  8404. ]
  8405. ))
  8406. characterMakers.push(() => makeCharacter(
  8407. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8408. {
  8409. front: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(225, "lb"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/dominic/front.svg",
  8415. extra: 1770 / 1620,
  8416. bottom: 0.025
  8417. }
  8418. },
  8419. back: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(225, "lb"),
  8422. name: "Back",
  8423. image: {
  8424. source: "./media/characters/dominic/back.svg",
  8425. extra: 1745 / 1620,
  8426. bottom: 0.065
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Nano",
  8433. height: math.unit(0.1, "mm")
  8434. },
  8435. {
  8436. name: "Micro-",
  8437. height: math.unit(1, "mm")
  8438. },
  8439. {
  8440. name: "Micro",
  8441. height: math.unit(4, "inches")
  8442. },
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(6 + 4 / 12, "feet"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(115, "feet")
  8451. },
  8452. {
  8453. name: "Macro+",
  8454. height: math.unit(955, "feet")
  8455. },
  8456. {
  8457. name: "Megamacro",
  8458. height: math.unit(8990, "feet")
  8459. },
  8460. {
  8461. name: "Gigmacro",
  8462. height: math.unit(9310, "miles")
  8463. },
  8464. {
  8465. name: "Teramacro",
  8466. height: math.unit(1567005010, "miles")
  8467. },
  8468. {
  8469. name: "Examacro",
  8470. height: math.unit(1425, "parsecs")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8476. {
  8477. front: {
  8478. height: math.unit(400, "feet"),
  8479. weight: math.unit(44444444, "lb"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/major-colonel/front.svg"
  8483. }
  8484. },
  8485. back: {
  8486. height: math.unit(400, "feet"),
  8487. weight: math.unit(44444444, "lb"),
  8488. name: "Back",
  8489. image: {
  8490. source: "./media/characters/major-colonel/back.svg"
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(400, "feet"),
  8498. default: true
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8504. {
  8505. catFront: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(120, "lb"),
  8508. name: "Front (Cat Side)",
  8509. image: {
  8510. source: "./media/characters/axel-lycan/cat-front.svg",
  8511. extra: 430 / 402,
  8512. bottom: 43 / 472.35
  8513. }
  8514. },
  8515. catBack: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(120, "lb"),
  8518. name: "Back (Cat Side)",
  8519. image: {
  8520. source: "./media/characters/axel-lycan/cat-back.svg",
  8521. extra: 447 / 419,
  8522. bottom: 23.3 / 469
  8523. }
  8524. },
  8525. wolfFront: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(120, "lb"),
  8528. name: "Front (Wolf Side)",
  8529. image: {
  8530. source: "./media/characters/axel-lycan/wolf-front.svg",
  8531. extra: 485 / 456,
  8532. bottom: 19 / 504
  8533. }
  8534. },
  8535. wolfBack: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(120, "lb"),
  8538. name: "Back (Wolf Side)",
  8539. image: {
  8540. source: "./media/characters/axel-lycan/wolf-back.svg",
  8541. extra: 475 / 438,
  8542. bottom: 39.2 / 514
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Macro",
  8549. height: math.unit(1, "km"),
  8550. default: true
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(5 + 9 / 12, "feet"),
  8559. weight: math.unit(175, "lb"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/vanrel-hyena/front.svg",
  8563. extra: 1086 / 1010,
  8564. bottom: 0.04
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(5 + 9 / 12, "feet"),
  8572. default: true
  8573. },
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(6, "feet"),
  8581. weight: math.unit(103, "lb"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/abbott-absol/front.svg",
  8585. extra: 2010 / 1842
  8586. }
  8587. },
  8588. },
  8589. [
  8590. {
  8591. name: "Megamicro",
  8592. height: math.unit(0.1, "mm")
  8593. },
  8594. {
  8595. name: "Micro",
  8596. height: math.unit(1, "inch")
  8597. },
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(6, "feet"),
  8601. default: true
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(264, "lb"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/hector/front.svg",
  8614. extra: 2280 / 2130,
  8615. bottom: 0.07
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(12.25, "foot"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(160, "feet")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(150, "lb"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/sal/front.svg",
  8640. extra: 1846 / 1699,
  8641. bottom: 0.04
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Megamacro",
  8648. height: math.unit(10, "miles"),
  8649. default: true
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8655. {
  8656. front: {
  8657. height: math.unit(3, "meters"),
  8658. weight: math.unit(450, "kg"),
  8659. name: "front",
  8660. image: {
  8661. source: "./media/characters/ranger/front.svg",
  8662. extra: 2401 / 2243,
  8663. bottom: 0.05
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(3, "meters"),
  8671. default: true
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(14, "feet"),
  8680. weight: math.unit(800, "kg"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/theresa/front.svg",
  8684. extra: 3575 / 3346,
  8685. bottom: 0.03
  8686. }
  8687. },
  8688. },
  8689. [
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(14, "feet"),
  8693. default: true
  8694. },
  8695. ]
  8696. ))
  8697. characterMakers.push(() => makeCharacter(
  8698. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8699. {
  8700. front: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(3, "kg"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/ine/front.svg",
  8706. extra: 678 / 539,
  8707. bottom: 0.023
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(2.265, "feet"),
  8715. default: true
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(5, "feet"),
  8724. weight: math.unit(30, "kg"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/vial/front.svg",
  8728. extra: 1365 / 1277,
  8729. bottom: 0.04
  8730. }
  8731. },
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(5, "feet"),
  8737. default: true
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8743. {
  8744. side: {
  8745. height: math.unit(3.4, "meters"),
  8746. weight: math.unit(1000, "lb"),
  8747. name: "Side",
  8748. image: {
  8749. source: "./media/characters/rovoska/side.svg",
  8750. extra: 4403 / 1515
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(3.4, "meters"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(8, "feet"),
  8767. weight: math.unit(315, "lb"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/gunner-rotthbauer/front.svg"
  8771. }
  8772. },
  8773. back: {
  8774. height: math.unit(8, "feet"),
  8775. weight: math.unit(315, "lb"),
  8776. name: "Back",
  8777. image: {
  8778. source: "./media/characters/gunner-rotthbauer/back.svg"
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Micro",
  8785. height: math.unit(3.5, "inches")
  8786. },
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(8, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(250, "feet")
  8795. },
  8796. {
  8797. name: "Megamacro",
  8798. height: math.unit(1, "AU")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(5 + 5 / 12, "feet"),
  8807. weight: math.unit(140, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/allatia/front.svg",
  8811. extra: 1227 / 1180,
  8812. bottom: 0.027
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5 + 5 / 12, "feet")
  8820. },
  8821. {
  8822. name: "Macro",
  8823. height: math.unit(250, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Megamacro",
  8828. height: math.unit(8, "miles")
  8829. }
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(120, "lb"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/tene/front.svg",
  8841. extra: 1728 / 1578,
  8842. bottom: 0.022
  8843. }
  8844. },
  8845. stomping: {
  8846. height: math.unit(2.025, "meters"),
  8847. weight: math.unit(120, "lb"),
  8848. name: "Stomping",
  8849. image: {
  8850. source: "./media/characters/tene/stomping.svg",
  8851. extra: 938 / 873,
  8852. bottom: 0.01
  8853. }
  8854. },
  8855. sitting: {
  8856. height: math.unit(1, "meter"),
  8857. weight: math.unit(120, "lb"),
  8858. name: "Sitting",
  8859. image: {
  8860. source: "./media/characters/tene/sitting.svg",
  8861. extra: 437 / 415,
  8862. bottom: 0.1
  8863. }
  8864. },
  8865. feral: {
  8866. height: math.unit(3.9, "feet"),
  8867. weight: math.unit(250, "lb"),
  8868. name: "Feral",
  8869. image: {
  8870. source: "./media/characters/tene/feral.svg",
  8871. extra: 717 / 458,
  8872. bottom: 0.179
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Normal",
  8879. height: math.unit(6, "feet")
  8880. },
  8881. {
  8882. name: "Macro",
  8883. height: math.unit(300, "feet"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Megamacro",
  8888. height: math.unit(5, "miles")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8894. {
  8895. side: {
  8896. height: math.unit(6, "feet"),
  8897. name: "Side",
  8898. image: {
  8899. source: "./media/characters/evander/side.svg",
  8900. extra: 877 / 477
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(0.83, "meters"),
  8908. default: true
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(12, "feet"),
  8917. weight: math.unit(1000, "lb"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8921. extra: 1762 / 1611
  8922. }
  8923. },
  8924. back: {
  8925. height: math.unit(12, "feet"),
  8926. weight: math.unit(1000, "lb"),
  8927. name: "Back",
  8928. image: {
  8929. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8930. extra: 1762 / 1611
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(12, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Kaiju",
  8942. height: math.unit(150, "feet")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(6, "feet"),
  8951. weight: math.unit(150, "lb"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/zero-alurus/front.svg"
  8955. }
  8956. },
  8957. back: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(150, "lb"),
  8960. name: "Back",
  8961. image: {
  8962. source: "./media/characters/zero-alurus/back.svg"
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(5 + 10 / 12, "feet")
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(60, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Macro+",
  8978. height: math.unit(450, "feet")
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(200, "lb"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/mega-shi/front.svg",
  8991. extra: 1279 / 1250,
  8992. bottom: 0.02
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(200, "lb"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/mega-shi/back.svg",
  9001. extra: 1279 / 1250,
  9002. bottom: 0.02
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Micro",
  9009. height: math.unit(16 + 6 / 12, "feet")
  9010. },
  9011. {
  9012. name: "Third Dimension",
  9013. height: math.unit(40, "meters")
  9014. },
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(660, "feet"),
  9018. default: true
  9019. },
  9020. {
  9021. name: "Megamacro",
  9022. height: math.unit(10, "miles")
  9023. },
  9024. {
  9025. name: "Planetary Launch",
  9026. height: math.unit(500, "miles")
  9027. },
  9028. {
  9029. name: "Interstellar",
  9030. height: math.unit(1e9, "miles")
  9031. },
  9032. {
  9033. name: "Leaving the Universe",
  9034. height: math.unit(1, "gigaparsec")
  9035. },
  9036. {
  9037. name: "Travelling Universes",
  9038. height: math.unit(30e15, "parsecs")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(6, "feet"),
  9047. weight: math.unit(150, "lb"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/odyssey/front.svg",
  9051. extra: 1782 / 1582,
  9052. bottom: 0.01
  9053. }
  9054. },
  9055. side: {
  9056. height: math.unit(5.7, "feet"),
  9057. weight: math.unit(140, "lb"),
  9058. name: "Side",
  9059. image: {
  9060. source: "./media/characters/odyssey/side.svg",
  9061. extra: 6462 / 5700
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(5 + 4 / 12, "feet")
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(1, "km")
  9073. },
  9074. {
  9075. name: "Megamacro",
  9076. height: math.unit(3000, "km")
  9077. },
  9078. {
  9079. name: "Gigamacro",
  9080. height: math.unit(1, "AU"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Omniversal",
  9085. height: math.unit(100e14, "lightyears")
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(6, "feet"),
  9094. weight: math.unit(300, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/mekuto/front.svg",
  9098. extra: 921 / 832,
  9099. bottom: 0.03
  9100. }
  9101. },
  9102. hand: {
  9103. height: math.unit(6 / 10.24, "feet"),
  9104. name: "Hand",
  9105. image: {
  9106. source: "./media/characters/mekuto/hand.svg"
  9107. }
  9108. },
  9109. foot: {
  9110. height: math.unit(6 / 5.05, "feet"),
  9111. name: "Foot",
  9112. image: {
  9113. source: "./media/characters/mekuto/foot.svg"
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Minimicro",
  9120. height: math.unit(0.2, "inches")
  9121. },
  9122. {
  9123. name: "Micro",
  9124. height: math.unit(1.5, "inches")
  9125. },
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(5 + 11 / 12, "feet"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Minimacro",
  9133. height: math.unit(17 + 9 / 12, "feet")
  9134. },
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(177.5, "feet")
  9138. },
  9139. {
  9140. name: "Megamacro",
  9141. height: math.unit(152, "miles")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6.5, "inches"),
  9150. weight: math.unit(13, "oz"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/dafydd-tomos/front.svg",
  9154. extra: 2990 / 2603,
  9155. bottom: 0.03
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Micro",
  9162. height: math.unit(6.5, "inches"),
  9163. default: true
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/splinter/front.svg",
  9176. extra: 2990 / 2882,
  9177. bottom: 0.04
  9178. }
  9179. },
  9180. back: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(150, "lb"),
  9183. name: "Back",
  9184. image: {
  9185. source: "./media/characters/splinter/back.svg",
  9186. extra: 2990 / 2882,
  9187. bottom: 0.04
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(6, "feet")
  9195. },
  9196. {
  9197. name: "Macro",
  9198. height: math.unit(230, "meters"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(4 + 10 / 12, "feet"),
  9208. weight: math.unit(480, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/snow-gabumon/front.svg",
  9212. extra: 1140 / 963,
  9213. bottom: 0.058
  9214. }
  9215. },
  9216. back: {
  9217. height: math.unit(4 + 10 / 12, "feet"),
  9218. weight: math.unit(480, "lb"),
  9219. name: "Back",
  9220. image: {
  9221. source: "./media/characters/snow-gabumon/back.svg",
  9222. extra: 1115 / 962,
  9223. bottom: 0.041
  9224. }
  9225. },
  9226. frontUndresed: {
  9227. height: math.unit(4 + 10 / 12, "feet"),
  9228. weight: math.unit(480, "lb"),
  9229. name: "Front (Undressed)",
  9230. image: {
  9231. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9232. extra: 1061 / 960,
  9233. bottom: 0.045
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inch")
  9241. },
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(4 + 10 / 12, "feet"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(200, "feet")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(120, "miles")
  9254. },
  9255. {
  9256. name: "Gigamacro",
  9257. height: math.unit(9800, "miles")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(1.7, "meters"),
  9266. weight: math.unit(140, "lb"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/moody/front.svg",
  9270. extra: 3226 / 3007,
  9271. bottom: 0.087
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Micro",
  9278. height: math.unit(1, "mm")
  9279. },
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(1.7, "meters"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(80, "meters")
  9288. },
  9289. {
  9290. name: "Macro+",
  9291. height: math.unit(500, "meters")
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(150, "lb"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/zyas/front.svg",
  9304. extra: 1180 / 1120,
  9305. bottom: 0.045
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(10, "feet"),
  9313. default: true
  9314. },
  9315. {
  9316. name: "Macro",
  9317. height: math.unit(500, "feet")
  9318. },
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(5, "miles")
  9322. },
  9323. {
  9324. name: "Teramacro",
  9325. height: math.unit(150000, "miles")
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9331. {
  9332. front: {
  9333. height: math.unit(6, "feet"),
  9334. weight: math.unit(150, "lb"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/cuon/front.svg",
  9338. extra: 1390 / 1320,
  9339. bottom: 0.008
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Micro",
  9346. height: math.unit(3, "inches")
  9347. },
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(18 + 9 / 12, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Macro",
  9355. height: math.unit(360, "feet")
  9356. },
  9357. {
  9358. name: "Megamacro",
  9359. height: math.unit(360, "miles")
  9360. },
  9361. ]
  9362. ))
  9363. characterMakers.push(() => makeCharacter(
  9364. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9365. {
  9366. front: {
  9367. height: math.unit(2.4, "meters"),
  9368. weight: math.unit(70, "kg"),
  9369. name: "Front",
  9370. image: {
  9371. source: "./media/characters/nyanuxk/front.svg",
  9372. extra: 1172 / 1084,
  9373. bottom: 0.065
  9374. }
  9375. },
  9376. side: {
  9377. height: math.unit(2.4, "meters"),
  9378. weight: math.unit(70, "kg"),
  9379. name: "Side",
  9380. image: {
  9381. source: "./media/characters/nyanuxk/side.svg",
  9382. extra: 1190 / 1132,
  9383. bottom: 0.007
  9384. }
  9385. },
  9386. back: {
  9387. height: math.unit(2.4, "meters"),
  9388. weight: math.unit(70, "kg"),
  9389. name: "Back",
  9390. image: {
  9391. source: "./media/characters/nyanuxk/back.svg",
  9392. extra: 1200 / 1141,
  9393. bottom: 0.015
  9394. }
  9395. },
  9396. foot: {
  9397. height: math.unit(0.52, "meters"),
  9398. name: "Foot",
  9399. image: {
  9400. source: "./media/characters/nyanuxk/foot.svg"
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Micro",
  9407. height: math.unit(2, "cm")
  9408. },
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(2.4, "meters"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Smaller Macro",
  9416. height: math.unit(120, "meters")
  9417. },
  9418. {
  9419. name: "Bigger Macro",
  9420. height: math.unit(1.2, "km")
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(15, "kilometers")
  9425. },
  9426. {
  9427. name: "Gigamacro",
  9428. height: math.unit(2000, "km")
  9429. },
  9430. {
  9431. name: "Teramacro",
  9432. height: math.unit(500000, "km")
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9438. {
  9439. side: {
  9440. height: math.unit(6, "feet"),
  9441. name: "Side",
  9442. image: {
  9443. source: "./media/characters/ailbhe/side.svg",
  9444. extra: 757 / 464,
  9445. bottom: 0.041
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(1.07, "meters"),
  9453. default: true
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(120, "kg"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/zevulfius/front.svg",
  9466. extra: 965 / 903
  9467. }
  9468. },
  9469. side: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(120, "kg"),
  9472. name: "Side",
  9473. image: {
  9474. source: "./media/characters/zevulfius/side.svg",
  9475. extra: 939 / 900
  9476. }
  9477. },
  9478. back: {
  9479. height: math.unit(6, "feet"),
  9480. weight: math.unit(120, "kg"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/zevulfius/back.svg",
  9484. extra: 918 / 854,
  9485. bottom: 0.005
  9486. }
  9487. },
  9488. foot: {
  9489. height: math.unit(6 / 3.72, "feet"),
  9490. name: "Foot",
  9491. image: {
  9492. source: "./media/characters/zevulfius/foot.svg"
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Macro",
  9499. height: math.unit(750, "meters")
  9500. },
  9501. {
  9502. name: "Megamacro",
  9503. height: math.unit(20, "km"),
  9504. default: true
  9505. },
  9506. {
  9507. name: "Gigamacro",
  9508. height: math.unit(2000, "km")
  9509. },
  9510. {
  9511. name: "Teramacro",
  9512. height: math.unit(250000, "km")
  9513. },
  9514. ]
  9515. ))
  9516. characterMakers.push(() => makeCharacter(
  9517. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9518. {
  9519. front: {
  9520. height: math.unit(100, "feet"),
  9521. weight: math.unit(350, "kg"),
  9522. name: "Front",
  9523. image: {
  9524. source: "./media/characters/rikes/front.svg",
  9525. extra: 1565 / 1483,
  9526. bottom: 0.017
  9527. }
  9528. },
  9529. },
  9530. [
  9531. {
  9532. name: "Macro",
  9533. height: math.unit(100, "feet"),
  9534. default: true
  9535. },
  9536. ]
  9537. ))
  9538. characterMakers.push(() => makeCharacter(
  9539. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9540. {
  9541. anthro: {
  9542. height: math.unit(8, "feet"),
  9543. weight: math.unit(120, "kg"),
  9544. name: "Anthro",
  9545. image: {
  9546. source: "./media/characters/adam-silver-mane/anthro.svg",
  9547. extra: 5743 / 5339,
  9548. bottom: 0.07
  9549. }
  9550. },
  9551. taur: {
  9552. height: math.unit(16, "feet"),
  9553. weight: math.unit(1500, "kg"),
  9554. name: "Taur",
  9555. image: {
  9556. source: "./media/characters/adam-silver-mane/taur.svg",
  9557. extra: 1713 / 1571,
  9558. bottom: 0.01
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(8, "feet")
  9566. },
  9567. {
  9568. name: "Minimacro",
  9569. height: math.unit(80, "feet")
  9570. },
  9571. {
  9572. name: "Macro",
  9573. height: math.unit(800, "feet"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Megamacro",
  9578. height: math.unit(8000, "feet")
  9579. },
  9580. {
  9581. name: "Gigamacro",
  9582. height: math.unit(800, "miles")
  9583. },
  9584. {
  9585. name: "Teramacro",
  9586. height: math.unit(80000, "miles")
  9587. },
  9588. {
  9589. name: "Celestial",
  9590. height: math.unit(8e6, "miles")
  9591. },
  9592. {
  9593. name: "Star Dragon",
  9594. height: math.unit(800000, "parsecs")
  9595. },
  9596. {
  9597. name: "Godly",
  9598. height: math.unit(800, "teraparsecs")
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(150, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/ky'owin/front.svg",
  9611. extra: 3888 / 3068,
  9612. bottom: 0.015
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(6 + 8 / 12, "feet")
  9620. },
  9621. {
  9622. name: "Large",
  9623. height: math.unit(68, "feet")
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(132, "feet")
  9628. },
  9629. {
  9630. name: "Macro+",
  9631. height: math.unit(340, "feet")
  9632. },
  9633. {
  9634. name: "Macro++",
  9635. height: math.unit(680, "feet"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Megamacro",
  9640. height: math.unit(1, "mile")
  9641. },
  9642. {
  9643. name: "Megamacro+",
  9644. height: math.unit(10, "miles")
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(4, "feet"),
  9653. weight: math.unit(50, "lb"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/mal/front.svg",
  9657. extra: 785 / 724,
  9658. bottom: 0.07
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Micro",
  9665. height: math.unit(4, "inches")
  9666. },
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(4, "feet"),
  9670. default: true
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(200, "feet")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(6, "feet"),
  9683. weight: math.unit(150, "lb"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/jordan-deware/front.svg",
  9687. extra: 1191 / 1012
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Nano",
  9694. height: math.unit(0.01, "mm")
  9695. },
  9696. {
  9697. name: "Minimicro",
  9698. height: math.unit(1, "mm")
  9699. },
  9700. {
  9701. name: "Micro",
  9702. height: math.unit(0.5, "inches")
  9703. },
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(4, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Minimacro",
  9711. height: math.unit(40, "meters")
  9712. },
  9713. {
  9714. name: "Small Macro",
  9715. height: math.unit(400, "meters")
  9716. },
  9717. {
  9718. name: "Macro",
  9719. height: math.unit(4, "miles")
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(40, "miles")
  9724. },
  9725. {
  9726. name: "Megamacro+",
  9727. height: math.unit(400, "miles")
  9728. },
  9729. {
  9730. name: "Gigamacro",
  9731. height: math.unit(400000, "miles")
  9732. },
  9733. ]
  9734. ))
  9735. characterMakers.push(() => makeCharacter(
  9736. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9737. {
  9738. side: {
  9739. height: math.unit(6, "feet"),
  9740. weight: math.unit(150, "lb"),
  9741. name: "Side",
  9742. image: {
  9743. source: "./media/characters/kimiko/side.svg",
  9744. extra: 600 / 358
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(15, "feet"),
  9752. default: true
  9753. },
  9754. {
  9755. name: "Macro",
  9756. height: math.unit(220, "feet")
  9757. },
  9758. {
  9759. name: "Macro+",
  9760. height: math.unit(1450, "feet")
  9761. },
  9762. {
  9763. name: "Megamacro",
  9764. height: math.unit(11500, "feet")
  9765. },
  9766. {
  9767. name: "Gigamacro",
  9768. height: math.unit(9500, "miles")
  9769. },
  9770. {
  9771. name: "Teramacro",
  9772. height: math.unit(2208005005, "miles")
  9773. },
  9774. {
  9775. name: "Examacro",
  9776. height: math.unit(2750, "parsecs")
  9777. },
  9778. {
  9779. name: "Zettamacro",
  9780. height: math.unit(101500, "parsecs")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9786. {
  9787. front: {
  9788. height: math.unit(6, "feet"),
  9789. weight: math.unit(70, "kg"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/andrew-sleepy/front.svg"
  9793. }
  9794. },
  9795. side: {
  9796. height: math.unit(6, "feet"),
  9797. weight: math.unit(70, "kg"),
  9798. name: "Side",
  9799. image: {
  9800. source: "./media/characters/andrew-sleepy/side.svg"
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Micro",
  9807. height: math.unit(1, "mm"),
  9808. default: true
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(6, "feet"),
  9817. weight: math.unit(150, "lb"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/judio/front.svg",
  9821. extra: 1258 / 1110
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 6 / 12, "feet")
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(1000, "feet"),
  9833. default: true
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(10, "miles")
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(68, "kg"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/nomaxice/front.svg",
  9850. extra: 1498 / 1073,
  9851. bottom: 0.075
  9852. }
  9853. },
  9854. foot: {
  9855. height: math.unit(1.1, "feet"),
  9856. name: "Foot",
  9857. image: {
  9858. source: "./media/characters/nomaxice/foot.svg"
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Micro",
  9865. height: math.unit(8, "cm")
  9866. },
  9867. {
  9868. name: "Norm",
  9869. height: math.unit(1.82, "m")
  9870. },
  9871. {
  9872. name: "Norm+",
  9873. height: math.unit(8.8, "feet")
  9874. },
  9875. {
  9876. name: "Big",
  9877. height: math.unit(8, "meters"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(18, "meters")
  9883. },
  9884. {
  9885. name: "Macro+",
  9886. height: math.unit(88, "meters")
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9892. {
  9893. front: {
  9894. height: math.unit(12, "feet"),
  9895. weight: math.unit(1.5, "tons"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/dydros/front.svg",
  9899. extra: 863 / 800,
  9900. bottom: 0.015
  9901. }
  9902. },
  9903. back: {
  9904. height: math.unit(12, "feet"),
  9905. weight: math.unit(1.5, "tons"),
  9906. name: "Back",
  9907. image: {
  9908. source: "./media/characters/dydros/back.svg",
  9909. extra: 900 / 843,
  9910. bottom: 0.005
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(12, "feet"),
  9918. default: true
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(100, "kg"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/riggi/front.svg",
  9931. extra: 5787 / 5303
  9932. }
  9933. },
  9934. hyper: {
  9935. height: math.unit(6 * 5 / 3, "feet"),
  9936. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9937. name: "Hyper",
  9938. image: {
  9939. source: "./media/characters/riggi/hyper.svg",
  9940. extra: 3595 / 3485
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Small Macro",
  9947. height: math.unit(50, "feet")
  9948. },
  9949. {
  9950. name: "Default",
  9951. height: math.unit(200, "feet"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Loom",
  9956. height: math.unit(10000, "feet")
  9957. },
  9958. {
  9959. name: "Cruising Altitude",
  9960. height: math.unit(30000, "feet")
  9961. },
  9962. {
  9963. name: "Megamacro",
  9964. height: math.unit(100, "miles")
  9965. },
  9966. {
  9967. name: "Continent Sized",
  9968. height: math.unit(2800, "miles")
  9969. },
  9970. {
  9971. name: "Earth Sized",
  9972. height: math.unit(8000, "miles")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(250, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/alexi/front.svg",
  9985. extra: 3483 / 3291,
  9986. bottom: 0.04
  9987. }
  9988. },
  9989. back: {
  9990. height: math.unit(6, "feet"),
  9991. weight: math.unit(250, "lb"),
  9992. name: "Back",
  9993. image: {
  9994. source: "./media/characters/alexi/back.svg",
  9995. extra: 3533 / 3356,
  9996. bottom: 0.021
  9997. }
  9998. },
  9999. frontTransforming: {
  10000. height: math.unit(8.58, "feet"),
  10001. weight: math.unit(1300, "lb"),
  10002. name: "Transforming",
  10003. image: {
  10004. source: "./media/characters/alexi/front-transforming.svg",
  10005. extra: 437 / 409,
  10006. bottom: 19 / 458.66
  10007. }
  10008. },
  10009. frontTransformed: {
  10010. height: math.unit(12.5, "feet"),
  10011. weight: math.unit(4000, "lb"),
  10012. name: "Transformed",
  10013. image: {
  10014. source: "./media/characters/alexi/front-transformed.svg",
  10015. extra: 639 / 614,
  10016. bottom: 30.55 / 671
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(3, "meters"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Minimacro",
  10028. height: math.unit(30, "meters")
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(500, "meters")
  10033. },
  10034. {
  10035. name: "Megamacro",
  10036. height: math.unit(9000, "km")
  10037. },
  10038. {
  10039. name: "Teramacro",
  10040. height: math.unit(384000, "km")
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10046. {
  10047. front: {
  10048. height: math.unit(6, "feet"),
  10049. weight: math.unit(150, "lb"),
  10050. name: "Front",
  10051. image: {
  10052. source: "./media/characters/kayroo/front.svg",
  10053. extra: 1153 / 1038,
  10054. bottom: 0.06
  10055. }
  10056. },
  10057. foot: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Foot",
  10061. image: {
  10062. source: "./media/characters/kayroo/foot.svg"
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(8, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Minimacro",
  10074. height: math.unit(250, "feet")
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(2800, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(5200, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(27000, "feet")
  10087. },
  10088. {
  10089. name: "Omega",
  10090. height: math.unit(45000, "feet")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(18, "feet"),
  10099. weight: math.unit(5800, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/rhys/front.svg",
  10103. extra: 3386 / 3090,
  10104. bottom: 0.07
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(18, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Working Size",
  10116. height: math.unit(200, "feet")
  10117. },
  10118. {
  10119. name: "Demolition Size",
  10120. height: math.unit(2000, "feet")
  10121. },
  10122. {
  10123. name: "Maximum Licensed Size",
  10124. height: math.unit(5, "miles")
  10125. },
  10126. {
  10127. name: "Maximum Observed Size",
  10128. height: math.unit(10, "yottameters")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(250, "lb"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/toto/front.svg",
  10141. extra: 527 / 479,
  10142. bottom: 0.05
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(3, "feet")
  10150. },
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(10, "feet")
  10154. },
  10155. {
  10156. name: "Macro",
  10157. height: math.unit(150, "feet"),
  10158. default: true
  10159. },
  10160. {
  10161. name: "Megamacro",
  10162. height: math.unit(1200, "feet")
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "King", species: ["lion"], tags: ["anthro"] },
  10168. {
  10169. back: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(150, "lb"),
  10172. name: "Back",
  10173. image: {
  10174. source: "./media/characters/king/back.svg"
  10175. }
  10176. },
  10177. },
  10178. [
  10179. {
  10180. name: "Micro",
  10181. height: math.unit(2, "inches")
  10182. },
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(8, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(200, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Megamacro",
  10194. height: math.unit(50, "miles")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10200. {
  10201. anthro: {
  10202. height: math.unit(6 + 5 / 12, "feet"),
  10203. weight: math.unit(280, "lb"),
  10204. name: "Anthro",
  10205. image: {
  10206. source: "./media/characters/cordite/anthro.svg",
  10207. extra: 1986 / 1905,
  10208. bottom: 0.025
  10209. }
  10210. },
  10211. feral: {
  10212. height: math.unit(2, "feet"),
  10213. weight: math.unit(90, "lb"),
  10214. name: "Feral",
  10215. image: {
  10216. source: "./media/characters/cordite/feral.svg",
  10217. extra: 1260 / 755,
  10218. bottom: 0.05
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(6 + 5 / 12, "feet"),
  10226. default: true
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/pianostrong/front.svg",
  10239. extra: 6577 / 6254,
  10240. bottom: 0.02
  10241. }
  10242. },
  10243. side: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(150, "lb"),
  10246. name: "Side",
  10247. image: {
  10248. source: "./media/characters/pianostrong/side.svg",
  10249. extra: 6106 / 5730
  10250. }
  10251. },
  10252. back: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Back",
  10256. image: {
  10257. source: "./media/characters/pianostrong/back.svg",
  10258. extra: 6085 / 5733,
  10259. bottom: 0.01
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(100, "feet")
  10267. },
  10268. {
  10269. name: "Macro+",
  10270. height: math.unit(300, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Macro++",
  10275. height: math.unit(1000, "feet")
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10281. {
  10282. front: {
  10283. height: math.unit(6, "feet"),
  10284. weight: math.unit(150, "lb"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/kona/front.svg",
  10288. extra: 2960 / 2629,
  10289. bottom: 0.005
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Normal",
  10296. height: math.unit(11 + 8 / 12, "feet")
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(850, "feet"),
  10301. default: true
  10302. },
  10303. {
  10304. name: "Macro+",
  10305. height: math.unit(1.5, "km"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Megamacro",
  10310. height: math.unit(80, "miles")
  10311. },
  10312. {
  10313. name: "Gigamacro",
  10314. height: math.unit(3500, "miles")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10320. {
  10321. side: {
  10322. height: math.unit(1.9, "meters"),
  10323. weight: math.unit(326, "kg"),
  10324. name: "Side",
  10325. image: {
  10326. source: "./media/characters/levi/side.svg",
  10327. extra: 1704 / 1334,
  10328. bottom: 0.02
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(1.9, "meters"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Macro",
  10340. height: math.unit(20, "meters")
  10341. },
  10342. {
  10343. name: "Macro+",
  10344. height: math.unit(200, "meters")
  10345. },
  10346. {
  10347. name: "Megamacro",
  10348. height: math.unit(2, "km")
  10349. },
  10350. {
  10351. name: "Megamacro+",
  10352. height: math.unit(20, "km")
  10353. },
  10354. {
  10355. name: "Gigamacro",
  10356. height: math.unit(2500, "km")
  10357. },
  10358. {
  10359. name: "Gigamacro+",
  10360. height: math.unit(120000, "km")
  10361. },
  10362. {
  10363. name: "Teramacro",
  10364. height: math.unit(7.77e6, "km")
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10370. {
  10371. front: {
  10372. height: math.unit(6 + 4 / 12, "feet"),
  10373. weight: math.unit(188, "lb"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/bmc/front.svg",
  10377. extra: 1067 / 1022,
  10378. bottom: 0.047
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Human-sized",
  10385. height: math.unit(6 + 4 / 12, "feet")
  10386. },
  10387. {
  10388. name: "Small",
  10389. height: math.unit(250, "feet")
  10390. },
  10391. {
  10392. name: "Normal",
  10393. height: math.unit(1250, "feet"),
  10394. default: true
  10395. },
  10396. {
  10397. name: "Good Day",
  10398. height: math.unit(88, "miles")
  10399. },
  10400. {
  10401. name: "Largest Measured Size",
  10402. height: math.unit(11.2e6, "lightyears")
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(20, "feet"),
  10411. weight: math.unit(2016, "kg"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/sven-the-kaiju/front.svg",
  10415. extra: 1479 / 1449,
  10416. bottom: 0.05
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Fairy",
  10423. height: math.unit(6, "inches")
  10424. },
  10425. {
  10426. name: "Normal",
  10427. height: math.unit(20, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Rampage",
  10432. height: math.unit(200, "feet")
  10433. },
  10434. {
  10435. name: "Archfey Forest Guardian",
  10436. height: math.unit(1, "mile")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(4, "meters"),
  10445. weight: math.unit(2, "tons"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/marik/front.svg",
  10449. extra: 1057 / 1003,
  10450. bottom: 0.08
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Normal",
  10457. height: math.unit(4, "meters"),
  10458. default: true
  10459. },
  10460. {
  10461. name: "Macro",
  10462. height: math.unit(20, "meters")
  10463. },
  10464. {
  10465. name: "Megamacro",
  10466. height: math.unit(50, "km")
  10467. },
  10468. {
  10469. name: "Gigamacro",
  10470. height: math.unit(100, "km")
  10471. },
  10472. {
  10473. name: "Alpha Macro",
  10474. height: math.unit(7.88e7, "yottameters")
  10475. },
  10476. ]
  10477. ))
  10478. characterMakers.push(() => makeCharacter(
  10479. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10480. {
  10481. front: {
  10482. height: math.unit(6, "feet"),
  10483. weight: math.unit(110, "lb"),
  10484. name: "Front",
  10485. image: {
  10486. source: "./media/characters/mel/front.svg",
  10487. extra: 736 / 617,
  10488. bottom: 0.017
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Pico",
  10495. height: math.unit(3, "pm")
  10496. },
  10497. {
  10498. name: "Nano",
  10499. height: math.unit(3, "nm")
  10500. },
  10501. {
  10502. name: "Micro",
  10503. height: math.unit(0.3, "mm"),
  10504. default: true
  10505. },
  10506. {
  10507. name: "Micro+",
  10508. height: math.unit(3, "mm")
  10509. },
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(5 + 10.5 / 12, "feet")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10518. {
  10519. kaiju: {
  10520. height: math.unit(1.75, "meters"),
  10521. weight: math.unit(55, "kg"),
  10522. name: "Kaiju",
  10523. image: {
  10524. source: "./media/characters/lykonous/kaiju.svg",
  10525. extra: 1055 / 946,
  10526. bottom: 0.135
  10527. }
  10528. },
  10529. },
  10530. [
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(2.5, "meters"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Kaiju Dragon",
  10538. height: math.unit(60, "meters")
  10539. },
  10540. {
  10541. name: "Mega Kaiju",
  10542. height: math.unit(120, "km")
  10543. },
  10544. {
  10545. name: "Giga Kaiju",
  10546. height: math.unit(200, "megameters")
  10547. },
  10548. {
  10549. name: "Terra Kaiju",
  10550. height: math.unit(400, "gigameters")
  10551. },
  10552. {
  10553. name: "Kaiju Dragon God",
  10554. height: math.unit(13000, "exaparsecs")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(150, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/blü/front.svg",
  10567. extra: 1883 / 1564,
  10568. bottom: 0.031
  10569. }
  10570. },
  10571. },
  10572. [
  10573. {
  10574. name: "Normal",
  10575. height: math.unit(13, "feet"),
  10576. default: true
  10577. },
  10578. {
  10579. name: "Big Boi",
  10580. height: math.unit(150, "meters")
  10581. },
  10582. {
  10583. name: "Mini Stomper",
  10584. height: math.unit(300, "meters")
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(1000, "meters")
  10589. },
  10590. {
  10591. name: "Megamacro",
  10592. height: math.unit(11000, "meters")
  10593. },
  10594. {
  10595. name: "Gigamacro",
  10596. height: math.unit(11000, "km")
  10597. },
  10598. {
  10599. name: "Teramacro",
  10600. height: math.unit(420000, "km")
  10601. },
  10602. {
  10603. name: "Examacro",
  10604. height: math.unit(120, "parsecs")
  10605. },
  10606. {
  10607. name: "God Tho",
  10608. height: math.unit(98000000000, "parsecs")
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10614. {
  10615. taurFront: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(200, "lb"),
  10618. name: "Taur (Front)",
  10619. image: {
  10620. source: "./media/characters/scales/taur-front.svg",
  10621. extra: 1,
  10622. bottom: 0.05
  10623. }
  10624. },
  10625. taurBack: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(200, "lb"),
  10628. name: "Taur (Back)",
  10629. image: {
  10630. source: "./media/characters/scales/taur-back.svg",
  10631. extra: 1,
  10632. bottom: 0.08
  10633. }
  10634. },
  10635. anthro: {
  10636. height: math.unit(6 * 7 / 12, "feet"),
  10637. weight: math.unit(100, "lb"),
  10638. name: "Anthro",
  10639. image: {
  10640. source: "./media/characters/scales/anthro.svg",
  10641. extra: 1,
  10642. bottom: 0.06
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(12, "feet"),
  10650. default: true
  10651. },
  10652. ]
  10653. ))
  10654. characterMakers.push(() => makeCharacter(
  10655. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10656. {
  10657. front: {
  10658. height: math.unit(6, "feet"),
  10659. weight: math.unit(150, "lb"),
  10660. name: "Front",
  10661. image: {
  10662. source: "./media/characters/koragos/front.svg",
  10663. extra: 841 / 794,
  10664. bottom: 0.035
  10665. }
  10666. },
  10667. back: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(150, "lb"),
  10670. name: "Back",
  10671. image: {
  10672. source: "./media/characters/koragos/back.svg",
  10673. extra: 841 / 810,
  10674. bottom: 0.022
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(6 + 11 / 12, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(490, "feet")
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(10, "miles")
  10691. },
  10692. {
  10693. name: "Gigamacro",
  10694. height: math.unit(50, "miles")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10700. {
  10701. front: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(250, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/xylrem/front.svg",
  10707. extra: 3323 / 3050,
  10708. bottom: 0.065
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Micro",
  10715. height: math.unit(4, "feet")
  10716. },
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(16, "feet"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(2720, "feet")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(25000, "miles")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(8, "feet"),
  10737. weight: math.unit(250, "kg"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/ikideru/front.svg",
  10741. extra: 930 / 870,
  10742. bottom: 0.087
  10743. }
  10744. },
  10745. back: {
  10746. height: math.unit(8, "feet"),
  10747. weight: math.unit(250, "kg"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/ikideru/back.svg",
  10751. extra: 919 / 852,
  10752. bottom: 0.055
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Rare",
  10759. height: math.unit(8, "feet"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Playful Loom",
  10764. height: math.unit(80, "feet")
  10765. },
  10766. {
  10767. name: "City Leaner",
  10768. height: math.unit(230, "feet")
  10769. },
  10770. {
  10771. name: "Megamacro",
  10772. height: math.unit(2500, "feet")
  10773. },
  10774. {
  10775. name: "Gigamacro",
  10776. height: math.unit(26400, "feet")
  10777. },
  10778. {
  10779. name: "Tectonic Shifter",
  10780. height: math.unit(1.7, "megameters")
  10781. },
  10782. {
  10783. name: "Planet Carer",
  10784. height: math.unit(21, "megameters")
  10785. },
  10786. {
  10787. name: "God",
  10788. height: math.unit(11157.22, "parsecs")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(120, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/neo/front.svg"
  10801. }
  10802. },
  10803. },
  10804. [
  10805. {
  10806. name: "Micro",
  10807. height: math.unit(2, "inches"),
  10808. default: true
  10809. },
  10810. {
  10811. name: "Human Size",
  10812. height: math.unit(5 + 8 / 12, "feet")
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10818. {
  10819. front: {
  10820. height: math.unit(13 + 10 / 12, "feet"),
  10821. weight: math.unit(5320, "lb"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/chauncey-chantz/front.svg",
  10825. extra: 1587 / 1435,
  10826. bottom: 0.02
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(13 + 10 / 12, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Macro",
  10838. height: math.unit(45, "feet")
  10839. },
  10840. {
  10841. name: "Megamacro",
  10842. height: math.unit(250, "miles")
  10843. },
  10844. {
  10845. name: "Planetary",
  10846. height: math.unit(10000, "miles")
  10847. },
  10848. {
  10849. name: "Galactic",
  10850. height: math.unit(40000, "parsecs")
  10851. },
  10852. {
  10853. name: "Universal",
  10854. height: math.unit(1, "yottameter")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/epifox/front.svg",
  10867. extra: 1,
  10868. bottom: 0.075
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Micro",
  10875. height: math.unit(6, "inches")
  10876. },
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(12, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Macro",
  10884. height: math.unit(3810, "feet")
  10885. },
  10886. {
  10887. name: "Megamacro",
  10888. height: math.unit(500, "miles")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(1.8796, "m"),
  10897. weight: math.unit(230, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/colin-t/front.svg",
  10901. extra: 1272 / 1193,
  10902. bottom: 0.07
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Micro",
  10909. height: math.unit(0.571, "meters")
  10910. },
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(1.8796, "meters"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Tall",
  10918. height: math.unit(4, "meters")
  10919. },
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(67.241, "meters")
  10923. },
  10924. {
  10925. name: "Megamacro",
  10926. height: math.unit(371.856, "meters")
  10927. },
  10928. {
  10929. name: "Planetary",
  10930. height: math.unit(12631.5689, "km")
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(1.85, "meters"),
  10939. weight: math.unit(80, "kg"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/matvei/front.svg",
  10943. extra: 614 / 594,
  10944. bottom: 0.01
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(1.85, "meters"),
  10952. default: true
  10953. },
  10954. ]
  10955. ))
  10956. characterMakers.push(() => makeCharacter(
  10957. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10958. {
  10959. front: {
  10960. height: math.unit(5 + 9 / 12, "feet"),
  10961. weight: math.unit(70, "lb"),
  10962. name: "Front",
  10963. image: {
  10964. source: "./media/characters/quincy/front.svg",
  10965. extra: 3041 / 2751
  10966. }
  10967. },
  10968. back: {
  10969. height: math.unit(5 + 9 / 12, "feet"),
  10970. weight: math.unit(70, "lb"),
  10971. name: "Back",
  10972. image: {
  10973. source: "./media/characters/quincy/back.svg",
  10974. extra: 3041 / 2751
  10975. }
  10976. },
  10977. flying: {
  10978. height: math.unit(5 + 4 / 12, "feet"),
  10979. weight: math.unit(70, "lb"),
  10980. name: "Flying",
  10981. image: {
  10982. source: "./media/characters/quincy/flying.svg",
  10983. extra: 1044 / 930
  10984. }
  10985. },
  10986. },
  10987. [
  10988. {
  10989. name: "Micro",
  10990. height: math.unit(3, "cm")
  10991. },
  10992. {
  10993. name: "Normal",
  10994. height: math.unit(5 + 9 / 12, "feet")
  10995. },
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(200, "meters"),
  10999. default: true
  11000. },
  11001. {
  11002. name: "Megamacro",
  11003. height: math.unit(1000, "meters")
  11004. },
  11005. ]
  11006. ))
  11007. characterMakers.push(() => makeCharacter(
  11008. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11009. {
  11010. front: {
  11011. height: math.unit(4 + 7 / 12, "feet"),
  11012. weight: math.unit(150, "lb"),
  11013. name: "Front",
  11014. image: {
  11015. source: "./media/characters/vanrel/front.svg",
  11016. extra: 1,
  11017. bottom: 0.02
  11018. }
  11019. },
  11020. elemental: {
  11021. height: math.unit(3, "feet"),
  11022. weight: math.unit(150, "lb"),
  11023. name: "Elemental",
  11024. image: {
  11025. source: "./media/characters/vanrel/elemental.svg",
  11026. extra: 192.3 / 162.8,
  11027. bottom: 1.79 / 194.17
  11028. }
  11029. },
  11030. side: {
  11031. height: math.unit(4 + 7 / 12, "feet"),
  11032. weight: math.unit(150, "lb"),
  11033. name: "Side",
  11034. image: {
  11035. source: "./media/characters/vanrel/side.svg",
  11036. extra: 1,
  11037. bottom: 0.025
  11038. }
  11039. },
  11040. tome: {
  11041. height: math.unit(1.35, "feet"),
  11042. weight: math.unit(10, "lb"),
  11043. name: "Vanrel's Tome",
  11044. rename: true,
  11045. image: {
  11046. source: "./media/characters/vanrel/tome.svg"
  11047. }
  11048. },
  11049. beans: {
  11050. height: math.unit(0.89, "feet"),
  11051. name: "Beans",
  11052. image: {
  11053. source: "./media/characters/vanrel/beans.svg"
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(4 + 7 / 12, "feet"),
  11061. default: true
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(7 + 5 / 12, "feet"),
  11070. weight: math.unit(150, "lb"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/kuiper-vanrel/front.svg",
  11074. extra: 1118 / 1068,
  11075. bottom: 0.09
  11076. }
  11077. },
  11078. foot: {
  11079. height: math.unit(0.55, "meters"),
  11080. name: "Foot",
  11081. image: {
  11082. source: "./media/characters/kuiper-vanrel/foot.svg",
  11083. }
  11084. },
  11085. battle: {
  11086. height: math.unit(6.824, "feet"),
  11087. weight: math.unit(150, "lb"),
  11088. name: "Battle",
  11089. image: {
  11090. source: "./media/characters/kuiper-vanrel/battle.svg",
  11091. extra: 1466 / 1327,
  11092. bottom: 29 / 1492.5
  11093. }
  11094. },
  11095. },
  11096. [
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(7 + 5 / 12, "feet"),
  11100. default: true
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11106. {
  11107. front: {
  11108. height: math.unit(8 + 5 / 12, "feet"),
  11109. weight: math.unit(150, "lb"),
  11110. name: "Front",
  11111. image: {
  11112. source: "./media/characters/keset-vanrel/front.svg",
  11113. extra: 1150 / 1084,
  11114. bottom: 0.05
  11115. }
  11116. },
  11117. hand: {
  11118. height: math.unit(0.6, "meters"),
  11119. name: "Hand",
  11120. image: {
  11121. source: "./media/characters/keset-vanrel/hand.svg"
  11122. }
  11123. },
  11124. foot: {
  11125. height: math.unit(0.94978, "meters"),
  11126. name: "Foot",
  11127. image: {
  11128. source: "./media/characters/keset-vanrel/foot.svg"
  11129. }
  11130. },
  11131. battle: {
  11132. height: math.unit(7.408, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Battle",
  11135. image: {
  11136. source: "./media/characters/keset-vanrel/battle.svg",
  11137. extra: 1890 / 1386,
  11138. bottom: 73.28 / 1970
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(8 + 5 / 12, "feet"),
  11146. default: true
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(150, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/neos/front.svg",
  11159. extra: 1696 / 992,
  11160. bottom: 0.14
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Normal",
  11167. height: math.unit(54, "cm"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(100, "m")
  11173. },
  11174. {
  11175. name: "Megamacro",
  11176. height: math.unit(10, "km")
  11177. },
  11178. {
  11179. name: "Megamacro+",
  11180. height: math.unit(100, "km")
  11181. },
  11182. {
  11183. name: "Gigamacro",
  11184. height: math.unit(100, "Mm")
  11185. },
  11186. {
  11187. name: "Teramacro",
  11188. height: math.unit(100, "Gm")
  11189. },
  11190. {
  11191. name: "Examacro",
  11192. height: math.unit(100, "Em")
  11193. },
  11194. {
  11195. name: "Godly",
  11196. height: math.unit(10000, "Ym")
  11197. },
  11198. {
  11199. name: "Beyond Godly",
  11200. height: math.unit(25, "multiverses")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11206. {
  11207. feminine: {
  11208. height: math.unit(5, "feet"),
  11209. weight: math.unit(100, "lb"),
  11210. name: "Feminine",
  11211. image: {
  11212. source: "./media/characters/sammy-mouse/feminine.svg",
  11213. extra: 2526 / 2425,
  11214. bottom: 0.123
  11215. }
  11216. },
  11217. masculine: {
  11218. height: math.unit(5, "feet"),
  11219. weight: math.unit(100, "lb"),
  11220. name: "Masculine",
  11221. image: {
  11222. source: "./media/characters/sammy-mouse/masculine.svg",
  11223. extra: 2526 / 2425,
  11224. bottom: 0.123
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Micro",
  11231. height: math.unit(5, "inches")
  11232. },
  11233. {
  11234. name: "Normal",
  11235. height: math.unit(5, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(60, "feet")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(4, "feet"),
  11249. weight: math.unit(50, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/kole/front.svg",
  11253. extra: 1423 / 1303,
  11254. bottom: 0.025
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(4, "feet"),
  11259. weight: math.unit(50, "lb"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/kole/back.svg",
  11263. extra: 1426 / 1280,
  11264. bottom: 0.02
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(4, "feet"),
  11272. default: true
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(2 + 6 / 12, "feet"),
  11281. weight: math.unit(20, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/rufran/front.svg",
  11285. extra: 2041 / 1839,
  11286. bottom: 0.055
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(2 + 6 / 12, "feet"),
  11291. weight: math.unit(20, "lb"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/rufran/back.svg",
  11295. extra: 2054 / 1839,
  11296. bottom: 0.01
  11297. }
  11298. },
  11299. hand: {
  11300. height: math.unit(0.2166, "meters"),
  11301. name: "Hand",
  11302. image: {
  11303. source: "./media/characters/rufran/hand.svg"
  11304. }
  11305. },
  11306. foot: {
  11307. height: math.unit(0.185, "meters"),
  11308. name: "Foot",
  11309. image: {
  11310. source: "./media/characters/rufran/foot.svg"
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(1, "inch")
  11318. },
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(2 + 6 / 12, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Big",
  11326. height: math.unit(60, "feet")
  11327. },
  11328. {
  11329. name: "Macro",
  11330. height: math.unit(325, "feet")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(0.3, "meters"),
  11339. weight: math.unit(3.5, "kg"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/chip/front.svg",
  11343. extra: 748 / 674
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Micro",
  11350. height: math.unit(1, "inch"),
  11351. default: true
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11357. {
  11358. side: {
  11359. height: math.unit(2.3, "meters"),
  11360. weight: math.unit(3500, "lb"),
  11361. name: "Side",
  11362. image: {
  11363. source: "./media/characters/torvid/side.svg",
  11364. extra: 1972 / 722,
  11365. bottom: 0.035
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Normal",
  11372. height: math.unit(2.3, "meters"),
  11373. default: true
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(2, "meters"),
  11382. weight: math.unit(150.5, "kg"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/susan/front.svg",
  11386. extra: 693 / 635,
  11387. bottom: 0.05
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(505, "miles"),
  11395. default: true
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(6, "feet"),
  11404. weight: math.unit(150, "lb"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/raindrops/front.svg",
  11408. extra: 2655 / 2461,
  11409. bottom: 49/2705
  11410. }
  11411. },
  11412. back: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(150, "lb"),
  11415. name: "Back",
  11416. image: {
  11417. source: "./media/characters/raindrops/back.svg",
  11418. extra: 2574 / 2400,
  11419. bottom: 65/2634
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(6, "inches")
  11427. },
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(6 + 2 / 12, "feet")
  11431. },
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(131, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(15, "miles")
  11440. },
  11441. {
  11442. name: "Gigamacro",
  11443. height: math.unit(4000, "miles")
  11444. },
  11445. {
  11446. name: "Teramacro",
  11447. height: math.unit(315000, "miles")
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(2.794, "meters"),
  11456. weight: math.unit(325, "kg"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/tezwa/front.svg",
  11460. extra: 2083 / 1906,
  11461. bottom: 0.031
  11462. }
  11463. },
  11464. foot: {
  11465. height: math.unit(0.687, "meters"),
  11466. name: "Foot",
  11467. image: {
  11468. source: "./media/characters/tezwa/foot.svg"
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Normal",
  11475. height: math.unit(9 + 2 / 12, "feet"),
  11476. default: true
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(58, "feet"),
  11485. weight: math.unit(89000, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/typhus/front.svg",
  11489. extra: 816 / 800,
  11490. bottom: 0.065
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Macro",
  11497. height: math.unit(58, "feet"),
  11498. default: true
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11504. {
  11505. front: {
  11506. height: math.unit(12, "feet"),
  11507. weight: math.unit(6, "tonnes"),
  11508. name: "Front",
  11509. image: {
  11510. source: "./media/characters/lyra-von-wulf/front.svg",
  11511. extra: 1,
  11512. bottom: 0.10
  11513. }
  11514. },
  11515. frontMecha: {
  11516. height: math.unit(12, "feet"),
  11517. weight: math.unit(12, "tonnes"),
  11518. name: "Front (Mecha)",
  11519. image: {
  11520. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11521. extra: 1,
  11522. bottom: 0.042
  11523. }
  11524. },
  11525. maw: {
  11526. height: math.unit(2.2, "feet"),
  11527. name: "Maw",
  11528. image: {
  11529. source: "./media/characters/lyra-von-wulf/maw.svg"
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Normal",
  11536. height: math.unit(12, "feet"),
  11537. default: true
  11538. },
  11539. {
  11540. name: "Classic",
  11541. height: math.unit(50, "feet")
  11542. },
  11543. {
  11544. name: "Macro",
  11545. height: math.unit(500, "feet")
  11546. },
  11547. {
  11548. name: "Megamacro",
  11549. height: math.unit(1, "mile")
  11550. },
  11551. {
  11552. name: "Gigamacro",
  11553. height: math.unit(400, "miles")
  11554. },
  11555. {
  11556. name: "Teramacro",
  11557. height: math.unit(22000, "miles")
  11558. },
  11559. {
  11560. name: "Solarmacro",
  11561. height: math.unit(8600000, "miles")
  11562. },
  11563. {
  11564. name: "Galactic",
  11565. height: math.unit(1057000, "lightyears")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(6 + 10 / 12, "feet"),
  11574. weight: math.unit(150, "lb"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/dixon/front.svg",
  11578. extra: 3361 / 3209,
  11579. bottom: 0.01
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Normal",
  11586. height: math.unit(6 + 10 / 12, "feet"),
  11587. default: true
  11588. },
  11589. {
  11590. name: "Big",
  11591. height: math.unit(12, "meters")
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(500, "meters")
  11596. },
  11597. {
  11598. name: "Megamacro",
  11599. height: math.unit(2, "km")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(185, "cm"),
  11608. weight: math.unit(68, "kg"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/kauko/front.svg",
  11612. extra: 1455 / 1421,
  11613. bottom: 0.03
  11614. }
  11615. },
  11616. back: {
  11617. height: math.unit(185, "cm"),
  11618. weight: math.unit(68, "kg"),
  11619. name: "Back",
  11620. image: {
  11621. source: "./media/characters/kauko/back.svg",
  11622. extra: 1455 / 1421,
  11623. bottom: 0.004
  11624. }
  11625. },
  11626. },
  11627. [
  11628. {
  11629. name: "Normal",
  11630. height: math.unit(185, "cm"),
  11631. default: true
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(6, "feet"),
  11640. weight: math.unit(150, "kg"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/varg/front.svg",
  11644. extra: 1108 / 1018,
  11645. bottom: 0.0375
  11646. }
  11647. },
  11648. },
  11649. [
  11650. {
  11651. name: "Normal",
  11652. height: math.unit(5, "meters")
  11653. },
  11654. {
  11655. name: "Macro",
  11656. height: math.unit(200, "meters")
  11657. },
  11658. {
  11659. name: "Megamacro",
  11660. height: math.unit(20, "kilometers")
  11661. },
  11662. {
  11663. name: "True Size",
  11664. height: math.unit(211, "km"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Gigamacro",
  11669. height: math.unit(1000, "km")
  11670. },
  11671. {
  11672. name: "Gigamacro+",
  11673. height: math.unit(8000, "km")
  11674. },
  11675. {
  11676. name: "Teramacro",
  11677. height: math.unit(1000000, "km")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11683. {
  11684. front: {
  11685. height: math.unit(7 + 7 / 12, "feet"),
  11686. weight: math.unit(267, "lb"),
  11687. name: "Front",
  11688. image: {
  11689. source: "./media/characters/dayza/front.svg",
  11690. extra: 1262 / 1200,
  11691. bottom: 0.035
  11692. }
  11693. },
  11694. side: {
  11695. height: math.unit(7 + 7 / 12, "feet"),
  11696. weight: math.unit(267, "lb"),
  11697. name: "Side",
  11698. image: {
  11699. source: "./media/characters/dayza/side.svg",
  11700. extra: 1295 / 1245,
  11701. bottom: 0.05
  11702. }
  11703. },
  11704. back: {
  11705. height: math.unit(7 + 7 / 12, "feet"),
  11706. weight: math.unit(267, "lb"),
  11707. name: "Back",
  11708. image: {
  11709. source: "./media/characters/dayza/back.svg",
  11710. extra: 1241 / 1170
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(7 + 7 / 12, "feet"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(155, "feet")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6 + 5 / 12, "feet"),
  11731. weight: math.unit(160, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/xanthos/front.svg",
  11735. extra: 1,
  11736. bottom: 0.04
  11737. }
  11738. },
  11739. back: {
  11740. height: math.unit(6 + 5 / 12, "feet"),
  11741. weight: math.unit(160, "lb"),
  11742. name: "Back",
  11743. image: {
  11744. source: "./media/characters/xanthos/back.svg",
  11745. extra: 1,
  11746. bottom: 0.03
  11747. }
  11748. },
  11749. hand: {
  11750. height: math.unit(0.928, "feet"),
  11751. name: "Hand",
  11752. image: {
  11753. source: "./media/characters/xanthos/hand.svg"
  11754. }
  11755. },
  11756. foot: {
  11757. height: math.unit(1.286, "feet"),
  11758. name: "Foot",
  11759. image: {
  11760. source: "./media/characters/xanthos/foot.svg"
  11761. }
  11762. },
  11763. },
  11764. [
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(6 + 5 / 12, "feet"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Normal+",
  11772. height: math.unit(6, "meters")
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(40, "feet")
  11777. },
  11778. {
  11779. name: "Macro+",
  11780. height: math.unit(200, "meters")
  11781. },
  11782. {
  11783. name: "Megamacro",
  11784. height: math.unit(20, "km")
  11785. },
  11786. {
  11787. name: "Megamacro+",
  11788. height: math.unit(100, "km")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(6 + 3 / 12, "feet"),
  11797. weight: math.unit(215, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/grynn/front.svg",
  11801. extra: 4627 / 4209,
  11802. bottom: 0.047
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Micro",
  11809. height: math.unit(6, "inches")
  11810. },
  11811. {
  11812. name: "Normal",
  11813. height: math.unit(6 + 3 / 12, "feet"),
  11814. default: true
  11815. },
  11816. {
  11817. name: "Big",
  11818. height: math.unit(104, "feet")
  11819. },
  11820. {
  11821. name: "Macro",
  11822. height: math.unit(944, "feet")
  11823. },
  11824. {
  11825. name: "Macro+",
  11826. height: math.unit(9480, "feet")
  11827. },
  11828. {
  11829. name: "Megamacro",
  11830. height: math.unit(78752, "feet")
  11831. },
  11832. {
  11833. name: "Megamacro+",
  11834. height: math.unit(630128, "feet")
  11835. },
  11836. {
  11837. name: "Megamacro++",
  11838. height: math.unit(3150695, "feet")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(7 + 5 / 12, "feet"),
  11847. weight: math.unit(450, "lb"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/mocha-aura/front.svg",
  11851. extra: 1907 / 1817,
  11852. bottom: 0.04
  11853. }
  11854. },
  11855. back: {
  11856. height: math.unit(7 + 5 / 12, "feet"),
  11857. weight: math.unit(450, "lb"),
  11858. name: "Back",
  11859. image: {
  11860. source: "./media/characters/mocha-aura/back.svg",
  11861. extra: 1900 / 1825,
  11862. bottom: 0.045
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Nano",
  11869. height: math.unit(1, "nm")
  11870. },
  11871. {
  11872. name: "Megamicro",
  11873. height: math.unit(1, "mm")
  11874. },
  11875. {
  11876. name: "Micro",
  11877. height: math.unit(3, "inches")
  11878. },
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(7 + 5 / 12, "feet"),
  11882. default: true
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(30, "feet")
  11887. },
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(3500, "feet")
  11891. },
  11892. {
  11893. name: "Teramacro",
  11894. height: math.unit(500000, "miles")
  11895. },
  11896. {
  11897. name: "Petamacro",
  11898. height: math.unit(50000000000000000, "parsecs")
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/ilisha-devya/front.svg",
  11911. extra: 1,
  11912. bottom: 0.175
  11913. }
  11914. },
  11915. back: {
  11916. height: math.unit(6, "feet"),
  11917. weight: math.unit(150, "lb"),
  11918. name: "Back",
  11919. image: {
  11920. source: "./media/characters/ilisha-devya/back.svg",
  11921. extra: 1,
  11922. bottom: 0.015
  11923. }
  11924. },
  11925. },
  11926. [
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(500, "feet"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(10, "miles")
  11935. },
  11936. {
  11937. name: "Gigamacro",
  11938. height: math.unit(100000, "miles")
  11939. },
  11940. {
  11941. name: "Examacro",
  11942. height: math.unit(1e9, "lightyears")
  11943. },
  11944. {
  11945. name: "Omniversal",
  11946. height: math.unit(1e33, "lightyears")
  11947. },
  11948. {
  11949. name: "Beyond Infinite",
  11950. height: math.unit(1e100, "lightyears")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11956. {
  11957. Side: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Side",
  11961. image: {
  11962. source: "./media/characters/mira/side.svg",
  11963. extra: 900 / 799,
  11964. bottom: 0.02
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Human Size",
  11971. height: math.unit(6, "feet")
  11972. },
  11973. {
  11974. name: "Macro",
  11975. height: math.unit(100, "feet"),
  11976. default: true
  11977. },
  11978. {
  11979. name: "Megamacro",
  11980. height: math.unit(10, "miles")
  11981. },
  11982. {
  11983. name: "Gigamacro",
  11984. height: math.unit(25000, "miles")
  11985. },
  11986. {
  11987. name: "Teramacro",
  11988. height: math.unit(300, "AU")
  11989. },
  11990. {
  11991. name: "Full Size",
  11992. height: math.unit(4.5e10, "lightyears")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(150, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/holly/front.svg",
  12005. extra: 639 / 606
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Back",
  12012. image: {
  12013. source: "./media/characters/holly/back.svg",
  12014. extra: 623 / 598
  12015. }
  12016. },
  12017. frontWorking: {
  12018. height: math.unit(6, "feet"),
  12019. weight: math.unit(150, "lb"),
  12020. name: "Front (Working)",
  12021. image: {
  12022. source: "./media/characters/holly/front-working.svg",
  12023. extra: 607 / 577,
  12024. bottom: 0.048
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(12 + 3 / 12, "feet"),
  12032. default: true
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(6, "feet"),
  12041. weight: math.unit(150, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/porter/front.svg",
  12045. extra: 1,
  12046. bottom: 0.01
  12047. }
  12048. },
  12049. frontRobes: {
  12050. height: math.unit(6, "feet"),
  12051. weight: math.unit(150, "lb"),
  12052. name: "Front (Robes)",
  12053. image: {
  12054. source: "./media/characters/porter/front-robes.svg",
  12055. extra: 1.01,
  12056. bottom: 0.01
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(11 + 9 / 12, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12070. {
  12071. legendary: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(150, "lb"),
  12074. name: "Legendary",
  12075. image: {
  12076. source: "./media/characters/lucy/legendary.svg",
  12077. extra: 1355 / 1100,
  12078. bottom: 0.045
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Legendary",
  12085. height: math.unit(86882 * 2, "miles"),
  12086. default: true
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(6, "feet"),
  12095. weight: math.unit(150, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/drusilla/front.svg",
  12099. extra: 678 / 635,
  12100. bottom: 0.03
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(150, "lb"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/drusilla/back.svg",
  12109. extra: 678 / 635,
  12110. bottom: 0.005
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Macro",
  12117. height: math.unit(100, "feet")
  12118. },
  12119. {
  12120. name: "Canon Height",
  12121. height: math.unit(2000, "feet"),
  12122. default: true
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(180, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/renard-thatch/front.svg",
  12135. extra: 2411 / 2275,
  12136. bottom: 0.01
  12137. }
  12138. },
  12139. frontPosing: {
  12140. height: math.unit(6, "feet"),
  12141. weight: math.unit(180, "lb"),
  12142. name: "Front (Posing)",
  12143. image: {
  12144. source: "./media/characters/renard-thatch/front-posing.svg",
  12145. extra: 2381 / 2261,
  12146. bottom: 0.01
  12147. }
  12148. },
  12149. back: {
  12150. height: math.unit(6, "feet"),
  12151. weight: math.unit(180, "lb"),
  12152. name: "Back",
  12153. image: {
  12154. source: "./media/characters/renard-thatch/back.svg",
  12155. extra: 2428 / 2288
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(3, "inches")
  12163. },
  12164. {
  12165. name: "Default",
  12166. height: math.unit(6, "feet"),
  12167. default: true
  12168. },
  12169. {
  12170. name: "Macro",
  12171. height: math.unit(75, "feet")
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(1450, "feet"),
  12180. weight: math.unit(1.21e6, "tons"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/sekvra/front.svg",
  12184. extra: 1,
  12185. bottom: 0.03
  12186. }
  12187. },
  12188. frontClothed: {
  12189. height: math.unit(1450, "feet"),
  12190. weight: math.unit(1.21e6, "tons"),
  12191. name: "Front (Clothed)",
  12192. image: {
  12193. source: "./media/characters/sekvra/front-clothed.svg",
  12194. extra: 1,
  12195. bottom: 0.03
  12196. }
  12197. },
  12198. side: {
  12199. height: math.unit(1450, "feet"),
  12200. weight: math.unit(1.21e6, "tons"),
  12201. name: "Side",
  12202. image: {
  12203. source: "./media/characters/sekvra/side.svg",
  12204. extra: 1,
  12205. bottom: 0.025
  12206. }
  12207. },
  12208. back: {
  12209. height: math.unit(1450, "feet"),
  12210. weight: math.unit(1.21e6, "tons"),
  12211. name: "Back",
  12212. image: {
  12213. source: "./media/characters/sekvra/back.svg",
  12214. extra: 1,
  12215. bottom: 0.005
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Macro",
  12222. height: math.unit(1450, "feet"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Megamacro",
  12227. height: math.unit(15000, "feet")
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12233. {
  12234. front: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(150, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/carmine/front.svg",
  12240. extra: 1,
  12241. bottom: 0.035
  12242. }
  12243. },
  12244. frontArmor: {
  12245. height: math.unit(6, "feet"),
  12246. weight: math.unit(150, "lb"),
  12247. name: "Front (Armor)",
  12248. image: {
  12249. source: "./media/characters/carmine/front-armor.svg",
  12250. extra: 1,
  12251. bottom: 0.035
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Large",
  12258. height: math.unit(1, "mile")
  12259. },
  12260. {
  12261. name: "Huge",
  12262. height: math.unit(40, "miles"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Colossal",
  12267. height: math.unit(2500, "miles")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(6, "feet"),
  12276. weight: math.unit(150, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/elyssia/front.svg",
  12280. extra: 2201 / 2035,
  12281. bottom: 0.05
  12282. }
  12283. },
  12284. frontClothed: {
  12285. height: math.unit(6, "feet"),
  12286. weight: math.unit(150, "lb"),
  12287. name: "Front (Clothed)",
  12288. image: {
  12289. source: "./media/characters/elyssia/front-clothed.svg",
  12290. extra: 2201 / 2035,
  12291. bottom: 0.05
  12292. }
  12293. },
  12294. back: {
  12295. height: math.unit(6, "feet"),
  12296. weight: math.unit(150, "lb"),
  12297. name: "Back",
  12298. image: {
  12299. source: "./media/characters/elyssia/back.svg",
  12300. extra: 2201 / 2035,
  12301. bottom: 0.013
  12302. }
  12303. },
  12304. },
  12305. [
  12306. {
  12307. name: "Smaller",
  12308. height: math.unit(150, "feet")
  12309. },
  12310. {
  12311. name: "Standard",
  12312. height: math.unit(1400, "feet"),
  12313. default: true
  12314. },
  12315. {
  12316. name: "Distracted",
  12317. height: math.unit(15000, "feet")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(7 + 4 / 12, "feet"),
  12326. weight: math.unit(500, "lb"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/geno-maxwell/front.svg",
  12330. extra: 2207 / 2040,
  12331. bottom: 0.015
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Micro",
  12338. height: math.unit(3, "inches")
  12339. },
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(7 + 4 / 12, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(220, "feet")
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(11, "miles")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(7 + 4 / 12, "feet"),
  12360. weight: math.unit(500, "lb"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/regena-maxwell/front.svg",
  12364. extra: 3115 / 2770,
  12365. bottom: 0.02
  12366. }
  12367. },
  12368. },
  12369. [
  12370. {
  12371. name: "Normal",
  12372. height: math.unit(7 + 4 / 12, "feet"),
  12373. default: true
  12374. },
  12375. {
  12376. name: "Macro",
  12377. height: math.unit(220, "feet")
  12378. },
  12379. {
  12380. name: "Megamacro",
  12381. height: math.unit(11, "miles")
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(150, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12394. extra: 860 / 690,
  12395. bottom: 0.03
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Normal",
  12402. height: math.unit(1.7, "meters"),
  12403. default: true
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(150, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/quilly/front.svg",
  12416. extra: 890 / 776
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Gigamacro",
  12423. height: math.unit(404090, "miles"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(7 + 8 / 12, "feet"),
  12433. weight: math.unit(350, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/tempest/front.svg",
  12437. extra: 1175 / 1086,
  12438. bottom: 0.02
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(7 + 8 / 12, "feet"),
  12446. default: true
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12452. {
  12453. side: {
  12454. height: math.unit(4 + 5 / 12, "feet"),
  12455. weight: math.unit(80, "lb"),
  12456. name: "Side",
  12457. image: {
  12458. source: "./media/characters/rodger/side.svg",
  12459. extra: 1235 / 1118
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Micro",
  12466. height: math.unit(1, "inch")
  12467. },
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(4 + 5 / 12, "feet"),
  12471. default: true
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(120, "feet")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(150, "lb"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/danyel/front.svg",
  12488. extra: 1185 / 1123,
  12489. bottom: 0.05
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Shrunken",
  12496. height: math.unit(0.5, "mm")
  12497. },
  12498. {
  12499. name: "Micro",
  12500. height: math.unit(1, "mm"),
  12501. default: true
  12502. },
  12503. {
  12504. name: "Upsized",
  12505. height: math.unit(5 + 5 / 12, "feet")
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(5 + 6 / 12, "feet"),
  12514. weight: math.unit(200, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/vivian-bijoux/front.svg",
  12518. extra: 1,
  12519. bottom: 0.072
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(5 + 6 / 12, "feet"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Bad Dream",
  12531. height: math.unit(500, "feet")
  12532. },
  12533. {
  12534. name: "Nightmare",
  12535. height: math.unit(500, "miles")
  12536. },
  12537. ]
  12538. ))
  12539. characterMakers.push(() => makeCharacter(
  12540. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12541. {
  12542. front: {
  12543. height: math.unit(6 + 1 / 12, "feet"),
  12544. weight: math.unit(260, "lb"),
  12545. name: "Front",
  12546. image: {
  12547. source: "./media/characters/zeta/front.svg",
  12548. extra: 1968 / 1889,
  12549. bottom: 0.06
  12550. }
  12551. },
  12552. back: {
  12553. height: math.unit(6 + 1 / 12, "feet"),
  12554. weight: math.unit(260, "lb"),
  12555. name: "Back",
  12556. image: {
  12557. source: "./media/characters/zeta/back.svg",
  12558. extra: 1944 / 1858,
  12559. bottom: 0.03
  12560. }
  12561. },
  12562. hand: {
  12563. height: math.unit(1.112, "feet"),
  12564. name: "Hand",
  12565. image: {
  12566. source: "./media/characters/zeta/hand.svg"
  12567. }
  12568. },
  12569. foot: {
  12570. height: math.unit(1.48, "feet"),
  12571. name: "Foot",
  12572. image: {
  12573. source: "./media/characters/zeta/foot.svg"
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Micro",
  12580. height: math.unit(6, "inches")
  12581. },
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(6 + 1 / 12, "feet"),
  12585. default: true
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(20, "feet")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(6, "feet"),
  12598. weight: math.unit(150, "lb"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/jamie-larsen/front.svg",
  12602. extra: 962 / 933,
  12603. bottom: 0.02
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(150, "lb"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/jamie-larsen/back.svg",
  12612. extra: 997 / 946
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Macro",
  12619. height: math.unit(28 + 7 / 12, "feet"),
  12620. default: true
  12621. },
  12622. {
  12623. name: "Macro+",
  12624. height: math.unit(180, "feet")
  12625. },
  12626. {
  12627. name: "Megamacro",
  12628. height: math.unit(10, "miles")
  12629. },
  12630. {
  12631. name: "Gigamacro",
  12632. height: math.unit(200000, "miles")
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(120, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/vance/front.svg",
  12645. extra: 1980 / 1890,
  12646. bottom: 0.09
  12647. }
  12648. },
  12649. back: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(120, "lb"),
  12652. name: "Back",
  12653. image: {
  12654. source: "./media/characters/vance/back.svg",
  12655. extra: 2081 / 1994,
  12656. bottom: 0.014
  12657. }
  12658. },
  12659. hand: {
  12660. height: math.unit(0.88, "feet"),
  12661. name: "Hand",
  12662. image: {
  12663. source: "./media/characters/vance/hand.svg"
  12664. }
  12665. },
  12666. foot: {
  12667. height: math.unit(0.64, "feet"),
  12668. name: "Foot",
  12669. image: {
  12670. source: "./media/characters/vance/foot.svg"
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Small",
  12677. height: math.unit(90, "feet"),
  12678. default: true
  12679. },
  12680. {
  12681. name: "Macro",
  12682. height: math.unit(100, "meters")
  12683. },
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(15, "miles")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(180, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/xochitl/front.svg",
  12699. extra: 2297 / 2261,
  12700. bottom: 0.065
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(180, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/xochitl/back.svg",
  12709. extra: 2386 / 2354,
  12710. bottom: 0.01
  12711. }
  12712. },
  12713. foot: {
  12714. height: math.unit(6 / 5 * 1.15, "feet"),
  12715. weight: math.unit(150, "lb"),
  12716. name: "Foot",
  12717. image: {
  12718. source: "./media/characters/xochitl/foot.svg"
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(80, "feet")
  12726. },
  12727. {
  12728. name: "Macro+",
  12729. height: math.unit(400, "feet"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Gigamacro",
  12734. height: math.unit(80000, "miles")
  12735. },
  12736. {
  12737. name: "Gigamacro+",
  12738. height: math.unit(400000, "miles")
  12739. },
  12740. {
  12741. name: "Teramacro",
  12742. height: math.unit(300, "AU")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(150, "lb"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/vincent/front.svg",
  12755. extra: 1130 / 1080,
  12756. bottom: 0.055
  12757. }
  12758. },
  12759. beak: {
  12760. height: math.unit(6 * 0.1, "feet"),
  12761. name: "Beak",
  12762. image: {
  12763. source: "./media/characters/vincent/beak.svg"
  12764. }
  12765. },
  12766. hand: {
  12767. height: math.unit(6 * 0.85, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Hand",
  12770. image: {
  12771. source: "./media/characters/vincent/hand.svg"
  12772. }
  12773. },
  12774. foot: {
  12775. height: math.unit(6 * 0.19, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Foot",
  12778. image: {
  12779. source: "./media/characters/vincent/foot.svg"
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Base",
  12786. height: math.unit(6 + 5 / 12, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(300, "feet")
  12792. },
  12793. {
  12794. name: "Megamacro",
  12795. height: math.unit(2, "miles")
  12796. },
  12797. {
  12798. name: "Gigamacro",
  12799. height: math.unit(1000, "miles")
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12805. {
  12806. front: {
  12807. height: math.unit(6 + 2 / 12, "feet"),
  12808. weight: math.unit(265, "lb"),
  12809. name: "Front",
  12810. image: {
  12811. source: "./media/characters/jay/front.svg",
  12812. extra: 1510 / 1430,
  12813. bottom: 0.042
  12814. }
  12815. },
  12816. back: {
  12817. height: math.unit(6 + 2 / 12, "feet"),
  12818. weight: math.unit(265, "lb"),
  12819. name: "Back",
  12820. image: {
  12821. source: "./media/characters/jay/back.svg",
  12822. extra: 1510 / 1430,
  12823. bottom: 0.025
  12824. }
  12825. },
  12826. clothed: {
  12827. height: math.unit(6 + 2 / 12, "feet"),
  12828. weight: math.unit(265, "lb"),
  12829. name: "Front (Clothed)",
  12830. image: {
  12831. source: "./media/characters/jay/clothed.svg",
  12832. extra: 744 / 699,
  12833. bottom: 0.043
  12834. }
  12835. },
  12836. head: {
  12837. height: math.unit(1.772, "feet"),
  12838. name: "Head",
  12839. image: {
  12840. source: "./media/characters/jay/head.svg"
  12841. }
  12842. },
  12843. sizeRay: {
  12844. height: math.unit(1.331, "feet"),
  12845. name: "Size Ray",
  12846. image: {
  12847. source: "./media/characters/jay/size-ray.svg"
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Micro",
  12854. height: math.unit(1, "inch")
  12855. },
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(6 + 2 / 12, "feet"),
  12859. default: true
  12860. },
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(1, "mile")
  12864. },
  12865. {
  12866. name: "Megamacro",
  12867. height: math.unit(100, "miles")
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(2, "meters"),
  12876. weight: math.unit(500, "kg"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/coatl/front.svg",
  12880. extra: 3948 / 3500,
  12881. bottom: 0.082
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Normal",
  12888. height: math.unit(4, "meters")
  12889. },
  12890. {
  12891. name: "Macro",
  12892. height: math.unit(100, "meters"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Macro+",
  12897. height: math.unit(300, "meters")
  12898. },
  12899. {
  12900. name: "Megamacro",
  12901. height: math.unit(3, "gigameters")
  12902. },
  12903. {
  12904. name: "Megamacro+",
  12905. height: math.unit(300, "terameters")
  12906. },
  12907. {
  12908. name: "Megamacro++",
  12909. height: math.unit(3, "lightyears")
  12910. },
  12911. ]
  12912. ))
  12913. characterMakers.push(() => makeCharacter(
  12914. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12915. {
  12916. front: {
  12917. height: math.unit(6, "feet"),
  12918. weight: math.unit(50, "kg"),
  12919. name: "front",
  12920. image: {
  12921. source: "./media/characters/shiroryu/front.svg",
  12922. extra: 1990 / 1935
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Mortal Mingling",
  12929. height: math.unit(3, "meters")
  12930. },
  12931. {
  12932. name: "Kaiju-ish",
  12933. height: math.unit(250, "meters")
  12934. },
  12935. {
  12936. name: "Somewhat Godly",
  12937. height: math.unit(400, "km"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Planetary",
  12942. height: math.unit(300, "megameters")
  12943. },
  12944. {
  12945. name: "Galaxy-dwarfing",
  12946. height: math.unit(450, "kiloparsecs")
  12947. },
  12948. {
  12949. name: "Universe Eater",
  12950. height: math.unit(150, "gigaparsecs")
  12951. },
  12952. {
  12953. name: "Almost Immeasurable",
  12954. height: math.unit(1.3e266, "yottaparsecs")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12960. {
  12961. front: {
  12962. height: math.unit(6, "feet"),
  12963. weight: math.unit(150, "lb"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/umeko/front.svg",
  12967. extra: 1,
  12968. bottom: 0.019
  12969. }
  12970. },
  12971. frontArmored: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front (Armored)",
  12975. image: {
  12976. source: "./media/characters/umeko/front-armored.svg",
  12977. extra: 1,
  12978. bottom: 0.021
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Macro",
  12985. height: math.unit(220, "feet"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Guardian Dragon",
  12990. height: math.unit(50, "miles")
  12991. },
  12992. {
  12993. name: "Cosmic",
  12994. height: math.unit(800000, "miles")
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13000. {
  13001. front: {
  13002. height: math.unit(6, "feet"),
  13003. weight: math.unit(150, "lb"),
  13004. name: "Front",
  13005. image: {
  13006. source: "./media/characters/cassidy/front.svg",
  13007. extra: 1,
  13008. bottom: 0.043
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Canon Height",
  13015. height: math.unit(120, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Macro+",
  13020. height: math.unit(400, "feet")
  13021. },
  13022. {
  13023. name: "Macro++",
  13024. height: math.unit(4000, "feet")
  13025. },
  13026. {
  13027. name: "Megamacro",
  13028. height: math.unit(3, "miles")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(150, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/isaac/front.svg",
  13041. extra: 896 / 815,
  13042. bottom: 0.11
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Human Size",
  13049. height: math.unit(8, "feet"),
  13050. default: true
  13051. },
  13052. {
  13053. name: "Macro",
  13054. height: math.unit(400, "feet")
  13055. },
  13056. {
  13057. name: "Megamacro",
  13058. height: math.unit(50, "miles")
  13059. },
  13060. {
  13061. name: "Canon Height",
  13062. height: math.unit(200, "AU")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(72, "kg"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/sleekit/front.svg",
  13075. extra: 4693 / 4487,
  13076. bottom: 0.012
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Minimum Height",
  13083. height: math.unit(10, "meters")
  13084. },
  13085. {
  13086. name: "Smaller",
  13087. height: math.unit(25, "meters")
  13088. },
  13089. {
  13090. name: "Larger",
  13091. height: math.unit(38, "meters"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Maximum height",
  13096. height: math.unit(100, "meters")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(150, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/nillia/front.svg",
  13109. extra: 2195 / 2037,
  13110. bottom: 0.005
  13111. }
  13112. },
  13113. back: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Back",
  13117. image: {
  13118. source: "./media/characters/nillia/back.svg",
  13119. extra: 2195 / 2037,
  13120. bottom: 0.005
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Canon Height",
  13127. height: math.unit(489, "feet"),
  13128. default: true
  13129. }
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(150, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/mesmyriza/front.svg",
  13141. extra: 2067 / 1784,
  13142. bottom: 0.035
  13143. }
  13144. },
  13145. foot: {
  13146. height: math.unit(6 / (250 / 35), "feet"),
  13147. name: "Foot",
  13148. image: {
  13149. source: "./media/characters/mesmyriza/foot.svg"
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Macro",
  13156. height: math.unit(457, "meters"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Megamacro",
  13161. height: math.unit(8, "megameters")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(6, "feet"),
  13170. weight: math.unit(250, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/saudade/front.svg",
  13174. extra: 1172 / 1139,
  13175. bottom: 0.035
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Micro",
  13182. height: math.unit(3, "inches")
  13183. },
  13184. {
  13185. name: "Normal",
  13186. height: math.unit(6, "feet"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Macro",
  13191. height: math.unit(50, "feet")
  13192. },
  13193. {
  13194. name: "Megamacro",
  13195. height: math.unit(2800, "feet")
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(5 + 4 / 12, "feet"),
  13204. weight: math.unit(100, "lb"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/keireer/front.svg",
  13208. extra: 716 / 666,
  13209. bottom: 0.05
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Normal",
  13216. height: math.unit(5 + 4 / 12, "feet"),
  13217. default: true
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(90, "kg"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/mirja/front.svg",
  13230. extra: 1789 / 1683,
  13231. bottom: 0.05
  13232. }
  13233. },
  13234. frontDressed: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(90, "lb"),
  13237. name: "Front (Dressed)",
  13238. image: {
  13239. source: "./media/characters/mirja/front-dressed.svg",
  13240. extra: 1789 / 1683,
  13241. bottom: 0.05
  13242. }
  13243. },
  13244. back: {
  13245. height: math.unit(6, "feet"),
  13246. weight: math.unit(90, "lb"),
  13247. name: "Back",
  13248. image: {
  13249. source: "./media/characters/mirja/back.svg",
  13250. extra: 953 / 917,
  13251. bottom: 0.017
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "\"Incognito\"",
  13258. height: math.unit(3, "meters")
  13259. },
  13260. {
  13261. name: "Strolling Size",
  13262. height: math.unit(15, "km")
  13263. },
  13264. {
  13265. name: "Larger Strolling Size",
  13266. height: math.unit(400, "km")
  13267. },
  13268. {
  13269. name: "Preferred Size",
  13270. height: math.unit(5000, "km")
  13271. },
  13272. {
  13273. name: "True Size",
  13274. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13275. default: true
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(15, "feet"),
  13284. weight: math.unit(880, "kg"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/nightraver/front.svg",
  13288. extra: 2444 / 2160,
  13289. bottom: 0.027
  13290. }
  13291. },
  13292. back: {
  13293. height: math.unit(15, "feet"),
  13294. weight: math.unit(880, "kg"),
  13295. name: "Back",
  13296. image: {
  13297. source: "./media/characters/nightraver/back.svg",
  13298. extra: 2309 / 2180,
  13299. bottom: 0.005
  13300. }
  13301. },
  13302. sole: {
  13303. height: math.unit(2.878, "feet"),
  13304. name: "Sole",
  13305. image: {
  13306. source: "./media/characters/nightraver/sole.svg"
  13307. }
  13308. },
  13309. foot: {
  13310. height: math.unit(2.285, "feet"),
  13311. name: "Foot",
  13312. image: {
  13313. source: "./media/characters/nightraver/foot.svg"
  13314. }
  13315. },
  13316. maw: {
  13317. height: math.unit(2.67, "feet"),
  13318. name: "Maw",
  13319. image: {
  13320. source: "./media/characters/nightraver/maw.svg"
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Micro",
  13327. height: math.unit(1, "cm")
  13328. },
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(15, "feet"),
  13332. default: true
  13333. },
  13334. {
  13335. name: "Macro",
  13336. height: math.unit(300, "feet")
  13337. },
  13338. {
  13339. name: "Megamacro",
  13340. height: math.unit(300, "miles")
  13341. },
  13342. {
  13343. name: "Gigamacro",
  13344. height: math.unit(10000, "miles")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13350. {
  13351. side: {
  13352. height: math.unit(2, "inches"),
  13353. weight: math.unit(5, "grams"),
  13354. name: "Side",
  13355. image: {
  13356. source: "./media/characters/arc/side.svg"
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Micro",
  13363. height: math.unit(2, "inches"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13370. {
  13371. front: {
  13372. height: math.unit(1.1938, "meters"),
  13373. weight: math.unit(54, "kg"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/nebula-shahar/front.svg",
  13377. extra: 1642 / 1436,
  13378. bottom: 0.06
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Megamicro",
  13385. height: math.unit(0.3, "mm")
  13386. },
  13387. {
  13388. name: "Micro",
  13389. height: math.unit(3, "cm")
  13390. },
  13391. {
  13392. name: "Normal",
  13393. height: math.unit(138, "cm"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Macro",
  13398. height: math.unit(30, "m")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(5.24, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/shayla/front.svg",
  13411. extra: 1512 / 1414,
  13412. bottom: 0.01
  13413. }
  13414. },
  13415. back: {
  13416. height: math.unit(5.24, "feet"),
  13417. weight: math.unit(150, "lb"),
  13418. name: "Back",
  13419. image: {
  13420. source: "./media/characters/shayla/back.svg",
  13421. extra: 1512 / 1414
  13422. }
  13423. },
  13424. hand: {
  13425. height: math.unit(0.7781496062992126, "feet"),
  13426. name: "Hand",
  13427. image: {
  13428. source: "./media/characters/shayla/hand.svg"
  13429. }
  13430. },
  13431. foot: {
  13432. height: math.unit(1.4206036745406823, "feet"),
  13433. name: "Foot",
  13434. image: {
  13435. source: "./media/characters/shayla/foot.svg"
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Micro",
  13442. height: math.unit(0.32, "feet")
  13443. },
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(5.24, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(492.12, "feet")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(186.41, "miles")
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(2.2, "m"),
  13464. weight: math.unit(120, "kg"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/pia-jr/front.svg",
  13468. extra: 1000 / 970,
  13469. bottom: 0.035
  13470. }
  13471. },
  13472. hand: {
  13473. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13474. name: "Hand",
  13475. image: {
  13476. source: "./media/characters/pia-jr/hand.svg"
  13477. }
  13478. },
  13479. paw: {
  13480. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13481. name: "Paw",
  13482. image: {
  13483. source: "./media/characters/pia-jr/paw.svg"
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Micro",
  13490. height: math.unit(1.2, "cm")
  13491. },
  13492. {
  13493. name: "Normal",
  13494. height: math.unit(2.2, "m"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(180, "m")
  13500. },
  13501. {
  13502. name: "Megamacro",
  13503. height: math.unit(420, "km")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(2, "m"),
  13512. weight: math.unit(115, "kg"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/pia-sr/front.svg",
  13516. extra: 760 / 730,
  13517. bottom: 0.015
  13518. }
  13519. },
  13520. back: {
  13521. height: math.unit(2, "m"),
  13522. weight: math.unit(115, "kg"),
  13523. name: "Back",
  13524. image: {
  13525. source: "./media/characters/pia-sr/back.svg",
  13526. extra: 760 / 730,
  13527. bottom: 0.01
  13528. }
  13529. },
  13530. hand: {
  13531. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13532. name: "Hand",
  13533. image: {
  13534. source: "./media/characters/pia-sr/hand.svg"
  13535. }
  13536. },
  13537. foot: {
  13538. height: math.unit(1.83, "feet"),
  13539. name: "Foot",
  13540. image: {
  13541. source: "./media/characters/pia-sr/foot.svg"
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Micro",
  13548. height: math.unit(88, "mm")
  13549. },
  13550. {
  13551. name: "Normal",
  13552. height: math.unit(2, "m"),
  13553. default: true
  13554. },
  13555. {
  13556. name: "Macro",
  13557. height: math.unit(200, "m")
  13558. },
  13559. {
  13560. name: "Megamacro",
  13561. height: math.unit(420, "km")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(8 + 2 / 12, "feet"),
  13570. weight: math.unit(300, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/kibibyte/front.svg",
  13574. extra: 2221 / 2098,
  13575. bottom: 0.04
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Normal",
  13582. height: math.unit(8 + 2 / 12, "feet"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Socialable Macro",
  13587. height: math.unit(50, "feet")
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(300, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(500, "miles")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/felix/front.svg",
  13608. extra: 762 / 722,
  13609. bottom: 0.02
  13610. }
  13611. },
  13612. frontClothed: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Front (Clothed)",
  13616. image: {
  13617. source: "./media/characters/felix/front-clothed.svg",
  13618. extra: 762 / 722,
  13619. bottom: 0.02
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(6 + 8 / 12, "feet"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(2600, "feet")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(450, "miles")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13641. {
  13642. front: {
  13643. height: math.unit(6 + 1 / 12, "feet"),
  13644. weight: math.unit(250, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/tobo/front.svg",
  13648. extra: 608 / 586,
  13649. bottom: 0.023
  13650. }
  13651. },
  13652. back: {
  13653. height: math.unit(6 + 1 / 12, "feet"),
  13654. weight: math.unit(250, "lb"),
  13655. name: "Back",
  13656. image: {
  13657. source: "./media/characters/tobo/back.svg",
  13658. extra: 608 / 586
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Nano",
  13665. height: math.unit(2, "nm")
  13666. },
  13667. {
  13668. name: "Megamicro",
  13669. height: math.unit(0.1, "mm")
  13670. },
  13671. {
  13672. name: "Micro",
  13673. height: math.unit(1, "inch"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Human-sized",
  13678. height: math.unit(6 + 1 / 12, "feet")
  13679. },
  13680. {
  13681. name: "Macro",
  13682. height: math.unit(250, "feet")
  13683. },
  13684. {
  13685. name: "Megamacro",
  13686. height: math.unit(75, "miles")
  13687. },
  13688. {
  13689. name: "Texas-sized",
  13690. height: math.unit(750, "miles")
  13691. },
  13692. {
  13693. name: "Teramacro",
  13694. height: math.unit(50000, "miles")
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(269, "lb"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/danny-kapowsky/front.svg",
  13707. extra: 766 / 736,
  13708. bottom: 0.044
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(6, "feet"),
  13713. weight: math.unit(269, "lb"),
  13714. name: "Back",
  13715. image: {
  13716. source: "./media/characters/danny-kapowsky/back.svg",
  13717. extra: 797 / 760,
  13718. bottom: 0.025
  13719. }
  13720. },
  13721. },
  13722. [
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(150, "feet"),
  13726. default: true
  13727. },
  13728. {
  13729. name: "Macro+",
  13730. height: math.unit(200, "feet")
  13731. },
  13732. {
  13733. name: "Macro++",
  13734. height: math.unit(300, "feet")
  13735. },
  13736. {
  13737. name: "Macro+++",
  13738. height: math.unit(400, "feet")
  13739. },
  13740. ]
  13741. ))
  13742. characterMakers.push(() => makeCharacter(
  13743. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13744. {
  13745. side: {
  13746. height: math.unit(6, "feet"),
  13747. weight: math.unit(170, "lb"),
  13748. name: "Side",
  13749. image: {
  13750. source: "./media/characters/finn/side.svg",
  13751. extra: 1953 / 1807,
  13752. bottom: 0.057
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Megamacro",
  13759. height: math.unit(14445, "feet"),
  13760. default: true
  13761. },
  13762. ]
  13763. ))
  13764. characterMakers.push(() => makeCharacter(
  13765. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13766. {
  13767. front: {
  13768. height: math.unit(5 + 6 / 12, "feet"),
  13769. weight: math.unit(125, "lb"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/roy/front.svg",
  13773. extra: 1,
  13774. bottom: 0.11
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Micro",
  13781. height: math.unit(3, "inches"),
  13782. default: true
  13783. },
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(5 + 6 / 12, "feet")
  13787. },
  13788. {
  13789. name: "Lesser Macro",
  13790. height: math.unit(60, "feet")
  13791. },
  13792. {
  13793. name: "Greater Macro",
  13794. height: math.unit(120, "feet")
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(100, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/aevsivs/front.svg",
  13807. extra: 1,
  13808. bottom: 0.03
  13809. }
  13810. },
  13811. back: {
  13812. height: math.unit(6, "feet"),
  13813. weight: math.unit(100, "lb"),
  13814. name: "Back",
  13815. image: {
  13816. source: "./media/characters/aevsivs/back.svg"
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Micro",
  13823. height: math.unit(2, "inches"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(5, "feet")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(5 + 7 / 12, "feet"),
  13837. weight: math.unit(159, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/hildegard/front.svg",
  13841. extra: 289 / 269,
  13842. bottom: 7.63/297.8
  13843. }
  13844. },
  13845. back: {
  13846. height: math.unit(5 + 7 / 12, "feet"),
  13847. weight: math.unit(159, "lb"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/hildegard/back.svg",
  13851. extra: 280/260,
  13852. bottom: 2.3/282
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Normal",
  13859. height: math.unit(5 + 7 / 12, "feet"),
  13860. default: true
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13866. {
  13867. bernard: {
  13868. height: math.unit(2 + 7 / 12, "feet"),
  13869. weight: math.unit(66, "lb"),
  13870. name: "Bernard",
  13871. rename: true,
  13872. image: {
  13873. source: "./media/characters/bernard-wilder/bernard.svg",
  13874. extra: 192 / 128,
  13875. bottom: 0.05
  13876. }
  13877. },
  13878. wilder: {
  13879. height: math.unit(5 + 8 / 12, "feet"),
  13880. weight: math.unit(143, "lb"),
  13881. name: "Wilder",
  13882. rename: true,
  13883. image: {
  13884. source: "./media/characters/bernard-wilder/wilder.svg",
  13885. extra: 361 / 312,
  13886. bottom: 0.02
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Normal",
  13893. height: math.unit(2 + 7 / 12, "feet"),
  13894. default: true
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13900. {
  13901. anthro: {
  13902. height: math.unit(6 + 1 / 12, "feet"),
  13903. weight: math.unit(155, "lb"),
  13904. name: "Anthro",
  13905. image: {
  13906. source: "./media/characters/hearth/anthro.svg",
  13907. extra: 260 / 250,
  13908. bottom: 0.02
  13909. }
  13910. },
  13911. feral: {
  13912. height: math.unit(3.78, "feet"),
  13913. weight: math.unit(35, "kg"),
  13914. name: "Feral",
  13915. image: {
  13916. source: "./media/characters/hearth/feral.svg",
  13917. extra: 153 / 135,
  13918. bottom: 0.03
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(6 + 1 / 12, "feet"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(182, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/ingrid/front.svg",
  13939. extra: 294 / 268,
  13940. bottom: 0.027
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(6, "feet"),
  13948. default: true
  13949. },
  13950. ]
  13951. ))
  13952. characterMakers.push(() => makeCharacter(
  13953. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13954. {
  13955. eevee: {
  13956. height: math.unit(2 + 10 / 12, "feet"),
  13957. weight: math.unit(86, "lb"),
  13958. name: "Malgam",
  13959. image: {
  13960. source: "./media/characters/malgam/eevee.svg",
  13961. extra: 218 / 180,
  13962. bottom: 0.2
  13963. }
  13964. },
  13965. sylveon: {
  13966. height: math.unit(4, "feet"),
  13967. weight: math.unit(101, "lb"),
  13968. name: "Future Malgam",
  13969. rename: true,
  13970. image: {
  13971. source: "./media/characters/malgam/sylveon.svg",
  13972. extra: 371 / 325,
  13973. bottom: 0.015
  13974. }
  13975. },
  13976. gigantamax: {
  13977. height: math.unit(50, "feet"),
  13978. name: "Gigantamax Malgam",
  13979. rename: true,
  13980. image: {
  13981. source: "./media/characters/malgam/gigantamax.svg"
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(2 + 10 / 12, "feet"),
  13989. default: true
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13995. {
  13996. front: {
  13997. height: math.unit(5 + 11 / 12, "feet"),
  13998. weight: math.unit(188, "lb"),
  13999. name: "Front",
  14000. image: {
  14001. source: "./media/characters/fleur/front.svg",
  14002. extra: 309 / 283,
  14003. bottom: 0.007
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(5 + 11 / 12, "feet"),
  14011. default: true
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(5 + 4 / 12, "feet"),
  14020. weight: math.unit(122, "lb"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/jude/front.svg",
  14024. extra: 288 / 273,
  14025. bottom: 0.03
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Normal",
  14032. height: math.unit(5 + 4 / 12, "feet"),
  14033. default: true
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(5 + 11 / 12, "feet"),
  14042. weight: math.unit(190, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/seara/front.svg",
  14046. extra: 1,
  14047. bottom: 0.05
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(5 + 11 / 12, "feet"),
  14055. default: true
  14056. },
  14057. ]
  14058. ))
  14059. characterMakers.push(() => makeCharacter(
  14060. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14061. {
  14062. front: {
  14063. height: math.unit(16 + 5 / 12, "feet"),
  14064. weight: math.unit(524, "lb"),
  14065. name: "Front",
  14066. image: {
  14067. source: "./media/characters/caspian/front.svg",
  14068. extra: 1,
  14069. bottom: 0.04
  14070. }
  14071. },
  14072. },
  14073. [
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(16 + 5 / 12, "feet"),
  14077. default: true
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(5 + 7 / 12, "feet"),
  14086. weight: math.unit(170, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/mika/front.svg",
  14090. extra: 1,
  14091. bottom: 0.016
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Normal",
  14098. height: math.unit(5 + 7 / 12, "feet"),
  14099. default: true
  14100. },
  14101. ]
  14102. ))
  14103. characterMakers.push(() => makeCharacter(
  14104. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14105. {
  14106. front: {
  14107. height: math.unit(6 + 2 / 12, "feet"),
  14108. weight: math.unit(268, "lb"),
  14109. name: "Front",
  14110. image: {
  14111. source: "./media/characters/sol/front.svg",
  14112. extra: 247 / 231,
  14113. bottom: 0.05
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(6 + 2 / 12, "feet"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14127. {
  14128. buizel: {
  14129. height: math.unit(2 + 5 / 12, "feet"),
  14130. weight: math.unit(87, "lb"),
  14131. name: "Buizel",
  14132. image: {
  14133. source: "./media/characters/umiko/buizel.svg",
  14134. extra: 172 / 157,
  14135. bottom: 0.01
  14136. }
  14137. },
  14138. floatzel: {
  14139. height: math.unit(5 + 9 / 12, "feet"),
  14140. weight: math.unit(250, "lb"),
  14141. name: "Floatzel",
  14142. image: {
  14143. source: "./media/characters/umiko/floatzel.svg",
  14144. extra: 262 / 248
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(2 + 5 / 12, "feet"),
  14152. default: true
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6 + 2 / 12, "feet"),
  14161. weight: math.unit(146, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/iliac/front.svg",
  14165. extra: 389 / 365,
  14166. bottom: 0.035
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(6 + 2 / 12, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(170, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/topaz/front.svg",
  14187. extra: 317 / 303,
  14188. bottom: 0.055
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(6, "feet"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(5 + 11 / 12, "feet"),
  14205. weight: math.unit(144, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/gabriel/front.svg",
  14209. extra: 285 / 262,
  14210. bottom: 0.004
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(5 + 11 / 12, "feet"),
  14218. default: true
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14224. {
  14225. side: {
  14226. height: math.unit(6 + 5 / 12, "feet"),
  14227. weight: math.unit(300, "lb"),
  14228. name: "Side",
  14229. image: {
  14230. source: "./media/characters/tempest-suicune/side.svg",
  14231. extra: 195 / 154,
  14232. bottom: 0.04
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(6 + 5 / 12, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(7 + 2 / 12, "feet"),
  14249. weight: math.unit(322, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/vulcan/front.svg",
  14253. extra: 154 / 147,
  14254. bottom: 0.04
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(7 + 2 / 12, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(5 + 10 / 12, "feet"),
  14271. weight: math.unit(264, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/gault/front.svg",
  14275. extra: 161 / 140,
  14276. bottom: 0.028
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(5 + 10 / 12, "feet"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(150, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/shard/front.svg",
  14297. extra: 273 / 238,
  14298. bottom: 0.02
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(3 + 6 / 12, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(5 + 11 / 12, "feet"),
  14315. weight: math.unit(146, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/ashe/front.svg",
  14319. extra: 400 / 373,
  14320. bottom: 0.01
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(5 + 11 / 12, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(5 + 5 / 12, "feet"),
  14337. weight: math.unit(135, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/beatrix/front.svg",
  14341. extra: 392 / 379,
  14342. bottom: 0.01
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Normal",
  14349. height: math.unit(6, "feet"),
  14350. default: true
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(6, "feet"),
  14359. weight: math.unit(150, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/ignatius/front.svg",
  14363. extra: 245 / 222,
  14364. bottom: 0.01
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(5 + 5 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(6 + 2 / 12, "feet"),
  14381. weight: math.unit(138, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/mei-li/front.svg",
  14385. extra: 237 / 229,
  14386. bottom: 0.03
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(6 + 2 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(2 + 4 / 12, "feet"),
  14403. weight: math.unit(62, "lb"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/puru/front.svg",
  14407. extra: 206 / 149,
  14408. bottom: 0.06
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(2 + 4 / 12, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14422. {
  14423. taur: {
  14424. height: math.unit(11, "feet"),
  14425. weight: math.unit(500, "lb"),
  14426. name: "Taur",
  14427. image: {
  14428. source: "./media/characters/kee/taur.svg",
  14429. extra: 1,
  14430. bottom: 0.04
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(11, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14444. {
  14445. anthro: {
  14446. height: math.unit(7, "feet"),
  14447. weight: math.unit(190, "lb"),
  14448. name: "Anthro",
  14449. image: {
  14450. source: "./media/characters/cobalt-dracha/anthro.svg",
  14451. extra: 231 / 225,
  14452. bottom: 0.04
  14453. }
  14454. },
  14455. feral: {
  14456. height: math.unit(9 + 7 / 12, "feet"),
  14457. weight: math.unit(294, "lb"),
  14458. name: "Feral",
  14459. image: {
  14460. source: "./media/characters/cobalt-dracha/feral.svg",
  14461. extra: 692 / 633,
  14462. bottom: 0.05
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(7, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14476. {
  14477. fallen: {
  14478. height: math.unit(11 + 8 / 12, "feet"),
  14479. weight: math.unit(485, "lb"),
  14480. name: "Java (Fallen)",
  14481. rename: true,
  14482. image: {
  14483. source: "./media/characters/java/fallen.svg",
  14484. extra: 226 / 208,
  14485. bottom: 0.005
  14486. }
  14487. },
  14488. godkin: {
  14489. height: math.unit(10 + 6 / 12, "feet"),
  14490. weight: math.unit(328, "lb"),
  14491. name: "Java (Godkin)",
  14492. rename: true,
  14493. image: {
  14494. source: "./media/characters/java/godkin.svg",
  14495. extra: 270 / 262,
  14496. bottom: 0.02
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(11 + 8 / 12, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(7 + 8 / 12, "feet"),
  14513. weight: math.unit(320, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/skoll/front.svg",
  14517. extra: 232 / 220,
  14518. bottom: 0.02
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Normal",
  14525. height: math.unit(7 + 8 / 12, "feet"),
  14526. default: true
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(5 + 9 / 12, "feet"),
  14535. weight: math.unit(170, "lb"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/purna/front.svg",
  14539. extra: 239 / 229,
  14540. bottom: 0.01
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(5 + 9 / 12, "feet"),
  14548. default: true
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(5 + 9 / 12, "feet"),
  14557. weight: math.unit(142, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/kuva/front.svg",
  14561. extra: 281 / 271,
  14562. bottom: 0.006
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(5 + 9 / 12, "feet"),
  14570. default: true
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14576. {
  14577. anthro: {
  14578. height: math.unit(9 + 2 / 12, "feet"),
  14579. weight: math.unit(270, "lb"),
  14580. name: "Anthro",
  14581. image: {
  14582. source: "./media/characters/embra/anthro.svg",
  14583. extra: 200 / 187,
  14584. bottom: 0.02
  14585. }
  14586. },
  14587. feral: {
  14588. height: math.unit(18 + 8 / 12, "feet"),
  14589. weight: math.unit(576, "lb"),
  14590. name: "Feral",
  14591. image: {
  14592. source: "./media/characters/embra/feral.svg",
  14593. extra: 152 / 137,
  14594. bottom: 0.037
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(9 + 2 / 12, "feet"),
  14602. default: true
  14603. },
  14604. ]
  14605. ))
  14606. characterMakers.push(() => makeCharacter(
  14607. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14608. {
  14609. anthro: {
  14610. height: math.unit(10 + 9 / 12, "feet"),
  14611. weight: math.unit(224, "lb"),
  14612. name: "Anthro",
  14613. image: {
  14614. source: "./media/characters/grottos/anthro.svg",
  14615. extra: 350 / 332,
  14616. bottom: 0.045
  14617. }
  14618. },
  14619. feral: {
  14620. height: math.unit(20 + 7 / 12, "feet"),
  14621. weight: math.unit(629, "lb"),
  14622. name: "Feral",
  14623. image: {
  14624. source: "./media/characters/grottos/feral.svg",
  14625. extra: 207 / 190,
  14626. bottom: 0.05
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(10 + 9 / 12, "feet"),
  14634. default: true
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14640. {
  14641. anthro: {
  14642. height: math.unit(9 + 6 / 12, "feet"),
  14643. weight: math.unit(298, "lb"),
  14644. name: "Anthro",
  14645. image: {
  14646. source: "./media/characters/frifna/anthro.svg",
  14647. extra: 282 / 269,
  14648. bottom: 0.015
  14649. }
  14650. },
  14651. feral: {
  14652. height: math.unit(16 + 2 / 12, "feet"),
  14653. weight: math.unit(624, "lb"),
  14654. name: "Feral",
  14655. image: {
  14656. source: "./media/characters/frifna/feral.svg"
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(9 + 6 / 12, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(6 + 2 / 12, "feet"),
  14673. weight: math.unit(168, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/elise/front.svg",
  14677. extra: 276 / 271
  14678. }
  14679. },
  14680. },
  14681. [
  14682. {
  14683. name: "Normal",
  14684. height: math.unit(6 + 2 / 12, "feet"),
  14685. default: true
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(5 + 10 / 12, "feet"),
  14694. weight: math.unit(210, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/glade/front.svg",
  14698. extra: 258 / 247,
  14699. bottom: 0.008
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(5 + 10 / 12, "feet"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(5 + 10 / 12, "feet"),
  14716. weight: math.unit(129, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/rina/front.svg",
  14720. extra: 266 / 255,
  14721. bottom: 0.005
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(5 + 10 / 12, "feet"),
  14729. default: true
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14735. {
  14736. front: {
  14737. height: math.unit(6 + 1 / 12, "feet"),
  14738. weight: math.unit(192, "lb"),
  14739. name: "Front",
  14740. image: {
  14741. source: "./media/characters/veronica/front.svg",
  14742. extra: 319 / 309,
  14743. bottom: 0.005
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(6 + 1 / 12, "feet"),
  14751. default: true
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(9 + 3 / 12, "feet"),
  14760. weight: math.unit(1100, "lb"),
  14761. name: "Front",
  14762. image: {
  14763. source: "./media/characters/braxton/front.svg",
  14764. extra: 1057 / 984,
  14765. bottom: 0.05
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(9 + 3 / 12, "feet")
  14773. },
  14774. {
  14775. name: "Giant",
  14776. height: math.unit(300, "feet"),
  14777. default: true
  14778. },
  14779. {
  14780. name: "Macro",
  14781. height: math.unit(700, "feet")
  14782. },
  14783. {
  14784. name: "Megamacro",
  14785. height: math.unit(6000, "feet")
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(6 + 7 / 12, "feet"),
  14794. weight: math.unit(150, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/blue-feyonics/front.svg",
  14798. extra: 1403 / 1306,
  14799. bottom: 0.047
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(6 + 7 / 12, "feet"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(1.8, "meters"),
  14816. weight: math.unit(60, "kg"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/maxwell/front.svg",
  14820. extra: 2060 / 1873
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Micro",
  14827. height: math.unit(1, "mm")
  14828. },
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(1.8, "meter"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Macro",
  14836. height: math.unit(30, "meters")
  14837. },
  14838. {
  14839. name: "Megamacro",
  14840. height: math.unit(10, "km")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/jack/front.svg",
  14853. extra: 1754 / 1640,
  14854. bottom: 0.01
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(80000, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Max size",
  14866. height: math.unit(10, "lightyears")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14872. {
  14873. upright: {
  14874. height: math.unit(7, "feet"),
  14875. weight: math.unit(170, "lb"),
  14876. name: "Upright",
  14877. image: {
  14878. source: "./media/characters/cafat/upright.svg",
  14879. bottom: 0.01
  14880. }
  14881. },
  14882. uprightFull: {
  14883. height: math.unit(7, "feet"),
  14884. weight: math.unit(170, "lb"),
  14885. name: "Upright (Full)",
  14886. image: {
  14887. source: "./media/characters/cafat/upright-full.svg",
  14888. bottom: 0.01
  14889. }
  14890. },
  14891. side: {
  14892. height: math.unit(5, "feet"),
  14893. weight: math.unit(150, "lb"),
  14894. name: "Side",
  14895. image: {
  14896. source: "./media/characters/cafat/side.svg"
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Small",
  14903. height: math.unit(7, "feet"),
  14904. default: true
  14905. },
  14906. {
  14907. name: "Large",
  14908. height: math.unit(15.5, "feet")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/verin-raharra/front.svg",
  14921. extra: 5019 / 4835,
  14922. bottom: 0.023
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(7 + 5 / 12, "feet"),
  14930. default: true
  14931. },
  14932. {
  14933. name: "Upsized",
  14934. height: math.unit(20, "feet")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(7, "feet"),
  14943. weight: math.unit(230, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/nakata/front.svg",
  14947. extra: 1.005,
  14948. bottom: 0.01
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(7, "feet"),
  14956. default: true
  14957. },
  14958. {
  14959. name: "Big",
  14960. height: math.unit(14, "feet")
  14961. },
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(400, "feet")
  14965. },
  14966. ]
  14967. ))
  14968. characterMakers.push(() => makeCharacter(
  14969. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14970. {
  14971. front: {
  14972. height: math.unit(4.91, "feet"),
  14973. weight: math.unit(100, "lb"),
  14974. name: "Front",
  14975. image: {
  14976. source: "./media/characters/lily/front.svg",
  14977. extra: 1585 / 1415,
  14978. bottom: 0.02
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(4.91, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14992. {
  14993. laying: {
  14994. height: math.unit(4 + 4 / 12, "feet"),
  14995. weight: math.unit(600, "lb"),
  14996. name: "Laying",
  14997. image: {
  14998. source: "./media/characters/sheila/laying.svg",
  14999. extra: 1333 / 1265,
  15000. bottom: 0.16
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Normal",
  15007. height: math.unit(4 + 4 / 12, "feet"),
  15008. default: true
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(6, "feet"),
  15017. weight: math.unit(190, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/sax/front.svg",
  15021. extra: 1187 / 973,
  15022. bottom: 0.042
  15023. }
  15024. },
  15025. },
  15026. [
  15027. {
  15028. name: "Micro",
  15029. height: math.unit(4, "inches"),
  15030. default: true
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/pandora/front.svg",
  15043. extra: 2720 / 2556,
  15044. bottom: 0.015
  15045. }
  15046. },
  15047. back: {
  15048. height: math.unit(6, "feet"),
  15049. weight: math.unit(150, "lb"),
  15050. name: "Back",
  15051. image: {
  15052. source: "./media/characters/pandora/back.svg",
  15053. extra: 2720 / 2556,
  15054. bottom: 0.01
  15055. }
  15056. },
  15057. beans: {
  15058. height: math.unit(6 / 8, "feet"),
  15059. name: "Beans",
  15060. image: {
  15061. source: "./media/characters/pandora/beans.svg"
  15062. }
  15063. },
  15064. skirt: {
  15065. height: math.unit(6, "feet"),
  15066. weight: math.unit(150, "lb"),
  15067. name: "Skirt",
  15068. image: {
  15069. source: "./media/characters/pandora/skirt.svg",
  15070. extra: 1622 / 1525,
  15071. bottom: 0.015
  15072. }
  15073. },
  15074. hoodie: {
  15075. height: math.unit(6, "feet"),
  15076. weight: math.unit(150, "lb"),
  15077. name: "Hoodie",
  15078. image: {
  15079. source: "./media/characters/pandora/hoodie.svg",
  15080. extra: 1622 / 1525,
  15081. bottom: 0.015
  15082. }
  15083. },
  15084. casual: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(150, "lb"),
  15087. name: "Casual",
  15088. image: {
  15089. source: "./media/characters/pandora/casual.svg",
  15090. extra: 1622 / 1525,
  15091. bottom: 0.015
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(6, "feet")
  15099. },
  15100. {
  15101. name: "Big Steppy",
  15102. height: math.unit(1, "km"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15109. {
  15110. side: {
  15111. height: math.unit(10, "feet"),
  15112. weight: math.unit(800, "kg"),
  15113. name: "Side",
  15114. image: {
  15115. source: "./media/characters/venio-darcony/side.svg",
  15116. extra: 1373 / 1003,
  15117. bottom: 0.037
  15118. }
  15119. },
  15120. front: {
  15121. height: math.unit(19, "feet"),
  15122. weight: math.unit(800, "kg"),
  15123. name: "Front",
  15124. image: {
  15125. source: "./media/characters/venio-darcony/front.svg"
  15126. }
  15127. },
  15128. back: {
  15129. height: math.unit(19, "feet"),
  15130. weight: math.unit(800, "kg"),
  15131. name: "Back",
  15132. image: {
  15133. source: "./media/characters/venio-darcony/back.svg"
  15134. }
  15135. },
  15136. sideNsfw: {
  15137. height: math.unit(10, "feet"),
  15138. weight: math.unit(800, "kg"),
  15139. name: "Side (NSFW)",
  15140. image: {
  15141. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15142. extra: 1373 / 1003,
  15143. bottom: 0.037
  15144. }
  15145. },
  15146. frontNsfw: {
  15147. height: math.unit(19, "feet"),
  15148. weight: math.unit(800, "kg"),
  15149. name: "Front (NSFW)",
  15150. image: {
  15151. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15152. }
  15153. },
  15154. backNsfw: {
  15155. height: math.unit(19, "feet"),
  15156. weight: math.unit(800, "kg"),
  15157. name: "Back (NSFW)",
  15158. image: {
  15159. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15160. }
  15161. },
  15162. sideArmored: {
  15163. height: math.unit(10, "feet"),
  15164. weight: math.unit(800, "kg"),
  15165. name: "Side (Armored)",
  15166. image: {
  15167. source: "./media/characters/venio-darcony/side-armored.svg",
  15168. extra: 1373 / 1003,
  15169. bottom: 0.037
  15170. }
  15171. },
  15172. frontArmored: {
  15173. height: math.unit(19, "feet"),
  15174. weight: math.unit(900, "kg"),
  15175. name: "Front (Armored)",
  15176. image: {
  15177. source: "./media/characters/venio-darcony/front-armored.svg"
  15178. }
  15179. },
  15180. backArmored: {
  15181. height: math.unit(19, "feet"),
  15182. weight: math.unit(900, "kg"),
  15183. name: "Back (Armored)",
  15184. image: {
  15185. source: "./media/characters/venio-darcony/back-armored.svg"
  15186. }
  15187. },
  15188. sword: {
  15189. height: math.unit(10, "feet"),
  15190. weight: math.unit(50, "lb"),
  15191. name: "Sword",
  15192. image: {
  15193. source: "./media/characters/venio-darcony/sword.svg"
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(10, "feet")
  15201. },
  15202. {
  15203. name: "Macro",
  15204. height: math.unit(130, "feet"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Macro+",
  15209. height: math.unit(240, "feet")
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(6, "feet"),
  15218. weight: math.unit(150, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/veski/front.svg",
  15222. extra: 1299 / 1225,
  15223. bottom: 0.04
  15224. }
  15225. },
  15226. back: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(150, "lb"),
  15229. name: "Back",
  15230. image: {
  15231. source: "./media/characters/veski/back.svg",
  15232. extra: 1299 / 1225,
  15233. bottom: 0.008
  15234. }
  15235. },
  15236. maw: {
  15237. height: math.unit(1.5 * 1.21, "feet"),
  15238. name: "Maw",
  15239. image: {
  15240. source: "./media/characters/veski/maw.svg"
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Macro",
  15247. height: math.unit(2, "km"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 7 / 12, "feet"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/isabelle/front.svg",
  15260. extra: 2130 / 1976,
  15261. bottom: 0.05
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Supermicro",
  15268. height: math.unit(10, "micrometers")
  15269. },
  15270. {
  15271. name: "Micro",
  15272. height: math.unit(1, "inch")
  15273. },
  15274. {
  15275. name: "Tiny",
  15276. height: math.unit(5, "inches")
  15277. },
  15278. {
  15279. name: "Standard",
  15280. height: math.unit(5 + 7 / 12, "inches")
  15281. },
  15282. {
  15283. name: "Macro",
  15284. height: math.unit(80, "meters"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Megamacro",
  15289. height: math.unit(250, "meters")
  15290. },
  15291. {
  15292. name: "Gigamacro",
  15293. height: math.unit(5, "km")
  15294. },
  15295. {
  15296. name: "Cosmic",
  15297. height: math.unit(2.5e6, "miles")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(6, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/hanzo/front.svg",
  15310. extra: 374 / 344,
  15311. bottom: 0.02
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(8, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(7, "feet"),
  15328. weight: math.unit(130, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/anna/front.svg",
  15332. extra: 169 / 145,
  15333. bottom: 0.06
  15334. }
  15335. },
  15336. full: {
  15337. height: math.unit(4.96, "feet"),
  15338. weight: math.unit(220, "lb"),
  15339. name: "Full",
  15340. image: {
  15341. source: "./media/characters/anna/full.svg",
  15342. extra: 138 / 114,
  15343. bottom: 0.15
  15344. }
  15345. },
  15346. tongue: {
  15347. height: math.unit(2.53, "feet"),
  15348. name: "Tongue",
  15349. image: {
  15350. source: "./media/characters/anna/tongue.svg"
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Normal",
  15357. height: math.unit(7, "feet"),
  15358. default: true
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15364. {
  15365. front: {
  15366. height: math.unit(7, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Front",
  15369. image: {
  15370. source: "./media/characters/ian-corvid/front.svg",
  15371. extra: 150 / 142,
  15372. bottom: 0.02
  15373. }
  15374. },
  15375. back: {
  15376. height: math.unit(7, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Back",
  15379. image: {
  15380. source: "./media/characters/ian-corvid/back.svg",
  15381. extra: 150 / 143,
  15382. bottom: 0.01
  15383. }
  15384. },
  15385. stomping: {
  15386. height: math.unit(7, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Stomping",
  15389. image: {
  15390. source: "./media/characters/ian-corvid/stomping.svg",
  15391. extra: 76 / 72
  15392. }
  15393. },
  15394. sitting: {
  15395. height: math.unit(7 / 1.8, "feet"),
  15396. weight: math.unit(150, "lb"),
  15397. name: "Sitting",
  15398. image: {
  15399. source: "./media/characters/ian-corvid/sitting.svg",
  15400. extra: 1400 / 1269,
  15401. bottom: 0.15
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Tiny Microw",
  15408. height: math.unit(1, "inch")
  15409. },
  15410. {
  15411. name: "Microw",
  15412. height: math.unit(6, "inches")
  15413. },
  15414. {
  15415. name: "Crow",
  15416. height: math.unit(7 + 1 / 12, "feet"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Macrow",
  15421. height: math.unit(176, "feet")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(5 + 7 / 12, "feet"),
  15430. weight: math.unit(147, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/natalie-kellon/front.svg",
  15434. extra: 1214 / 1141,
  15435. bottom: 0.02
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Micro",
  15442. height: math.unit(1 / 16, "inch")
  15443. },
  15444. {
  15445. name: "Tiny",
  15446. height: math.unit(4, "inches")
  15447. },
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(5 + 7 / 12, "feet"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Amazon",
  15455. height: math.unit(12, "feet")
  15456. },
  15457. {
  15458. name: "Giantess",
  15459. height: math.unit(160, "meters")
  15460. },
  15461. {
  15462. name: "Titaness",
  15463. height: math.unit(800, "meters")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/alluria/front.svg",
  15476. extra: 806 / 738,
  15477. bottom: 0.01
  15478. }
  15479. },
  15480. side: {
  15481. height: math.unit(6, "feet"),
  15482. weight: math.unit(150, "lb"),
  15483. name: "Side",
  15484. image: {
  15485. source: "./media/characters/alluria/side.svg",
  15486. extra: 800 / 750,
  15487. }
  15488. },
  15489. back: {
  15490. height: math.unit(6, "feet"),
  15491. weight: math.unit(150, "lb"),
  15492. name: "Back",
  15493. image: {
  15494. source: "./media/characters/alluria/back.svg",
  15495. extra: 806 / 738,
  15496. }
  15497. },
  15498. frontMaid: {
  15499. height: math.unit(6, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Front (Maid)",
  15502. image: {
  15503. source: "./media/characters/alluria/front-maid.svg",
  15504. extra: 806 / 738,
  15505. bottom: 0.01
  15506. }
  15507. },
  15508. sideMaid: {
  15509. height: math.unit(6, "feet"),
  15510. weight: math.unit(150, "lb"),
  15511. name: "Side (Maid)",
  15512. image: {
  15513. source: "./media/characters/alluria/side-maid.svg",
  15514. extra: 800 / 750,
  15515. bottom: 0.005
  15516. }
  15517. },
  15518. backMaid: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(150, "lb"),
  15521. name: "Back (Maid)",
  15522. image: {
  15523. source: "./media/characters/alluria/back-maid.svg",
  15524. extra: 806 / 738,
  15525. }
  15526. },
  15527. },
  15528. [
  15529. {
  15530. name: "Micro",
  15531. height: math.unit(6, "inches"),
  15532. default: true
  15533. },
  15534. ]
  15535. ))
  15536. characterMakers.push(() => makeCharacter(
  15537. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15538. {
  15539. front: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(150, "lb"),
  15542. name: "Front",
  15543. image: {
  15544. source: "./media/characters/kyle/front.svg",
  15545. extra: 1069 / 962,
  15546. bottom: 77.228 / 1727.45
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Macro",
  15553. height: math.unit(150, "feet"),
  15554. default: true
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(300, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/duncan/front.svg",
  15567. extra: 1650 / 1482,
  15568. bottom: 0.05
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(100, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(5 + 4 / 12, "feet"),
  15585. weight: math.unit(220, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/memory/front.svg",
  15589. extra: 3641 / 3545,
  15590. bottom: 0.03
  15591. }
  15592. },
  15593. back: {
  15594. height: math.unit(5 + 4 / 12, "feet"),
  15595. weight: math.unit(220, "lb"),
  15596. name: "Back",
  15597. image: {
  15598. source: "./media/characters/memory/back.svg",
  15599. extra: 3641 / 3545,
  15600. bottom: 0.025
  15601. }
  15602. },
  15603. frontSkirt: {
  15604. height: math.unit(5 + 4 / 12, "feet"),
  15605. weight: math.unit(220, "lb"),
  15606. name: "Front (Skirt)",
  15607. image: {
  15608. source: "./media/characters/memory/front-skirt.svg",
  15609. extra: 3641 / 3545,
  15610. bottom: 0.03
  15611. }
  15612. },
  15613. frontDress: {
  15614. height: math.unit(5 + 4 / 12, "feet"),
  15615. weight: math.unit(220, "lb"),
  15616. name: "Front (Dress)",
  15617. image: {
  15618. source: "./media/characters/memory/front-dress.svg",
  15619. extra: 3641 / 3545,
  15620. bottom: 0.03
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Micro",
  15627. height: math.unit(6, "inches"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(5 + 4 / 12, "feet")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(4 + 11 / 12, "feet"),
  15641. weight: math.unit(100, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/luno/front.svg",
  15645. extra: 1535 / 1487,
  15646. bottom: 0.03
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Micro",
  15653. height: math.unit(3, "inches")
  15654. },
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(4 + 11 / 12, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(300, "feet")
  15663. },
  15664. {
  15665. name: "Megamacro",
  15666. height: math.unit(700, "miles")
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15672. {
  15673. front: {
  15674. height: math.unit(6 + 2 / 12, "feet"),
  15675. weight: math.unit(170, "lb"),
  15676. name: "Front",
  15677. image: {
  15678. source: "./media/characters/jamesy/front.svg",
  15679. extra: 440 / 382,
  15680. bottom: 0.005
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Micro",
  15687. height: math.unit(3, "inches")
  15688. },
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(6 + 2 / 12, "feet"),
  15692. default: true
  15693. },
  15694. {
  15695. name: "Macro",
  15696. height: math.unit(300, "feet")
  15697. },
  15698. {
  15699. name: "Megamacro",
  15700. height: math.unit(700, "miles")
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15706. {
  15707. front: {
  15708. height: math.unit(6, "feet"),
  15709. weight: math.unit(160, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/mark/front.svg",
  15713. extra: 3300 / 3100,
  15714. bottom: 136.42 / 3440.47
  15715. }
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Macro",
  15721. height: math.unit(120, "meters")
  15722. },
  15723. {
  15724. name: "Bigger Macro",
  15725. height: math.unit(350, "meters")
  15726. },
  15727. {
  15728. name: "Megamacro",
  15729. height: math.unit(8, "km"),
  15730. default: true
  15731. },
  15732. {
  15733. name: "Continental",
  15734. height: math.unit(4550, "km")
  15735. },
  15736. {
  15737. name: "Planetary",
  15738. height: math.unit(65000, "km")
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(6, "feet"),
  15747. weight: math.unit(400, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/mac/front.svg",
  15751. extra: 1048 / 987.7,
  15752. bottom: 60 / 1107.6,
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Macro",
  15759. height: math.unit(500, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(5 + 2 / 12, "feet"),
  15769. weight: math.unit(190, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/bari/front.svg",
  15773. extra: 3156 / 2880,
  15774. bottom: 0.03
  15775. }
  15776. },
  15777. back: {
  15778. height: math.unit(5 + 2 / 12, "feet"),
  15779. weight: math.unit(190, "lb"),
  15780. name: "Back",
  15781. image: {
  15782. source: "./media/characters/bari/back.svg",
  15783. extra: 3260 / 2834,
  15784. bottom: 0.025
  15785. }
  15786. },
  15787. frontPlush: {
  15788. height: math.unit(5 + 2 / 12, "feet"),
  15789. weight: math.unit(190, "lb"),
  15790. name: "Front (Plush)",
  15791. image: {
  15792. source: "./media/characters/bari/front-plush.svg",
  15793. extra: 1112 / 1061,
  15794. bottom: 0.002
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Micro",
  15801. height: math.unit(3, "inches")
  15802. },
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(5 + 2 / 12, "feet"),
  15806. default: true
  15807. },
  15808. {
  15809. name: "Macro",
  15810. height: math.unit(20, "feet")
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(6 + 1 / 12, "feet"),
  15819. weight: math.unit(275, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/hunter-misha-raven/front.svg"
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Mortal",
  15829. height: math.unit(6 + 1 / 12, "feet")
  15830. },
  15831. {
  15832. name: "Divine",
  15833. height: math.unit(1.12134e34, "parsecs"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15840. {
  15841. front: {
  15842. height: math.unit(6 + 3 / 12, "feet"),
  15843. weight: math.unit(220, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/max-calore/front.svg",
  15847. extra: 1700 / 1648,
  15848. bottom: 0.01
  15849. }
  15850. },
  15851. back: {
  15852. height: math.unit(6 + 3 / 12, "feet"),
  15853. weight: math.unit(220, "lb"),
  15854. name: "Back",
  15855. image: {
  15856. source: "./media/characters/max-calore/back.svg",
  15857. extra: 1700 / 1648,
  15858. bottom: 0.01
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(6 + 3 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15872. {
  15873. side: {
  15874. height: math.unit(2 + 8 / 12, "feet"),
  15875. weight: math.unit(99, "lb"),
  15876. name: "Side",
  15877. image: {
  15878. source: "./media/characters/aspen/side.svg",
  15879. extra: 152 / 138,
  15880. bottom: 0.032
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(2 + 8 / 12, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15894. {
  15895. side: {
  15896. height: math.unit(3 + 2 / 12, "feet"),
  15897. weight: math.unit(224, "lb"),
  15898. name: "Side",
  15899. image: {
  15900. source: "./media/characters/sheila-feral-wolf/side.svg",
  15901. extra: 179 / 166,
  15902. bottom: 0.03
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(3 + 2 / 12, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15916. {
  15917. side: {
  15918. height: math.unit(1 + 9 / 12, "feet"),
  15919. weight: math.unit(38, "lb"),
  15920. name: "Side",
  15921. image: {
  15922. source: "./media/characters/michelle/side.svg",
  15923. extra: 147 / 136.7,
  15924. bottom: 0.03
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(1 + 9 / 12, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(1 + 1 / 12, "feet"),
  15941. weight: math.unit(18, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/nino/front.svg"
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Normal",
  15951. height: math.unit(1 + 1 / 12, "feet"),
  15952. default: true
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15958. {
  15959. front: {
  15960. height: math.unit(1, "feet"),
  15961. weight: math.unit(16, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/viola/front.svg"
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(1, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6 + 5 / 12, "feet"),
  15981. weight: math.unit(580, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/atlas/front.svg",
  15985. extra: 298.5 / 290,
  15986. bottom: 0.015
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(6 + 5 / 12, "feet"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16000. {
  16001. side: {
  16002. height: math.unit(1 + 10 / 12, "feet"),
  16003. weight: math.unit(25, "lb"),
  16004. name: "Side",
  16005. image: {
  16006. source: "./media/characters/davy/side.svg",
  16007. extra: 200 / 170,
  16008. bottom: 0.01
  16009. }
  16010. },
  16011. },
  16012. [
  16013. {
  16014. name: "Normal",
  16015. height: math.unit(1 + 10 / 12, "feet"),
  16016. default: true
  16017. },
  16018. ]
  16019. ))
  16020. characterMakers.push(() => makeCharacter(
  16021. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16022. {
  16023. side: {
  16024. height: math.unit(4 + 8 / 12, "feet"),
  16025. weight: math.unit(166, "lb"),
  16026. name: "Side",
  16027. image: {
  16028. source: "./media/characters/fiona/side.svg",
  16029. extra: 232 / 220,
  16030. bottom: 0.03
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Normal",
  16037. height: math.unit(4 + 8 / 12, "feet"),
  16038. default: true
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16044. {
  16045. front: {
  16046. height: math.unit(2, "feet"),
  16047. weight: math.unit(62, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/lyla/front.svg",
  16051. bottom: 0.1
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(2, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16065. {
  16066. side: {
  16067. height: math.unit(1.8, "feet"),
  16068. weight: math.unit(44, "lb"),
  16069. name: "Side",
  16070. image: {
  16071. source: "./media/characters/perseus/side.svg",
  16072. bottom: 0.21
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Normal",
  16079. height: math.unit(1.8, "feet"),
  16080. default: true
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16086. {
  16087. side: {
  16088. height: math.unit(4 + 2 / 12, "feet"),
  16089. weight: math.unit(20, "lb"),
  16090. name: "Side",
  16091. image: {
  16092. source: "./media/characters/remus/side.svg"
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(4 + 2 / 12, "feet"),
  16100. default: true
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(4 + 11 / 12, "feet"),
  16109. weight: math.unit(114, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/raf/front.svg",
  16113. bottom: 0.01
  16114. }
  16115. },
  16116. side: {
  16117. height: math.unit(4 + 11 / 12, "feet"),
  16118. weight: math.unit(114, "lb"),
  16119. name: "Side",
  16120. image: {
  16121. source: "./media/characters/raf/side.svg",
  16122. bottom: 0.005
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Micro",
  16129. height: math.unit(2, "inches")
  16130. },
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(4 + 11 / 12, "feet"),
  16134. default: true
  16135. },
  16136. {
  16137. name: "Macro",
  16138. height: math.unit(70, "feet")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(1.5, "meters"),
  16147. weight: math.unit(68, "kg"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/liam-einarr/front.svg",
  16151. extra: 2822 / 2666
  16152. }
  16153. },
  16154. back: {
  16155. height: math.unit(1.5, "meters"),
  16156. weight: math.unit(68, "kg"),
  16157. name: "Back",
  16158. image: {
  16159. source: "./media/characters/liam-einarr/back.svg",
  16160. extra: 2822 / 2666,
  16161. bottom: 0.015
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(1.5, "meters"),
  16169. default: true
  16170. },
  16171. {
  16172. name: "Macro",
  16173. height: math.unit(150, "meters")
  16174. },
  16175. {
  16176. name: "Megamacro",
  16177. height: math.unit(35, "km")
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16183. {
  16184. front: {
  16185. height: math.unit(6, "feet"),
  16186. weight: math.unit(75, "kg"),
  16187. name: "Front",
  16188. image: {
  16189. source: "./media/characters/linda/front.svg",
  16190. extra: 930 / 874,
  16191. bottom: 0.004
  16192. }
  16193. },
  16194. },
  16195. [
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(6, "feet"),
  16199. default: true
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16205. {
  16206. front: {
  16207. height: math.unit(6 + 8 / 12, "feet"),
  16208. weight: math.unit(220, "lb"),
  16209. name: "Front",
  16210. image: {
  16211. source: "./media/characters/caylex/front.svg",
  16212. extra: 821 / 772,
  16213. bottom: 0.07
  16214. }
  16215. },
  16216. back: {
  16217. height: math.unit(6 + 8 / 12, "feet"),
  16218. weight: math.unit(220, "lb"),
  16219. name: "Back",
  16220. image: {
  16221. source: "./media/characters/caylex/back.svg",
  16222. extra: 821 / 772,
  16223. bottom: 0.022
  16224. }
  16225. },
  16226. hand: {
  16227. height: math.unit(1.25, "feet"),
  16228. name: "Hand",
  16229. image: {
  16230. source: "./media/characters/caylex/hand.svg"
  16231. }
  16232. },
  16233. foot: {
  16234. height: math.unit(1.6, "feet"),
  16235. name: "Foot",
  16236. image: {
  16237. source: "./media/characters/caylex/foot.svg"
  16238. }
  16239. },
  16240. armored: {
  16241. height: math.unit(6 + 8 / 12, "feet"),
  16242. weight: math.unit(250, "lb"),
  16243. name: "Armored",
  16244. image: {
  16245. source: "./media/characters/caylex/armored.svg",
  16246. extra: 1420 / 1310,
  16247. bottom: 0.045
  16248. }
  16249. },
  16250. },
  16251. [
  16252. {
  16253. name: "Normal",
  16254. height: math.unit(6 + 8 / 12, "feet"),
  16255. default: true
  16256. },
  16257. {
  16258. name: "Normal+",
  16259. height: math.unit(12, "feet")
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16265. {
  16266. front: {
  16267. height: math.unit(7 + 6 / 12, "feet"),
  16268. weight: math.unit(288, "lb"),
  16269. name: "Front",
  16270. image: {
  16271. source: "./media/characters/alana/front.svg",
  16272. extra: 679 / 653,
  16273. bottom: 22.5 / 701
  16274. }
  16275. },
  16276. },
  16277. [
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(7 + 6 / 12, "feet")
  16281. },
  16282. {
  16283. name: "Large",
  16284. height: math.unit(50, "feet")
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(100, "feet"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Macro+",
  16293. height: math.unit(200, "feet")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(6 + 1 / 12, "feet"),
  16302. weight: math.unit(210, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/hasani/front.svg",
  16306. extra: 244 / 232,
  16307. bottom: 0.01
  16308. }
  16309. },
  16310. back: {
  16311. height: math.unit(6 + 1 / 12, "feet"),
  16312. weight: math.unit(210, "lb"),
  16313. name: "Back",
  16314. image: {
  16315. source: "./media/characters/hasani/back.svg",
  16316. extra: 244 / 232,
  16317. bottom: 0.01
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(6 + 1 / 12, "feet")
  16325. },
  16326. {
  16327. name: "Macro",
  16328. height: math.unit(175, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(1.82, "meters"),
  16338. weight: math.unit(140, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/nita/front.svg",
  16342. extra: 2473 / 2363,
  16343. bottom: 0.01
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(1.82, "m")
  16351. },
  16352. {
  16353. name: "Macro",
  16354. height: math.unit(300, "m")
  16355. },
  16356. {
  16357. name: "Mistake Canon",
  16358. height: math.unit(0.5, "miles"),
  16359. default: true
  16360. },
  16361. {
  16362. name: "Big Mistake",
  16363. height: math.unit(13, "miles")
  16364. },
  16365. {
  16366. name: "Playing God",
  16367. height: math.unit(2450, "miles")
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(4, "feet"),
  16376. weight: math.unit(120, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/shiriko/front.svg",
  16380. extra: 195 / 188
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(4, "feet"),
  16388. default: true
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16394. {
  16395. front: {
  16396. height: math.unit(6, "feet"),
  16397. name: "front",
  16398. image: {
  16399. source: "./media/characters/deja/front.svg",
  16400. extra: 926 / 840,
  16401. bottom: 0.07
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Planck Length",
  16408. height: math.unit(1.6e-35, "meters")
  16409. },
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(30.48, "meters"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Universal",
  16417. height: math.unit(8.8e26, "meters")
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16423. {
  16424. side: {
  16425. height: math.unit(8, "feet"),
  16426. weight: math.unit(6300, "lb"),
  16427. name: "Side",
  16428. image: {
  16429. source: "./media/characters/anima/side.svg",
  16430. bottom: 0.035
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(8, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(8, "feet"),
  16447. weight: math.unit(350, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/bianca/front.svg",
  16451. extra: 234 / 225,
  16452. bottom: 0.03
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(8, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(6, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/adinia/front.svg",
  16473. extra: 1845 / 1672,
  16474. bottom: 0.02
  16475. }
  16476. },
  16477. back: {
  16478. height: math.unit(6, "feet"),
  16479. weight: math.unit(150, "lb"),
  16480. name: "Back",
  16481. image: {
  16482. source: "./media/characters/adinia/back.svg",
  16483. extra: 1845 / 1672,
  16484. bottom: 0.002
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(11 + 5 / 12, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16498. {
  16499. front: {
  16500. height: math.unit(3, "meters"),
  16501. weight: math.unit(200, "kg"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/lykasa/front.svg",
  16505. extra: 1076 / 976,
  16506. bottom: 0.06
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(3, "meters")
  16514. },
  16515. {
  16516. name: "Kaiju",
  16517. height: math.unit(120, "meters"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Mega Kaiju",
  16522. height: math.unit(240, "km")
  16523. },
  16524. {
  16525. name: "Giga Kaiju",
  16526. height: math.unit(400, "megameters")
  16527. },
  16528. {
  16529. name: "Tera Kaiju",
  16530. height: math.unit(800, "gigameters")
  16531. },
  16532. {
  16533. name: "Kaiju Dragon Goddess",
  16534. height: math.unit(26, "zettaparsecs")
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16540. {
  16541. side: {
  16542. height: math.unit(283 / 124 * 6, "feet"),
  16543. weight: math.unit(35000, "lb"),
  16544. name: "Side",
  16545. image: {
  16546. source: "./media/characters/malfaren/side.svg",
  16547. extra: 2500 / 1010,
  16548. bottom: 0.01
  16549. }
  16550. },
  16551. front: {
  16552. height: math.unit(22.36, "feet"),
  16553. weight: math.unit(35000, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/malfaren/front.svg",
  16557. extra: 1631 / 1476,
  16558. bottom: 0.01
  16559. }
  16560. },
  16561. maw: {
  16562. height: math.unit(6.9, "feet"),
  16563. name: "Maw",
  16564. image: {
  16565. source: "./media/characters/malfaren/maw.svg"
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Big",
  16572. height: math.unit(283 / 162 * 6, "feet"),
  16573. },
  16574. {
  16575. name: "Bigger",
  16576. height: math.unit(283 / 124 * 6, "feet")
  16577. },
  16578. {
  16579. name: "Massive",
  16580. height: math.unit(283 / 92 * 6, "feet"),
  16581. default: true
  16582. },
  16583. {
  16584. name: "👀💦",
  16585. height: math.unit(283 / 73 * 6, "feet"),
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(1.7, "m"),
  16594. weight: math.unit(70, "kg"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/kernel/front.svg",
  16598. extra: 222 / 210,
  16599. bottom: 0.007
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Nano",
  16606. height: math.unit(17, "micrometers")
  16607. },
  16608. {
  16609. name: "Micro",
  16610. height: math.unit(1.7, "mm")
  16611. },
  16612. {
  16613. name: "Small",
  16614. height: math.unit(1.7, "cm")
  16615. },
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(1.7, "m"),
  16619. default: true
  16620. },
  16621. ]
  16622. ))
  16623. characterMakers.push(() => makeCharacter(
  16624. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16625. {
  16626. front: {
  16627. height: math.unit(1.75, "meters"),
  16628. weight: math.unit(65, "kg"),
  16629. name: "Front",
  16630. image: {
  16631. source: "./media/characters/jayne-folest/front.svg",
  16632. extra: 2115 / 2007,
  16633. bottom: 0.02
  16634. }
  16635. },
  16636. back: {
  16637. height: math.unit(1.75, "meters"),
  16638. weight: math.unit(65, "kg"),
  16639. name: "Back",
  16640. image: {
  16641. source: "./media/characters/jayne-folest/back.svg",
  16642. extra: 2115 / 2007,
  16643. bottom: 0.005
  16644. }
  16645. },
  16646. frontClothed: {
  16647. height: math.unit(1.75, "meters"),
  16648. weight: math.unit(65, "kg"),
  16649. name: "Front (Clothed)",
  16650. image: {
  16651. source: "./media/characters/jayne-folest/front-clothed.svg",
  16652. extra: 2115 / 2007,
  16653. bottom: 0.035
  16654. }
  16655. },
  16656. hand: {
  16657. height: math.unit(1 / 1.260, "feet"),
  16658. name: "Hand",
  16659. image: {
  16660. source: "./media/characters/jayne-folest/hand.svg"
  16661. }
  16662. },
  16663. foot: {
  16664. height: math.unit(1 / 0.918, "feet"),
  16665. name: "Foot",
  16666. image: {
  16667. source: "./media/characters/jayne-folest/foot.svg"
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Micro",
  16674. height: math.unit(4, "cm")
  16675. },
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(1.75, "meters")
  16679. },
  16680. {
  16681. name: "Macro",
  16682. height: math.unit(47.5, "meters"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(180, "cm"),
  16692. weight: math.unit(70, "kg"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/algier/front.svg",
  16696. extra: 596 / 572,
  16697. bottom: 0.04
  16698. }
  16699. },
  16700. back: {
  16701. height: math.unit(180, "cm"),
  16702. weight: math.unit(70, "kg"),
  16703. name: "Back",
  16704. image: {
  16705. source: "./media/characters/algier/back.svg",
  16706. extra: 596 / 572,
  16707. bottom: 0.025
  16708. }
  16709. },
  16710. frontdressed: {
  16711. height: math.unit(180, "cm"),
  16712. weight: math.unit(150, "kg"),
  16713. name: "Front-dressed",
  16714. image: {
  16715. source: "./media/characters/algier/front-dressed.svg",
  16716. extra: 596 / 572,
  16717. bottom: 0.038
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Micro",
  16724. height: math.unit(5, "cm")
  16725. },
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(180, "cm"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(64, "m")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16739. {
  16740. upright: {
  16741. height: math.unit(7, "feet"),
  16742. weight: math.unit(300, "lb"),
  16743. name: "Upright",
  16744. image: {
  16745. source: "./media/characters/pretzel/upright.svg",
  16746. extra: 534 / 522,
  16747. bottom: 0.065
  16748. }
  16749. },
  16750. sprawling: {
  16751. height: math.unit(3.75, "feet"),
  16752. weight: math.unit(300, "lb"),
  16753. name: "Sprawling",
  16754. image: {
  16755. source: "./media/characters/pretzel/sprawling.svg",
  16756. extra: 314 / 281,
  16757. bottom: 0.1
  16758. }
  16759. },
  16760. tongue: {
  16761. height: math.unit(2, "feet"),
  16762. name: "Tongue",
  16763. image: {
  16764. source: "./media/characters/pretzel/tongue.svg"
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(7, "feet"),
  16772. default: true
  16773. },
  16774. {
  16775. name: "Oversized",
  16776. height: math.unit(15, "feet")
  16777. },
  16778. {
  16779. name: "Huge",
  16780. height: math.unit(30, "feet")
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(250, "feet")
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16790. {
  16791. sideFront: {
  16792. height: math.unit(5 + 2 / 12, "feet"),
  16793. weight: math.unit(120, "lb"),
  16794. name: "Front Side",
  16795. image: {
  16796. source: "./media/characters/roxi/side-front.svg",
  16797. extra: 2924 / 2717,
  16798. bottom: 0.08
  16799. }
  16800. },
  16801. sideBack: {
  16802. height: math.unit(5 + 2 / 12, "feet"),
  16803. weight: math.unit(120, "lb"),
  16804. name: "Back Side",
  16805. image: {
  16806. source: "./media/characters/roxi/side-back.svg",
  16807. extra: 2904 / 2693,
  16808. bottom: 0.06
  16809. }
  16810. },
  16811. front: {
  16812. height: math.unit(5 + 2 / 12, "feet"),
  16813. weight: math.unit(120, "lb"),
  16814. name: "Front",
  16815. image: {
  16816. source: "./media/characters/roxi/front.svg",
  16817. extra: 2028 / 1907,
  16818. bottom: 0.01
  16819. }
  16820. },
  16821. frontAlt: {
  16822. height: math.unit(5 + 2 / 12, "feet"),
  16823. weight: math.unit(120, "lb"),
  16824. name: "Front (Alt)",
  16825. image: {
  16826. source: "./media/characters/roxi/front-alt.svg",
  16827. extra: 1828 / 1798,
  16828. bottom: 0.01
  16829. }
  16830. },
  16831. sitting: {
  16832. height: math.unit(2.8, "feet"),
  16833. weight: math.unit(120, "lb"),
  16834. name: "Sitting",
  16835. image: {
  16836. source: "./media/characters/roxi/sitting.svg",
  16837. extra: 2660 / 2462,
  16838. bottom: 0.1
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(5 + 2 / 12, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16852. {
  16853. side: {
  16854. height: math.unit(55, "feet"),
  16855. weight: math.unit(153, "tons"),
  16856. name: "Side",
  16857. image: {
  16858. source: "./media/characters/shadow/side.svg",
  16859. extra: 701 / 628,
  16860. bottom: 0.02
  16861. }
  16862. },
  16863. flying: {
  16864. height: math.unit(145, "feet"),
  16865. weight: math.unit(153, "tons"),
  16866. name: "Flying",
  16867. image: {
  16868. source: "./media/characters/shadow/flying.svg"
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(55, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(6, "feet"),
  16885. weight: math.unit(200, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/marcie/front.svg",
  16889. extra: 960 / 876,
  16890. bottom: 58 / 1017.87
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Macro",
  16897. height: math.unit(1, "mile"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(7, "feet"),
  16907. weight: math.unit(200, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/kachina/front.svg",
  16911. extra: 1290.68 / 1119,
  16912. bottom: 36.5 / 1327.18
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(7, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16926. {
  16927. looking: {
  16928. height: math.unit(2, "meters"),
  16929. weight: math.unit(300, "kg"),
  16930. name: "Looking",
  16931. image: {
  16932. source: "./media/characters/kash/looking.svg",
  16933. extra: 474 / 344,
  16934. bottom: 0.03
  16935. }
  16936. },
  16937. side: {
  16938. height: math.unit(2, "meters"),
  16939. weight: math.unit(300, "kg"),
  16940. name: "Side",
  16941. image: {
  16942. source: "./media/characters/kash/side.svg",
  16943. extra: 302 / 251,
  16944. bottom: 0.03
  16945. }
  16946. },
  16947. front: {
  16948. height: math.unit(2, "meters"),
  16949. weight: math.unit(300, "kg"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/kash/front.svg",
  16953. extra: 495 / 360,
  16954. bottom: 0.015
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(2, "meters"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Big",
  16966. height: math.unit(3, "meters")
  16967. },
  16968. {
  16969. name: "Large",
  16970. height: math.unit(5, "meters")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16976. {
  16977. feeding: {
  16978. height: math.unit(6.7, "feet"),
  16979. weight: math.unit(350, "lb"),
  16980. name: "Feeding",
  16981. image: {
  16982. source: "./media/characters/lalim/feeding.svg",
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(6.7, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(9.5, "feet"),
  16999. weight: math.unit(600, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/de'vout/front.svg",
  17003. extra: 1443 / 1328,
  17004. bottom: 0.025
  17005. }
  17006. },
  17007. back: {
  17008. height: math.unit(9.5, "feet"),
  17009. weight: math.unit(600, "lb"),
  17010. name: "Back",
  17011. image: {
  17012. source: "./media/characters/de'vout/back.svg",
  17013. extra: 1443 / 1328
  17014. }
  17015. },
  17016. frontDressed: {
  17017. height: math.unit(9.5, "feet"),
  17018. weight: math.unit(600, "lb"),
  17019. name: "Front (Dressed",
  17020. image: {
  17021. source: "./media/characters/de'vout/front-dressed.svg",
  17022. extra: 1443 / 1328,
  17023. bottom: 0.025
  17024. }
  17025. },
  17026. backDressed: {
  17027. height: math.unit(9.5, "feet"),
  17028. weight: math.unit(600, "lb"),
  17029. name: "Back (Dressed",
  17030. image: {
  17031. source: "./media/characters/de'vout/back-dressed.svg",
  17032. extra: 1443 / 1328
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(9.5, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(8, "feet"),
  17049. weight: math.unit(225, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/talana/front.svg",
  17053. extra: 1410 / 1300,
  17054. bottom: 0.015
  17055. }
  17056. },
  17057. frontDressed: {
  17058. height: math.unit(8, "feet"),
  17059. weight: math.unit(225, "lb"),
  17060. name: "Front (Dressed",
  17061. image: {
  17062. source: "./media/characters/talana/front-dressed.svg",
  17063. extra: 1410 / 1300,
  17064. bottom: 0.015
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(8, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17078. {
  17079. side: {
  17080. height: math.unit(7.2, "feet"),
  17081. weight: math.unit(150, "lb"),
  17082. name: "Side",
  17083. image: {
  17084. source: "./media/characters/xeauvok/side.svg",
  17085. extra: 1975 / 1523,
  17086. bottom: 0.07
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(7.2, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17100. {
  17101. side: {
  17102. height: math.unit(10, "feet"),
  17103. weight: math.unit(900, "kg"),
  17104. name: "Side",
  17105. image: {
  17106. source: "./media/characters/zara/side.svg",
  17107. extra: 504 / 498
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(10, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17121. {
  17122. side: {
  17123. height: math.unit(6, "feet"),
  17124. weight: math.unit(150, "lb"),
  17125. name: "Side",
  17126. image: {
  17127. source: "./media/characters/richard-dragon/side.svg",
  17128. extra: 845 / 340,
  17129. bottom: 0.017
  17130. }
  17131. },
  17132. maw: {
  17133. height: math.unit(2.97, "feet"),
  17134. name: "Maw",
  17135. image: {
  17136. source: "./media/characters/richard-dragon/maw.svg"
  17137. }
  17138. },
  17139. },
  17140. [
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(4, "feet"),
  17148. weight: math.unit(100, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/richard-smeargle/front.svg",
  17152. extra: 2952 / 2820,
  17153. bottom: 0.028
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(4, "feet"),
  17161. default: true
  17162. },
  17163. {
  17164. name: "Dynamax",
  17165. height: math.unit(20, "meters")
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(6, "feet"),
  17174. weight: math.unit(110, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/klay/front.svg",
  17178. extra: 962 / 883,
  17179. bottom: 0.04
  17180. }
  17181. },
  17182. back: {
  17183. height: math.unit(6, "feet"),
  17184. weight: math.unit(110, "lb"),
  17185. name: "Back",
  17186. image: {
  17187. source: "./media/characters/klay/back.svg",
  17188. extra: 962 / 883
  17189. }
  17190. },
  17191. beans: {
  17192. height: math.unit(1.15, "feet"),
  17193. name: "Beans",
  17194. image: {
  17195. source: "./media/characters/klay/beans.svg"
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Micro",
  17202. height: math.unit(6, "inches")
  17203. },
  17204. {
  17205. name: "Mini",
  17206. height: math.unit(3, "feet")
  17207. },
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(6, "feet"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Big",
  17215. height: math.unit(25, "feet")
  17216. },
  17217. {
  17218. name: "Macro",
  17219. height: math.unit(100, "feet")
  17220. },
  17221. {
  17222. name: "Megamacro",
  17223. height: math.unit(400, "feet")
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17229. {
  17230. front: {
  17231. height: math.unit(6, "feet"),
  17232. weight: math.unit(160, "lb"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/marcus/front.svg",
  17236. extra: 734 / 676,
  17237. bottom: 0.03
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Little",
  17244. height: math.unit(6, "feet")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(110, "feet"),
  17249. default: true
  17250. },
  17251. {
  17252. name: "Macro",
  17253. height: math.unit(250, "feet")
  17254. },
  17255. {
  17256. name: "Megamacro",
  17257. height: math.unit(1000, "feet")
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(7, "feet"),
  17266. weight: math.unit(275, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/claude-delroute/front.svg",
  17270. extra: 230 / 214,
  17271. bottom: 0.007
  17272. }
  17273. },
  17274. side: {
  17275. height: math.unit(7, "feet"),
  17276. weight: math.unit(275, "lb"),
  17277. name: "Side",
  17278. image: {
  17279. source: "./media/characters/claude-delroute/side.svg",
  17280. extra: 222 / 214,
  17281. bottom: 0.01
  17282. }
  17283. },
  17284. back: {
  17285. height: math.unit(7, "feet"),
  17286. weight: math.unit(275, "lb"),
  17287. name: "Back",
  17288. image: {
  17289. source: "./media/characters/claude-delroute/back.svg",
  17290. extra: 230 / 214,
  17291. bottom: 0.015
  17292. }
  17293. },
  17294. maw: {
  17295. height: math.unit(0.6407, "meters"),
  17296. name: "Maw",
  17297. image: {
  17298. source: "./media/characters/claude-delroute/maw.svg"
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(7, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Lorge",
  17310. height: math.unit(20, "feet")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(8 + 4 / 12, "feet"),
  17319. weight: math.unit(600, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/dragonien/front.svg",
  17323. extra: 100 / 94,
  17324. bottom: 3.3 / 103.3445
  17325. }
  17326. },
  17327. back: {
  17328. height: math.unit(8 + 4 / 12, "feet"),
  17329. weight: math.unit(600, "lb"),
  17330. name: "Back",
  17331. image: {
  17332. source: "./media/characters/dragonien/back.svg",
  17333. extra: 776 / 746,
  17334. bottom: 6.4 / 782.0616
  17335. }
  17336. },
  17337. foot: {
  17338. height: math.unit(1.54, "feet"),
  17339. name: "Foot",
  17340. image: {
  17341. source: "./media/characters/dragonien/foot.svg",
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(8 + 4 / 12, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(200, "feet")
  17354. },
  17355. {
  17356. name: "Megamacro",
  17357. height: math.unit(1, "mile")
  17358. },
  17359. {
  17360. name: "Gigamacro",
  17361. height: math.unit(1000, "miles")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(5 + 2 / 12, "feet"),
  17370. weight: math.unit(110, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/desta/front.svg",
  17374. extra: 767/726,
  17375. bottom: 11.7/779
  17376. }
  17377. },
  17378. back: {
  17379. height: math.unit(5 + 2 / 12, "feet"),
  17380. weight: math.unit(110, "lb"),
  17381. name: "Back",
  17382. image: {
  17383. source: "./media/characters/desta/back.svg",
  17384. extra: 777/728,
  17385. bottom: 6/784
  17386. }
  17387. },
  17388. frontAlt: {
  17389. height: math.unit(5 + 2 / 12, "feet"),
  17390. weight: math.unit(110, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/desta/front-alt.svg",
  17394. extra: 1482 / 1417
  17395. }
  17396. },
  17397. side: {
  17398. height: math.unit(5 + 2 / 12, "feet"),
  17399. weight: math.unit(110, "lb"),
  17400. name: "Side",
  17401. image: {
  17402. source: "./media/characters/desta/side.svg",
  17403. extra: 2579 / 2491,
  17404. bottom: 0.053
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Micro",
  17411. height: math.unit(6, "inches")
  17412. },
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(5 + 2 / 12, "feet"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Macro",
  17420. height: math.unit(62, "feet")
  17421. },
  17422. {
  17423. name: "Megamacro",
  17424. height: math.unit(1800, "feet")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(10, "feet"),
  17433. weight: math.unit(700, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/storm-alystar/front.svg",
  17437. extra: 2112 / 1898,
  17438. bottom: 0.034
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Micro",
  17445. height: math.unit(3.5, "inches")
  17446. },
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(10, "feet"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Macro",
  17454. height: math.unit(400, "feet")
  17455. },
  17456. {
  17457. name: "Deific",
  17458. height: math.unit(60, "miles")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(2.35, "meters"),
  17467. weight: math.unit(119, "kg"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/ilia/front.svg",
  17471. extra: 1285 / 1255,
  17472. bottom: 0.06
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(2.35, "meters")
  17480. },
  17481. {
  17482. name: "Macro",
  17483. height: math.unit(140, "meters"),
  17484. default: true
  17485. },
  17486. {
  17487. name: "Megamacro",
  17488. height: math.unit(100, "miles")
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(6 + 5 / 12, "feet"),
  17497. weight: math.unit(190, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/kingdead/front.svg",
  17501. extra: 1228 / 1177
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Micro",
  17508. height: math.unit(7, "inches")
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(6 + 5 / 12, "feet")
  17513. },
  17514. {
  17515. name: "Macro",
  17516. height: math.unit(150, "feet"),
  17517. default: true
  17518. },
  17519. {
  17520. name: "Megamacro",
  17521. height: math.unit(200, "miles")
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(8, "feet"),
  17530. weight: math.unit(600, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/kyrehx/front.svg",
  17534. extra: 1195 / 1095,
  17535. bottom: 0.034
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Micro",
  17542. height: math.unit(2, "inches")
  17543. },
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(8, "feet"),
  17547. default: true
  17548. },
  17549. {
  17550. name: "Macro",
  17551. height: math.unit(255, "feet")
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17560. weight: math.unit(184, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/xang/front.svg",
  17564. extra: 845 / 755
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17572. default: true
  17573. },
  17574. {
  17575. name: "Macro",
  17576. height: math.unit(0.935 * 146, "feet")
  17577. },
  17578. {
  17579. name: "Megamacro",
  17580. height: math.unit(0.935 * 3, "miles")
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17586. {
  17587. frontDressed: {
  17588. height: math.unit(5 + 7 / 12, "feet"),
  17589. weight: math.unit(140, "lb"),
  17590. name: "Front (Dressed)",
  17591. image: {
  17592. source: "./media/characters/doc-weardno/front-dressed.svg",
  17593. extra: 263 / 234
  17594. }
  17595. },
  17596. backDressed: {
  17597. height: math.unit(5 + 7 / 12, "feet"),
  17598. weight: math.unit(140, "lb"),
  17599. name: "Back (Dressed)",
  17600. image: {
  17601. source: "./media/characters/doc-weardno/back-dressed.svg",
  17602. extra: 266 / 238
  17603. }
  17604. },
  17605. front: {
  17606. height: math.unit(5 + 7 / 12, "feet"),
  17607. weight: math.unit(140, "lb"),
  17608. name: "Front",
  17609. image: {
  17610. source: "./media/characters/doc-weardno/front.svg",
  17611. extra: 254 / 233
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Micro",
  17618. height: math.unit(3, "inches")
  17619. },
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(5 + 7 / 12, "feet"),
  17623. default: true
  17624. },
  17625. {
  17626. name: "Macro",
  17627. height: math.unit(25, "feet")
  17628. },
  17629. {
  17630. name: "Megamacro",
  17631. height: math.unit(2, "miles")
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(6 + 2 / 12, "feet"),
  17640. weight: math.unit(153, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/seth-whilst/front.svg",
  17644. bottom: 0.07
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Micro",
  17651. height: math.unit(5, "inches")
  17652. },
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(6 + 2 / 12, "feet"),
  17656. default: true
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(3, "inches"),
  17665. weight: math.unit(8, "grams"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/pocket-jabari/front.svg",
  17669. extra: 1024 / 974,
  17670. bottom: 0.039
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Minimicro",
  17677. height: math.unit(8, "mm")
  17678. },
  17679. {
  17680. name: "Micro",
  17681. height: math.unit(3, "inches"),
  17682. default: true
  17683. },
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(3, "feet")
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(15, "feet"),
  17695. weight: math.unit(3280, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/sapphy/front.svg",
  17699. extra: 671 / 577,
  17700. bottom: 0.085
  17701. }
  17702. },
  17703. back: {
  17704. height: math.unit(15, "feet"),
  17705. weight: math.unit(3280, "lb"),
  17706. name: "Back",
  17707. image: {
  17708. source: "./media/characters/sapphy/back.svg",
  17709. extra: 631 / 607,
  17710. bottom: 0.045
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(15, "feet")
  17718. },
  17719. {
  17720. name: "Casual Macro",
  17721. height: math.unit(120, "feet")
  17722. },
  17723. {
  17724. name: "Macro",
  17725. height: math.unit(2150, "feet"),
  17726. default: true
  17727. },
  17728. {
  17729. name: "Megamacro",
  17730. height: math.unit(8, "miles")
  17731. },
  17732. {
  17733. name: "Galaxy Mom",
  17734. height: math.unit(6, "megalightyears")
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17740. {
  17741. front: {
  17742. height: math.unit(6, "feet"),
  17743. weight: math.unit(170, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/kiro/front.svg",
  17747. extra: 1064 / 1012,
  17748. bottom: 0.052
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Micro",
  17755. height: math.unit(6, "inches")
  17756. },
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(6, "feet"),
  17760. default: true
  17761. },
  17762. {
  17763. name: "Macro",
  17764. height: math.unit(72, "feet")
  17765. },
  17766. ]
  17767. ))
  17768. characterMakers.push(() => makeCharacter(
  17769. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17770. {
  17771. front: {
  17772. height: math.unit(5 + 9 / 12, "feet"),
  17773. weight: math.unit(175, "lb"),
  17774. name: "Front",
  17775. image: {
  17776. source: "./media/characters/irishfox/front.svg",
  17777. extra: 1912 / 1680,
  17778. bottom: 0.02
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Nano",
  17785. height: math.unit(1, "mm")
  17786. },
  17787. {
  17788. name: "Micro",
  17789. height: math.unit(2, "inches")
  17790. },
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(5 + 9 / 12, "feet"),
  17794. default: true
  17795. },
  17796. {
  17797. name: "Macro",
  17798. height: math.unit(45, "feet")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17804. {
  17805. front: {
  17806. height: math.unit(6 + 1 / 12, "feet"),
  17807. weight: math.unit(150, "lb"),
  17808. name: "Front",
  17809. image: {
  17810. source: "./media/characters/aronai-sieyes/front.svg",
  17811. extra: 1556 / 1480,
  17812. bottom: 0.015
  17813. }
  17814. },
  17815. side: {
  17816. height: math.unit(6 + 1 / 12, "feet"),
  17817. weight: math.unit(150, "lb"),
  17818. name: "Side",
  17819. image: {
  17820. source: "./media/characters/aronai-sieyes/side.svg",
  17821. extra: 1433 / 1390,
  17822. bottom: 0.0393
  17823. }
  17824. },
  17825. back: {
  17826. height: math.unit(6 + 1 / 12, "feet"),
  17827. weight: math.unit(150, "lb"),
  17828. name: "Back",
  17829. image: {
  17830. source: "./media/characters/aronai-sieyes/back.svg",
  17831. extra: 1544 / 1494,
  17832. bottom: 0.02
  17833. }
  17834. },
  17835. frontClothed: {
  17836. height: math.unit(6 + 1 / 12, "feet"),
  17837. weight: math.unit(150, "lb"),
  17838. name: "Front (Clothed)",
  17839. image: {
  17840. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17841. extra: 1582 / 1527
  17842. }
  17843. },
  17844. feral: {
  17845. height: math.unit(18, "feet"),
  17846. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17847. name: "Feral",
  17848. image: {
  17849. source: "./media/characters/aronai-sieyes/feral.svg",
  17850. extra: 1530 / 1240,
  17851. bottom: 0.035
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Micro",
  17858. height: math.unit(2, "inches")
  17859. },
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(6 + 1 / 12, "feet"),
  17863. default: true
  17864. }
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(12, "feet"),
  17872. weight: math.unit(410, "kg"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/xuna/front.svg",
  17876. extra: 2184 / 1980
  17877. }
  17878. },
  17879. side: {
  17880. height: math.unit(12, "feet"),
  17881. weight: math.unit(410, "kg"),
  17882. name: "Side",
  17883. image: {
  17884. source: "./media/characters/xuna/side.svg",
  17885. extra: 2184 / 1980
  17886. }
  17887. },
  17888. back: {
  17889. height: math.unit(12, "feet"),
  17890. weight: math.unit(410, "kg"),
  17891. name: "Back",
  17892. image: {
  17893. source: "./media/characters/xuna/back.svg",
  17894. extra: 2184 / 1980
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Nano glow",
  17901. height: math.unit(10, "nm")
  17902. },
  17903. {
  17904. name: "Micro floof",
  17905. height: math.unit(0.3, "m")
  17906. },
  17907. {
  17908. name: "Huggable softy boi",
  17909. height: math.unit(3.6576, "m"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Admirable floof",
  17914. height: math.unit(80, "meters")
  17915. },
  17916. {
  17917. name: "Gentle macro",
  17918. height: math.unit(300, "meters")
  17919. },
  17920. {
  17921. name: "Very careful floof",
  17922. height: math.unit(3200, "meters")
  17923. },
  17924. {
  17925. name: "The mega floof",
  17926. height: math.unit(36000, "meters")
  17927. },
  17928. {
  17929. name: "Giga-fur-Wicker",
  17930. height: math.unit(4800000, "meters")
  17931. },
  17932. {
  17933. name: "Licky world",
  17934. height: math.unit(20000000, "meters")
  17935. },
  17936. {
  17937. name: "Floofy cyan sun",
  17938. height: math.unit(1500000000, "meters")
  17939. },
  17940. {
  17941. name: "Milky Wicker",
  17942. height: math.unit(1000000000000000000000, "meters")
  17943. },
  17944. {
  17945. name: "The observing Wicker",
  17946. height: math.unit(999999999999999999999999999, "meters")
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(5 + 9 / 12, "feet"),
  17955. weight: math.unit(150, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/arokha-sieyes/front.svg",
  17959. extra: 1425 / 1284,
  17960. bottom: 0.05
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(5 + 9 / 12, "feet")
  17968. },
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(30, "meters"),
  17972. default: true
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(6, "feet"),
  17981. weight: math.unit(180, "lb"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/arokh-sieyes/front.svg",
  17985. extra: 1830 / 1769,
  17986. bottom: 0.01
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(6, "feet")
  17994. },
  17995. {
  17996. name: "Macro",
  17997. height: math.unit(30, "meters"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18004. {
  18005. side: {
  18006. height: math.unit(13 + 1 / 12, "feet"),
  18007. weight: math.unit(8.5, "tonnes"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/goldeneye/side.svg",
  18011. extra: 1182 / 778,
  18012. bottom: 0.067
  18013. }
  18014. },
  18015. paw: {
  18016. height: math.unit(3.4, "feet"),
  18017. name: "Paw",
  18018. image: {
  18019. source: "./media/characters/goldeneye/paw.svg"
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(13 + 1 / 12, "feet"),
  18027. default: true
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18033. {
  18034. front: {
  18035. height: math.unit(6 + 1 / 12, "feet"),
  18036. weight: math.unit(210, "lb"),
  18037. name: "Front",
  18038. image: {
  18039. source: "./media/characters/leonardo-lycheborne/front.svg",
  18040. extra: 390 / 365,
  18041. bottom: 0.032
  18042. }
  18043. },
  18044. side: {
  18045. height: math.unit(6 + 1 / 12, "feet"),
  18046. weight: math.unit(210, "lb"),
  18047. name: "Side",
  18048. image: {
  18049. source: "./media/characters/leonardo-lycheborne/side.svg",
  18050. extra: 390 / 365,
  18051. bottom: 0.005
  18052. }
  18053. },
  18054. back: {
  18055. height: math.unit(6 + 1 / 12, "feet"),
  18056. weight: math.unit(210, "lb"),
  18057. name: "Back",
  18058. image: {
  18059. source: "./media/characters/leonardo-lycheborne/back.svg",
  18060. extra: 392 / 366,
  18061. bottom: 0.01
  18062. }
  18063. },
  18064. hand: {
  18065. height: math.unit(1.08, "feet"),
  18066. name: "Hand",
  18067. image: {
  18068. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18069. }
  18070. },
  18071. foot: {
  18072. height: math.unit(1.32, "feet"),
  18073. name: "Foot",
  18074. image: {
  18075. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18076. }
  18077. },
  18078. were: {
  18079. height: math.unit(20, "feet"),
  18080. weight: math.unit(7800, "lb"),
  18081. name: "Were",
  18082. image: {
  18083. source: "./media/characters/leonardo-lycheborne/were.svg",
  18084. extra: 308 / 294,
  18085. bottom: 0.048
  18086. }
  18087. },
  18088. feral: {
  18089. height: math.unit(7.5, "feet"),
  18090. weight: math.unit(600, "lb"),
  18091. name: "Feral",
  18092. image: {
  18093. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18094. extra: 210 / 186,
  18095. bottom: 0.108
  18096. }
  18097. },
  18098. taur: {
  18099. height: math.unit(11, "feet"),
  18100. weight: math.unit(3300, "lb"),
  18101. name: "Taur",
  18102. image: {
  18103. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18104. extra: 320 / 303,
  18105. bottom: 0.025
  18106. }
  18107. },
  18108. barghest: {
  18109. height: math.unit(11, "feet"),
  18110. weight: math.unit(1300, "lb"),
  18111. name: "Barghest",
  18112. image: {
  18113. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18114. extra: 323 / 302,
  18115. bottom: 0.027
  18116. }
  18117. },
  18118. dick: {
  18119. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18120. name: "Dick",
  18121. image: {
  18122. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18123. }
  18124. },
  18125. dickWere: {
  18126. height: math.unit((20) / 3.8, "feet"),
  18127. name: "Dick (Were)",
  18128. image: {
  18129. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(6 + 1 / 12, "feet"),
  18137. default: true
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18143. {
  18144. front: {
  18145. height: math.unit(10, "feet"),
  18146. weight: math.unit(350, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/jet/front.svg",
  18150. extra: 2050 / 1980,
  18151. bottom: 0.013
  18152. }
  18153. },
  18154. back: {
  18155. height: math.unit(10, "feet"),
  18156. weight: math.unit(350, "lb"),
  18157. name: "Back",
  18158. image: {
  18159. source: "./media/characters/jet/back.svg",
  18160. extra: 2050 / 1980,
  18161. bottom: 0.013
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Micro",
  18168. height: math.unit(6, "inches")
  18169. },
  18170. {
  18171. name: "Normal",
  18172. height: math.unit(10, "feet"),
  18173. default: true
  18174. },
  18175. {
  18176. name: "Macro",
  18177. height: math.unit(100, "feet")
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18183. {
  18184. front: {
  18185. height: math.unit(15, "feet"),
  18186. weight: math.unit(2800, "lb"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/tanarath/front.svg",
  18190. extra: 2392 / 2220,
  18191. bottom: 0.03
  18192. }
  18193. },
  18194. back: {
  18195. height: math.unit(15, "feet"),
  18196. weight: math.unit(2800, "lb"),
  18197. name: "Back",
  18198. image: {
  18199. source: "./media/characters/tanarath/back.svg",
  18200. extra: 2392 / 2220,
  18201. bottom: 0.03
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(15, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18215. {
  18216. front: {
  18217. height: math.unit(7 + 1 / 12, "feet"),
  18218. weight: math.unit(175, "lb"),
  18219. name: "Front",
  18220. image: {
  18221. source: "./media/characters/patty-cattybatty/front.svg",
  18222. extra: 908 / 874,
  18223. bottom: 0.025
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Micro",
  18230. height: math.unit(1, "inch")
  18231. },
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(7 + 1 / 12, "feet")
  18235. },
  18236. {
  18237. name: "Mini Macro",
  18238. height: math.unit(155, "feet")
  18239. },
  18240. {
  18241. name: "Macro",
  18242. height: math.unit(1077, "feet")
  18243. },
  18244. {
  18245. name: "Mega Macro",
  18246. height: math.unit(47650, "feet"),
  18247. default: true
  18248. },
  18249. {
  18250. name: "Giga Macro",
  18251. height: math.unit(440, "miles")
  18252. },
  18253. {
  18254. name: "Tera Macro",
  18255. height: math.unit(8700, "miles")
  18256. },
  18257. {
  18258. name: "Planetary Macro",
  18259. height: math.unit(32700, "miles")
  18260. },
  18261. {
  18262. name: "Solar Macro",
  18263. height: math.unit(550000, "miles")
  18264. },
  18265. {
  18266. name: "Celestial Macro",
  18267. height: math.unit(2.5, "AU")
  18268. },
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18273. {
  18274. front: {
  18275. height: math.unit(4 + 5 / 12, "feet"),
  18276. weight: math.unit(90, "lb"),
  18277. name: "Front",
  18278. image: {
  18279. source: "./media/characters/cappu/front.svg",
  18280. extra: 1247 / 1152,
  18281. bottom: 0.012
  18282. }
  18283. },
  18284. },
  18285. [
  18286. {
  18287. name: "Normal",
  18288. height: math.unit(4 + 5 / 12, "feet"),
  18289. default: true
  18290. },
  18291. ]
  18292. ))
  18293. characterMakers.push(() => makeCharacter(
  18294. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18295. {
  18296. frontDressed: {
  18297. height: math.unit(70, "cm"),
  18298. weight: math.unit(6, "kg"),
  18299. name: "Front (Dressed)",
  18300. image: {
  18301. source: "./media/characters/sebi/front-dressed.svg",
  18302. extra: 713.5 / 686.5,
  18303. bottom: 0.003
  18304. }
  18305. },
  18306. front: {
  18307. height: math.unit(70, "cm"),
  18308. weight: math.unit(5, "kg"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/sebi/front.svg",
  18312. extra: 713.5 / 686.5,
  18313. bottom: 0.003
  18314. }
  18315. }
  18316. },
  18317. [
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(70, "cm"),
  18321. default: true
  18322. },
  18323. {
  18324. name: "Macro",
  18325. height: math.unit(8, "meters")
  18326. },
  18327. ]
  18328. ))
  18329. characterMakers.push(() => makeCharacter(
  18330. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18331. {
  18332. front: {
  18333. height: math.unit(6, "feet"),
  18334. weight: math.unit(150, "lb"),
  18335. name: "Front",
  18336. image: {
  18337. source: "./media/characters/typhek/front.svg",
  18338. extra: 1948 / 1929,
  18339. bottom: 0.025
  18340. }
  18341. },
  18342. side: {
  18343. height: math.unit(6, "feet"),
  18344. weight: math.unit(150, "lb"),
  18345. name: "Side",
  18346. image: {
  18347. source: "./media/characters/typhek/side.svg",
  18348. extra: 2034 / 2010,
  18349. bottom: 0.003
  18350. }
  18351. },
  18352. back: {
  18353. height: math.unit(6, "feet"),
  18354. weight: math.unit(150, "lb"),
  18355. name: "Back",
  18356. image: {
  18357. source: "./media/characters/typhek/back.svg",
  18358. extra: 2005 / 1978,
  18359. bottom: 0.004
  18360. }
  18361. },
  18362. palm: {
  18363. height: math.unit(1.2, "feet"),
  18364. name: "Palm",
  18365. image: {
  18366. source: "./media/characters/typhek/palm.svg"
  18367. }
  18368. },
  18369. fist: {
  18370. height: math.unit(1.1, "feet"),
  18371. name: "Fist",
  18372. image: {
  18373. source: "./media/characters/typhek/fist.svg"
  18374. }
  18375. },
  18376. foot: {
  18377. height: math.unit(1.57, "feet"),
  18378. name: "Foot",
  18379. image: {
  18380. source: "./media/characters/typhek/foot.svg"
  18381. }
  18382. },
  18383. sole: {
  18384. height: math.unit(2.05, "feet"),
  18385. name: "Sole",
  18386. image: {
  18387. source: "./media/characters/typhek/sole.svg"
  18388. }
  18389. },
  18390. },
  18391. [
  18392. {
  18393. name: "Macro",
  18394. height: math.unit(40, "stories"),
  18395. default: true
  18396. },
  18397. {
  18398. name: "Megamacro",
  18399. height: math.unit(1, "mile")
  18400. },
  18401. {
  18402. name: "Gigamacro",
  18403. height: math.unit(4000, "solarradii")
  18404. },
  18405. {
  18406. name: "Universal",
  18407. height: math.unit(1.1, "universes")
  18408. }
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18413. {
  18414. side: {
  18415. height: math.unit(5 + 7 / 12, "feet"),
  18416. weight: math.unit(150, "lb"),
  18417. name: "Side",
  18418. image: {
  18419. source: "./media/characters/kassy/side.svg",
  18420. extra: 1280 / 1225,
  18421. bottom: 0.002
  18422. }
  18423. },
  18424. front: {
  18425. height: math.unit(5 + 7 / 12, "feet"),
  18426. weight: math.unit(150, "lb"),
  18427. name: "Front",
  18428. image: {
  18429. source: "./media/characters/kassy/front.svg",
  18430. extra: 1280 / 1225,
  18431. bottom: 0.025
  18432. }
  18433. },
  18434. back: {
  18435. height: math.unit(5 + 7 / 12, "feet"),
  18436. weight: math.unit(150, "lb"),
  18437. name: "Back",
  18438. image: {
  18439. source: "./media/characters/kassy/back.svg",
  18440. extra: 1280 / 1225,
  18441. bottom: 0.002
  18442. }
  18443. },
  18444. foot: {
  18445. height: math.unit(1.266, "feet"),
  18446. name: "Foot",
  18447. image: {
  18448. source: "./media/characters/kassy/foot.svg"
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(5 + 7 / 12, "feet")
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(137, "feet"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Megamacro",
  18464. height: math.unit(1, "mile")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(6 + 1 / 12, "feet"),
  18473. weight: math.unit(200, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/neil/front.svg",
  18477. extra: 1326 / 1250,
  18478. bottom: 0.023
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(6 + 1 / 12, "feet"),
  18486. default: true
  18487. },
  18488. {
  18489. name: "Macro",
  18490. height: math.unit(200, "feet")
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(5 + 9 / 12, "feet"),
  18499. weight: math.unit(190, "lb"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/atticus/front.svg",
  18503. extra: 2934 / 2785,
  18504. bottom: 0.025
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(5 + 9 / 12, "feet"),
  18512. default: true
  18513. },
  18514. {
  18515. name: "Macro",
  18516. height: math.unit(180, "feet")
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18522. {
  18523. side: {
  18524. height: math.unit(9, "feet"),
  18525. weight: math.unit(650, "lb"),
  18526. name: "Side",
  18527. image: {
  18528. source: "./media/characters/milo/side.svg",
  18529. extra: 2644 / 2310,
  18530. bottom: 0.032
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(9, "feet"),
  18538. default: true
  18539. },
  18540. {
  18541. name: "Macro",
  18542. height: math.unit(300, "feet")
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18548. {
  18549. side: {
  18550. height: math.unit(8, "meters"),
  18551. weight: math.unit(90000, "kg"),
  18552. name: "Side",
  18553. image: {
  18554. source: "./media/characters/ijzer/side.svg",
  18555. extra: 2756 / 1600,
  18556. bottom: 0.01
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Small",
  18563. height: math.unit(3, "meters")
  18564. },
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(8, "meters"),
  18568. default: true
  18569. },
  18570. {
  18571. name: "Normal+",
  18572. height: math.unit(10, "meters")
  18573. },
  18574. {
  18575. name: "Bigger",
  18576. height: math.unit(24, "meters")
  18577. },
  18578. {
  18579. name: "Huge",
  18580. height: math.unit(80, "meters")
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(6 + 2 / 12, "feet"),
  18589. weight: math.unit(153, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/luca-cervicum/front.svg",
  18593. extra: 370 / 327,
  18594. bottom: 0.015
  18595. }
  18596. },
  18597. back: {
  18598. height: math.unit(6 + 2 / 12, "feet"),
  18599. weight: math.unit(153, "lb"),
  18600. name: "Back",
  18601. image: {
  18602. source: "./media/characters/luca-cervicum/back.svg",
  18603. extra: 367 / 333,
  18604. bottom: 0.005
  18605. }
  18606. },
  18607. frontGear: {
  18608. height: math.unit(6 + 2 / 12, "feet"),
  18609. weight: math.unit(173, "lb"),
  18610. name: "Front (Gear)",
  18611. image: {
  18612. source: "./media/characters/luca-cervicum/front-gear.svg",
  18613. extra: 377 / 333,
  18614. bottom: 0.006
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(6 + 2 / 12, "feet"),
  18622. default: true
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(6 + 1 / 12, "feet"),
  18631. weight: math.unit(304, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/oliver/front.svg",
  18635. extra: 157 / 143,
  18636. bottom: 0.08
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(6 + 1 / 12, "feet"),
  18644. default: true
  18645. },
  18646. ]
  18647. ))
  18648. characterMakers.push(() => makeCharacter(
  18649. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18650. {
  18651. front: {
  18652. height: math.unit(5 + 7 / 12, "feet"),
  18653. weight: math.unit(140, "lb"),
  18654. name: "Front",
  18655. image: {
  18656. source: "./media/characters/shane/front.svg",
  18657. extra: 304 / 289,
  18658. bottom: 0.005
  18659. }
  18660. },
  18661. },
  18662. [
  18663. {
  18664. name: "Normal",
  18665. height: math.unit(5 + 7 / 12, "feet"),
  18666. default: true
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18672. {
  18673. front: {
  18674. height: math.unit(5 + 9 / 12, "feet"),
  18675. weight: math.unit(178, "lb"),
  18676. name: "Front",
  18677. image: {
  18678. source: "./media/characters/shin/front.svg",
  18679. extra: 159 / 151,
  18680. bottom: 0.015
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(5 + 9 / 12, "feet"),
  18688. default: true
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(5 + 10 / 12, "feet"),
  18697. weight: math.unit(168, "lb"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/xerxes/front.svg",
  18701. extra: 282 / 260,
  18702. bottom: 0.045
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(5 + 10 / 12, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(6 + 7 / 12, "feet"),
  18719. weight: math.unit(208, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/chaska/front.svg",
  18723. extra: 332 / 319,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(6 + 7 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(5 + 8 / 12, "feet"),
  18741. weight: math.unit(208, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/enuk/front.svg",
  18745. extra: 437 / 406,
  18746. bottom: 0.02
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(5 + 8 / 12, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(5 + 10 / 12, "feet"),
  18763. weight: math.unit(252, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/bruun/front.svg",
  18767. extra: 197 / 187,
  18768. bottom: 0.012
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(5 + 10 / 12, "feet"),
  18776. default: true
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18782. {
  18783. front: {
  18784. height: math.unit(6 + 10 / 12, "feet"),
  18785. weight: math.unit(255, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/alexeev/front.svg",
  18789. extra: 213 / 200,
  18790. bottom: 0.05
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(6 + 10 / 12, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(2 + 8 / 12, "feet"),
  18807. weight: math.unit(22, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/evelyn/front.svg",
  18811. extra: 208 / 180
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(2 + 8 / 12, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(5 + 9 / 12, "feet"),
  18828. weight: math.unit(139, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/inca/front.svg",
  18832. extra: 294 / 291,
  18833. bottom: 0.03
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(5 + 9 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(5 + 1 / 12, "feet"),
  18850. weight: math.unit(84, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/magdalene/front.svg",
  18854. extra: 293 / 273
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(5 + 1 / 12, "feet"),
  18862. default: true
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(6 + 3 / 12, "feet"),
  18871. weight: math.unit(185, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/mera/front.svg",
  18875. extra: 291 / 277,
  18876. bottom: 0.03
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(6 + 3 / 12, "feet"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(6 + 7 / 12, "feet"),
  18893. weight: math.unit(160, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/ceres/front.svg",
  18897. extra: 1023 / 950,
  18898. bottom: 0.027
  18899. }
  18900. },
  18901. back: {
  18902. height: math.unit(6 + 7 / 12, "feet"),
  18903. weight: math.unit(160, "lb"),
  18904. name: "Back",
  18905. image: {
  18906. source: "./media/characters/ceres/back.svg",
  18907. extra: 1023 / 950
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(6 + 7 / 12, "feet"),
  18915. default: true
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(5 + 10 / 12, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/kris/front.svg",
  18928. extra: 885 / 803,
  18929. bottom: 0.03
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Normal",
  18936. height: math.unit(5 + 10 / 12, "feet"),
  18937. default: true
  18938. },
  18939. ]
  18940. ))
  18941. characterMakers.push(() => makeCharacter(
  18942. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18943. {
  18944. front: {
  18945. height: math.unit(7, "feet"),
  18946. weight: math.unit(120, "kg"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/taluthus/front.svg",
  18950. extra: 903 / 833,
  18951. bottom: 0.015
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(7, "feet"),
  18959. default: true
  18960. },
  18961. {
  18962. name: "Macro",
  18963. height: math.unit(300, "feet")
  18964. },
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18969. {
  18970. front: {
  18971. height: math.unit(5 + 9 / 12, "feet"),
  18972. weight: math.unit(145, "lb"),
  18973. name: "Front",
  18974. image: {
  18975. source: "./media/characters/dawn/front.svg",
  18976. extra: 2094 / 2016,
  18977. bottom: 0.025
  18978. }
  18979. },
  18980. back: {
  18981. height: math.unit(5 + 9 / 12, "feet"),
  18982. weight: math.unit(160, "lb"),
  18983. name: "Back",
  18984. image: {
  18985. source: "./media/characters/dawn/back.svg",
  18986. extra: 2112 / 2080,
  18987. bottom: 0.005
  18988. }
  18989. },
  18990. },
  18991. [
  18992. {
  18993. name: "Normal",
  18994. height: math.unit(6 + 7 / 12, "feet"),
  18995. default: true
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19001. {
  19002. anthro: {
  19003. height: math.unit(8 + 3 / 12, "feet"),
  19004. weight: math.unit(450, "lb"),
  19005. name: "Anthro",
  19006. image: {
  19007. source: "./media/characters/arador/anthro.svg",
  19008. extra: 1835 / 1718,
  19009. bottom: 0.025
  19010. }
  19011. },
  19012. feral: {
  19013. height: math.unit(4, "feet"),
  19014. weight: math.unit(200, "lb"),
  19015. name: "Feral",
  19016. image: {
  19017. source: "./media/characters/arador/feral.svg",
  19018. extra: 1683 / 1514,
  19019. bottom: 0.07
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Normal",
  19026. height: math.unit(8 + 3 / 12, "feet")
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(82.5, "feet"),
  19031. default: true
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(5 + 10 / 12, "feet"),
  19040. weight: math.unit(125, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/dharsi/front.svg",
  19044. extra: 716 / 630,
  19045. bottom: 0.035
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Nano",
  19052. height: math.unit(100, "nm")
  19053. },
  19054. {
  19055. name: "Micro",
  19056. height: math.unit(2, "inches")
  19057. },
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(5 + 10 / 12, "feet"),
  19061. default: true
  19062. },
  19063. {
  19064. name: "Macro",
  19065. height: math.unit(1000, "feet")
  19066. },
  19067. {
  19068. name: "Megamacro",
  19069. height: math.unit(10, "miles")
  19070. },
  19071. {
  19072. name: "Gigamacro",
  19073. height: math.unit(3000, "miles")
  19074. },
  19075. {
  19076. name: "Teramacro",
  19077. height: math.unit(500000, "miles")
  19078. },
  19079. {
  19080. name: "Teramacro+",
  19081. height: math.unit(30, "galaxies")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19087. {
  19088. front: {
  19089. height: math.unit(6, "feet"),
  19090. weight: math.unit(150, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/deathy/front.svg",
  19094. extra: 1552 / 1463,
  19095. bottom: 0.025
  19096. }
  19097. },
  19098. side: {
  19099. height: math.unit(6, "feet"),
  19100. weight: math.unit(150, "lb"),
  19101. name: "Side",
  19102. image: {
  19103. source: "./media/characters/deathy/side.svg",
  19104. extra: 1604 / 1455,
  19105. bottom: 0.025
  19106. }
  19107. },
  19108. back: {
  19109. height: math.unit(6, "feet"),
  19110. weight: math.unit(150, "lb"),
  19111. name: "Back",
  19112. image: {
  19113. source: "./media/characters/deathy/back.svg",
  19114. extra: 1580 / 1463,
  19115. bottom: 0.005
  19116. }
  19117. },
  19118. },
  19119. [
  19120. {
  19121. name: "Micro",
  19122. height: math.unit(5, "millimeters")
  19123. },
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(6 + 5 / 12, "feet"),
  19127. default: true
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19133. {
  19134. front: {
  19135. height: math.unit(16, "feet"),
  19136. weight: math.unit(4000, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/juniper/front.svg",
  19140. bottom: 0.04
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(16, "feet"),
  19148. default: true
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(6, "feet"),
  19157. weight: math.unit(150, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/hipster/front.svg",
  19161. extra: 1312 / 1209,
  19162. bottom: 0.025
  19163. }
  19164. },
  19165. back: {
  19166. height: math.unit(6, "feet"),
  19167. weight: math.unit(150, "lb"),
  19168. name: "Back",
  19169. image: {
  19170. source: "./media/characters/hipster/back.svg",
  19171. extra: 1281 / 1196,
  19172. bottom: 0.01
  19173. }
  19174. },
  19175. },
  19176. [
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(1, "mm")
  19180. },
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(4, "inches"),
  19184. default: true
  19185. },
  19186. {
  19187. name: "Macro",
  19188. height: math.unit(500, "feet")
  19189. },
  19190. {
  19191. name: "Megamacro",
  19192. height: math.unit(1000, "miles")
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(6, "feet"),
  19201. weight: math.unit(150, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/tendirmuldr/front.svg",
  19205. extra: 1878 / 1772,
  19206. bottom: 0.015
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Megamacro",
  19213. height: math.unit(1500, "miles"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19220. {
  19221. front: {
  19222. height: math.unit(14, "feet"),
  19223. weight: math.unit(12000, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/mort/front.svg",
  19227. extra: 365 / 318,
  19228. bottom: 0.01
  19229. }
  19230. },
  19231. side: {
  19232. height: math.unit(14, "feet"),
  19233. weight: math.unit(12000, "lb"),
  19234. name: "Side",
  19235. image: {
  19236. source: "./media/characters/mort/side.svg",
  19237. extra: 365 / 318,
  19238. bottom: 0.052
  19239. },
  19240. default: true
  19241. },
  19242. back: {
  19243. height: math.unit(14, "feet"),
  19244. weight: math.unit(12000, "lb"),
  19245. name: "Back",
  19246. image: {
  19247. source: "./media/characters/mort/back.svg",
  19248. extra: 371 / 332,
  19249. bottom: 0.18
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(14, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19263. {
  19264. front: {
  19265. height: math.unit(8, "feet"),
  19266. weight: math.unit(1, "ton"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/lycoa/front.svg",
  19270. extra: 1875 / 1789,
  19271. bottom: 0.022
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(8, "feet"),
  19276. weight: math.unit(1, "ton"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/lycoa/back.svg",
  19280. extra: 1835 / 1781,
  19281. bottom: 0.03
  19282. }
  19283. },
  19284. head: {
  19285. height: math.unit(2.1, "feet"),
  19286. name: "Head",
  19287. image: {
  19288. source: "./media/characters/lycoa/head.svg"
  19289. }
  19290. },
  19291. tailmaw: {
  19292. height: math.unit(1.9, "feet"),
  19293. name: "Tailmaw",
  19294. image: {
  19295. source: "./media/characters/lycoa/tailmaw.svg"
  19296. }
  19297. },
  19298. tentacles: {
  19299. height: math.unit(2.1, "feet"),
  19300. name: "Tentacles",
  19301. image: {
  19302. source: "./media/characters/lycoa/tentacles.svg"
  19303. }
  19304. },
  19305. dick: {
  19306. height: math.unit(1.73, "feet"),
  19307. name: "Dick",
  19308. image: {
  19309. source: "./media/characters/lycoa/dick.svg"
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Normal",
  19316. height: math.unit(8, "feet"),
  19317. default: true
  19318. },
  19319. {
  19320. name: "Macro",
  19321. height: math.unit(30, "feet")
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19327. {
  19328. front: {
  19329. height: math.unit(4 + 2 / 12, "feet"),
  19330. weight: math.unit(70, "lb"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/naldara/front.svg",
  19334. extra: 841 / 720,
  19335. bottom: 0.04
  19336. }
  19337. },
  19338. naga: {
  19339. height: math.unit(23, "feet"),
  19340. weight: math.unit(15000, "kg"),
  19341. name: "Naga",
  19342. image: {
  19343. source: "./media/characters/naldara/naga.svg",
  19344. extra: 3290/2959,
  19345. bottom: 124/3432
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(4 + 2 / 12, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(13 + 7 / 12, "feet"),
  19362. weight: math.unit(1500, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/briar/front.svg",
  19366. extra: 626 / 596,
  19367. bottom: 0.08
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(13 + 7 / 12, "feet"),
  19375. default: true
  19376. },
  19377. ]
  19378. ))
  19379. characterMakers.push(() => makeCharacter(
  19380. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19381. {
  19382. side: {
  19383. height: math.unit(10, "feet"),
  19384. weight: math.unit(500, "lb"),
  19385. name: "Side",
  19386. image: {
  19387. source: "./media/characters/vanguard/side.svg",
  19388. extra: 502 / 425,
  19389. bottom: 0.087
  19390. }
  19391. },
  19392. },
  19393. [
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(10, "feet"),
  19397. default: true
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(7.5, "feet"),
  19406. weight: math.unit(2, "lb"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/artemis/front.svg",
  19410. extra: 1192 / 1075,
  19411. bottom: 0.07
  19412. }
  19413. },
  19414. frontNsfw: {
  19415. height: math.unit(7.5, "feet"),
  19416. weight: math.unit(2, "lb"),
  19417. name: "Front (NSFW)",
  19418. image: {
  19419. source: "./media/characters/artemis/front-nsfw.svg",
  19420. extra: 1192 / 1075,
  19421. bottom: 0.07
  19422. }
  19423. },
  19424. frontNsfwer: {
  19425. height: math.unit(7.5, "feet"),
  19426. weight: math.unit(2, "lb"),
  19427. name: "Front (NSFW-er)",
  19428. image: {
  19429. source: "./media/characters/artemis/front-nsfwer.svg",
  19430. extra: 1192 / 1075,
  19431. bottom: 0.07
  19432. }
  19433. },
  19434. side: {
  19435. height: math.unit(7.5, "feet"),
  19436. weight: math.unit(2, "lb"),
  19437. name: "Side",
  19438. image: {
  19439. source: "./media/characters/artemis/side.svg",
  19440. extra: 1192 / 1075,
  19441. bottom: 0.07
  19442. }
  19443. },
  19444. sideNsfw: {
  19445. height: math.unit(7.5, "feet"),
  19446. weight: math.unit(2, "lb"),
  19447. name: "Side (NSFW)",
  19448. image: {
  19449. source: "./media/characters/artemis/side-nsfw.svg",
  19450. extra: 1192 / 1075,
  19451. bottom: 0.07
  19452. }
  19453. },
  19454. sideNsfwer: {
  19455. height: math.unit(7.5, "feet"),
  19456. weight: math.unit(2, "lb"),
  19457. name: "Side (NSFW-er)",
  19458. image: {
  19459. source: "./media/characters/artemis/side-nsfwer.svg",
  19460. extra: 1192 / 1075,
  19461. bottom: 0.07
  19462. }
  19463. },
  19464. maw: {
  19465. height: math.unit(1.1, "feet"),
  19466. name: "Maw",
  19467. image: {
  19468. source: "./media/characters/artemis/maw.svg"
  19469. }
  19470. },
  19471. stomach: {
  19472. height: math.unit(0.95, "feet"),
  19473. name: "Stomach",
  19474. image: {
  19475. source: "./media/characters/artemis/stomach.svg"
  19476. }
  19477. },
  19478. dickCanine: {
  19479. height: math.unit(1, "feet"),
  19480. name: "Dick (Canine)",
  19481. image: {
  19482. source: "./media/characters/artemis/dick-canine.svg"
  19483. }
  19484. },
  19485. dickEquine: {
  19486. height: math.unit(0.85, "feet"),
  19487. name: "Dick (Equine)",
  19488. image: {
  19489. source: "./media/characters/artemis/dick-equine.svg"
  19490. }
  19491. },
  19492. dickExotic: {
  19493. height: math.unit(0.85, "feet"),
  19494. name: "Dick (Exotic)",
  19495. image: {
  19496. source: "./media/characters/artemis/dick-exotic.svg"
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(7.5, "feet"),
  19504. default: true
  19505. },
  19506. {
  19507. name: "Enlarged",
  19508. height: math.unit(12, "feet")
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19514. {
  19515. front: {
  19516. height: math.unit(5 + 3 / 12, "feet"),
  19517. weight: math.unit(160, "lb"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/kira/front.svg",
  19521. extra: 906 / 786,
  19522. bottom: 0.01
  19523. }
  19524. },
  19525. back: {
  19526. height: math.unit(5 + 3 / 12, "feet"),
  19527. weight: math.unit(160, "lb"),
  19528. name: "Back",
  19529. image: {
  19530. source: "./media/characters/kira/back.svg",
  19531. extra: 882 / 757,
  19532. bottom: 0.005
  19533. }
  19534. },
  19535. frontDressed: {
  19536. height: math.unit(5 + 3 / 12, "feet"),
  19537. weight: math.unit(160, "lb"),
  19538. name: "Front (Dressed)",
  19539. image: {
  19540. source: "./media/characters/kira/front-dressed.svg",
  19541. extra: 906 / 786,
  19542. bottom: 0.01
  19543. }
  19544. },
  19545. beans: {
  19546. height: math.unit(0.92, "feet"),
  19547. name: "Beans",
  19548. image: {
  19549. source: "./media/characters/kira/beans.svg"
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(5 + 3 / 12, "feet"),
  19557. default: true
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(5 + 4 / 12, "feet"),
  19566. weight: math.unit(145, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/scramble/front.svg",
  19570. extra: 763 / 727,
  19571. bottom: 0.05
  19572. }
  19573. },
  19574. back: {
  19575. height: math.unit(5 + 4 / 12, "feet"),
  19576. weight: math.unit(145, "lb"),
  19577. name: "Back",
  19578. image: {
  19579. source: "./media/characters/scramble/back.svg",
  19580. extra: 826 / 737,
  19581. bottom: 0.002
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(5 + 4 / 12, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19595. {
  19596. side: {
  19597. height: math.unit(6 + 2 / 12, "feet"),
  19598. weight: math.unit(190, "lb"),
  19599. name: "Side",
  19600. image: {
  19601. source: "./media/characters/biscuit/side.svg",
  19602. extra: 858 / 791,
  19603. bottom: 0.044
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(6 + 2 / 12, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(5 + 2 / 12, "feet"),
  19620. weight: math.unit(120, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/poffin/front.svg",
  19624. extra: 786 / 680,
  19625. bottom: 0.005
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(5 + 2 / 12, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(6 + 3 / 12, "feet"),
  19642. weight: math.unit(519, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/dhari/front.svg",
  19646. extra: 1048 / 946,
  19647. bottom: 0.015
  19648. }
  19649. },
  19650. back: {
  19651. height: math.unit(6 + 3 / 12, "feet"),
  19652. weight: math.unit(519, "lb"),
  19653. name: "Back",
  19654. image: {
  19655. source: "./media/characters/dhari/back.svg",
  19656. extra: 1048 / 931,
  19657. bottom: 0.005
  19658. }
  19659. },
  19660. frontDressed: {
  19661. height: math.unit(6 + 3 / 12, "feet"),
  19662. weight: math.unit(519, "lb"),
  19663. name: "Front (Dressed)",
  19664. image: {
  19665. source: "./media/characters/dhari/front-dressed.svg",
  19666. extra: 1713 / 1546,
  19667. bottom: 0.02
  19668. }
  19669. },
  19670. backDressed: {
  19671. height: math.unit(6 + 3 / 12, "feet"),
  19672. weight: math.unit(519, "lb"),
  19673. name: "Back (Dressed)",
  19674. image: {
  19675. source: "./media/characters/dhari/back-dressed.svg",
  19676. extra: 1699 / 1537,
  19677. bottom: 0.01
  19678. }
  19679. },
  19680. maw: {
  19681. height: math.unit(0.95, "feet"),
  19682. name: "Maw",
  19683. image: {
  19684. source: "./media/characters/dhari/maw.svg"
  19685. }
  19686. },
  19687. wereFront: {
  19688. height: math.unit(12 + 8 / 12, "feet"),
  19689. weight: math.unit(4000, "lb"),
  19690. name: "Front (Were)",
  19691. image: {
  19692. source: "./media/characters/dhari/were-front.svg",
  19693. extra: 1065 / 969,
  19694. bottom: 0.015
  19695. }
  19696. },
  19697. wereBack: {
  19698. height: math.unit(12 + 8 / 12, "feet"),
  19699. weight: math.unit(4000, "lb"),
  19700. name: "Back (Were)",
  19701. image: {
  19702. source: "./media/characters/dhari/were-back.svg",
  19703. extra: 1065 / 969,
  19704. bottom: 0.012
  19705. }
  19706. },
  19707. wereMaw: {
  19708. height: math.unit(0.625, "meters"),
  19709. name: "Maw (Were)",
  19710. image: {
  19711. source: "./media/characters/dhari/were-maw.svg"
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(6 + 3 / 12, "feet"),
  19719. default: true
  19720. },
  19721. ]
  19722. ))
  19723. characterMakers.push(() => makeCharacter(
  19724. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19725. {
  19726. anthro: {
  19727. height: math.unit(5 + 7 / 12, "feet"),
  19728. weight: math.unit(175, "lb"),
  19729. name: "Anthro",
  19730. image: {
  19731. source: "./media/characters/rena-dyne/anthro.svg",
  19732. extra: 1849 / 1785,
  19733. bottom: 0.005
  19734. }
  19735. },
  19736. taur: {
  19737. height: math.unit(15 + 6 / 12, "feet"),
  19738. weight: math.unit(8000, "lb"),
  19739. name: "Taur",
  19740. image: {
  19741. source: "./media/characters/rena-dyne/taur.svg",
  19742. extra: 2315 / 2234,
  19743. bottom: 0.033
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(5 + 7 / 12, "feet"),
  19751. default: true
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(8, "feet"),
  19760. weight: math.unit(600, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/weremeep/front.svg",
  19764. extra: 967 / 862,
  19765. bottom: 0.01
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(8, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Lorg",
  19777. height: math.unit(12, "feet")
  19778. },
  19779. {
  19780. name: "Oh Lawd She Comin'",
  19781. height: math.unit(20, "feet")
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19787. {
  19788. front: {
  19789. height: math.unit(4, "feet"),
  19790. weight: math.unit(90, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/reza/front.svg",
  19794. extra: 1183 / 1111,
  19795. bottom: 0.017
  19796. }
  19797. },
  19798. back: {
  19799. height: math.unit(4, "feet"),
  19800. weight: math.unit(90, "lb"),
  19801. name: "Back",
  19802. image: {
  19803. source: "./media/characters/reza/back.svg",
  19804. extra: 1183 / 1111,
  19805. bottom: 0.01
  19806. }
  19807. },
  19808. drake: {
  19809. height: math.unit(30, "feet"),
  19810. weight: math.unit(246960, "lb"),
  19811. name: "Drake",
  19812. image: {
  19813. source: "./media/characters/reza/drake.svg",
  19814. extra: 2350 / 2024,
  19815. bottom: 60.7 / 2403
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(4, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19829. {
  19830. side: {
  19831. height: math.unit(15, "feet"),
  19832. weight: math.unit(14, "tons"),
  19833. name: "Side",
  19834. image: {
  19835. source: "./media/characters/athea/side.svg",
  19836. extra: 960 / 540,
  19837. bottom: 0.003
  19838. }
  19839. },
  19840. sitting: {
  19841. height: math.unit(6 * 2.85, "feet"),
  19842. weight: math.unit(14, "tons"),
  19843. name: "Sitting",
  19844. image: {
  19845. source: "./media/characters/athea/sitting.svg",
  19846. extra: 621 / 581,
  19847. bottom: 0.075
  19848. }
  19849. },
  19850. maw: {
  19851. height: math.unit(7.59498031496063, "feet"),
  19852. name: "Maw",
  19853. image: {
  19854. source: "./media/characters/athea/maw.svg"
  19855. }
  19856. },
  19857. },
  19858. [
  19859. {
  19860. name: "Lap Cat",
  19861. height: math.unit(2.5, "feet")
  19862. },
  19863. {
  19864. name: "Minimacro",
  19865. height: math.unit(15, "feet"),
  19866. default: true
  19867. },
  19868. {
  19869. name: "Macro",
  19870. height: math.unit(120, "feet")
  19871. },
  19872. {
  19873. name: "Macro+",
  19874. height: math.unit(640, "feet")
  19875. },
  19876. {
  19877. name: "Colossus",
  19878. height: math.unit(2.2, "miles")
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(8 + 8 / 12, "feet"),
  19887. weight: math.unit(130, "kg"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/seroko/front.svg",
  19891. extra: 1385 / 1280,
  19892. bottom: 0.025
  19893. }
  19894. },
  19895. back: {
  19896. height: math.unit(8 + 8 / 12, "feet"),
  19897. weight: math.unit(130, "kg"),
  19898. name: "Back",
  19899. image: {
  19900. source: "./media/characters/seroko/back.svg",
  19901. extra: 1369 / 1238,
  19902. bottom: 0.018
  19903. }
  19904. },
  19905. frontDressed: {
  19906. height: math.unit(8 + 8 / 12, "feet"),
  19907. weight: math.unit(130, "kg"),
  19908. name: "Front (Dressed)",
  19909. image: {
  19910. source: "./media/characters/seroko/front-dressed.svg",
  19911. extra: 1366 / 1275,
  19912. bottom: 0.03
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Normal",
  19919. height: math.unit(8 + 8 / 12, "feet"),
  19920. default: true
  19921. },
  19922. ]
  19923. ))
  19924. characterMakers.push(() => makeCharacter(
  19925. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19926. {
  19927. front: {
  19928. height: math.unit(5.5, "feet"),
  19929. weight: math.unit(160, "lb"),
  19930. name: "Front",
  19931. image: {
  19932. source: "./media/characters/quatzi/front.svg",
  19933. extra: 2346 / 2242,
  19934. bottom: 0.015
  19935. }
  19936. },
  19937. },
  19938. [
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(5.5, "feet"),
  19942. default: true
  19943. },
  19944. {
  19945. name: "Big",
  19946. height: math.unit(7.7, "feet")
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(5 + 11 / 12, "feet"),
  19955. weight: math.unit(180, "lb"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/sen/front.svg",
  19959. extra: 1321 / 1254,
  19960. bottom: 0.015
  19961. }
  19962. },
  19963. side: {
  19964. height: math.unit(5 + 11 / 12, "feet"),
  19965. weight: math.unit(180, "lb"),
  19966. name: "Side",
  19967. image: {
  19968. source: "./media/characters/sen/side.svg",
  19969. extra: 1321 / 1254,
  19970. bottom: 0.007
  19971. }
  19972. },
  19973. back: {
  19974. height: math.unit(5 + 11 / 12, "feet"),
  19975. weight: math.unit(180, "lb"),
  19976. name: "Back",
  19977. image: {
  19978. source: "./media/characters/sen/back.svg",
  19979. extra: 1321 / 1254
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(5 + 11 / 12, "feet"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19993. {
  19994. front: {
  19995. height: math.unit(166.6, "cm"),
  19996. weight: math.unit(66.6, "kg"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/fruity/front.svg",
  20000. extra: 1510 / 1386,
  20001. bottom: 0.04
  20002. }
  20003. },
  20004. back: {
  20005. height: math.unit(166.6, "cm"),
  20006. weight: math.unit(66.6, "lb"),
  20007. name: "Back",
  20008. image: {
  20009. source: "./media/characters/fruity/back.svg",
  20010. extra: 1563 / 1435,
  20011. bottom: 0.005
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(166.6, "cm"),
  20019. default: true
  20020. },
  20021. {
  20022. name: "Demonic",
  20023. height: math.unit(166.6, "feet")
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20029. {
  20030. side: {
  20031. height: math.unit(10, "feet"),
  20032. weight: math.unit(500, "lb"),
  20033. name: "Side",
  20034. image: {
  20035. source: "./media/characters/zost/side.svg",
  20036. extra: 966 / 880,
  20037. bottom: 0.075
  20038. }
  20039. },
  20040. mawFront: {
  20041. height: math.unit(1.08, "meters"),
  20042. name: "Maw (Front)",
  20043. image: {
  20044. source: "./media/characters/zost/maw-front.svg"
  20045. }
  20046. },
  20047. mawSide: {
  20048. height: math.unit(2.66, "feet"),
  20049. name: "Maw (Side)",
  20050. image: {
  20051. source: "./media/characters/zost/maw-side.svg"
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(10, "feet"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(5 + 4 / 12, "feet"),
  20068. weight: math.unit(120, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/luci/front.svg",
  20072. extra: 1985 / 1884,
  20073. bottom: 0.04
  20074. }
  20075. },
  20076. back: {
  20077. height: math.unit(5 + 4 / 12, "feet"),
  20078. weight: math.unit(120, "lb"),
  20079. name: "Back",
  20080. image: {
  20081. source: "./media/characters/luci/back.svg",
  20082. extra: 1892 / 1791,
  20083. bottom: 0.002
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(5 + 4 / 12, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(1500, "feet"),
  20100. weight: math.unit(3.8e6, "tons"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/2th/front.svg",
  20104. extra: 3489 / 3350,
  20105. bottom: 0.1
  20106. }
  20107. },
  20108. foot: {
  20109. height: math.unit(461, "feet"),
  20110. name: "Foot",
  20111. image: {
  20112. source: "./media/characters/2th/foot.svg"
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "\"Micro\"",
  20119. height: math.unit(15 + 7 / 12, "feet")
  20120. },
  20121. {
  20122. name: "Normal",
  20123. height: math.unit(1500, "feet"),
  20124. default: true
  20125. },
  20126. {
  20127. name: "Macro",
  20128. height: math.unit(5000, "feet")
  20129. },
  20130. {
  20131. name: "Megamacro",
  20132. height: math.unit(15, "miles")
  20133. },
  20134. {
  20135. name: "Gigamacro",
  20136. height: math.unit(4000, "miles")
  20137. },
  20138. {
  20139. name: "Galactic",
  20140. height: math.unit(50, "AU")
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20146. {
  20147. front: {
  20148. height: math.unit(5 + 6 / 12, "feet"),
  20149. weight: math.unit(220, "lb"),
  20150. name: "Front",
  20151. image: {
  20152. source: "./media/characters/amethyst/front.svg",
  20153. extra: 2078 / 2040,
  20154. bottom: 0.045
  20155. }
  20156. },
  20157. back: {
  20158. height: math.unit(5 + 6 / 12, "feet"),
  20159. weight: math.unit(220, "lb"),
  20160. name: "Back",
  20161. image: {
  20162. source: "./media/characters/amethyst/back.svg",
  20163. extra: 2021 / 1989,
  20164. bottom: 0.02
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(5 + 6 / 12, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(4 + 11 / 12, "feet"),
  20181. weight: math.unit(120, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/yumi-akiyama/front.svg",
  20185. extra: 1327 / 1235,
  20186. bottom: 0.02
  20187. }
  20188. },
  20189. back: {
  20190. height: math.unit(4 + 11 / 12, "feet"),
  20191. weight: math.unit(120, "lb"),
  20192. name: "Back",
  20193. image: {
  20194. source: "./media/characters/yumi-akiyama/back.svg",
  20195. extra: 1287 / 1245,
  20196. bottom: 0.002
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Galactic",
  20203. height: math.unit(50, "galaxies"),
  20204. default: true
  20205. },
  20206. {
  20207. name: "Universal",
  20208. height: math.unit(100, "universes")
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(8, "feet"),
  20217. weight: math.unit(500, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/rifter-yrmori/front.svg",
  20221. extra: 1180 / 1125,
  20222. bottom: 0.02
  20223. }
  20224. },
  20225. back: {
  20226. height: math.unit(8, "feet"),
  20227. weight: math.unit(500, "lb"),
  20228. name: "Back",
  20229. image: {
  20230. source: "./media/characters/rifter-yrmori/back.svg",
  20231. extra: 1190 / 1145,
  20232. bottom: 0.001
  20233. }
  20234. },
  20235. wings: {
  20236. height: math.unit(7.75, "feet"),
  20237. weight: math.unit(500, "lb"),
  20238. name: "Wings",
  20239. image: {
  20240. source: "./media/characters/rifter-yrmori/wings.svg",
  20241. extra: 1357 / 1285
  20242. }
  20243. },
  20244. maw: {
  20245. height: math.unit(0.8, "feet"),
  20246. name: "Maw",
  20247. image: {
  20248. source: "./media/characters/rifter-yrmori/maw.svg"
  20249. }
  20250. },
  20251. mawfront: {
  20252. height: math.unit(1.45, "feet"),
  20253. name: "Maw (Front)",
  20254. image: {
  20255. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(8, "feet"),
  20263. default: true
  20264. },
  20265. {
  20266. name: "Macro",
  20267. height: math.unit(42, "meters")
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20273. {
  20274. were: {
  20275. height: math.unit(25 + 6 / 12, "feet"),
  20276. weight: math.unit(10000, "lb"),
  20277. name: "Were",
  20278. image: {
  20279. source: "./media/characters/tahajin/were.svg",
  20280. extra: 801 / 770,
  20281. bottom: 0.042
  20282. }
  20283. },
  20284. aquatic: {
  20285. height: math.unit(6 + 4 / 12, "feet"),
  20286. weight: math.unit(160, "lb"),
  20287. name: "Aquatic",
  20288. image: {
  20289. source: "./media/characters/tahajin/aquatic.svg",
  20290. extra: 572 / 542,
  20291. bottom: 0.04
  20292. }
  20293. },
  20294. chow: {
  20295. height: math.unit(8 + 11 / 12, "feet"),
  20296. weight: math.unit(450, "lb"),
  20297. name: "Chow",
  20298. image: {
  20299. source: "./media/characters/tahajin/chow.svg",
  20300. extra: 660 / 640,
  20301. bottom: 0.015
  20302. }
  20303. },
  20304. demiNaga: {
  20305. height: math.unit(6 + 8 / 12, "feet"),
  20306. weight: math.unit(300, "lb"),
  20307. name: "Demi Naga",
  20308. image: {
  20309. source: "./media/characters/tahajin/demi-naga.svg",
  20310. extra: 643 / 615,
  20311. bottom: 0.1
  20312. }
  20313. },
  20314. data: {
  20315. height: math.unit(5, "inches"),
  20316. weight: math.unit(0.1, "lb"),
  20317. name: "Data",
  20318. image: {
  20319. source: "./media/characters/tahajin/data.svg"
  20320. }
  20321. },
  20322. fluu: {
  20323. height: math.unit(5 + 7 / 12, "feet"),
  20324. weight: math.unit(140, "lb"),
  20325. name: "Fluu",
  20326. image: {
  20327. source: "./media/characters/tahajin/fluu.svg",
  20328. extra: 628 / 592,
  20329. bottom: 0.02
  20330. }
  20331. },
  20332. starWarrior: {
  20333. height: math.unit(4 + 5 / 12, "feet"),
  20334. weight: math.unit(50, "lb"),
  20335. name: "Star Warrior",
  20336. image: {
  20337. source: "./media/characters/tahajin/star-warrior.svg"
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(25 + 6 / 12, "feet"),
  20345. default: true
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20351. {
  20352. front: {
  20353. height: math.unit(8, "feet"),
  20354. weight: math.unit(350, "lb"),
  20355. name: "Front",
  20356. image: {
  20357. source: "./media/characters/gabira/front.svg",
  20358. extra: 608 / 580,
  20359. bottom: 0.03
  20360. }
  20361. },
  20362. back: {
  20363. height: math.unit(8, "feet"),
  20364. weight: math.unit(350, "lb"),
  20365. name: "Back",
  20366. image: {
  20367. source: "./media/characters/gabira/back.svg",
  20368. extra: 608 / 580,
  20369. bottom: 0.03
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Normal",
  20376. height: math.unit(8, "feet"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(5 + 3 / 12, "feet"),
  20386. weight: math.unit(137, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/sasha-katraine/front.svg",
  20390. bottom: 0.045
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Micro",
  20397. height: math.unit(5, "inches")
  20398. },
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(5 + 3 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20408. {
  20409. side: {
  20410. height: math.unit(4, "inches"),
  20411. weight: math.unit(200, "grams"),
  20412. name: "Side",
  20413. image: {
  20414. source: "./media/characters/der/side.svg",
  20415. extra: 719 / 400,
  20416. bottom: 30.6 / 749.9187
  20417. }
  20418. },
  20419. },
  20420. [
  20421. {
  20422. name: "Micro",
  20423. height: math.unit(4, "inches"),
  20424. default: true
  20425. },
  20426. ]
  20427. ))
  20428. characterMakers.push(() => makeCharacter(
  20429. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20430. {
  20431. side: {
  20432. height: math.unit(30, "meters"),
  20433. weight: math.unit(700, "tonnes"),
  20434. name: "Side",
  20435. image: {
  20436. source: "./media/characters/fixerdragon/side.svg",
  20437. extra: (1293.0514 - 116.03) / 1106.86,
  20438. bottom: 116.03 / 1293.0514
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Planck",
  20445. height: math.unit(1.6e-35, "meters")
  20446. },
  20447. {
  20448. name: "Micro",
  20449. height: math.unit(0.4, "meters")
  20450. },
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(30, "meters"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Megamacro",
  20458. height: math.unit(1.2, "megameters")
  20459. },
  20460. {
  20461. name: "Teramacro",
  20462. height: math.unit(130, "terameters")
  20463. },
  20464. {
  20465. name: "Yottamacro",
  20466. height: math.unit(6200, "yottameters")
  20467. },
  20468. ]
  20469. ));
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(8, "feet"),
  20475. weight: math.unit(250, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/kite/front.svg",
  20479. extra: 2796 / 2659,
  20480. bottom: 0.002
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(8, "feet"),
  20488. default: true
  20489. },
  20490. {
  20491. name: "Macro",
  20492. height: math.unit(360, "feet")
  20493. },
  20494. {
  20495. name: "Megamacro",
  20496. height: math.unit(1500, "feet")
  20497. },
  20498. ]
  20499. ))
  20500. characterMakers.push(() => makeCharacter(
  20501. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20502. {
  20503. front: {
  20504. height: math.unit(5 + 10 / 12, "feet"),
  20505. weight: math.unit(150, "lb"),
  20506. name: "Front",
  20507. image: {
  20508. source: "./media/characters/poojawa-vynar/front.svg",
  20509. extra: (1506.1547 - 55) / 1356.6,
  20510. bottom: 55 / 1506.1547
  20511. }
  20512. },
  20513. frontTailless: {
  20514. height: math.unit(5 + 10 / 12, "feet"),
  20515. weight: math.unit(150, "lb"),
  20516. name: "Front (Tailless)",
  20517. image: {
  20518. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20519. extra: (1506.1547 - 55) / 1356.6,
  20520. bottom: 55 / 1506.1547
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 10 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(293, "meters"),
  20537. weight: math.unit(70400, "tons"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/violette/front.svg",
  20541. extra: 1227 / 1180,
  20542. bottom: 0.005
  20543. }
  20544. },
  20545. back: {
  20546. height: math.unit(293, "meters"),
  20547. weight: math.unit(70400, "tons"),
  20548. name: "Back",
  20549. image: {
  20550. source: "./media/characters/violette/back.svg",
  20551. extra: 1227 / 1180,
  20552. bottom: 0.005
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Macro",
  20559. height: math.unit(293, "meters"),
  20560. default: true
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20566. {
  20567. front: {
  20568. height: math.unit(1050, "feet"),
  20569. weight: math.unit(200000, "tons"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/alessandra/front.svg",
  20573. extra: 960 / 912,
  20574. bottom: 0.06
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(1050, "feet")
  20582. },
  20583. {
  20584. name: "Macro+",
  20585. height: math.unit(900, "meters"),
  20586. default: true
  20587. },
  20588. ]
  20589. ))
  20590. characterMakers.push(() => makeCharacter(
  20591. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20592. {
  20593. front: {
  20594. height: math.unit(5, "feet"),
  20595. weight: math.unit(187, "lb"),
  20596. name: "Front",
  20597. image: {
  20598. source: "./media/characters/person/front.svg",
  20599. extra: 3087 / 2945,
  20600. bottom: 91 / 3181
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Micro",
  20607. height: math.unit(3, "inches")
  20608. },
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(5, "feet"),
  20612. default: true
  20613. },
  20614. {
  20615. name: "Macro",
  20616. height: math.unit(90, "feet")
  20617. },
  20618. {
  20619. name: "Max Size",
  20620. height: math.unit(280, "feet")
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20626. {
  20627. front: {
  20628. height: math.unit(4.5, "meters"),
  20629. weight: math.unit(3200, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/ty/front.svg",
  20633. extra: 1038 / 960,
  20634. bottom: 31.156 / 1068
  20635. }
  20636. },
  20637. back: {
  20638. height: math.unit(4.5, "meters"),
  20639. weight: math.unit(3200, "lb"),
  20640. name: "Back",
  20641. image: {
  20642. source: "./media/characters/ty/back.svg",
  20643. extra: 1044 / 966,
  20644. bottom: 7.48 / 1049
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Normal",
  20651. height: math.unit(4.5, "meters"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 4 / 12, "feet"),
  20661. weight: math.unit(115, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/rocky/front.svg",
  20665. extra: 1012 / 975,
  20666. bottom: 54 / 1066
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5 + 4 / 12, "feet"),
  20674. default: true
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20680. {
  20681. upright: {
  20682. height: math.unit(6, "meters"),
  20683. weight: math.unit(4000, "kg"),
  20684. name: "Upright",
  20685. image: {
  20686. source: "./media/characters/ruin/upright.svg",
  20687. extra: 668 / 661,
  20688. bottom: 42 / 799.8396
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(6, "meters"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(5, "feet"),
  20705. weight: math.unit(106, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/robin/front.svg",
  20709. extra: 862 / 799,
  20710. bottom: 42.4 / 914.8856
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(5, "feet"),
  20718. default: true
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20724. {
  20725. side: {
  20726. height: math.unit(3, "feet"),
  20727. weight: math.unit(225, "lb"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/saian/side.svg",
  20731. extra: 566 / 356,
  20732. bottom: 79.7 / 643
  20733. }
  20734. },
  20735. maw: {
  20736. height: math.unit(2.85, "feet"),
  20737. name: "Maw",
  20738. image: {
  20739. source: "./media/characters/saian/maw.svg"
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(3, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20753. {
  20754. side: {
  20755. height: math.unit(8, "feet"),
  20756. weight: math.unit(300, "lb"),
  20757. name: "Side",
  20758. image: {
  20759. source: "./media/characters/equus-silvermane/side.svg",
  20760. extra: 2176 / 2050,
  20761. bottom: 65.7 / 2245
  20762. }
  20763. },
  20764. front: {
  20765. height: math.unit(8, "feet"),
  20766. weight: math.unit(300, "lb"),
  20767. name: "Front",
  20768. image: {
  20769. source: "./media/characters/equus-silvermane/front.svg",
  20770. extra: 4633 / 4400,
  20771. bottom: 71.3 / 4706.915
  20772. }
  20773. },
  20774. sideStepping: {
  20775. height: math.unit(8, "feet"),
  20776. weight: math.unit(300, "lb"),
  20777. name: "Side (Stepping)",
  20778. image: {
  20779. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20780. extra: 1968 / 1860,
  20781. bottom: 16.4 / 1989
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Normal",
  20788. height: math.unit(8, "feet")
  20789. },
  20790. {
  20791. name: "Minimacro",
  20792. height: math.unit(75, "feet"),
  20793. default: true
  20794. },
  20795. {
  20796. name: "Macro",
  20797. height: math.unit(150, "feet")
  20798. },
  20799. {
  20800. name: "Macro+",
  20801. height: math.unit(1000, "feet")
  20802. },
  20803. {
  20804. name: "Megamacro",
  20805. height: math.unit(1, "mile")
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20811. {
  20812. side: {
  20813. height: math.unit(20, "feet"),
  20814. weight: math.unit(30000, "kg"),
  20815. name: "Side",
  20816. image: {
  20817. source: "./media/characters/windar/side.svg",
  20818. extra: 1491 / 1248,
  20819. bottom: 82.56 / 1568
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(20, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20833. {
  20834. side: {
  20835. height: math.unit(15.66, "feet"),
  20836. weight: math.unit(150, "lb"),
  20837. name: "Side",
  20838. image: {
  20839. source: "./media/characters/melody/side.svg",
  20840. extra: 1097 / 944,
  20841. bottom: 11.8 / 1109
  20842. }
  20843. },
  20844. sideOutfit: {
  20845. height: math.unit(15.66, "feet"),
  20846. weight: math.unit(150, "lb"),
  20847. name: "Side (Outfit)",
  20848. image: {
  20849. source: "./media/characters/melody/side-outfit.svg",
  20850. extra: 1097 / 944,
  20851. bottom: 11.8 / 1109
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(15.66, "feet"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20865. {
  20866. front: {
  20867. height: math.unit(8, "feet"),
  20868. weight: math.unit(325, "lb"),
  20869. name: "Front",
  20870. image: {
  20871. source: "./media/characters/windera/front.svg",
  20872. extra: 3180 / 2845,
  20873. bottom: 178 / 3365
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(8, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20887. {
  20888. front: {
  20889. height: math.unit(28.75, "feet"),
  20890. weight: math.unit(2000, "kg"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/sonear/front.svg",
  20894. extra: 1041.1 / 964.9,
  20895. bottom: 53.7 / 1096.6
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Normal",
  20902. height: math.unit(28.75, "feet"),
  20903. default: true
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20909. {
  20910. side: {
  20911. height: math.unit(25.5, "feet"),
  20912. weight: math.unit(23000, "kg"),
  20913. name: "Side",
  20914. image: {
  20915. source: "./media/characters/kanara/side.svg"
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Normal",
  20922. height: math.unit(25.5, "feet"),
  20923. default: true
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20929. {
  20930. side: {
  20931. height: math.unit(10, "feet"),
  20932. weight: math.unit(1000, "kg"),
  20933. name: "Side",
  20934. image: {
  20935. source: "./media/characters/ereus/side.svg",
  20936. extra: 1157 / 959,
  20937. bottom: 153 / 1312.5
  20938. }
  20939. },
  20940. },
  20941. [
  20942. {
  20943. name: "Normal",
  20944. height: math.unit(10, "feet"),
  20945. default: true
  20946. },
  20947. ]
  20948. ))
  20949. characterMakers.push(() => makeCharacter(
  20950. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20951. {
  20952. side: {
  20953. height: math.unit(4.5, "feet"),
  20954. weight: math.unit(500, "lb"),
  20955. name: "Side",
  20956. image: {
  20957. source: "./media/characters/e-ter/side.svg",
  20958. extra: 1550 / 1248,
  20959. bottom: 146 / 1694
  20960. }
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Normal",
  20966. height: math.unit(4.5, "feet"),
  20967. default: true
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20973. {
  20974. side: {
  20975. height: math.unit(9.7, "feet"),
  20976. weight: math.unit(4000, "kg"),
  20977. name: "Side",
  20978. image: {
  20979. source: "./media/characters/yamie/side.svg"
  20980. }
  20981. },
  20982. },
  20983. [
  20984. {
  20985. name: "Normal",
  20986. height: math.unit(9.7, "feet"),
  20987. default: true
  20988. },
  20989. ]
  20990. ))
  20991. characterMakers.push(() => makeCharacter(
  20992. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20993. {
  20994. front: {
  20995. height: math.unit(50, "feet"),
  20996. weight: math.unit(50000, "kg"),
  20997. name: "Front",
  20998. image: {
  20999. source: "./media/characters/anders/front.svg",
  21000. extra: 570 / 539,
  21001. bottom: 14.7 / 586.7
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Large",
  21008. height: math.unit(50, "feet")
  21009. },
  21010. {
  21011. name: "Macro",
  21012. height: math.unit(2000, "feet"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Megamacro",
  21017. height: math.unit(12, "miles")
  21018. },
  21019. ]
  21020. ))
  21021. characterMakers.push(() => makeCharacter(
  21022. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21023. {
  21024. front: {
  21025. height: math.unit(7 + 2 / 12, "feet"),
  21026. weight: math.unit(300, "lb"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/reban/front.svg",
  21030. extra: 516 / 487,
  21031. bottom: 42.82 / 558.356
  21032. }
  21033. },
  21034. dick: {
  21035. height: math.unit(7 / 5, "feet"),
  21036. name: "Dick",
  21037. image: {
  21038. source: "./media/characters/reban/dick.svg"
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Natural Height",
  21045. height: math.unit(7 + 2 / 12, "feet")
  21046. },
  21047. {
  21048. name: "Macro",
  21049. height: math.unit(500, "feet"),
  21050. default: true
  21051. },
  21052. {
  21053. name: "Canon Height",
  21054. height: math.unit(50, "AU")
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(6, "feet"),
  21063. weight: math.unit(150, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/terrance-keayes/front.svg",
  21067. extra: 1.005,
  21068. bottom: 151 / 1615
  21069. }
  21070. },
  21071. side: {
  21072. height: math.unit(6, "feet"),
  21073. weight: math.unit(150, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/terrance-keayes/side.svg",
  21077. extra: 1.005,
  21078. bottom: 129.4 / 1544
  21079. }
  21080. },
  21081. back: {
  21082. height: math.unit(6, "feet"),
  21083. weight: math.unit(150, "lb"),
  21084. name: "Back",
  21085. image: {
  21086. source: "./media/characters/terrance-keayes/back.svg",
  21087. extra: 1.005,
  21088. bottom: 58.4 / 1557.3
  21089. }
  21090. },
  21091. dick: {
  21092. height: math.unit(6 * 0.208, "feet"),
  21093. name: "Dick",
  21094. image: {
  21095. source: "./media/characters/terrance-keayes/dick.svg"
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Canon Height",
  21102. height: math.unit(35, "miles"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(6, "feet"),
  21112. weight: math.unit(150, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/ofelia/front.svg",
  21116. extra: 546 / 541,
  21117. bottom: 39 / 583
  21118. }
  21119. },
  21120. back: {
  21121. height: math.unit(6, "feet"),
  21122. weight: math.unit(150, "lb"),
  21123. name: "Back",
  21124. image: {
  21125. source: "./media/characters/ofelia/back.svg",
  21126. extra: 564 / 559.5,
  21127. bottom: 8.69 / 573.02
  21128. }
  21129. },
  21130. maw: {
  21131. height: math.unit(1, "feet"),
  21132. name: "Maw",
  21133. image: {
  21134. source: "./media/characters/ofelia/maw.svg"
  21135. }
  21136. },
  21137. foot: {
  21138. height: math.unit(1.949, "feet"),
  21139. name: "Foot",
  21140. image: {
  21141. source: "./media/characters/ofelia/foot.svg"
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Canon Height",
  21148. height: math.unit(2000, "miles"),
  21149. default: true
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(6, "feet"),
  21158. weight: math.unit(150, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/samuel/front.svg",
  21162. extra: 265 / 258,
  21163. bottom: 2 / 266.1566
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Macro",
  21170. height: math.unit(100, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Full Size",
  21175. height: math.unit(1000, "miles")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(6, "feet"),
  21184. weight: math.unit(300, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/beishir-kiel/front.svg",
  21188. extra: 569 / 547,
  21189. bottom: 41.9 / 609
  21190. }
  21191. },
  21192. maw: {
  21193. height: math.unit(6 * 0.202, "feet"),
  21194. name: "Maw",
  21195. image: {
  21196. source: "./media/characters/beishir-kiel/maw.svg"
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Macro",
  21203. height: math.unit(300, "feet"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(5 + 8 / 12, "feet"),
  21213. weight: math.unit(120, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/logan-grey/front.svg",
  21217. extra: 2539 / 2393,
  21218. bottom: 97.6 / 2636.37
  21219. }
  21220. },
  21221. frontAlt: {
  21222. height: math.unit(5 + 8 / 12, "feet"),
  21223. weight: math.unit(120, "lb"),
  21224. name: "Front (Alt)",
  21225. image: {
  21226. source: "./media/characters/logan-grey/front-alt.svg",
  21227. extra: 958 / 893,
  21228. bottom: 15 / 970.768
  21229. }
  21230. },
  21231. back: {
  21232. height: math.unit(5 + 8 / 12, "feet"),
  21233. weight: math.unit(120, "lb"),
  21234. name: "Back",
  21235. image: {
  21236. source: "./media/characters/logan-grey/back.svg",
  21237. extra: 958 / 893,
  21238. bottom: 2.1881 / 970.9788
  21239. }
  21240. },
  21241. dick: {
  21242. height: math.unit(1.437, "feet"),
  21243. name: "Dick",
  21244. image: {
  21245. source: "./media/characters/logan-grey/dick.svg"
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(5 + 8 / 12, "feet")
  21253. },
  21254. {
  21255. name: "The 500 Foot Femboy",
  21256. height: math.unit(500, "feet"),
  21257. default: true
  21258. },
  21259. {
  21260. name: "Megmacro",
  21261. height: math.unit(20, "miles")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(8 + 2 / 12, "feet"),
  21270. weight: math.unit(275, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/draganta/front.svg",
  21274. extra: 1177 / 1135,
  21275. bottom: 33.46 / 1212.1
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(8 + 6 / 12, "feet"),
  21283. default: true
  21284. },
  21285. {
  21286. name: "Macro",
  21287. height: math.unit(150, "feet")
  21288. },
  21289. {
  21290. name: "Megamacro",
  21291. height: math.unit(1000, "miles")
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(1.72, "m"),
  21300. weight: math.unit(80, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/voski/front.svg",
  21304. extra: 2076.22 / 2022.4,
  21305. bottom: 102.7 / 2177.3866
  21306. }
  21307. },
  21308. frontNsfw: {
  21309. height: math.unit(1.72, "m"),
  21310. weight: math.unit(80, "lb"),
  21311. name: "Front (NSFW)",
  21312. image: {
  21313. source: "./media/characters/voski/front-nsfw.svg",
  21314. extra: 2076.22 / 2022.4,
  21315. bottom: 102.7 / 2177.3866
  21316. }
  21317. },
  21318. back: {
  21319. height: math.unit(1.72, "m"),
  21320. weight: math.unit(80, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/voski/back.svg",
  21324. extra: 2104 / 2051,
  21325. bottom: 10.45 / 2113.63
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(1.72, "m")
  21333. },
  21334. {
  21335. name: "Macro",
  21336. height: math.unit(55, "m"),
  21337. default: true
  21338. },
  21339. {
  21340. name: "Macro+",
  21341. height: math.unit(300, "m")
  21342. },
  21343. {
  21344. name: "Macro++",
  21345. height: math.unit(700, "m")
  21346. },
  21347. {
  21348. name: "Macro+++",
  21349. height: math.unit(4500, "m")
  21350. },
  21351. {
  21352. name: "Macro++++",
  21353. height: math.unit(45, "km")
  21354. },
  21355. {
  21356. name: "Macro+++++",
  21357. height: math.unit(1220, "km")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(2.3, "m"),
  21366. weight: math.unit(304, "kg"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/icowom-lee/front.svg",
  21370. extra: 985 / 955,
  21371. bottom: 25.4 / 1012
  21372. }
  21373. },
  21374. fronttentacles: {
  21375. height: math.unit(2.3, "m"),
  21376. weight: math.unit(304, "kg"),
  21377. name: "Front-tentacles",
  21378. image: {
  21379. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21380. extra: 985 / 955,
  21381. bottom: 25.4 / 1012
  21382. }
  21383. },
  21384. back: {
  21385. height: math.unit(2.3, "m"),
  21386. weight: math.unit(304, "kg"),
  21387. name: "Back",
  21388. image: {
  21389. source: "./media/characters/icowom-lee/back.svg",
  21390. extra: 975 / 954,
  21391. bottom: 9.5 / 985
  21392. }
  21393. },
  21394. backtentacles: {
  21395. height: math.unit(2.3, "m"),
  21396. weight: math.unit(304, "kg"),
  21397. name: "Back-tentacles",
  21398. image: {
  21399. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21400. extra: 975 / 954,
  21401. bottom: 9.5 / 985
  21402. }
  21403. },
  21404. frontDressed: {
  21405. height: math.unit(2.3, "m"),
  21406. weight: math.unit(304, "kg"),
  21407. name: "Front (Dressed)",
  21408. image: {
  21409. source: "./media/characters/icowom-lee/front-dressed.svg",
  21410. extra: 3076 / 2933,
  21411. bottom: 51.4 / 3125.1889
  21412. }
  21413. },
  21414. rump: {
  21415. height: math.unit(0.776, "meters"),
  21416. name: "Rump",
  21417. image: {
  21418. source: "./media/characters/icowom-lee/rump.svg"
  21419. }
  21420. },
  21421. genitals: {
  21422. height: math.unit(0.78, "meters"),
  21423. name: "Genitals",
  21424. image: {
  21425. source: "./media/characters/icowom-lee/genitals.svg"
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(2.3, "meters"),
  21433. default: true
  21434. },
  21435. {
  21436. name: "Macro",
  21437. height: math.unit(94, "meters"),
  21438. default: true
  21439. },
  21440. ]
  21441. ))
  21442. characterMakers.push(() => makeCharacter(
  21443. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21444. {
  21445. front: {
  21446. height: math.unit(22, "meters"),
  21447. weight: math.unit(21000, "kg"),
  21448. name: "Front",
  21449. image: {
  21450. source: "./media/characters/shock-diamond/front.svg",
  21451. extra: 2204 / 2053,
  21452. bottom: 65 / 2239.47
  21453. }
  21454. },
  21455. frontNude: {
  21456. height: math.unit(22, "meters"),
  21457. weight: math.unit(21000, "kg"),
  21458. name: "Front (Nude)",
  21459. image: {
  21460. source: "./media/characters/shock-diamond/front-nude.svg",
  21461. extra: 2514 / 2285,
  21462. bottom: 13 / 2527.56
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(3, "meters")
  21470. },
  21471. {
  21472. name: "Macro",
  21473. height: math.unit(22, "meters"),
  21474. default: true
  21475. },
  21476. ]
  21477. ))
  21478. characterMakers.push(() => makeCharacter(
  21479. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21480. {
  21481. front: {
  21482. height: math.unit(5 + 4 / 12, "feet"),
  21483. weight: math.unit(120, "lb"),
  21484. name: "Front",
  21485. image: {
  21486. source: "./media/characters/rory/front.svg",
  21487. extra: 589 / 556,
  21488. bottom: 45.7 / 635.76
  21489. }
  21490. },
  21491. frontNude: {
  21492. height: math.unit(5 + 4 / 12, "feet"),
  21493. weight: math.unit(120, "lb"),
  21494. name: "Front (Nude)",
  21495. image: {
  21496. source: "./media/characters/rory/front-nude.svg",
  21497. extra: 589 / 556,
  21498. bottom: 45.7 / 635.76
  21499. }
  21500. },
  21501. side: {
  21502. height: math.unit(5 + 4 / 12, "feet"),
  21503. weight: math.unit(120, "lb"),
  21504. name: "Side",
  21505. image: {
  21506. source: "./media/characters/rory/side.svg",
  21507. extra: 597 / 564,
  21508. bottom: 55 / 653
  21509. }
  21510. },
  21511. back: {
  21512. height: math.unit(5 + 4 / 12, "feet"),
  21513. weight: math.unit(120, "lb"),
  21514. name: "Back",
  21515. image: {
  21516. source: "./media/characters/rory/back.svg",
  21517. extra: 620 / 585,
  21518. bottom: 8.86 / 630.43
  21519. }
  21520. },
  21521. dick: {
  21522. height: math.unit(0.86, "feet"),
  21523. name: "Dick",
  21524. image: {
  21525. source: "./media/characters/rory/dick.svg"
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Normal",
  21532. height: math.unit(5 + 4 / 12, "feet"),
  21533. default: true
  21534. },
  21535. {
  21536. name: "Macro",
  21537. height: math.unit(100, "feet")
  21538. },
  21539. {
  21540. name: "Macro+",
  21541. height: math.unit(140, "feet")
  21542. },
  21543. {
  21544. name: "Macro++",
  21545. height: math.unit(300, "feet")
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 9 / 12, "feet"),
  21554. weight: math.unit(190, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/sprisk/front.svg",
  21558. extra: 1225 / 1180,
  21559. bottom: 42.7 / 1266.4
  21560. }
  21561. },
  21562. frontNsfw: {
  21563. height: math.unit(5 + 9 / 12, "feet"),
  21564. weight: math.unit(190, "lb"),
  21565. name: "Front (NSFW)",
  21566. image: {
  21567. source: "./media/characters/sprisk/front-nsfw.svg",
  21568. extra: 1225 / 1180,
  21569. bottom: 42.7 / 1266.4
  21570. }
  21571. },
  21572. back: {
  21573. height: math.unit(5 + 9 / 12, "feet"),
  21574. weight: math.unit(190, "lb"),
  21575. name: "Back",
  21576. image: {
  21577. source: "./media/characters/sprisk/back.svg",
  21578. extra: 1247 / 1200,
  21579. bottom: 5.6 / 1253.04
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Tiny",
  21586. height: math.unit(2, "inches")
  21587. },
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(5 + 9 / 12, "feet"),
  21591. default: true
  21592. },
  21593. {
  21594. name: "Mini Macro",
  21595. height: math.unit(18, "feet")
  21596. },
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(100, "feet")
  21600. },
  21601. {
  21602. name: "MACRO",
  21603. height: math.unit(50, "miles")
  21604. },
  21605. {
  21606. name: "M A C R O",
  21607. height: math.unit(300, "miles")
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21613. {
  21614. side: {
  21615. height: math.unit(15.6, "meters"),
  21616. weight: math.unit(700000, "kg"),
  21617. name: "Side",
  21618. image: {
  21619. source: "./media/characters/bunsen/side.svg",
  21620. extra: 1644 / 358
  21621. }
  21622. },
  21623. foot: {
  21624. height: math.unit(1.611 * 1644 / 358, "meter"),
  21625. name: "Foot",
  21626. image: {
  21627. source: "./media/characters/bunsen/foot.svg"
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Small",
  21634. height: math.unit(10, "feet")
  21635. },
  21636. {
  21637. name: "Normal",
  21638. height: math.unit(15.6, "meters"),
  21639. default: true
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(4 + 11 / 12, "feet"),
  21648. weight: math.unit(140, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/sesh/front.svg",
  21652. extra: 3420 / 3231,
  21653. bottom: 72 / 3949.5
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(4 + 11 / 12, "feet")
  21661. },
  21662. {
  21663. name: "Grown",
  21664. height: math.unit(15, "feet"),
  21665. default: true
  21666. },
  21667. {
  21668. name: "Macro",
  21669. height: math.unit(1500, "feet")
  21670. },
  21671. {
  21672. name: "Megamacro",
  21673. height: math.unit(30, "miles")
  21674. },
  21675. {
  21676. name: "Continental",
  21677. height: math.unit(3000, "miles")
  21678. },
  21679. {
  21680. name: "Gravity Mass",
  21681. height: math.unit(300000, "miles")
  21682. },
  21683. {
  21684. name: "Planet Buster",
  21685. height: math.unit(30000000, "miles")
  21686. },
  21687. {
  21688. name: "Big",
  21689. height: math.unit(3000000000, "miles")
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(9, "feet"),
  21698. weight: math.unit(350, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/pepper/front.svg",
  21702. extra: 1448 / 1312,
  21703. bottom: 9.4 / 1457.88
  21704. }
  21705. },
  21706. back: {
  21707. height: math.unit(9, "feet"),
  21708. weight: math.unit(350, "lb"),
  21709. name: "Back",
  21710. image: {
  21711. source: "./media/characters/pepper/back.svg",
  21712. extra: 1423 / 1300,
  21713. bottom: 4.6 / 1429
  21714. }
  21715. },
  21716. maw: {
  21717. height: math.unit(0.932, "feet"),
  21718. name: "Maw",
  21719. image: {
  21720. source: "./media/characters/pepper/maw.svg"
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(9, "feet"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(6, "feet"),
  21737. weight: math.unit(150, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/maelstrom/front.svg",
  21741. extra: 2100 / 1883,
  21742. bottom: 94 / 2196.7
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Less Kaiju",
  21749. height: math.unit(200, "feet")
  21750. },
  21751. {
  21752. name: "Kaiju",
  21753. height: math.unit(400, "feet"),
  21754. default: true
  21755. },
  21756. {
  21757. name: "Kaiju-er",
  21758. height: math.unit(600, "feet")
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21764. {
  21765. front: {
  21766. height: math.unit(6 + 5 / 12, "feet"),
  21767. weight: math.unit(180, "lb"),
  21768. name: "Front",
  21769. image: {
  21770. source: "./media/characters/lexir/front.svg",
  21771. extra: 180 / 172,
  21772. bottom: 12 / 192
  21773. }
  21774. },
  21775. back: {
  21776. height: math.unit(6 + 5 / 12, "feet"),
  21777. weight: math.unit(180, "lb"),
  21778. name: "Back",
  21779. image: {
  21780. source: "./media/characters/lexir/back.svg",
  21781. extra: 183.84 / 175.5,
  21782. bottom: 3.1 / 187
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Very Smal",
  21789. height: math.unit(1, "nm")
  21790. },
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(6 + 5 / 12, "feet"),
  21794. default: true
  21795. },
  21796. {
  21797. name: "Macro",
  21798. height: math.unit(1, "mile")
  21799. },
  21800. {
  21801. name: "Megamacro",
  21802. height: math.unit(50, "miles")
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(1.5, "meters"),
  21811. weight: math.unit(100, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/maksio/front.svg",
  21815. extra: 1549 / 1531,
  21816. bottom: 123.7 / 1674.5429
  21817. }
  21818. },
  21819. back: {
  21820. height: math.unit(1.5, "meters"),
  21821. weight: math.unit(100, "lb"),
  21822. name: "Back",
  21823. image: {
  21824. source: "./media/characters/maksio/back.svg",
  21825. extra: 1541 / 1509,
  21826. bottom: 97 / 1639
  21827. }
  21828. },
  21829. hand: {
  21830. height: math.unit(0.621, "feet"),
  21831. name: "Hand",
  21832. image: {
  21833. source: "./media/characters/maksio/hand.svg"
  21834. }
  21835. },
  21836. foot: {
  21837. height: math.unit(1.611, "feet"),
  21838. name: "Foot",
  21839. image: {
  21840. source: "./media/characters/maksio/foot.svg"
  21841. }
  21842. },
  21843. },
  21844. [
  21845. {
  21846. name: "Shrunken",
  21847. height: math.unit(10, "cm")
  21848. },
  21849. {
  21850. name: "Normal",
  21851. height: math.unit(150, "cm"),
  21852. default: true
  21853. },
  21854. ]
  21855. ))
  21856. characterMakers.push(() => makeCharacter(
  21857. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21858. {
  21859. front: {
  21860. height: math.unit(100, "feet"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/erza-bear/front.svg",
  21864. extra: 2449 / 2390,
  21865. bottom: 46 / 2494
  21866. }
  21867. },
  21868. back: {
  21869. height: math.unit(100, "feet"),
  21870. name: "Back",
  21871. image: {
  21872. source: "./media/characters/erza-bear/back.svg",
  21873. extra: 2489 / 2430,
  21874. bottom: 85.4 / 2480
  21875. }
  21876. },
  21877. tail: {
  21878. height: math.unit(42, "feet"),
  21879. name: "Tail",
  21880. image: {
  21881. source: "./media/characters/erza-bear/tail.svg"
  21882. }
  21883. },
  21884. tongue: {
  21885. height: math.unit(8, "feet"),
  21886. name: "Tongue",
  21887. image: {
  21888. source: "./media/characters/erza-bear/tongue.svg"
  21889. }
  21890. },
  21891. dick: {
  21892. height: math.unit(10.5, "feet"),
  21893. name: "Dick",
  21894. image: {
  21895. source: "./media/characters/erza-bear/dick.svg"
  21896. }
  21897. },
  21898. dickVertical: {
  21899. height: math.unit(16.9, "feet"),
  21900. name: "Dick (Vertical)",
  21901. image: {
  21902. source: "./media/characters/erza-bear/dick-vertical.svg"
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Macro",
  21909. height: math.unit(100, "feet"),
  21910. default: true
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(172, "cm"),
  21919. weight: math.unit(73, "kg"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/violet-flor/front.svg",
  21923. extra: 1530 / 1442,
  21924. bottom: 61.9 / 1588.8
  21925. }
  21926. },
  21927. back: {
  21928. height: math.unit(180, "cm"),
  21929. weight: math.unit(73, "kg"),
  21930. name: "Back",
  21931. image: {
  21932. source: "./media/characters/violet-flor/back.svg",
  21933. extra: 1692 / 1630,
  21934. bottom: 20 / 1712
  21935. }
  21936. },
  21937. },
  21938. [
  21939. {
  21940. name: "Normal",
  21941. height: math.unit(172, "cm"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(6, "feet"),
  21951. weight: math.unit(220, "lb"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/lynn-rhea/front.svg",
  21955. extra: 310 / 273
  21956. }
  21957. },
  21958. back: {
  21959. height: math.unit(6, "feet"),
  21960. weight: math.unit(220, "lb"),
  21961. name: "Back",
  21962. image: {
  21963. source: "./media/characters/lynn-rhea/back.svg",
  21964. extra: 310 / 273
  21965. }
  21966. },
  21967. dicks: {
  21968. height: math.unit(0.9, "feet"),
  21969. name: "Dicks",
  21970. image: {
  21971. source: "./media/characters/lynn-rhea/dicks.svg"
  21972. }
  21973. },
  21974. slit: {
  21975. height: math.unit(0.4, "feet"),
  21976. name: "Slit",
  21977. image: {
  21978. source: "./media/characters/lynn-rhea/slit.svg"
  21979. }
  21980. },
  21981. },
  21982. [
  21983. {
  21984. name: "Micro",
  21985. height: math.unit(1, "inch")
  21986. },
  21987. {
  21988. name: "Macro",
  21989. height: math.unit(60, "feet"),
  21990. default: true
  21991. },
  21992. {
  21993. name: "Megamacro",
  21994. height: math.unit(2, "miles")
  21995. },
  21996. {
  21997. name: "Gigamacro",
  21998. height: math.unit(3, "earths")
  21999. },
  22000. {
  22001. name: "Galactic",
  22002. height: math.unit(0.8, "galaxies")
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22008. {
  22009. front: {
  22010. height: math.unit(1600, "feet"),
  22011. weight: math.unit(85758785169, "kg"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/valathos/front.svg",
  22015. extra: 1451 / 1339
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(1600, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(7 + 5 / 12, "feet"),
  22032. weight: math.unit(300, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/azula/front.svg",
  22036. extra: 3208 / 2880,
  22037. bottom: 80.2 / 3277
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(7 + 5 / 12, "feet"),
  22042. weight: math.unit(300, "lb"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/azula/back.svg",
  22046. extra: 3169 / 2822,
  22047. bottom: 150.6 / 3321
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(7 + 5 / 12, "feet"),
  22055. default: true
  22056. },
  22057. {
  22058. name: "Big",
  22059. height: math.unit(20, "feet")
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22065. {
  22066. front: {
  22067. height: math.unit(5 + 1 / 12, "feet"),
  22068. weight: math.unit(110, "lb"),
  22069. name: "Front",
  22070. image: {
  22071. source: "./media/characters/rupert/front.svg",
  22072. extra: 1549 / 1495,
  22073. bottom: 54.2 / 1604.4
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(5 + 1 / 12, "feet"),
  22081. default: true
  22082. },
  22083. ]
  22084. ))
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22087. {
  22088. front: {
  22089. height: math.unit(8 + 4 / 12, "feet"),
  22090. weight: math.unit(350, "lb"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/sheera-castellar/front.svg",
  22094. extra: 1957 / 1894,
  22095. bottom: 26.97 / 1975.017
  22096. }
  22097. },
  22098. side: {
  22099. height: math.unit(8 + 4 / 12, "feet"),
  22100. weight: math.unit(350, "lb"),
  22101. name: "Side",
  22102. image: {
  22103. source: "./media/characters/sheera-castellar/side.svg",
  22104. extra: 1957 / 1894
  22105. }
  22106. },
  22107. back: {
  22108. height: math.unit(8 + 4 / 12, "feet"),
  22109. weight: math.unit(350, "lb"),
  22110. name: "Back",
  22111. image: {
  22112. source: "./media/characters/sheera-castellar/back.svg",
  22113. extra: 1957 / 1894
  22114. }
  22115. },
  22116. angled: {
  22117. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22118. weight: math.unit(350, "lb"),
  22119. name: "Angled",
  22120. image: {
  22121. source: "./media/characters/sheera-castellar/angled.svg",
  22122. extra: 1807 / 1707,
  22123. bottom: 68 / 1875
  22124. }
  22125. },
  22126. genitals: {
  22127. height: math.unit(2.2, "feet"),
  22128. name: "Genitals",
  22129. image: {
  22130. source: "./media/characters/sheera-castellar/genitals.svg"
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(8 + 4 / 12, "feet")
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(150, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Macro+",
  22146. height: math.unit(800, "feet")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(6, "feet"),
  22155. weight: math.unit(150, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/jaipur/front.svg",
  22159. extra: 3860 / 3731,
  22160. bottom: 287 / 4140
  22161. }
  22162. },
  22163. back: {
  22164. height: math.unit(6, "feet"),
  22165. weight: math.unit(150, "lb"),
  22166. name: "Back",
  22167. image: {
  22168. source: "./media/characters/jaipur/back.svg",
  22169. extra: 4060 / 3930,
  22170. bottom: 151 / 4200
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Normal",
  22177. height: math.unit(1.85, "meters"),
  22178. default: true
  22179. },
  22180. {
  22181. name: "Macro",
  22182. height: math.unit(150, "meters")
  22183. },
  22184. {
  22185. name: "Macro+",
  22186. height: math.unit(0.5, "miles")
  22187. },
  22188. {
  22189. name: "Macro++",
  22190. height: math.unit(2.5, "miles")
  22191. },
  22192. {
  22193. name: "Macro+++",
  22194. height: math.unit(12, "miles")
  22195. },
  22196. {
  22197. name: "Macro++++",
  22198. height: math.unit(120, "miles")
  22199. },
  22200. {
  22201. name: "Macro+++++",
  22202. height: math.unit(1200, "miles")
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22208. {
  22209. front: {
  22210. height: math.unit(6, "feet"),
  22211. weight: math.unit(150, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/sheila-wolf/front.svg",
  22215. extra: 1931 / 1808,
  22216. bottom: 29.5 / 1960
  22217. }
  22218. },
  22219. dick: {
  22220. height: math.unit(1.464, "feet"),
  22221. name: "Dick",
  22222. image: {
  22223. source: "./media/characters/sheila-wolf/dick.svg"
  22224. }
  22225. },
  22226. muzzle: {
  22227. height: math.unit(0.513, "feet"),
  22228. name: "Muzzle",
  22229. image: {
  22230. source: "./media/characters/sheila-wolf/muzzle.svg"
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Macro",
  22237. height: math.unit(70, "feet"),
  22238. default: true
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(32, "meters"),
  22247. weight: math.unit(300000, "kg"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/almor/front.svg",
  22251. extra: 1408 / 1322,
  22252. bottom: 94.6 / 1506.5
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Macro",
  22259. height: math.unit(32, "meters"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(7, "feet"),
  22269. weight: math.unit(200, "lb"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/silver/front.svg",
  22273. extra: 472.1 / 450.5,
  22274. bottom: 26.5 / 499.424
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(7, "feet"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(800, "feet")
  22287. },
  22288. {
  22289. name: "Megamacro",
  22290. height: math.unit(250, "miles")
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(6, "feet"),
  22299. weight: math.unit(150, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/pliskin/front.svg",
  22303. extra: 1469 / 1359,
  22304. bottom: 70 / 1540
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Micro",
  22311. height: math.unit(3, "inches")
  22312. },
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(5 + 11 / 12, "feet"),
  22316. default: true
  22317. },
  22318. {
  22319. name: "Macro",
  22320. height: math.unit(120, "feet")
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(6, "feet"),
  22329. weight: math.unit(150, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/sammy/front.svg",
  22333. extra: 1193 / 1089,
  22334. bottom: 30.5 / 1226
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Macro",
  22341. height: math.unit(1700, "feet"),
  22342. default: true
  22343. },
  22344. {
  22345. name: "Examacro",
  22346. height: math.unit(2.5e9, "lightyears")
  22347. },
  22348. ]
  22349. ))
  22350. characterMakers.push(() => makeCharacter(
  22351. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22352. {
  22353. front: {
  22354. height: math.unit(21, "meters"),
  22355. weight: math.unit(12, "tonnes"),
  22356. name: "Front",
  22357. image: {
  22358. source: "./media/characters/kuru/front.svg",
  22359. extra: 4301 / 3785,
  22360. bottom: 371.3 / 4691
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Macro",
  22367. height: math.unit(21, "meters"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(23, "meters"),
  22377. weight: math.unit(12.2, "tonnes"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/rakka/front.svg",
  22381. extra: 4670 / 4169,
  22382. bottom: 301 / 4968.7
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Macro",
  22389. height: math.unit(23, "meters"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(6, "feet"),
  22399. weight: math.unit(150, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/rhys-feline/front.svg",
  22403. extra: 2488 / 2308,
  22404. bottom: 35.67 / 2519.19
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Really Small",
  22411. height: math.unit(1, "nm")
  22412. },
  22413. {
  22414. name: "Micro",
  22415. height: math.unit(4, "inches")
  22416. },
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(4 + 10 / 12, "feet"),
  22420. default: true
  22421. },
  22422. {
  22423. name: "Macro",
  22424. height: math.unit(100, "feet")
  22425. },
  22426. {
  22427. name: "Megamacto",
  22428. height: math.unit(50, "miles")
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22434. {
  22435. side: {
  22436. height: math.unit(30, "feet"),
  22437. weight: math.unit(35000, "kg"),
  22438. name: "Side",
  22439. image: {
  22440. source: "./media/characters/alydar/side.svg",
  22441. extra: 234 / 222,
  22442. bottom: 6.5 / 241
  22443. }
  22444. },
  22445. front: {
  22446. height: math.unit(30, "feet"),
  22447. weight: math.unit(35000, "kg"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/alydar/front.svg",
  22451. extra: 223.37 / 210.2,
  22452. bottom: 22.3 / 246.76
  22453. }
  22454. },
  22455. top: {
  22456. height: math.unit(64.54, "feet"),
  22457. weight: math.unit(35000, "kg"),
  22458. name: "Top",
  22459. image: {
  22460. source: "./media/characters/alydar/top.svg"
  22461. }
  22462. },
  22463. anthro: {
  22464. height: math.unit(30, "feet"),
  22465. weight: math.unit(9000, "kg"),
  22466. name: "Anthro",
  22467. image: {
  22468. source: "./media/characters/alydar/anthro.svg",
  22469. extra: 432 / 421,
  22470. bottom: 7.18 / 440
  22471. }
  22472. },
  22473. maw: {
  22474. height: math.unit(11.693, "feet"),
  22475. name: "Maw",
  22476. image: {
  22477. source: "./media/characters/alydar/maw.svg"
  22478. }
  22479. },
  22480. head: {
  22481. height: math.unit(11.693, "feet"),
  22482. name: "Head",
  22483. image: {
  22484. source: "./media/characters/alydar/head.svg"
  22485. }
  22486. },
  22487. headAlt: {
  22488. height: math.unit(12.861, "feet"),
  22489. name: "Head (Alt)",
  22490. image: {
  22491. source: "./media/characters/alydar/head-alt.svg"
  22492. }
  22493. },
  22494. wing: {
  22495. height: math.unit(20.712, "feet"),
  22496. name: "Wing",
  22497. image: {
  22498. source: "./media/characters/alydar/wing.svg"
  22499. }
  22500. },
  22501. wingFeather: {
  22502. height: math.unit(9.662, "feet"),
  22503. name: "Wing Feather",
  22504. image: {
  22505. source: "./media/characters/alydar/wing-feather.svg"
  22506. }
  22507. },
  22508. countourFeather: {
  22509. height: math.unit(4.154, "feet"),
  22510. name: "Contour Feather",
  22511. image: {
  22512. source: "./media/characters/alydar/contour-feather.svg"
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Diplomatic",
  22519. height: math.unit(13, "feet"),
  22520. default: true
  22521. },
  22522. {
  22523. name: "Small",
  22524. height: math.unit(30, "feet")
  22525. },
  22526. {
  22527. name: "Normal",
  22528. height: math.unit(95, "feet"),
  22529. default: true
  22530. },
  22531. {
  22532. name: "Large",
  22533. height: math.unit(285, "feet")
  22534. },
  22535. {
  22536. name: "Incomprehensible",
  22537. height: math.unit(450, "megameters")
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22543. {
  22544. side: {
  22545. height: math.unit(11, "feet"),
  22546. weight: math.unit(1750, "kg"),
  22547. name: "Side",
  22548. image: {
  22549. source: "./media/characters/selicia/side.svg",
  22550. extra: 440 / 396,
  22551. bottom: 24.8 / 465.979
  22552. }
  22553. },
  22554. maw: {
  22555. height: math.unit(4.665, "feet"),
  22556. name: "Maw",
  22557. image: {
  22558. source: "./media/characters/selicia/maw.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(11, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22572. {
  22573. side: {
  22574. height: math.unit(2 + 6 / 12, "feet"),
  22575. weight: math.unit(30, "lb"),
  22576. name: "Side",
  22577. image: {
  22578. source: "./media/characters/layla/side.svg",
  22579. extra: 244 / 188,
  22580. bottom: 18.2 / 262.1
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(2 + 6 / 12, "feet"),
  22585. weight: math.unit(30, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/layla/back.svg",
  22589. extra: 308 / 241.5,
  22590. bottom: 8.9 / 316.8
  22591. }
  22592. },
  22593. cumming: {
  22594. height: math.unit(2 + 6 / 12, "feet"),
  22595. weight: math.unit(30, "lb"),
  22596. name: "Cumming",
  22597. image: {
  22598. source: "./media/characters/layla/cumming.svg",
  22599. extra: 342 / 279,
  22600. bottom: 595 / 938
  22601. }
  22602. },
  22603. dickFlaccid: {
  22604. height: math.unit(2.595, "feet"),
  22605. name: "Flaccid Genitals",
  22606. image: {
  22607. source: "./media/characters/layla/dick-flaccid.svg"
  22608. }
  22609. },
  22610. dickErect: {
  22611. height: math.unit(2.359, "feet"),
  22612. name: "Erect Genitals",
  22613. image: {
  22614. source: "./media/characters/layla/dick-erect.svg"
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Micro",
  22621. height: math.unit(1, "inch")
  22622. },
  22623. {
  22624. name: "Small",
  22625. height: math.unit(1, "foot")
  22626. },
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(2 + 6 / 12, "feet"),
  22630. default: true
  22631. },
  22632. {
  22633. name: "Macro",
  22634. height: math.unit(200, "feet")
  22635. },
  22636. {
  22637. name: "Megamacro",
  22638. height: math.unit(1000, "miles")
  22639. },
  22640. {
  22641. name: "Planetary",
  22642. height: math.unit(8000, "miles")
  22643. },
  22644. {
  22645. name: "True Layla",
  22646. height: math.unit(200000 * 7, "multiverses")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22652. {
  22653. back: {
  22654. height: math.unit(10.5, "feet"),
  22655. weight: math.unit(800, "lb"),
  22656. name: "Back",
  22657. image: {
  22658. source: "./media/characters/knox/back.svg",
  22659. extra: 1486 / 1089,
  22660. bottom: 107 / 1601.4
  22661. }
  22662. },
  22663. side: {
  22664. height: math.unit(10.5, "feet"),
  22665. weight: math.unit(800, "lb"),
  22666. name: "Side",
  22667. image: {
  22668. source: "./media/characters/knox/side.svg",
  22669. extra: 244 / 218,
  22670. bottom: 14 / 260
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Compact",
  22677. height: math.unit(10.5, "feet"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Dynamax",
  22682. height: math.unit(210, "feet")
  22683. },
  22684. {
  22685. name: "Full Macro",
  22686. height: math.unit(850, "feet")
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(6, "feet"),
  22695. weight: math.unit(152, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/shin-pikachu/front.svg",
  22699. extra: 1574 / 1480,
  22700. bottom: 53.3 / 1626
  22701. }
  22702. },
  22703. hand: {
  22704. height: math.unit(1.055, "feet"),
  22705. name: "Hand",
  22706. image: {
  22707. source: "./media/characters/shin-pikachu/hand.svg"
  22708. }
  22709. },
  22710. foot: {
  22711. height: math.unit(1.1, "feet"),
  22712. name: "Foot",
  22713. image: {
  22714. source: "./media/characters/shin-pikachu/foot.svg"
  22715. }
  22716. },
  22717. collar: {
  22718. height: math.unit(0.386, "feet"),
  22719. name: "Collar",
  22720. image: {
  22721. source: "./media/characters/shin-pikachu/collar.svg"
  22722. }
  22723. },
  22724. },
  22725. [
  22726. {
  22727. name: "Smallest",
  22728. height: math.unit(0.5, "inches")
  22729. },
  22730. {
  22731. name: "Micro",
  22732. height: math.unit(6, "inches")
  22733. },
  22734. {
  22735. name: "Normal",
  22736. height: math.unit(6, "feet"),
  22737. default: true
  22738. },
  22739. {
  22740. name: "Macro",
  22741. height: math.unit(150, "feet")
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22747. {
  22748. front: {
  22749. height: math.unit(28, "feet"),
  22750. weight: math.unit(10500, "lb"),
  22751. name: "Front",
  22752. image: {
  22753. source: "./media/characters/kayda/front.svg",
  22754. extra: 1536 / 1428,
  22755. bottom: 68.7 / 1603
  22756. }
  22757. },
  22758. back: {
  22759. height: math.unit(28, "feet"),
  22760. weight: math.unit(10500, "lb"),
  22761. name: "Back",
  22762. image: {
  22763. source: "./media/characters/kayda/back.svg",
  22764. extra: 1557 / 1464,
  22765. bottom: 39.5 / 1597.49
  22766. }
  22767. },
  22768. dick: {
  22769. height: math.unit(3.858, "feet"),
  22770. name: "Dick",
  22771. image: {
  22772. source: "./media/characters/kayda/dick.svg"
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Macro",
  22779. height: math.unit(28, "feet"),
  22780. default: true
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(10 + 11 / 12, "feet"),
  22789. weight: math.unit(1400, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/brian/front.svg",
  22793. extra: 737 / 692,
  22794. bottom: 55.4 / 785
  22795. }
  22796. },
  22797. },
  22798. [
  22799. {
  22800. name: "Normal",
  22801. height: math.unit(10 + 11 / 12, "feet"),
  22802. default: true
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(5 + 8 / 12, "feet"),
  22811. weight: math.unit(140, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/khemri/front.svg",
  22815. extra: 4780 / 4059,
  22816. bottom: 80.1 / 4859.25
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Micro",
  22823. height: math.unit(6, "inches")
  22824. },
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(5 + 8 / 12, "feet"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22834. {
  22835. front: {
  22836. height: math.unit(13, "feet"),
  22837. weight: math.unit(1700, "lb"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/felix-braveheart/front.svg",
  22841. extra: 1222 / 1157,
  22842. bottom: 53.2 / 1280
  22843. }
  22844. },
  22845. back: {
  22846. height: math.unit(13, "feet"),
  22847. weight: math.unit(1700, "lb"),
  22848. name: "Back",
  22849. image: {
  22850. source: "./media/characters/felix-braveheart/back.svg",
  22851. extra: 1277 / 1203,
  22852. bottom: 50.2 / 1327
  22853. }
  22854. },
  22855. feral: {
  22856. height: math.unit(6, "feet"),
  22857. weight: math.unit(400, "lb"),
  22858. name: "Feral",
  22859. image: {
  22860. source: "./media/characters/felix-braveheart/feral.svg",
  22861. extra: 682 / 625,
  22862. bottom: 6.9 / 688
  22863. }
  22864. },
  22865. },
  22866. [
  22867. {
  22868. name: "Normal",
  22869. height: math.unit(13, "feet"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22876. {
  22877. side: {
  22878. height: math.unit(5 + 11 / 12, "feet"),
  22879. weight: math.unit(1400, "lb"),
  22880. name: "Side",
  22881. image: {
  22882. source: "./media/characters/shadow-blade/side.svg",
  22883. extra: 1726 / 1267,
  22884. bottom: 58.4 / 1785
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(5 + 11 / 12, "feet"),
  22892. default: true
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22898. {
  22899. front: {
  22900. height: math.unit(1 + 6 / 12, "feet"),
  22901. weight: math.unit(25, "lb"),
  22902. name: "Front",
  22903. image: {
  22904. source: "./media/characters/karla-halldor/front.svg",
  22905. extra: 1459 / 1383,
  22906. bottom: 12 / 1472
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(1 + 6 / 12, "feet"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(6 + 2 / 12, "feet"),
  22923. weight: math.unit(160, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/ariam/front.svg",
  22927. extra: 714 / 617,
  22928. bottom: 23.4 / 737,
  22929. }
  22930. },
  22931. squatting: {
  22932. height: math.unit(4.1, "feet"),
  22933. weight: math.unit(160, "lb"),
  22934. name: "Squatting",
  22935. image: {
  22936. source: "./media/characters/ariam/squatting.svg",
  22937. extra: 2617 / 2112,
  22938. bottom: 61.2 / 2681,
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(6 + 2 / 12, "feet"),
  22946. default: true
  22947. },
  22948. {
  22949. name: "Normal+",
  22950. height: math.unit(4, "meters")
  22951. },
  22952. {
  22953. name: "Macro",
  22954. height: math.unit(50, "meters")
  22955. },
  22956. {
  22957. name: "Macro+",
  22958. height: math.unit(100, "meters")
  22959. },
  22960. {
  22961. name: "Megamacro",
  22962. height: math.unit(20, "km")
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(1.67, "meters"),
  22971. weight: math.unit(140, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22975. extra: 438 / 410,
  22976. bottom: 0.75 / 439
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Shrunken",
  22983. height: math.unit(7.6, "cm")
  22984. },
  22985. {
  22986. name: "Human Scale",
  22987. height: math.unit(1.67, "meters")
  22988. },
  22989. {
  22990. name: "Wolxi Scale",
  22991. height: math.unit(36.7, "meters"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22998. {
  22999. front: {
  23000. height: math.unit(1.73, "meters"),
  23001. weight: math.unit(240, "lb"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/izue-two-mothers/front.svg",
  23005. extra: 469 / 437,
  23006. bottom: 1.24 / 470.6
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Shrunken",
  23013. height: math.unit(7.86, "cm")
  23014. },
  23015. {
  23016. name: "Human Scale",
  23017. height: math.unit(1.73, "meters")
  23018. },
  23019. {
  23020. name: "Wolxi Scale",
  23021. height: math.unit(38, "meters"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(1.55, "meters"),
  23031. weight: math.unit(120, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/teeku-love-shack/front.svg",
  23035. extra: 387 / 362,
  23036. bottom: 1.51 / 388
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Shrunken",
  23043. height: math.unit(7, "cm")
  23044. },
  23045. {
  23046. name: "Human Scale",
  23047. height: math.unit(1.55, "meters")
  23048. },
  23049. {
  23050. name: "Wolxi Scale",
  23051. height: math.unit(34.1, "meters"),
  23052. default: true
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23058. {
  23059. front: {
  23060. height: math.unit(1.83, "meters"),
  23061. weight: math.unit(135, "lb"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/dejma-the-red/front.svg",
  23065. extra: 480 / 458,
  23066. bottom: 1.8 / 482
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Shrunken",
  23073. height: math.unit(8.3, "cm")
  23074. },
  23075. {
  23076. name: "Human Scale",
  23077. height: math.unit(1.83, "meters")
  23078. },
  23079. {
  23080. name: "Wolxi Scale",
  23081. height: math.unit(40, "meters"),
  23082. default: true
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23088. {
  23089. front: {
  23090. height: math.unit(1.78, "meters"),
  23091. weight: math.unit(65, "kg"),
  23092. name: "Front",
  23093. image: {
  23094. source: "./media/characters/aki/front.svg",
  23095. extra: 452 / 415
  23096. }
  23097. },
  23098. frontNsfw: {
  23099. height: math.unit(1.78, "meters"),
  23100. weight: math.unit(65, "kg"),
  23101. name: "Front (NSFW)",
  23102. image: {
  23103. source: "./media/characters/aki/front-nsfw.svg",
  23104. extra: 452 / 415
  23105. }
  23106. },
  23107. back: {
  23108. height: math.unit(1.78, "meters"),
  23109. weight: math.unit(65, "kg"),
  23110. name: "Back",
  23111. image: {
  23112. source: "./media/characters/aki/back.svg",
  23113. extra: 452 / 415
  23114. }
  23115. },
  23116. rump: {
  23117. height: math.unit(2.05, "feet"),
  23118. name: "Rump",
  23119. image: {
  23120. source: "./media/characters/aki/rump.svg"
  23121. }
  23122. },
  23123. dick: {
  23124. height: math.unit(0.95, "feet"),
  23125. name: "Dick",
  23126. image: {
  23127. source: "./media/characters/aki/dick.svg"
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Micro",
  23134. height: math.unit(15, "cm")
  23135. },
  23136. {
  23137. name: "Normal",
  23138. height: math.unit(178, "cm"),
  23139. default: true
  23140. },
  23141. {
  23142. name: "Macro",
  23143. height: math.unit(214, "m")
  23144. },
  23145. {
  23146. name: "Macro+",
  23147. height: math.unit(534, "m")
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(5 + 5 / 12, "feet"),
  23156. weight: math.unit(120, "lb"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/ari/front.svg",
  23160. extra: 714.5 / 682,
  23161. bottom: 8 / 722.5
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(5 + 5 / 12, "feet")
  23169. },
  23170. {
  23171. name: "Macro",
  23172. height: math.unit(100, "feet"),
  23173. default: true
  23174. },
  23175. {
  23176. name: "Megamacro",
  23177. height: math.unit(100, "miles")
  23178. },
  23179. {
  23180. name: "Gigamacro",
  23181. height: math.unit(80000, "miles")
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23187. {
  23188. side: {
  23189. height: math.unit(9, "feet"),
  23190. weight: math.unit(400, "kg"),
  23191. name: "Side",
  23192. image: {
  23193. source: "./media/characters/bolt/side.svg",
  23194. extra: 1126 / 896,
  23195. bottom: 60 / 1187.3,
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Micro",
  23202. height: math.unit(5, "inches")
  23203. },
  23204. {
  23205. name: "Normal",
  23206. height: math.unit(9, "feet"),
  23207. default: true
  23208. },
  23209. {
  23210. name: "Macro",
  23211. height: math.unit(700, "feet")
  23212. },
  23213. {
  23214. name: "Max Size",
  23215. height: math.unit(1.52e22, "yottameters")
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23221. {
  23222. front: {
  23223. height: math.unit(4.53, "meters"),
  23224. weight: math.unit(3, "tons"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/draekon-sylviar/front.svg",
  23228. extra: 1228 / 1068,
  23229. bottom: 41 / 1270
  23230. }
  23231. },
  23232. tail: {
  23233. height: math.unit(1.772, "meter"),
  23234. name: "Tail",
  23235. image: {
  23236. source: "./media/characters/draekon-sylviar/tail.svg"
  23237. }
  23238. },
  23239. head: {
  23240. height: math.unit(1.331, "meter"),
  23241. name: "Head",
  23242. image: {
  23243. source: "./media/characters/draekon-sylviar/head.svg"
  23244. }
  23245. },
  23246. hand: {
  23247. height: math.unit(0.564, "meter"),
  23248. name: "Hand",
  23249. image: {
  23250. source: "./media/characters/draekon-sylviar/hand.svg"
  23251. }
  23252. },
  23253. foot: {
  23254. height: math.unit(0.621, "meter"),
  23255. name: "Foot",
  23256. image: {
  23257. source: "./media/characters/draekon-sylviar/foot.svg",
  23258. bottom: 32 / 324
  23259. }
  23260. },
  23261. dick: {
  23262. height: math.unit(61, "cm"),
  23263. name: "Dick",
  23264. image: {
  23265. source: "./media/characters/draekon-sylviar/dick.svg"
  23266. }
  23267. },
  23268. dickseparated: {
  23269. height: math.unit(61, "cm"),
  23270. name: "Dick-separated",
  23271. image: {
  23272. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Small",
  23279. height: math.unit(4.53 / 2, "meters"),
  23280. default: true
  23281. },
  23282. {
  23283. name: "Normal",
  23284. height: math.unit(4.53, "meters"),
  23285. default: true
  23286. },
  23287. {
  23288. name: "Large",
  23289. height: math.unit(4.53 * 2, "meters"),
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(6 + 2 / 12, "feet"),
  23298. weight: math.unit(180, "lb"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/brawler/front.svg",
  23302. extra: 3301 / 3027,
  23303. bottom: 138 / 3439
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(6 + 2 / 12, "feet"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(11, "feet"),
  23320. weight: math.unit(1000, "lb"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/alex/front.svg",
  23324. bottom: 44.5 / 620
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Micro",
  23331. height: math.unit(5, "inches")
  23332. },
  23333. {
  23334. name: "Normal",
  23335. height: math.unit(11, "feet"),
  23336. default: true
  23337. },
  23338. {
  23339. name: "Macro",
  23340. height: math.unit(9.5e9, "feet")
  23341. },
  23342. {
  23343. name: "Max Size",
  23344. height: math.unit(1.4e283, "yottameters")
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23350. {
  23351. female: {
  23352. height: math.unit(29.9, "m"),
  23353. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23354. name: "Female",
  23355. image: {
  23356. source: "./media/characters/zenari/female.svg",
  23357. extra: 3281.6 / 3217,
  23358. bottom: 72.2 / 3353
  23359. }
  23360. },
  23361. male: {
  23362. height: math.unit(27.7, "m"),
  23363. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23364. name: "Male",
  23365. image: {
  23366. source: "./media/characters/zenari/male.svg",
  23367. extra: 3008 / 2991,
  23368. bottom: 54.6 / 3069
  23369. }
  23370. },
  23371. },
  23372. [
  23373. {
  23374. name: "Macro",
  23375. height: math.unit(29.7, "meters"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23382. {
  23383. female: {
  23384. height: math.unit(23.8, "m"),
  23385. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23386. name: "Female",
  23387. image: {
  23388. source: "./media/characters/mactarian/female.svg",
  23389. extra: 2662 / 2569,
  23390. bottom: 73 / 2736
  23391. }
  23392. },
  23393. male: {
  23394. height: math.unit(23.8, "m"),
  23395. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23396. name: "Male",
  23397. image: {
  23398. source: "./media/characters/mactarian/male.svg",
  23399. extra: 2673 / 2600,
  23400. bottom: 76 / 2750
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Macro",
  23407. height: math.unit(23.8, "meters"),
  23408. default: true
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23414. {
  23415. female: {
  23416. height: math.unit(19.3, "m"),
  23417. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23418. name: "Female",
  23419. image: {
  23420. source: "./media/characters/umok/female.svg",
  23421. extra: 2186 / 2078,
  23422. bottom: 87 / 2277
  23423. }
  23424. },
  23425. male: {
  23426. height: math.unit(19.5, "m"),
  23427. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23428. name: "Male",
  23429. image: {
  23430. source: "./media/characters/umok/male.svg",
  23431. extra: 2233 / 2140,
  23432. bottom: 24.4 / 2258
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Macro",
  23439. height: math.unit(19.3, "meters"),
  23440. default: true
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23446. {
  23447. female: {
  23448. height: math.unit(26.15, "m"),
  23449. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23450. name: "Female",
  23451. image: {
  23452. source: "./media/characters/joraxian/female.svg",
  23453. extra: 2912 / 2824,
  23454. bottom: 36 / 2956
  23455. }
  23456. },
  23457. male: {
  23458. height: math.unit(25.4, "m"),
  23459. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23460. name: "Male",
  23461. image: {
  23462. source: "./media/characters/joraxian/male.svg",
  23463. extra: 2877 / 2721,
  23464. bottom: 82 / 2967
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Macro",
  23471. height: math.unit(26.15, "meters"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23478. {
  23479. female: {
  23480. height: math.unit(21.6, "m"),
  23481. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23482. name: "Female",
  23483. image: {
  23484. source: "./media/characters/sthara/female.svg",
  23485. extra: 2516 / 2347,
  23486. bottom: 21.5 / 2537
  23487. }
  23488. },
  23489. male: {
  23490. height: math.unit(24, "m"),
  23491. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23492. name: "Male",
  23493. image: {
  23494. source: "./media/characters/sthara/male.svg",
  23495. extra: 2732 / 2607,
  23496. bottom: 23 / 2732
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(21.6, "meters"),
  23504. default: true
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23510. {
  23511. front: {
  23512. height: math.unit(6 + 4 / 12, "feet"),
  23513. weight: math.unit(175, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/luka-bryzant/front.svg",
  23517. extra: 311 / 289,
  23518. bottom: 4 / 315
  23519. }
  23520. },
  23521. back: {
  23522. height: math.unit(6 + 4 / 12, "feet"),
  23523. weight: math.unit(175, "lb"),
  23524. name: "Back",
  23525. image: {
  23526. source: "./media/characters/luka-bryzant/back.svg",
  23527. extra: 311 / 289,
  23528. bottom: 3.8 / 313.7
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Micro",
  23535. height: math.unit(10, "inches")
  23536. },
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(6 + 4 / 12, "feet"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Large",
  23544. height: math.unit(12, "feet")
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23550. {
  23551. front: {
  23552. height: math.unit(5 + 7 / 12, "feet"),
  23553. weight: math.unit(185, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/aman-aquila/front.svg",
  23557. extra: 1013 / 976,
  23558. bottom: 45.6 / 1057
  23559. }
  23560. },
  23561. side: {
  23562. height: math.unit(5 + 7 / 12, "feet"),
  23563. weight: math.unit(185, "lb"),
  23564. name: "Side",
  23565. image: {
  23566. source: "./media/characters/aman-aquila/side.svg",
  23567. extra: 1054 / 1011,
  23568. bottom: 15 / 1070
  23569. }
  23570. },
  23571. back: {
  23572. height: math.unit(5 + 7 / 12, "feet"),
  23573. weight: math.unit(185, "lb"),
  23574. name: "Back",
  23575. image: {
  23576. source: "./media/characters/aman-aquila/back.svg",
  23577. extra: 1026 / 970,
  23578. bottom: 12 / 1039
  23579. }
  23580. },
  23581. head: {
  23582. height: math.unit(1.211, "feet"),
  23583. name: "Head",
  23584. image: {
  23585. source: "./media/characters/aman-aquila/head.svg",
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Minimicro",
  23592. height: math.unit(0.057, "inches")
  23593. },
  23594. {
  23595. name: "Micro",
  23596. height: math.unit(7, "inches")
  23597. },
  23598. {
  23599. name: "Mini",
  23600. height: math.unit(3 + 7 / 12, "feet")
  23601. },
  23602. {
  23603. name: "Normal",
  23604. height: math.unit(5 + 7 / 12, "feet"),
  23605. default: true
  23606. },
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(157 + 7 / 12, "feet")
  23610. },
  23611. {
  23612. name: "Megamacro",
  23613. height: math.unit(1557 + 7 / 12, "feet")
  23614. },
  23615. {
  23616. name: "Gigamacro",
  23617. height: math.unit(15557 + 7 / 12, "feet")
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23623. {
  23624. front: {
  23625. height: math.unit(3 + 2 / 12, "inches"),
  23626. weight: math.unit(0.3, "ounces"),
  23627. name: "Front",
  23628. image: {
  23629. source: "./media/characters/hiphae/front.svg",
  23630. extra: 1931 / 1683,
  23631. bottom: 24 / 1955
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(3 + 1 / 2, "inches"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(5 + 10 / 12, "feet"),
  23648. weight: math.unit(165, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/nicky/front.svg",
  23652. extra: 3144 / 2886,
  23653. bottom: 45.6 / 3192
  23654. }
  23655. },
  23656. back: {
  23657. height: math.unit(5 + 10 / 12, "feet"),
  23658. weight: math.unit(165, "lb"),
  23659. name: "Back",
  23660. image: {
  23661. source: "./media/characters/nicky/back.svg",
  23662. extra: 3055 / 2804,
  23663. bottom: 28.4 / 3087
  23664. }
  23665. },
  23666. frontclothed: {
  23667. height: math.unit(5 + 10 / 12, "feet"),
  23668. weight: math.unit(165, "lb"),
  23669. name: "Front-clothed",
  23670. image: {
  23671. source: "./media/characters/nicky/front-clothed.svg",
  23672. extra: 3184.9 / 2926.9,
  23673. bottom: 86.5 / 3239.9
  23674. }
  23675. },
  23676. foot: {
  23677. height: math.unit(1.16, "feet"),
  23678. name: "Foot",
  23679. image: {
  23680. source: "./media/characters/nicky/foot.svg"
  23681. }
  23682. },
  23683. feet: {
  23684. height: math.unit(1.34, "feet"),
  23685. name: "Feet",
  23686. image: {
  23687. source: "./media/characters/nicky/feet.svg"
  23688. }
  23689. },
  23690. maw: {
  23691. height: math.unit(0.9, "feet"),
  23692. name: "Maw",
  23693. image: {
  23694. source: "./media/characters/nicky/maw.svg"
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(5 + 10 / 12, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Macro",
  23706. height: math.unit(60, "feet")
  23707. },
  23708. {
  23709. name: "Megamacro",
  23710. height: math.unit(1, "mile")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23716. {
  23717. side: {
  23718. height: math.unit(10, "feet"),
  23719. weight: math.unit(600, "lb"),
  23720. name: "Side",
  23721. image: {
  23722. source: "./media/characters/blair/side.svg",
  23723. bottom: 16.6 / 475,
  23724. extra: 458 / 431
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Micro",
  23731. height: math.unit(8, "inches")
  23732. },
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(10, "feet"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(180, "feet")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(5 + 4 / 12, "feet"),
  23749. weight: math.unit(125, "lb"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/fisher/front.svg",
  23753. extra: 444 / 390,
  23754. bottom: 2 / 444.8
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Micro",
  23761. height: math.unit(4, "inches")
  23762. },
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 4 / 12, "feet"),
  23766. default: true
  23767. },
  23768. {
  23769. name: "Macro",
  23770. height: math.unit(100, "feet")
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23776. {
  23777. front: {
  23778. height: math.unit(6.71, "feet"),
  23779. weight: math.unit(200, "lb"),
  23780. capacity: math.unit(1000000, "people"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/gliss/front.svg",
  23784. extra: 2347 / 2231,
  23785. bottom: 113 / 2462
  23786. }
  23787. },
  23788. hammerspaceSize: {
  23789. height: math.unit(6.71 * 717, "feet"),
  23790. weight: math.unit(200, "lb"),
  23791. capacity: math.unit(1000000, "people"),
  23792. name: "Hammerspace Size",
  23793. image: {
  23794. source: "./media/characters/gliss/front.svg",
  23795. extra: 2347 / 2231,
  23796. bottom: 113 / 2462
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(6.71, "feet"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23810. {
  23811. side: {
  23812. height: math.unit(1.44, "m"),
  23813. weight: math.unit(80, "kg"),
  23814. name: "Side",
  23815. image: {
  23816. source: "./media/characters/dune-anderson/side.svg",
  23817. bottom: 49 / 1426
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Wolf-sized",
  23824. height: math.unit(1.44, "meters")
  23825. },
  23826. {
  23827. name: "Normal",
  23828. height: math.unit(5.05, "meters"),
  23829. default: true
  23830. },
  23831. {
  23832. name: "Big",
  23833. height: math.unit(14.4, "meters")
  23834. },
  23835. {
  23836. name: "Huge",
  23837. height: math.unit(144, "meters")
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23843. {
  23844. front: {
  23845. height: math.unit(7, "feet"),
  23846. weight: math.unit(425, "lb"),
  23847. name: "Front",
  23848. image: {
  23849. source: "./media/characters/hind/front.svg",
  23850. extra: 2091 / 1860,
  23851. bottom: 129 / 2220
  23852. }
  23853. },
  23854. back: {
  23855. height: math.unit(7, "feet"),
  23856. weight: math.unit(425, "lb"),
  23857. name: "Back",
  23858. image: {
  23859. source: "./media/characters/hind/back.svg",
  23860. extra: 2091 / 1860,
  23861. bottom: 24.6 / 2309
  23862. }
  23863. },
  23864. tail: {
  23865. height: math.unit(2.8, "feet"),
  23866. name: "Tail",
  23867. image: {
  23868. source: "./media/characters/hind/tail.svg"
  23869. }
  23870. },
  23871. head: {
  23872. height: math.unit(2.55, "feet"),
  23873. name: "Head",
  23874. image: {
  23875. source: "./media/characters/hind/head.svg"
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "XS",
  23882. height: math.unit(0.7, "feet")
  23883. },
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(7, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "XL",
  23891. height: math.unit(70, "feet")
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(6, "feet"),
  23900. weight: math.unit(150, "lb"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/dylan-skaven/front.svg",
  23904. extra: 2318 / 2063,
  23905. bottom: 93.4 / 2410
  23906. }
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Nano",
  23912. height: math.unit(1, "mm")
  23913. },
  23914. {
  23915. name: "Micro",
  23916. height: math.unit(1, "cm")
  23917. },
  23918. {
  23919. name: "Normal",
  23920. height: math.unit(2.1, "meters"),
  23921. default: true
  23922. },
  23923. ]
  23924. ))
  23925. characterMakers.push(() => makeCharacter(
  23926. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23927. {
  23928. front: {
  23929. height: math.unit(7 + 5 / 12, "feet"),
  23930. weight: math.unit(357, "lb"),
  23931. name: "Front",
  23932. image: {
  23933. source: "./media/characters/solex-draconov/front.svg",
  23934. extra: 1993 / 1865,
  23935. bottom: 117 / 2111
  23936. }
  23937. },
  23938. },
  23939. [
  23940. {
  23941. name: "Natural Height",
  23942. height: math.unit(7 + 5 / 12, "feet"),
  23943. default: true
  23944. },
  23945. {
  23946. name: "Macro",
  23947. height: math.unit(350, "feet")
  23948. },
  23949. {
  23950. name: "Macro+",
  23951. height: math.unit(1000, "feet")
  23952. },
  23953. {
  23954. name: "Megamacro",
  23955. height: math.unit(20, "km")
  23956. },
  23957. {
  23958. name: "Megamacro+",
  23959. height: math.unit(1000, "km")
  23960. },
  23961. {
  23962. name: "Gigamacro",
  23963. height: math.unit(2.5, "Gm")
  23964. },
  23965. {
  23966. name: "Teramacro",
  23967. height: math.unit(15, "Tm")
  23968. },
  23969. {
  23970. name: "Galactic",
  23971. height: math.unit(30, "Zm")
  23972. },
  23973. {
  23974. name: "Universal",
  23975. height: math.unit(21000, "Ym")
  23976. },
  23977. {
  23978. name: "Omniversal",
  23979. height: math.unit(9.861e50, "Ym")
  23980. },
  23981. {
  23982. name: "Existential",
  23983. height: math.unit(1e300, "meters")
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23989. {
  23990. side: {
  23991. height: math.unit(25, "feet"),
  23992. weight: math.unit(90000, "lb"),
  23993. name: "Side",
  23994. image: {
  23995. source: "./media/characters/mandarax/side.svg",
  23996. extra: 614 / 332,
  23997. bottom: 55 / 630
  23998. }
  23999. },
  24000. head: {
  24001. height: math.unit(11.4, "feet"),
  24002. name: "Head",
  24003. image: {
  24004. source: "./media/characters/mandarax/head.svg"
  24005. }
  24006. },
  24007. belly: {
  24008. height: math.unit(33, "feet"),
  24009. name: "Belly",
  24010. capacity: math.unit(500, "people"),
  24011. image: {
  24012. source: "./media/characters/mandarax/belly.svg"
  24013. }
  24014. },
  24015. dick: {
  24016. height: math.unit(8.46, "feet"),
  24017. name: "Dick",
  24018. image: {
  24019. source: "./media/characters/mandarax/dick.svg"
  24020. }
  24021. },
  24022. top: {
  24023. height: math.unit(28, "meters"),
  24024. name: "Top",
  24025. image: {
  24026. source: "./media/characters/mandarax/top.svg"
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(25, "feet"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(5, "feet"),
  24043. weight: math.unit(90, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/pixil/front.svg",
  24047. extra: 2000 / 1618,
  24048. bottom: 12.3 / 2011
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Normal",
  24055. height: math.unit(5, "feet"),
  24056. default: true
  24057. },
  24058. {
  24059. name: "Megamacro",
  24060. height: math.unit(10, "miles"),
  24061. },
  24062. ]
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24066. {
  24067. front: {
  24068. height: math.unit(7 + 2 / 12, "feet"),
  24069. weight: math.unit(200, "lb"),
  24070. name: "Front",
  24071. image: {
  24072. source: "./media/characters/angel/front.svg",
  24073. extra: 1830 / 1737,
  24074. bottom: 22.6 / 1854,
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Normal",
  24081. height: math.unit(7 + 2 / 12, "feet"),
  24082. default: true
  24083. },
  24084. {
  24085. name: "Macro",
  24086. height: math.unit(1000, "feet")
  24087. },
  24088. {
  24089. name: "Megamacro",
  24090. height: math.unit(2, "miles")
  24091. },
  24092. {
  24093. name: "Gigamacro",
  24094. height: math.unit(20, "earths")
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(5, "feet"),
  24103. weight: math.unit(180, "lb"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/mekana/front.svg",
  24107. extra: 1671 / 1605,
  24108. bottom: 3.5 / 1691
  24109. }
  24110. },
  24111. side: {
  24112. height: math.unit(5, "feet"),
  24113. weight: math.unit(180, "lb"),
  24114. name: "Side",
  24115. image: {
  24116. source: "./media/characters/mekana/side.svg",
  24117. extra: 1671 / 1605,
  24118. bottom: 3.5 / 1691
  24119. }
  24120. },
  24121. back: {
  24122. height: math.unit(5, "feet"),
  24123. weight: math.unit(180, "lb"),
  24124. name: "Back",
  24125. image: {
  24126. source: "./media/characters/mekana/back.svg",
  24127. extra: 1671 / 1605,
  24128. bottom: 3.5 / 1691
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(5, "feet"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(4 + 6 / 12, "feet"),
  24145. weight: math.unit(80, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/pixie/front.svg",
  24149. extra: 1924 / 1825,
  24150. bottom: 22.4 / 1946
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(4 + 6 / 12, "feet"),
  24158. default: true
  24159. },
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(40, "feet")
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24168. {
  24169. front: {
  24170. height: math.unit(2.1, "meters"),
  24171. weight: math.unit(200, "lb"),
  24172. name: "Front",
  24173. image: {
  24174. source: "./media/characters/the-lascivious/front.svg",
  24175. extra: 1 / 0.893,
  24176. bottom: 3.5 / 573.7
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Human Scale",
  24183. height: math.unit(2.1, "meters")
  24184. },
  24185. {
  24186. name: "Wolxi Scale",
  24187. height: math.unit(46.2, "m"),
  24188. default: true
  24189. },
  24190. {
  24191. name: "Boinker of Buildings",
  24192. height: math.unit(10, "km")
  24193. },
  24194. {
  24195. name: "Shagger of Skyscrapers",
  24196. height: math.unit(40, "km")
  24197. },
  24198. {
  24199. name: "Banger of Boroughs",
  24200. height: math.unit(4000, "km")
  24201. },
  24202. {
  24203. name: "Screwer of States",
  24204. height: math.unit(100000, "km")
  24205. },
  24206. {
  24207. name: "Pounder of Planets",
  24208. height: math.unit(2000000, "km")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(6, "feet"),
  24217. weight: math.unit(150, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/aj/front.svg",
  24221. extra: 2039 / 1562,
  24222. bottom: 40 / 2079
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Normal",
  24229. height: math.unit(11 + 6 / 12, "feet"),
  24230. default: true
  24231. },
  24232. {
  24233. name: "Megamacro",
  24234. height: math.unit(60, "megameters")
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24240. {
  24241. side: {
  24242. height: math.unit(31 + 8/12, "feet"),
  24243. weight: math.unit(75000, "kg"),
  24244. name: "Side",
  24245. image: {
  24246. source: "./media/characters/koros/side.svg",
  24247. extra: 1442/1297,
  24248. bottom: 122.7/1562
  24249. }
  24250. },
  24251. dicksKingsCrown: {
  24252. height: math.unit(6, "feet"),
  24253. name: "Dicks (King's Crown)",
  24254. image: {
  24255. source: "./media/characters/koros/dicks-kings-crown.svg"
  24256. }
  24257. },
  24258. dicksTailSet: {
  24259. height: math.unit(3, "feet"),
  24260. name: "Dicks (Tail Set)",
  24261. image: {
  24262. source: "./media/characters/koros/dicks-tail-set.svg"
  24263. }
  24264. },
  24265. dickCumming: {
  24266. height: math.unit(7.98, "feet"),
  24267. name: "Dick (Cumming)",
  24268. image: {
  24269. source: "./media/characters/koros/dick-cumming.svg"
  24270. }
  24271. },
  24272. dicksBack: {
  24273. height: math.unit(5.9, "feet"),
  24274. name: "Dicks (Back)",
  24275. image: {
  24276. source: "./media/characters/koros/dicks-back.svg"
  24277. }
  24278. },
  24279. dicksFront: {
  24280. height: math.unit(3.72, "feet"),
  24281. name: "Dicks (Front)",
  24282. image: {
  24283. source: "./media/characters/koros/dicks-front.svg"
  24284. }
  24285. },
  24286. dicksPeeking: {
  24287. height: math.unit(3.0, "feet"),
  24288. name: "Dicks (Peeking)",
  24289. image: {
  24290. source: "./media/characters/koros/dicks-peeking.svg"
  24291. }
  24292. },
  24293. eye: {
  24294. height: math.unit(1.7, "feet"),
  24295. name: "Eye",
  24296. image: {
  24297. source: "./media/characters/koros/eye.svg"
  24298. }
  24299. },
  24300. headFront: {
  24301. height: math.unit(11.69, "feet"),
  24302. name: "Head (Front)",
  24303. image: {
  24304. source: "./media/characters/koros/head-front.svg"
  24305. }
  24306. },
  24307. headSide: {
  24308. height: math.unit(14, "feet"),
  24309. name: "Head (Side)",
  24310. image: {
  24311. source: "./media/characters/koros/head-side.svg"
  24312. }
  24313. },
  24314. leg: {
  24315. height: math.unit(17, "feet"),
  24316. name: "Leg",
  24317. image: {
  24318. source: "./media/characters/koros/leg.svg"
  24319. }
  24320. },
  24321. mawSide: {
  24322. height: math.unit(12.8, "feet"),
  24323. name: "Maw (Side)",
  24324. image: {
  24325. source: "./media/characters/koros/maw-side.svg"
  24326. }
  24327. },
  24328. mawSpitting: {
  24329. height: math.unit(17, "feet"),
  24330. name: "Maw (Spitting)",
  24331. image: {
  24332. source: "./media/characters/koros/maw-spitting.svg"
  24333. }
  24334. },
  24335. slit: {
  24336. height: math.unit(2.8, "feet"),
  24337. name: "Slit",
  24338. image: {
  24339. source: "./media/characters/koros/slit.svg"
  24340. }
  24341. },
  24342. stomach: {
  24343. height: math.unit(6.8, "feet"),
  24344. capacity: math.unit(20, "people"),
  24345. name: "Stomach",
  24346. image: {
  24347. source: "./media/characters/koros/stomach.svg"
  24348. }
  24349. },
  24350. wingspanBottom: {
  24351. height: math.unit(114, "feet"),
  24352. name: "Wingspan (Bottom)",
  24353. image: {
  24354. source: "./media/characters/koros/wingspan-bottom.svg"
  24355. }
  24356. },
  24357. wingspanTop: {
  24358. height: math.unit(104, "feet"),
  24359. name: "Wingspan (Top)",
  24360. image: {
  24361. source: "./media/characters/koros/wingspan-top.svg"
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Normal",
  24368. height: math.unit(31 + 8/12, "feet"),
  24369. default: true
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24375. {
  24376. front: {
  24377. height: math.unit(18 + 5/12, "feet"),
  24378. weight: math.unit(3750, "kg"),
  24379. name: "Front",
  24380. image: {
  24381. source: "./media/characters/vexx/front.svg",
  24382. extra: 426/396,
  24383. bottom: 31.5/458
  24384. }
  24385. },
  24386. maw: {
  24387. height: math.unit(6, "feet"),
  24388. name: "Maw",
  24389. image: {
  24390. source: "./media/characters/vexx/maw.svg"
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(18 + 5/12, "feet"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(17 + 6/12, "feet"),
  24407. weight: math.unit(150, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/baadra/front.svg",
  24411. extra: 3137/2890,
  24412. bottom: 168.4/3305
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(17 + 6/12, "feet"),
  24417. weight: math.unit(150, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/baadra/back.svg",
  24421. extra: 3142/2890,
  24422. bottom: 220/3371
  24423. }
  24424. },
  24425. head: {
  24426. height: math.unit(5.45, "feet"),
  24427. name: "Head",
  24428. image: {
  24429. source: "./media/characters/baadra/head.svg"
  24430. }
  24431. },
  24432. headAngry: {
  24433. height: math.unit(4.95, "feet"),
  24434. name: "Head (Angry)",
  24435. image: {
  24436. source: "./media/characters/baadra/head-angry.svg"
  24437. }
  24438. },
  24439. headOpen: {
  24440. height: math.unit(6, "feet"),
  24441. name: "Head (Open)",
  24442. image: {
  24443. source: "./media/characters/baadra/head-open.svg"
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Normal",
  24450. height: math.unit(17 + 6/12, "feet"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(7 + 3/12, "feet"),
  24460. weight: math.unit(180, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/juri/front.svg",
  24464. extra: 1401/1237,
  24465. bottom: 18.5/1418
  24466. }
  24467. },
  24468. side: {
  24469. height: math.unit(7 + 3/12, "feet"),
  24470. weight: math.unit(180, "lb"),
  24471. name: "Side",
  24472. image: {
  24473. source: "./media/characters/juri/side.svg",
  24474. extra: 1424/1242,
  24475. bottom: 18.5/1447
  24476. }
  24477. },
  24478. sitting: {
  24479. height: math.unit(6, "feet"),
  24480. weight: math.unit(180, "lb"),
  24481. name: "Sitting",
  24482. image: {
  24483. source: "./media/characters/juri/sitting.svg",
  24484. extra: 1270/1143,
  24485. bottom: 100/1343
  24486. }
  24487. },
  24488. back: {
  24489. height: math.unit(7 + 3/12, "feet"),
  24490. weight: math.unit(180, "lb"),
  24491. name: "Back",
  24492. image: {
  24493. source: "./media/characters/juri/back.svg",
  24494. extra: 1377/1240,
  24495. bottom: 23.7/1405
  24496. }
  24497. },
  24498. maw: {
  24499. height: math.unit(2.8, "feet"),
  24500. name: "Maw",
  24501. image: {
  24502. source: "./media/characters/juri/maw.svg"
  24503. }
  24504. },
  24505. stomach: {
  24506. height: math.unit(0.89, "feet"),
  24507. capacity: math.unit(4, "liters"),
  24508. name: "Stomach",
  24509. image: {
  24510. source: "./media/characters/juri/stomach.svg"
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(7 + 3/12, "feet"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24524. {
  24525. fox: {
  24526. height: math.unit(5 + 6/12, "feet"),
  24527. weight: math.unit(140, "lb"),
  24528. name: "Fox",
  24529. image: {
  24530. source: "./media/characters/maxene-sita/fox.svg",
  24531. extra: 146/138,
  24532. bottom: 2.1/148.19
  24533. }
  24534. },
  24535. kitsune: {
  24536. height: math.unit(10, "feet"),
  24537. weight: math.unit(800, "lb"),
  24538. name: "Kitsune",
  24539. image: {
  24540. source: "./media/characters/maxene-sita/kitsune.svg",
  24541. extra: 185/176,
  24542. bottom: 4.7/189.9
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Normal",
  24549. height: math.unit(5 + 6/12, "feet"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24556. {
  24557. front: {
  24558. height: math.unit(3 + 4/12, "feet"),
  24559. weight: math.unit(70, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/maia/front.svg",
  24563. extra: 227/219.5,
  24564. bottom: 40 / 267
  24565. }
  24566. },
  24567. back: {
  24568. height: math.unit(3 + 4/12, "feet"),
  24569. weight: math.unit(70, "lb"),
  24570. name: "Back",
  24571. image: {
  24572. source: "./media/characters/maia/back.svg",
  24573. extra: 237/225
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(3 + 4/12, "feet"),
  24581. default: true
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24587. {
  24588. front: {
  24589. height: math.unit(5 + 10/12, "feet"),
  24590. weight: math.unit(197, "lb"),
  24591. name: "Front",
  24592. image: {
  24593. source: "./media/characters/jabaro/front.svg",
  24594. extra: 225/216,
  24595. bottom: 5.06/230
  24596. }
  24597. },
  24598. back: {
  24599. height: math.unit(5 + 10/12, "feet"),
  24600. weight: math.unit(197, "lb"),
  24601. name: "Back",
  24602. image: {
  24603. source: "./media/characters/jabaro/back.svg",
  24604. extra: 225/219,
  24605. bottom: 1.9/227
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(5 + 10/12, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(5 + 8/12, "feet"),
  24622. weight: math.unit(139, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/risa/front.svg",
  24626. extra: 270/260,
  24627. bottom: 11.2/282
  24628. }
  24629. },
  24630. back: {
  24631. height: math.unit(5 + 8/12, "feet"),
  24632. weight: math.unit(139, "lb"),
  24633. name: "Back",
  24634. image: {
  24635. source: "./media/characters/risa/back.svg",
  24636. extra: 264/255,
  24637. bottom: 4/268
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Normal",
  24644. height: math.unit(5 + 8/12, "feet"),
  24645. default: true
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24651. {
  24652. front: {
  24653. height: math.unit(2 + 11/12, "feet"),
  24654. weight: math.unit(30, "lb"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/weatley/front.svg",
  24658. bottom: 10.7/414,
  24659. extra: 403.5/362
  24660. }
  24661. },
  24662. back: {
  24663. height: math.unit(2 + 11/12, "feet"),
  24664. weight: math.unit(30, "lb"),
  24665. name: "Back",
  24666. image: {
  24667. source: "./media/characters/weatley/back.svg",
  24668. bottom: 10.7/414,
  24669. extra: 403.5/362
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(2 + 11/12, "feet"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(5 + 2/12, "feet"),
  24686. weight: math.unit(50, "kg"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/mercury-crescent/front.svg",
  24690. extra: 1088/1033,
  24691. bottom: 18.9/1109
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(5 + 2/12, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(2, "feet"),
  24708. weight: math.unit(15, "kg"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/diamond-jones/front.svg",
  24712. bottom: 16/568
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Normal",
  24719. height: math.unit(2, "feet"),
  24720. default: true
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24726. {
  24727. front: {
  24728. height: math.unit(3, "feet"),
  24729. weight: math.unit(30, "kg"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/sweet-bit/front.svg",
  24733. extra: 675/567,
  24734. bottom: 27.7/703
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(3, "feet"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24748. {
  24749. side: {
  24750. height: math.unit(9.178, "feet"),
  24751. weight: math.unit(500, "lb"),
  24752. name: "Side",
  24753. image: {
  24754. source: "./media/characters/umbrazen/side.svg",
  24755. extra: 1730/1473,
  24756. bottom: 34.6/1765
  24757. }
  24758. },
  24759. },
  24760. [
  24761. {
  24762. name: "Normal",
  24763. height: math.unit(9.178, "feet"),
  24764. default: true
  24765. },
  24766. ]
  24767. ))
  24768. characterMakers.push(() => makeCharacter(
  24769. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24770. {
  24771. front: {
  24772. height: math.unit(10, "feet"),
  24773. weight: math.unit(750, "lb"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/arlist/front.svg",
  24777. extra: 961/778,
  24778. bottom: 6.2/986
  24779. }
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(10, "feet"),
  24786. default: true
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(5 + 1/12, "feet"),
  24795. weight: math.unit(110, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/aradel/front.svg",
  24799. extra: 324/303,
  24800. bottom: 3.6/329.4
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Normal",
  24807. height: math.unit(5 + 1/12, "feet"),
  24808. default: true
  24809. },
  24810. ]
  24811. ))
  24812. characterMakers.push(() => makeCharacter(
  24813. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24814. {
  24815. front: {
  24816. height: math.unit(3 + 8/12, "feet"),
  24817. weight: math.unit(50, "lb"),
  24818. name: "Front",
  24819. image: {
  24820. source: "./media/characters/serryn/front.svg",
  24821. extra: 1792/1656,
  24822. bottom: 43.5/1840
  24823. }
  24824. },
  24825. },
  24826. [
  24827. {
  24828. name: "Normal",
  24829. height: math.unit(3 + 8/12, "feet"),
  24830. default: true
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Xavier Thyme" },
  24836. {
  24837. front: {
  24838. height: math.unit(7 + 10/12, "feet"),
  24839. weight: math.unit(255, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/xavier-thyme/front.svg",
  24843. extra: 3733/3642,
  24844. bottom: 131/3869
  24845. }
  24846. },
  24847. frontRaven: {
  24848. height: math.unit(7 + 10/12, "feet"),
  24849. weight: math.unit(255, "lb"),
  24850. name: "Front (Raven)",
  24851. image: {
  24852. source: "./media/characters/xavier-thyme/front-raven.svg",
  24853. extra: 4385/3642,
  24854. bottom: 131/4517
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(7 + 10/12, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(1.6, "m"),
  24871. weight: math.unit(50, "kg"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/kiki/front.svg",
  24875. extra: 4682/3610,
  24876. bottom: 115/4777
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(1.6, "meters"),
  24884. default: true
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24890. {
  24891. front: {
  24892. height: math.unit(50, "m"),
  24893. weight: math.unit(500, "tonnes"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/ryoko/front.svg",
  24897. extra: 4632/3926,
  24898. bottom: 193/4823
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(50, "meters"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24912. {
  24913. front: {
  24914. height: math.unit(30, "m"),
  24915. weight: math.unit(22, "tonnes"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/elio/front.svg",
  24919. extra: 4582/3720,
  24920. bottom: 236/4828
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(30, "meters"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24934. {
  24935. front: {
  24936. height: math.unit(6 + 3/12, "feet"),
  24937. weight: math.unit(120, "lb"),
  24938. name: "Front",
  24939. image: {
  24940. source: "./media/characters/azura/front.svg",
  24941. extra: 1149/1135,
  24942. bottom: 45/1194
  24943. }
  24944. },
  24945. frontClothed: {
  24946. height: math.unit(6 + 3/12, "feet"),
  24947. weight: math.unit(120, "lb"),
  24948. name: "Front (Clothed)",
  24949. image: {
  24950. source: "./media/characters/azura/front-clothed.svg",
  24951. extra: 1149/1135,
  24952. bottom: 45/1194
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(6 + 3/12, "feet"),
  24960. default: true
  24961. },
  24962. {
  24963. name: "Macro",
  24964. height: math.unit(20 + 6/12, "feet")
  24965. },
  24966. {
  24967. name: "Megamacro",
  24968. height: math.unit(12, "miles")
  24969. },
  24970. {
  24971. name: "Gigamacro",
  24972. height: math.unit(10000, "miles")
  24973. },
  24974. {
  24975. name: "Teramacro",
  24976. height: math.unit(900000, "miles")
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(12, "feet"),
  24985. weight: math.unit(1, "ton"),
  24986. capacity: math.unit(660000, "gallons"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/zeus/front.svg",
  24990. extra: 5005/4717,
  24991. bottom: 363/5388
  24992. }
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Normal",
  24998. height: math.unit(12, "feet")
  24999. },
  25000. {
  25001. name: "Preferred Size",
  25002. height: math.unit(0.5, "miles"),
  25003. default: true
  25004. },
  25005. {
  25006. name: "Giga Horse",
  25007. height: math.unit(300, "miles")
  25008. },
  25009. {
  25010. name: "Riding Planets",
  25011. height: math.unit(30, "megameters")
  25012. },
  25013. {
  25014. name: "Cosmic Giant",
  25015. height: math.unit(3, "zettameters")
  25016. },
  25017. {
  25018. name: "Breeding God",
  25019. height: math.unit(9.92e22, "yottameters")
  25020. },
  25021. ]
  25022. ))
  25023. characterMakers.push(() => makeCharacter(
  25024. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25025. {
  25026. side: {
  25027. height: math.unit(9, "feet"),
  25028. weight: math.unit(1500, "kg"),
  25029. name: "Side",
  25030. image: {
  25031. source: "./media/characters/fang/side.svg",
  25032. extra: 924/866,
  25033. bottom: 47.5/972.3
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(9, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Macro",
  25045. height: math.unit(75 + 6/12, "feet")
  25046. },
  25047. {
  25048. name: "Teramacro",
  25049. height: math.unit(50000, "miles")
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(10, "feet"),
  25058. weight: math.unit(2, "tons"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/rekhit/front.svg",
  25062. extra: 2796/2590,
  25063. bottom: 225/3022
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(10, "feet"),
  25071. default: true
  25072. },
  25073. {
  25074. name: "Macro",
  25075. height: math.unit(500, "feet")
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Dahlia Verrick" },
  25081. {
  25082. front: {
  25083. height: math.unit(7 + 6.451/12, "feet"),
  25084. weight: math.unit(310, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/dahlia-verrick/front.svg",
  25088. extra: 1488/1365,
  25089. bottom: 6.2/1495
  25090. }
  25091. },
  25092. back: {
  25093. height: math.unit(7 + 6.451/12, "feet"),
  25094. weight: math.unit(310, "lb"),
  25095. name: "Back",
  25096. image: {
  25097. source: "./media/characters/dahlia-verrick/back.svg",
  25098. extra: 1472/1351,
  25099. bottom: 5.28/1477
  25100. }
  25101. },
  25102. frontBusiness: {
  25103. height: math.unit(7 + 6.451/12, "feet"),
  25104. weight: math.unit(200, "lb"),
  25105. name: "Front (Business)",
  25106. image: {
  25107. source: "./media/characters/dahlia-verrick/front-business.svg",
  25108. extra: 1478/1381,
  25109. bottom: 5.5/1484
  25110. }
  25111. },
  25112. frontCasual: {
  25113. height: math.unit(7 + 6.451/12, "feet"),
  25114. weight: math.unit(200, "lb"),
  25115. name: "Front (Casual)",
  25116. image: {
  25117. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25118. extra: 1478/1381,
  25119. bottom: 5.5/1484
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Travel-Sized",
  25126. height: math.unit(7.45, "inches")
  25127. },
  25128. {
  25129. name: "Normal",
  25130. height: math.unit(7 + 6.451/12, "feet"),
  25131. default: true
  25132. },
  25133. {
  25134. name: "Hitting the Town",
  25135. height: math.unit(37 + 8/12, "feet")
  25136. },
  25137. {
  25138. name: "Stomp in the Suburbs",
  25139. height: math.unit(964 + 9.728/12, "feet")
  25140. },
  25141. {
  25142. name: "Sit on the City",
  25143. height: math.unit(61747 + 10.592/12, "feet")
  25144. },
  25145. {
  25146. name: "Glomp the Globe",
  25147. height: math.unit(252919327 + 4.832/12, "feet")
  25148. },
  25149. ]
  25150. ))
  25151. characterMakers.push(() => makeCharacter(
  25152. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25153. {
  25154. front: {
  25155. height: math.unit(6 + 4/12, "feet"),
  25156. weight: math.unit(320, "lb"),
  25157. name: "Front",
  25158. image: {
  25159. source: "./media/characters/balina-mahigan/front.svg",
  25160. extra: 447/428,
  25161. bottom: 18/466
  25162. }
  25163. },
  25164. back: {
  25165. height: math.unit(6 + 4/12, "feet"),
  25166. weight: math.unit(320, "lb"),
  25167. name: "Back",
  25168. image: {
  25169. source: "./media/characters/balina-mahigan/back.svg",
  25170. extra: 445/428,
  25171. bottom: 4.07/448
  25172. }
  25173. },
  25174. arm: {
  25175. height: math.unit(1.88, "feet"),
  25176. name: "Arm",
  25177. image: {
  25178. source: "./media/characters/balina-mahigan/arm.svg"
  25179. }
  25180. },
  25181. backPort: {
  25182. height: math.unit(0.685, "feet"),
  25183. name: "Back Port",
  25184. image: {
  25185. source: "./media/characters/balina-mahigan/back-port.svg"
  25186. }
  25187. },
  25188. hoofpaw: {
  25189. height: math.unit(1.41, "feet"),
  25190. name: "Hoofpaw",
  25191. image: {
  25192. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25193. }
  25194. },
  25195. leftHandBack: {
  25196. height: math.unit(0.938, "feet"),
  25197. name: "Left Hand (Back)",
  25198. image: {
  25199. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25200. }
  25201. },
  25202. leftHandFront: {
  25203. height: math.unit(0.938, "feet"),
  25204. name: "Left Hand (Front)",
  25205. image: {
  25206. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25207. }
  25208. },
  25209. rightHandBack: {
  25210. height: math.unit(0.95, "feet"),
  25211. name: "Right Hand (Back)",
  25212. image: {
  25213. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25214. }
  25215. },
  25216. rightHandFront: {
  25217. height: math.unit(0.95, "feet"),
  25218. name: "Right Hand (Front)",
  25219. image: {
  25220. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(6 + 4/12, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(6, "feet"),
  25237. weight: math.unit(320, "lb"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/balina-mejeri/front.svg",
  25241. extra: 517/488,
  25242. bottom: 44.2/561
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(6 + 4/12, "feet")
  25250. },
  25251. {
  25252. name: "Business",
  25253. height: math.unit(155, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25260. {
  25261. kneeling: {
  25262. height: math.unit(6 + 4/12, "feet"),
  25263. weight: math.unit(300*20, "lb"),
  25264. name: "Kneeling",
  25265. image: {
  25266. source: "./media/characters/balbarian/kneeling.svg",
  25267. extra: 922/862,
  25268. bottom: 42.4/965
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(6 + 4/12, "feet")
  25276. },
  25277. {
  25278. name: "Treasured",
  25279. height: math.unit(18 + 9/12, "feet"),
  25280. default: true
  25281. },
  25282. {
  25283. name: "Macro",
  25284. height: math.unit(900, "feet")
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(6 + 4/12, "feet"),
  25293. weight: math.unit(325, "lb"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/balina-amarini/front.svg",
  25297. extra: 415/403,
  25298. bottom: 19/433.4
  25299. }
  25300. },
  25301. back: {
  25302. height: math.unit(6 + 4/12, "feet"),
  25303. weight: math.unit(325, "lb"),
  25304. name: "Back",
  25305. image: {
  25306. source: "./media/characters/balina-amarini/back.svg",
  25307. extra: 415/403,
  25308. bottom: 13.5/432
  25309. }
  25310. },
  25311. overdrive: {
  25312. height: math.unit(6 + 4/12, "feet"),
  25313. weight: math.unit(400, "lb"),
  25314. name: "Overdrive",
  25315. image: {
  25316. source: "./media/characters/balina-amarini/overdrive.svg",
  25317. extra: 269/259,
  25318. bottom: 12/282
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Boom",
  25325. height: math.unit(9 + 10/12, "feet"),
  25326. default: true
  25327. },
  25328. {
  25329. name: "Macro",
  25330. height: math.unit(280, "feet")
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25336. {
  25337. goddess: {
  25338. height: math.unit(600, "feet"),
  25339. weight: math.unit(2000000, "tons"),
  25340. name: "Goddess",
  25341. image: {
  25342. source: "./media/characters/lady-kubwa/goddess.svg",
  25343. extra: 1240.5/1223,
  25344. bottom: 22/1263
  25345. }
  25346. },
  25347. goddesser: {
  25348. height: math.unit(900, "feet"),
  25349. weight: math.unit(20000000, "lb"),
  25350. name: "Goddess-er",
  25351. image: {
  25352. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25353. extra: 899/888,
  25354. bottom: 12.6/912
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Macro",
  25361. height: math.unit(600, "feet"),
  25362. default: true
  25363. },
  25364. {
  25365. name: "Megamacro",
  25366. height: math.unit(250, "miles")
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(7 + 7/12, "feet"),
  25375. weight: math.unit(250, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/tala-grovehorn/front.svg",
  25379. extra: 2636/2525,
  25380. bottom: 147/2781
  25381. }
  25382. },
  25383. back: {
  25384. height: math.unit(7 + 7/12, "feet"),
  25385. weight: math.unit(250, "lb"),
  25386. name: "Back",
  25387. image: {
  25388. source: "./media/characters/tala-grovehorn/back.svg",
  25389. extra: 2635/2539,
  25390. bottom: 100/2732.8
  25391. }
  25392. },
  25393. mouth: {
  25394. height: math.unit(1.15, "feet"),
  25395. name: "Mouth",
  25396. image: {
  25397. source: "./media/characters/tala-grovehorn/mouth.svg"
  25398. }
  25399. },
  25400. dick: {
  25401. height: math.unit(2.36, "feet"),
  25402. name: "Dick",
  25403. image: {
  25404. source: "./media/characters/tala-grovehorn/dick.svg"
  25405. }
  25406. },
  25407. slit: {
  25408. height: math.unit(0.61, "feet"),
  25409. name: "Slit",
  25410. image: {
  25411. source: "./media/characters/tala-grovehorn/slit.svg"
  25412. }
  25413. },
  25414. },
  25415. [
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(7 + 7/12, "feet"),
  25423. weight: math.unit(225, "lb"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/epona/front.svg",
  25427. extra: 2445/2290,
  25428. bottom: 251/2696
  25429. }
  25430. },
  25431. back: {
  25432. height: math.unit(7 + 7/12, "feet"),
  25433. weight: math.unit(225, "lb"),
  25434. name: "Back",
  25435. image: {
  25436. source: "./media/characters/epona/back.svg",
  25437. extra: 2546/2408,
  25438. bottom: 44/2589
  25439. }
  25440. },
  25441. genitals: {
  25442. height: math.unit(1.5, "feet"),
  25443. name: "Genitals",
  25444. image: {
  25445. source: "./media/characters/epona/genitals.svg"
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(7 + 7/12, "feet")
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(7, "feet"),
  25461. weight: math.unit(518, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/avia-bloodbourn/front.svg",
  25465. extra: 1466/1350,
  25466. bottom: 65/1527
  25467. }
  25468. },
  25469. },
  25470. [
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(9.35, "feet"),
  25478. weight: math.unit(600, "lb"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/amera/front.svg",
  25482. extra: 891/818,
  25483. bottom: 30/922.7
  25484. }
  25485. },
  25486. back: {
  25487. height: math.unit(9.35, "feet"),
  25488. weight: math.unit(600, "lb"),
  25489. name: "Back",
  25490. image: {
  25491. source: "./media/characters/amera/back.svg",
  25492. extra: 876/824,
  25493. bottom: 6.8/884
  25494. }
  25495. },
  25496. dick: {
  25497. height: math.unit(2.14, "feet"),
  25498. name: "Dick",
  25499. image: {
  25500. source: "./media/characters/amera/dick.svg"
  25501. }
  25502. },
  25503. },
  25504. [
  25505. {
  25506. name: "Normal",
  25507. height: math.unit(9.35, "feet"),
  25508. default: true
  25509. },
  25510. ]
  25511. ))
  25512. characterMakers.push(() => makeCharacter(
  25513. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25514. {
  25515. kneeling: {
  25516. height: math.unit(3 + 4/12, "feet"),
  25517. weight: math.unit(90, "lb"),
  25518. name: "Kneeling",
  25519. image: {
  25520. source: "./media/characters/rosewen/kneeling.svg",
  25521. extra: 1835/1571,
  25522. bottom: 27.7/1862
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Normal",
  25529. height: math.unit(3 + 4/12, "feet"),
  25530. default: true
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25536. {
  25537. front: {
  25538. height: math.unit(5 + 10/12, "feet"),
  25539. weight: math.unit(200, "lb"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/sabah/front.svg",
  25543. extra: 849/763,
  25544. bottom: 33.9/881
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(5 + 10/12, "feet"),
  25552. default: true
  25553. },
  25554. ]
  25555. ))
  25556. characterMakers.push(() => makeCharacter(
  25557. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25558. {
  25559. front: {
  25560. height: math.unit(3 + 5/12, "feet"),
  25561. weight: math.unit(40, "kg"),
  25562. name: "Front",
  25563. image: {
  25564. source: "./media/characters/purple-flame/front.svg",
  25565. extra: 1577/1412,
  25566. bottom: 97/1694
  25567. }
  25568. },
  25569. frontDressed: {
  25570. height: math.unit(3 + 5/12, "feet"),
  25571. weight: math.unit(40, "kg"),
  25572. name: "Front (Dressed)",
  25573. image: {
  25574. source: "./media/characters/purple-flame/front-dressed.svg",
  25575. extra: 1577/1412,
  25576. bottom: 97/1694
  25577. }
  25578. },
  25579. headphones: {
  25580. height: math.unit(0.85, "feet"),
  25581. name: "Headphones",
  25582. image: {
  25583. source: "./media/characters/purple-flame/headphones.svg"
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Really Small",
  25590. height: math.unit(5, "cm")
  25591. },
  25592. {
  25593. name: "Micro",
  25594. height: math.unit(1 + 5/12, "feet")
  25595. },
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(3 + 5/12, "feet"),
  25599. default: true
  25600. },
  25601. {
  25602. name: "Minimacro",
  25603. height: math.unit(125, "feet")
  25604. },
  25605. {
  25606. name: "Macro",
  25607. height: math.unit(0.5, "miles")
  25608. },
  25609. {
  25610. name: "Megamacro",
  25611. height: math.unit(50, "miles")
  25612. },
  25613. {
  25614. name: "Gigantic",
  25615. height: math.unit(750, "miles")
  25616. },
  25617. {
  25618. name: "Planetary",
  25619. height: math.unit(15000, "miles")
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(14, "feet"),
  25628. weight: math.unit(959, "lb"),
  25629. name: "Front",
  25630. image: {
  25631. source: "./media/characters/arsenal/front.svg",
  25632. extra: 2357/2157,
  25633. bottom: 93/2458
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(14, "feet"),
  25641. default: true
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25647. {
  25648. front: {
  25649. height: math.unit(6, "feet"),
  25650. weight: math.unit(150, "lb"),
  25651. name: "Front",
  25652. image: {
  25653. source: "./media/characters/adira/front.svg",
  25654. extra: 1078/1029,
  25655. bottom: 87/1166
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Micro",
  25662. height: math.unit(4, "inches"),
  25663. default: true
  25664. },
  25665. {
  25666. name: "Macro",
  25667. height: math.unit(50, "feet")
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25673. {
  25674. front: {
  25675. height: math.unit(16, "feet"),
  25676. weight: math.unit(1000, "lb"),
  25677. name: "Front",
  25678. image: {
  25679. source: "./media/characters/grim/front.svg",
  25680. extra: 622/614,
  25681. bottom: 18.1/642
  25682. }
  25683. },
  25684. back: {
  25685. height: math.unit(16, "feet"),
  25686. weight: math.unit(1000, "lb"),
  25687. name: "Back",
  25688. image: {
  25689. source: "./media/characters/grim/back.svg",
  25690. extra: 610.6/602,
  25691. bottom: 40.8/652
  25692. }
  25693. },
  25694. hunched: {
  25695. height: math.unit(9.75, "feet"),
  25696. weight: math.unit(1000, "lb"),
  25697. name: "Hunched",
  25698. image: {
  25699. source: "./media/characters/grim/hunched.svg",
  25700. extra: 304/297,
  25701. bottom: 35.4/394
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Normal",
  25708. height: math.unit(16, "feet"),
  25709. default: true
  25710. },
  25711. ]
  25712. ))
  25713. characterMakers.push(() => makeCharacter(
  25714. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25715. {
  25716. front: {
  25717. height: math.unit(2.3, "meters"),
  25718. weight: math.unit(300, "lb"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/sinja/front-sfw.svg",
  25722. extra: 1393/1294,
  25723. bottom: 70/1463
  25724. }
  25725. },
  25726. frontNsfw: {
  25727. height: math.unit(2.3, "meters"),
  25728. weight: math.unit(300, "lb"),
  25729. name: "Front (NSFW)",
  25730. image: {
  25731. source: "./media/characters/sinja/front-nsfw.svg",
  25732. extra: 1393/1294,
  25733. bottom: 70/1463
  25734. }
  25735. },
  25736. back: {
  25737. height: math.unit(2.3, "meters"),
  25738. weight: math.unit(300, "lb"),
  25739. name: "Back",
  25740. image: {
  25741. source: "./media/characters/sinja/back.svg",
  25742. extra: 1393/1294,
  25743. bottom: 70/1463
  25744. }
  25745. },
  25746. head: {
  25747. height: math.unit(1.771, "feet"),
  25748. name: "Head",
  25749. image: {
  25750. source: "./media/characters/sinja/head.svg"
  25751. }
  25752. },
  25753. slit: {
  25754. height: math.unit(0.8, "feet"),
  25755. name: "Slit",
  25756. image: {
  25757. source: "./media/characters/sinja/slit.svg"
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Normal",
  25764. height: math.unit(2.3, "meters")
  25765. },
  25766. {
  25767. name: "Macro",
  25768. height: math.unit(91, "meters"),
  25769. default: true
  25770. },
  25771. {
  25772. name: "Megamacro",
  25773. height: math.unit(91440, "meters")
  25774. },
  25775. {
  25776. name: "Gigamacro",
  25777. height: math.unit(60960000, "meters")
  25778. },
  25779. {
  25780. name: "Teramacro",
  25781. height: math.unit(9144000000, "meters")
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(1.7, "meters"),
  25790. weight: math.unit(130, "lb"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/kyu/front.svg",
  25794. extra: 415/395,
  25795. bottom: 5/420
  25796. }
  25797. },
  25798. head: {
  25799. height: math.unit(1.75, "feet"),
  25800. name: "Head",
  25801. image: {
  25802. source: "./media/characters/kyu/head.svg"
  25803. }
  25804. },
  25805. foot: {
  25806. height: math.unit(0.81, "feet"),
  25807. name: "Foot",
  25808. image: {
  25809. source: "./media/characters/kyu/foot.svg"
  25810. }
  25811. },
  25812. },
  25813. [
  25814. {
  25815. name: "Normal",
  25816. height: math.unit(1.7, "meters")
  25817. },
  25818. {
  25819. name: "Macro",
  25820. height: math.unit(131, "feet"),
  25821. default: true
  25822. },
  25823. {
  25824. name: "Megamacro",
  25825. height: math.unit(91440, "meters")
  25826. },
  25827. {
  25828. name: "Gigamacro",
  25829. height: math.unit(60960000, "meters")
  25830. },
  25831. {
  25832. name: "Teramacro",
  25833. height: math.unit(9144000000, "meters")
  25834. },
  25835. ]
  25836. ))
  25837. //characters
  25838. function makeCharacters() {
  25839. const results = [];
  25840. characterMakers.forEach(character => {
  25841. results.push(character());
  25842. });
  25843. return results;
  25844. }