less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

24506 satır
604 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"]
  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: ["machine"]
  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"]
  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. }
  1220. function getSpeciesInfo(speciesList) {
  1221. let result = new Set();
  1222. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1223. result.add(entry)
  1224. });
  1225. return Array.from(result);
  1226. };
  1227. function getSpeciesInfoHelper(species) {
  1228. if (!speciesData[species]) {
  1229. console.warn(species + " doesn't exist");
  1230. return [];
  1231. }
  1232. if (speciesData[species].parents) {
  1233. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1234. } else {
  1235. return [species];
  1236. }
  1237. }
  1238. characterMakers.push(() => makeCharacter(
  1239. {
  1240. name: "Fen",
  1241. species: ["crux"],
  1242. description: {
  1243. title: "Bio",
  1244. text: "Very furry. Sheds on everything."
  1245. },
  1246. tags: [
  1247. "anthro",
  1248. "goo"
  1249. ]
  1250. },
  1251. {
  1252. back: {
  1253. height: math.unit(2.2428, "meter"),
  1254. weight: math.unit(124.738, "kg"),
  1255. name: "Back",
  1256. image: {
  1257. source: "./media/characters/fen/back.svg",
  1258. extra: 1025 / 935,
  1259. bottom: 0.01
  1260. },
  1261. info: {
  1262. description: {
  1263. mode: "append",
  1264. text: "\n\nHe is not currently looking at you."
  1265. }
  1266. }
  1267. },
  1268. full: {
  1269. height: math.unit(1.34, "meter"),
  1270. weight: math.unit(225, "kg"),
  1271. name: "Full",
  1272. image: {
  1273. source: "./media/characters/fen/full.svg"
  1274. },
  1275. info: {
  1276. description: {
  1277. mode: "append",
  1278. text: "\n\nMunch."
  1279. }
  1280. }
  1281. },
  1282. kneeling: {
  1283. height: math.unit(5.4, "feet"),
  1284. weight: math.unit(124.738, "kg"),
  1285. name: "Kneeling",
  1286. image: {
  1287. source: "./media/characters/fen/kneeling.svg",
  1288. extra: 563 / 507
  1289. }
  1290. },
  1291. goo: {
  1292. height: math.unit(2.8, "feet"),
  1293. weight: math.unit(125, "kg"),
  1294. capacity: math.unit(1, "people"),
  1295. name: "Goo",
  1296. image: {
  1297. source: "./media/characters/fen/goo.svg",
  1298. bottom: 116/613
  1299. }
  1300. },
  1301. lounging: {
  1302. height: math.unit(6.5, "feet"),
  1303. weight: math.unit(125, "kg"),
  1304. name: "Lounging",
  1305. image: {
  1306. source: "./media/characters/fen/lounging.svg"
  1307. }
  1308. },
  1309. },
  1310. [
  1311. {
  1312. name: "Normal",
  1313. height: math.unit(2.2428, "meter")
  1314. },
  1315. {
  1316. name: "Big",
  1317. height: math.unit(12, "feet")
  1318. },
  1319. {
  1320. name: "Minimacro",
  1321. height: math.unit(40, "feet"),
  1322. default: true,
  1323. info: {
  1324. description: {
  1325. mode: "append",
  1326. text: "\n\nTOO DAMN BIG"
  1327. }
  1328. }
  1329. },
  1330. {
  1331. name: "Macro",
  1332. height: math.unit(100, "feet"),
  1333. info: {
  1334. description: {
  1335. mode: "append",
  1336. text: "\n\nTOO DAMN BIG"
  1337. }
  1338. }
  1339. },
  1340. {
  1341. name: "Macro+",
  1342. height: math.unit(300, "feet")
  1343. },
  1344. {
  1345. name: "Megamacro",
  1346. height: math.unit(2, "miles")
  1347. }
  1348. ]
  1349. ))
  1350. characterMakers.push(() => makeCharacter(
  1351. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1352. {
  1353. front: {
  1354. height: math.unit(183, "cm"),
  1355. weight: math.unit(80, "kg"),
  1356. name: "Front",
  1357. image: {
  1358. source: "./media/characters/sofia-fluttertail/front.svg",
  1359. bottom: 0.01,
  1360. extra: 2154 / 2081
  1361. }
  1362. },
  1363. frontAlt: {
  1364. height: math.unit(183, "cm"),
  1365. weight: math.unit(80, "kg"),
  1366. name: "Front (alt)",
  1367. image: {
  1368. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1369. }
  1370. },
  1371. back: {
  1372. height: math.unit(183, "cm"),
  1373. weight: math.unit(80, "kg"),
  1374. name: "Back",
  1375. image: {
  1376. source: "./media/characters/sofia-fluttertail/back.svg"
  1377. }
  1378. },
  1379. kneeling: {
  1380. height: math.unit(125, "cm"),
  1381. weight: math.unit(80, "kg"),
  1382. name: "Kneeling",
  1383. image: {
  1384. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1385. extra: 1033/977,
  1386. bottom: 23.7/1057
  1387. }
  1388. },
  1389. maw: {
  1390. height: math.unit(183 / 5, "cm"),
  1391. name: "Maw",
  1392. image: {
  1393. source: "./media/characters/sofia-fluttertail/maw.svg"
  1394. }
  1395. },
  1396. mawcloseup: {
  1397. height: math.unit(183 / 5 * 0.41, "cm"),
  1398. name: "Maw (Closeup)",
  1399. image: {
  1400. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1401. }
  1402. },
  1403. },
  1404. [
  1405. {
  1406. name: "Normal",
  1407. height: math.unit(1.83, "meter")
  1408. },
  1409. {
  1410. name: "Size Thief",
  1411. height: math.unit(18, "feet")
  1412. },
  1413. {
  1414. name: "50 Foot Collie",
  1415. height: math.unit(50, "feet")
  1416. },
  1417. {
  1418. name: "Macro",
  1419. height: math.unit(96, "feet"),
  1420. default: true
  1421. },
  1422. {
  1423. name: "Megamerger",
  1424. height: math.unit(650, "feet")
  1425. },
  1426. ]
  1427. ))
  1428. characterMakers.push(() => makeCharacter(
  1429. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1430. {
  1431. front: {
  1432. height: math.unit(7, "feet"),
  1433. weight: math.unit(100, "kg"),
  1434. name: "Front",
  1435. image: {
  1436. source: "./media/characters/march/front.svg",
  1437. extra: 1,
  1438. bottom: 0.015
  1439. }
  1440. },
  1441. foot: {
  1442. height: math.unit(0.9, "feet"),
  1443. name: "Foot",
  1444. image: {
  1445. source: "./media/characters/march/foot.svg"
  1446. }
  1447. },
  1448. },
  1449. [
  1450. {
  1451. name: "Normal",
  1452. height: math.unit(7.9, "feet")
  1453. },
  1454. {
  1455. name: "Macro",
  1456. height: math.unit(220, "meters")
  1457. },
  1458. {
  1459. name: "Megamacro",
  1460. height: math.unit(2.98, "km"),
  1461. default: true
  1462. },
  1463. {
  1464. name: "Gigamacro",
  1465. height: math.unit(15963, "km")
  1466. },
  1467. {
  1468. name: "Teramacro",
  1469. height: math.unit(2980000000, "km")
  1470. },
  1471. {
  1472. name: "Examacro",
  1473. height: math.unit(250, "parsecs")
  1474. },
  1475. ]
  1476. ))
  1477. characterMakers.push(() => makeCharacter(
  1478. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1479. {
  1480. front: {
  1481. height: math.unit(6, "feet"),
  1482. weight: math.unit(60, "kg"),
  1483. name: "Front",
  1484. image: {
  1485. source: "./media/characters/noir/front.svg",
  1486. extra: 1,
  1487. bottom: 0.032
  1488. }
  1489. },
  1490. },
  1491. [
  1492. {
  1493. name: "Normal",
  1494. height: math.unit(6.6, "feet")
  1495. },
  1496. {
  1497. name: "Macro",
  1498. height: math.unit(500, "feet")
  1499. },
  1500. {
  1501. name: "Megamacro",
  1502. height: math.unit(2.5, "km"),
  1503. default: true
  1504. },
  1505. {
  1506. name: "Gigamacro",
  1507. height: math.unit(22500, "km")
  1508. },
  1509. {
  1510. name: "Teramacro",
  1511. height: math.unit(2500000000, "km")
  1512. },
  1513. {
  1514. name: "Examacro",
  1515. height: math.unit(200, "parsecs")
  1516. },
  1517. ]
  1518. ))
  1519. characterMakers.push(() => makeCharacter(
  1520. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1521. {
  1522. front: {
  1523. height: math.unit(7, "feet"),
  1524. weight: math.unit(100, "kg"),
  1525. name: "Front",
  1526. image: {
  1527. source: "./media/characters/okuri/front.svg",
  1528. extra: 1,
  1529. bottom: 0.037
  1530. }
  1531. },
  1532. back: {
  1533. height: math.unit(7, "feet"),
  1534. weight: math.unit(100, "kg"),
  1535. name: "Back",
  1536. image: {
  1537. source: "./media/characters/okuri/back.svg",
  1538. extra: 1,
  1539. bottom: 0.007
  1540. }
  1541. },
  1542. },
  1543. [
  1544. {
  1545. name: "Megamacro",
  1546. height: math.unit(100, "miles"),
  1547. default: true
  1548. },
  1549. ]
  1550. ))
  1551. characterMakers.push(() => makeCharacter(
  1552. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1553. {
  1554. front: {
  1555. height: math.unit(7, "feet"),
  1556. weight: math.unit(100, "kg"),
  1557. name: "Front",
  1558. image: {
  1559. source: "./media/characters/manny/front.svg",
  1560. extra: 1,
  1561. bottom: 0.06
  1562. }
  1563. },
  1564. back: {
  1565. height: math.unit(7, "feet"),
  1566. weight: math.unit(100, "kg"),
  1567. name: "Back",
  1568. image: {
  1569. source: "./media/characters/manny/back.svg",
  1570. extra: 1,
  1571. bottom: 0.014
  1572. }
  1573. },
  1574. },
  1575. [
  1576. {
  1577. name: "Normal",
  1578. height: math.unit(7, "feet"),
  1579. },
  1580. {
  1581. name: "Macro",
  1582. height: math.unit(78, "feet"),
  1583. default: true
  1584. },
  1585. {
  1586. name: "Macro+",
  1587. height: math.unit(300, "meters")
  1588. },
  1589. {
  1590. name: "Macro++",
  1591. height: math.unit(2400, "meters")
  1592. },
  1593. {
  1594. name: "Megamacro",
  1595. height: math.unit(5167, "meters")
  1596. },
  1597. {
  1598. name: "Gigamacro",
  1599. height: math.unit(41769, "miles")
  1600. },
  1601. ]
  1602. ))
  1603. characterMakers.push(() => makeCharacter(
  1604. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1605. {
  1606. front: {
  1607. height: math.unit(7, "feet"),
  1608. weight: math.unit(100, "kg"),
  1609. name: "Front",
  1610. image: {
  1611. source: "./media/characters/adake/front-1.svg"
  1612. }
  1613. },
  1614. frontAlt: {
  1615. height: math.unit(7, "feet"),
  1616. weight: math.unit(100, "kg"),
  1617. name: "Front (Alt)",
  1618. image: {
  1619. source: "./media/characters/adake/front-2.svg",
  1620. extra: 1,
  1621. bottom: 0.01
  1622. }
  1623. },
  1624. back: {
  1625. height: math.unit(7, "feet"),
  1626. weight: math.unit(100, "kg"),
  1627. name: "Back",
  1628. image: {
  1629. source: "./media/characters/adake/back.svg",
  1630. }
  1631. },
  1632. kneel: {
  1633. height: math.unit(5.385, "feet"),
  1634. weight: math.unit(100, "kg"),
  1635. name: "Kneeling",
  1636. image: {
  1637. source: "./media/characters/adake/kneel.svg",
  1638. bottom: 0.052
  1639. }
  1640. },
  1641. },
  1642. [
  1643. {
  1644. name: "Normal",
  1645. height: math.unit(7, "feet"),
  1646. },
  1647. {
  1648. name: "Macro",
  1649. height: math.unit(78, "feet"),
  1650. default: true
  1651. },
  1652. {
  1653. name: "Macro+",
  1654. height: math.unit(300, "meters")
  1655. },
  1656. {
  1657. name: "Macro++",
  1658. height: math.unit(2400, "meters")
  1659. },
  1660. {
  1661. name: "Megamacro",
  1662. height: math.unit(5167, "meters")
  1663. },
  1664. {
  1665. name: "Gigamacro",
  1666. height: math.unit(41769, "miles")
  1667. },
  1668. ]
  1669. ))
  1670. characterMakers.push(() => makeCharacter(
  1671. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1672. {
  1673. front: {
  1674. height: math.unit(1.65, "meters"),
  1675. weight: math.unit(50, "kg"),
  1676. name: "Front",
  1677. image: {
  1678. source: "./media/characters/elijah/front.svg",
  1679. extra: 858/830,
  1680. bottom: 95.5/953.8559
  1681. }
  1682. },
  1683. back: {
  1684. height: math.unit(1.65, "meters"),
  1685. weight: math.unit(50, "kg"),
  1686. name: "Back",
  1687. image: {
  1688. source: "./media/characters/elijah/back.svg",
  1689. extra: 895/850,
  1690. bottom: 5.3/897.956
  1691. }
  1692. },
  1693. frontNsfw: {
  1694. height: math.unit(1.65, "meters"),
  1695. weight: math.unit(50, "kg"),
  1696. name: "Front (NSFW)",
  1697. image: {
  1698. source: "./media/characters/elijah/front-nsfw.svg",
  1699. extra: 858/830,
  1700. bottom: 95.5/953.8559
  1701. }
  1702. },
  1703. backNsfw: {
  1704. height: math.unit(1.65, "meters"),
  1705. weight: math.unit(50, "kg"),
  1706. name: "Back (NSFW)",
  1707. image: {
  1708. source: "./media/characters/elijah/back-nsfw.svg",
  1709. extra: 895/850,
  1710. bottom: 5.3/897.956
  1711. }
  1712. },
  1713. dick: {
  1714. height: math.unit(1, "feet"),
  1715. name: "Dick",
  1716. image: {
  1717. source: "./media/characters/elijah/dick.svg"
  1718. }
  1719. },
  1720. beakOpen: {
  1721. height: math.unit(1.25, "feet"),
  1722. name: "Beak (Open)",
  1723. image: {
  1724. source: "./media/characters/elijah/beak-open.svg"
  1725. }
  1726. },
  1727. beakShut: {
  1728. height: math.unit(1.25, "feet"),
  1729. name: "Beak (Shut)",
  1730. image: {
  1731. source: "./media/characters/elijah/beak-shut.svg"
  1732. }
  1733. },
  1734. footFlexing: {
  1735. height: math.unit(1.61, "feet"),
  1736. name: "Foot (Flexing)",
  1737. image: {
  1738. source: "./media/characters/elijah/foot-flexing.svg"
  1739. }
  1740. },
  1741. footStepping: {
  1742. height: math.unit(1.44, "feet"),
  1743. name: "Foot (Stepping)",
  1744. image: {
  1745. source: "./media/characters/elijah/foot-stepping.svg"
  1746. }
  1747. },
  1748. plantigradeLeg: {
  1749. height: math.unit(2.34, "feet"),
  1750. name: "Plantigrade Leg",
  1751. image: {
  1752. source: "./media/characters/elijah/plantigrade-leg.svg"
  1753. }
  1754. },
  1755. plantigradeFootLeft: {
  1756. height: math.unit(0.9, "feet"),
  1757. name: "Plantigrade Foot (Left)",
  1758. image: {
  1759. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1760. }
  1761. },
  1762. plantigradeFootRight: {
  1763. height: math.unit(0.9, "feet"),
  1764. name: "Plantigrade Foot (Right)",
  1765. image: {
  1766. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1767. }
  1768. },
  1769. },
  1770. [
  1771. {
  1772. name: "Normal",
  1773. height: math.unit(1.65, "meters")
  1774. },
  1775. {
  1776. name: "Macro",
  1777. height: math.unit(55, "meters"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Macro+",
  1782. height: math.unit(105, "meters")
  1783. },
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1788. {
  1789. front: {
  1790. height: math.unit(11, "feet"),
  1791. weight: math.unit(80, "kg"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/rai/front.svg",
  1795. extra: 1,
  1796. bottom: 0.03
  1797. }
  1798. },
  1799. side: {
  1800. height: math.unit(11, "feet"),
  1801. weight: math.unit(80, "kg"),
  1802. name: "Side",
  1803. image: {
  1804. source: "./media/characters/rai/side.svg"
  1805. }
  1806. },
  1807. back: {
  1808. height: math.unit(11, "feet"),
  1809. weight: math.unit(80, "lb"),
  1810. name: "Back",
  1811. image: {
  1812. source: "./media/characters/rai/back.svg",
  1813. extra: 1,
  1814. bottom: 0.01
  1815. }
  1816. },
  1817. feral: {
  1818. height: math.unit(11, "feet"),
  1819. weight: math.unit(800, "lb"),
  1820. name: "Feral",
  1821. image: {
  1822. source: "./media/characters/rai/feral.svg",
  1823. extra: 1050 / 659,
  1824. bottom: 0.07
  1825. }
  1826. },
  1827. dragon: {
  1828. height: math.unit(23, "feet"),
  1829. weight: math.unit(50000, "lb"),
  1830. name: "Dragon",
  1831. image: {
  1832. source: "./media/characters/rai/dragon.svg",
  1833. extra: 2498/2030,
  1834. bottom: 85.2/2584
  1835. }
  1836. },
  1837. maw: {
  1838. height: math.unit(6 / 3.81416, "feet"),
  1839. name: "Maw",
  1840. image: {
  1841. source: "./media/characters/rai/maw.svg"
  1842. }
  1843. },
  1844. },
  1845. [
  1846. {
  1847. name: "Normal",
  1848. height: math.unit(11, "feet")
  1849. },
  1850. {
  1851. name: "Macro",
  1852. height: math.unit(302, "feet"),
  1853. default: true
  1854. },
  1855. ]
  1856. ))
  1857. characterMakers.push(() => makeCharacter(
  1858. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1859. {
  1860. frontDressed: {
  1861. height: math.unit(216, "feet"),
  1862. weight: math.unit(7000000, "lb"),
  1863. name: "Front (Dressed)",
  1864. image: {
  1865. source: "./media/characters/jazzy/front-dressed.svg",
  1866. extra: 2738/2651,
  1867. bottom: 41.8/2786
  1868. }
  1869. },
  1870. backDressed: {
  1871. height: math.unit(216, "feet"),
  1872. weight: math.unit(7000000, "lb"),
  1873. name: "Back (Dressed)",
  1874. image: {
  1875. source: "./media/characters/jazzy/back-dressed.svg",
  1876. extra: 2775/2673,
  1877. bottom: 36.8/2817
  1878. }
  1879. },
  1880. front: {
  1881. height: math.unit(216, "feet"),
  1882. weight: math.unit(7000000, "lb"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/jazzy/front.svg",
  1886. extra: 2738/2651,
  1887. bottom: 41.8/2786
  1888. }
  1889. },
  1890. back: {
  1891. height: math.unit(216, "feet"),
  1892. weight: math.unit(7000000, "lb"),
  1893. name: "Back",
  1894. image: {
  1895. source: "./media/characters/jazzy/back.svg",
  1896. extra: 2775/2673,
  1897. bottom: 36.8/2817
  1898. }
  1899. },
  1900. maw: {
  1901. height: math.unit(20, "feet"),
  1902. name: "Maw",
  1903. image: {
  1904. source: "./media/characters/jazzy/maw.svg"
  1905. }
  1906. },
  1907. paws: {
  1908. height: math.unit(27.5, "feet"),
  1909. name: "Paws",
  1910. image: {
  1911. source: "./media/characters/jazzy/paws.svg"
  1912. }
  1913. },
  1914. eye: {
  1915. height: math.unit(4.4, "feet"),
  1916. name: "Eye",
  1917. image: {
  1918. source: "./media/characters/jazzy/eye.svg"
  1919. }
  1920. },
  1921. droneOffense: {
  1922. height: math.unit(9.5, "inches"),
  1923. name: "Drone (Offense)",
  1924. image: {
  1925. source: "./media/characters/jazzy/drone-offense.svg"
  1926. }
  1927. },
  1928. droneRecon: {
  1929. height: math.unit(9.5, "inches"),
  1930. name: "Drone (Recon)",
  1931. image: {
  1932. source: "./media/characters/jazzy/drone-recon.svg"
  1933. }
  1934. },
  1935. droneDefense: {
  1936. height: math.unit(9.5, "inches"),
  1937. name: "Drone (Defense)",
  1938. image: {
  1939. source: "./media/characters/jazzy/drone-defense.svg"
  1940. }
  1941. },
  1942. },
  1943. [
  1944. {
  1945. name: "Macro",
  1946. height: math.unit(216, "feet"),
  1947. default: true
  1948. },
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(80, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/flamm/front.svg",
  1960. extra: 1794 / 1677,
  1961. bottom: 31.7 / 1828.5
  1962. }
  1963. },
  1964. },
  1965. [
  1966. {
  1967. name: "Normal",
  1968. height: math.unit(9.5, "feet")
  1969. },
  1970. {
  1971. name: "Macro",
  1972. height: math.unit(200, "feet"),
  1973. default: true
  1974. },
  1975. ]
  1976. ))
  1977. characterMakers.push(() => makeCharacter(
  1978. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1979. {
  1980. front: {
  1981. height: math.unit(7, "feet"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Front",
  1984. image: {
  1985. source: "./media/characters/zephiro/front.svg",
  1986. extra: 2309 / 2162,
  1987. bottom: 0.069
  1988. }
  1989. },
  1990. side: {
  1991. height: math.unit(7, "feet"),
  1992. weight: math.unit(80, "kg"),
  1993. name: "Side",
  1994. image: {
  1995. source: "./media/characters/zephiro/side.svg",
  1996. extra: 2403 / 2279,
  1997. bottom: 0.015
  1998. }
  1999. },
  2000. back: {
  2001. height: math.unit(7, "feet"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Back",
  2004. image: {
  2005. source: "./media/characters/zephiro/back.svg",
  2006. extra: 2373 / 2244,
  2007. bottom: 0.013
  2008. }
  2009. },
  2010. },
  2011. [
  2012. {
  2013. name: "Micro",
  2014. height: math.unit(3, "inches")
  2015. },
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(5 + 3 / 12, "feet"),
  2019. default: true
  2020. },
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(118, "feet")
  2024. },
  2025. ]
  2026. ))
  2027. characterMakers.push(() => makeCharacter(
  2028. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2029. {
  2030. front: {
  2031. height: math.unit(5, "feet"),
  2032. weight: math.unit(90, "kg"),
  2033. name: "Front",
  2034. image: {
  2035. source: "./media/characters/fory/front.svg",
  2036. extra: 2862 / 2674,
  2037. bottom: 180 / 3043.8
  2038. }
  2039. },
  2040. back: {
  2041. height: math.unit(5, "feet"),
  2042. weight: math.unit(90, "kg"),
  2043. name: "Back",
  2044. image: {
  2045. source: "./media/characters/fory/back.svg",
  2046. extra: 2962 / 2791,
  2047. bottom: 106 / 3071.8
  2048. }
  2049. },
  2050. foot: {
  2051. height: math.unit(2.14, "feet"),
  2052. name: "Foot",
  2053. image: {
  2054. source: "./media/characters/fory/foot.svg"
  2055. }
  2056. },
  2057. },
  2058. [
  2059. {
  2060. name: "Normal",
  2061. height: math.unit(5, "feet")
  2062. },
  2063. {
  2064. name: "Macro",
  2065. height: math.unit(50, "feet"),
  2066. default: true
  2067. },
  2068. {
  2069. name: "Megamacro",
  2070. height: math.unit(10, "miles")
  2071. },
  2072. {
  2073. name: "Gigamacro",
  2074. height: math.unit(5, "earths")
  2075. },
  2076. ]
  2077. ))
  2078. characterMakers.push(() => makeCharacter(
  2079. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2080. {
  2081. front: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(90, "kg"),
  2084. name: "Front",
  2085. image: {
  2086. source: "./media/characters/kurrikage/front.svg",
  2087. extra: 1,
  2088. bottom: 0.035
  2089. }
  2090. },
  2091. back: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(90, "lb"),
  2094. name: "Back",
  2095. image: {
  2096. source: "./media/characters/kurrikage/back.svg"
  2097. }
  2098. },
  2099. paw: {
  2100. height: math.unit(1.5, "feet"),
  2101. name: "Paw",
  2102. image: {
  2103. source: "./media/characters/kurrikage/paw.svg"
  2104. }
  2105. },
  2106. staff: {
  2107. height: math.unit(6.7, "feet"),
  2108. name: "Staff",
  2109. image: {
  2110. source: "./media/characters/kurrikage/staff.svg"
  2111. }
  2112. },
  2113. peek: {
  2114. height: math.unit(1.05, "feet"),
  2115. name: "Peeking",
  2116. image: {
  2117. source: "./media/characters/kurrikage/peek.svg",
  2118. bottom: 0.08
  2119. }
  2120. },
  2121. },
  2122. [
  2123. {
  2124. name: "Normal",
  2125. height: math.unit(12, "feet"),
  2126. default: true
  2127. },
  2128. {
  2129. name: "Big",
  2130. height: math.unit(20, "feet")
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(500, "feet")
  2135. },
  2136. {
  2137. name: "Megamacro",
  2138. height: math.unit(20, "miles")
  2139. },
  2140. ]
  2141. ))
  2142. characterMakers.push(() => makeCharacter(
  2143. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2144. {
  2145. front: {
  2146. height: math.unit(6, "feet"),
  2147. weight: math.unit(75, "kg"),
  2148. name: "Front",
  2149. image: {
  2150. source: "./media/characters/shingo/front.svg",
  2151. extra: 3511 / 3338,
  2152. bottom: 0.005
  2153. }
  2154. },
  2155. },
  2156. [
  2157. {
  2158. name: "Micro",
  2159. height: math.unit(4, "inches")
  2160. },
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(6, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(108, "feet")
  2169. }
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2174. {
  2175. side: {
  2176. height: math.unit(6, "feet"),
  2177. weight: math.unit(75, "kg"),
  2178. name: "Side",
  2179. image: {
  2180. source: "./media/characters/aigey/side.svg"
  2181. }
  2182. },
  2183. },
  2184. [
  2185. {
  2186. name: "Macro",
  2187. height: math.unit(200, "feet"),
  2188. default: true
  2189. },
  2190. {
  2191. name: "Megamacro",
  2192. height: math.unit(100, "miles")
  2193. },
  2194. ]
  2195. )
  2196. )
  2197. characterMakers.push(() => makeCharacter(
  2198. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2199. {
  2200. front: {
  2201. height: math.unit(5 + 5 / 12, "feet"),
  2202. weight: math.unit(75, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/natasha/front.svg",
  2206. extra: 859/824,
  2207. bottom: 23/879.6
  2208. }
  2209. },
  2210. frontNsfw: {
  2211. height: math.unit(5 + 5 / 12, "feet"),
  2212. weight: math.unit(75, "kg"),
  2213. name: "Front (NSFW)",
  2214. image: {
  2215. source: "./media/characters/natasha/front-nsfw.svg",
  2216. extra: 859/824,
  2217. bottom: 23/879.6
  2218. }
  2219. },
  2220. frontErect: {
  2221. height: math.unit(5 + 5 / 12, "feet"),
  2222. weight: math.unit(75, "kg"),
  2223. name: "Front (Erect)",
  2224. image: {
  2225. source: "./media/characters/natasha/front-erect.svg",
  2226. extra: 859/824,
  2227. bottom: 23/879.6
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(5 + 5 / 12, "feet"),
  2232. weight: math.unit(75, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/natasha/back.svg",
  2236. extra: 887.9/852.6,
  2237. bottom: 9.7/896.4
  2238. }
  2239. },
  2240. backAlt: {
  2241. height: math.unit(5 + 5 / 12, "feet"),
  2242. weight: math.unit(75, "kg"),
  2243. name: "Back (Alt)",
  2244. image: {
  2245. source: "./media/characters/natasha/back-alt.svg",
  2246. extra: 1236.7/1192,
  2247. bottom: 22.3/1258.2
  2248. }
  2249. },
  2250. dick: {
  2251. height: math.unit(1.772, "feet"),
  2252. name: "Dick",
  2253. image: {
  2254. source: "./media/characters/natasha/dick.svg"
  2255. }
  2256. },
  2257. },
  2258. [
  2259. {
  2260. name: "Normal",
  2261. height: math.unit(5 + 5 / 12, "feet")
  2262. },
  2263. {
  2264. name: "Large",
  2265. height: math.unit(12, "feet")
  2266. },
  2267. {
  2268. name: "Macro",
  2269. height: math.unit(100, "feet"),
  2270. default: true
  2271. },
  2272. {
  2273. name: "Macro+",
  2274. height: math.unit(260, "feet")
  2275. },
  2276. {
  2277. name: "Macro++",
  2278. height: math.unit(1, "mile")
  2279. },
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2284. {
  2285. front: {
  2286. height: math.unit(6, "feet"),
  2287. weight: math.unit(75, "kg"),
  2288. name: "Front",
  2289. image: {
  2290. source: "./media/characters/malik/front.svg"
  2291. }
  2292. },
  2293. side: {
  2294. height: math.unit(6, "feet"),
  2295. weight: math.unit(75, "kg"),
  2296. name: "Side",
  2297. image: {
  2298. source: "./media/characters/malik/side.svg",
  2299. extra: 1.1539
  2300. }
  2301. },
  2302. back: {
  2303. height: math.unit(6, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Back",
  2306. image: {
  2307. source: "./media/characters/malik/back.svg"
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(156, "feet"),
  2315. default: true
  2316. },
  2317. {
  2318. name: "Macro+",
  2319. height: math.unit(1188, "feet")
  2320. },
  2321. ]
  2322. ))
  2323. characterMakers.push(() => makeCharacter(
  2324. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2325. {
  2326. front: {
  2327. height: math.unit(6, "feet"),
  2328. weight: math.unit(75, "kg"),
  2329. name: "Front",
  2330. image: {
  2331. source: "./media/characters/sefer/front.svg"
  2332. }
  2333. },
  2334. back: {
  2335. height: math.unit(6, "feet"),
  2336. weight: math.unit(75, "kg"),
  2337. name: "Back",
  2338. image: {
  2339. source: "./media/characters/sefer/back.svg"
  2340. }
  2341. },
  2342. },
  2343. [
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(6, "feet"),
  2347. default: true
  2348. },
  2349. ]
  2350. ))
  2351. characterMakers.push(() => makeCharacter(
  2352. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2353. {
  2354. body: {
  2355. height: math.unit(2.2428, "meter"),
  2356. weight: math.unit(124.738, "kg"),
  2357. name: "Body",
  2358. image: {
  2359. extra: 1225 / 1050,
  2360. source: "./media/characters/north/front.svg"
  2361. }
  2362. }
  2363. },
  2364. [
  2365. {
  2366. name: "Micro",
  2367. height: math.unit(4, "inches")
  2368. },
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(63, "meters")
  2372. },
  2373. {
  2374. name: "Megamacro",
  2375. height: math.unit(101, "miles"),
  2376. default: true
  2377. }
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2382. {
  2383. angled: {
  2384. height: math.unit(4, "meter"),
  2385. weight: math.unit(150, "kg"),
  2386. name: "Angled",
  2387. image: {
  2388. source: "./media/characters/talan/angled-sfw.svg",
  2389. bottom: 29 / 3734
  2390. }
  2391. },
  2392. angledNsfw: {
  2393. height: math.unit(4, "meter"),
  2394. weight: math.unit(150, "kg"),
  2395. name: "Angled (NSFW)",
  2396. image: {
  2397. source: "./media/characters/talan/angled-nsfw.svg",
  2398. bottom: 29 / 3734
  2399. }
  2400. },
  2401. frontNsfw: {
  2402. height: math.unit(4, "meter"),
  2403. weight: math.unit(150, "kg"),
  2404. name: "Front (NSFW)",
  2405. image: {
  2406. source: "./media/characters/talan/front-nsfw.svg",
  2407. bottom: 29 / 3734
  2408. }
  2409. },
  2410. sideNsfw: {
  2411. height: math.unit(4, "meter"),
  2412. weight: math.unit(150, "kg"),
  2413. name: "Side (NSFW)",
  2414. image: {
  2415. source: "./media/characters/talan/side-nsfw.svg",
  2416. bottom: 29 / 3734
  2417. }
  2418. },
  2419. back: {
  2420. height: math.unit(4, "meter"),
  2421. weight: math.unit(150, "kg"),
  2422. name: "Back",
  2423. image: {
  2424. source: "./media/characters/talan/back.svg"
  2425. }
  2426. },
  2427. dickBottom: {
  2428. height: math.unit(0.621, "meter"),
  2429. name: "Dick (Bottom)",
  2430. image: {
  2431. source: "./media/characters/talan/dick-bottom.svg"
  2432. }
  2433. },
  2434. dickTop: {
  2435. height: math.unit(0.621, "meter"),
  2436. name: "Dick (Top)",
  2437. image: {
  2438. source: "./media/characters/talan/dick-top.svg"
  2439. }
  2440. },
  2441. dickSide: {
  2442. height: math.unit(0.305, "meter"),
  2443. name: "Dick (Side)",
  2444. image: {
  2445. source: "./media/characters/talan/dick-side.svg"
  2446. }
  2447. },
  2448. dickFront: {
  2449. height: math.unit(0.305, "meter"),
  2450. name: "Dick (Front)",
  2451. image: {
  2452. source: "./media/characters/talan/dick-front.svg"
  2453. }
  2454. },
  2455. },
  2456. [
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(4, "meters")
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(100, "meters")
  2464. },
  2465. {
  2466. name: "Megamacro",
  2467. height: math.unit(2, "miles"),
  2468. default: true
  2469. },
  2470. {
  2471. name: "Gigamacro",
  2472. height: math.unit(5000, "miles")
  2473. },
  2474. {
  2475. name: "Teramacro",
  2476. height: math.unit(100, "parsecs")
  2477. }
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2482. {
  2483. front: {
  2484. height: math.unit(2, "meter"),
  2485. weight: math.unit(90, "kg"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/gael'rathus/front.svg"
  2489. }
  2490. },
  2491. frontAlt: {
  2492. height: math.unit(2, "meter"),
  2493. weight: math.unit(90, "kg"),
  2494. name: "Front (alt)",
  2495. image: {
  2496. source: "./media/characters/gael'rathus/front-alt.svg"
  2497. }
  2498. },
  2499. frontAlt2: {
  2500. height: math.unit(2, "meter"),
  2501. weight: math.unit(90, "kg"),
  2502. name: "Front (alt 2)",
  2503. image: {
  2504. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2505. }
  2506. }
  2507. },
  2508. [
  2509. {
  2510. name: "Normal",
  2511. height: math.unit(9, "feet"),
  2512. default: true
  2513. },
  2514. {
  2515. name: "Large",
  2516. height: math.unit(25, "feet")
  2517. },
  2518. {
  2519. name: "Macro",
  2520. height: math.unit(0.25, "miles")
  2521. },
  2522. {
  2523. name: "Megamacro",
  2524. height: math.unit(10, "miles")
  2525. }
  2526. ]
  2527. ))
  2528. characterMakers.push(() => makeCharacter(
  2529. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2530. {
  2531. side: {
  2532. height: math.unit(2, "meter"),
  2533. weight: math.unit(140, "kg"),
  2534. name: "Side",
  2535. image: {
  2536. source: "./media/characters/sosha/side.svg",
  2537. bottom: 0.042
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Normal",
  2544. height: math.unit(12, "feet"),
  2545. default: true
  2546. }
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2551. {
  2552. side: {
  2553. height: math.unit(5 + 5 / 12, "feet"),
  2554. weight: math.unit(170, "kg"),
  2555. name: "Side",
  2556. image: {
  2557. source: "./media/characters/runnola/side.svg",
  2558. extra: 741 / 448,
  2559. bottom: 0.05
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Small",
  2566. height: math.unit(3, "feet")
  2567. },
  2568. {
  2569. name: "Normal",
  2570. height: math.unit(5 + 5 / 12, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Big",
  2575. height: math.unit(10, "feet")
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2581. {
  2582. front: {
  2583. height: math.unit(2, "meter"),
  2584. weight: math.unit(50, "kg"),
  2585. name: "Front",
  2586. image: {
  2587. source: "./media/characters/kurribird/front.svg",
  2588. bottom: 0.015
  2589. }
  2590. },
  2591. frontAlt: {
  2592. height: math.unit(1.5, "meter"),
  2593. weight: math.unit(50, "kg"),
  2594. name: "Front (Alt)",
  2595. image: {
  2596. source: "./media/characters/kurribird/front-alt.svg",
  2597. extra: 1.45
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(7, "feet")
  2605. },
  2606. {
  2607. name: "Big",
  2608. height: math.unit(12, "feet"),
  2609. default: true
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(1500, "feet")
  2614. },
  2615. {
  2616. name: "Megamacro",
  2617. height: math.unit(2, "miles")
  2618. }
  2619. ]
  2620. ))
  2621. characterMakers.push(() => makeCharacter(
  2622. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  2623. {
  2624. front: {
  2625. height: math.unit(2, "meter"),
  2626. weight: math.unit(80, "kg"),
  2627. name: "Front",
  2628. image: {
  2629. source: "./media/characters/elbial/front.svg",
  2630. extra: 1643 / 1556,
  2631. bottom: 60.2 / 1696
  2632. }
  2633. },
  2634. side: {
  2635. height: math.unit(2, "meter"),
  2636. weight: math.unit(80, "kg"),
  2637. name: "Side",
  2638. image: {
  2639. source: "./media/characters/elbial/side.svg",
  2640. extra: 1630 / 1565,
  2641. bottom: 71.5 / 1697
  2642. }
  2643. },
  2644. back: {
  2645. height: math.unit(2, "meter"),
  2646. weight: math.unit(80, "kg"),
  2647. name: "Back",
  2648. image: {
  2649. source: "./media/characters/elbial/back.svg",
  2650. extra: 1668 / 1595,
  2651. bottom: 5.6 / 1672
  2652. }
  2653. },
  2654. frontDressed: {
  2655. height: math.unit(2, "meter"),
  2656. weight: math.unit(80, "kg"),
  2657. name: "Front (Dressed)",
  2658. image: {
  2659. source: "./media/characters/elbial/front-dressed.svg",
  2660. extra: 1653 / 1584,
  2661. bottom: 57 / 1708
  2662. }
  2663. },
  2664. genitals: {
  2665. height: math.unit(2 / 3.367, "meter"),
  2666. name: "Genitals",
  2667. image: {
  2668. source: "./media/characters/elbial/genitals.svg"
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Large",
  2675. height: math.unit(100, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(500, "feet"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(10, "miles")
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(25000, "miles")
  2689. },
  2690. {
  2691. name: "Full-Size",
  2692. height: math.unit(8000000, "gigaparsecs")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(60, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/noah/front.svg"
  2705. }
  2706. },
  2707. talons: {
  2708. height: math.unit(0.315, "meter"),
  2709. name: "Talons",
  2710. image: {
  2711. source: "./media/characters/noah/talons.svg"
  2712. }
  2713. }
  2714. },
  2715. [
  2716. {
  2717. name: "Large",
  2718. height: math.unit(50, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(750, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(50, "miles")
  2728. },
  2729. {
  2730. name: "Gigamacro",
  2731. height: math.unit(100000, "miles")
  2732. },
  2733. {
  2734. name: "Full-Size",
  2735. height: math.unit(3000000000, "miles")
  2736. }
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2741. {
  2742. front: {
  2743. height: math.unit(2, "meter"),
  2744. weight: math.unit(80, "kg"),
  2745. name: "Front",
  2746. image: {
  2747. source: "./media/characters/natalya/front.svg"
  2748. }
  2749. },
  2750. back: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(80, "kg"),
  2753. name: "Back",
  2754. image: {
  2755. source: "./media/characters/natalya/back.svg"
  2756. }
  2757. }
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(150, "feet"),
  2763. default: true
  2764. },
  2765. {
  2766. name: "Megamacro",
  2767. height: math.unit(5, "miles")
  2768. },
  2769. {
  2770. name: "Full-Size",
  2771. height: math.unit(600, "kiloparsecs")
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(50, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/erestrebah/front.svg",
  2784. extra: 208 / 193,
  2785. bottom: 0.055
  2786. }
  2787. },
  2788. back: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(50, "kg"),
  2791. name: "Back",
  2792. image: {
  2793. source: "./media/characters/erestrebah/back.svg",
  2794. extra: 1.3
  2795. }
  2796. }
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(10, "feet")
  2802. },
  2803. {
  2804. name: "Large",
  2805. height: math.unit(50, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(300, "feet")
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(750, "feet")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(3, "miles")
  2819. }
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/jennifer/front.svg",
  2831. bottom: 0.11,
  2832. extra: 1.16
  2833. }
  2834. },
  2835. frontAlt: {
  2836. height: math.unit(2, "meter"),
  2837. weight: math.unit(80, "kg"),
  2838. name: "Front (Alt)",
  2839. image: {
  2840. source: "./media/characters/jennifer/front-alt.svg"
  2841. }
  2842. }
  2843. },
  2844. [
  2845. {
  2846. name: "Canon Height",
  2847. height: math.unit(120, "feet"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Macro+",
  2852. height: math.unit(300, "feet")
  2853. },
  2854. {
  2855. name: "Megamacro",
  2856. height: math.unit(20000, "feet")
  2857. }
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/kalista/front.svg",
  2869. extra: 1947 / 1700,
  2870. bottom: 76.6/1412.98
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(2, "meter"),
  2875. weight: math.unit(50, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/kalista/back.svg",
  2879. extra: 1366 / 1156,
  2880. bottom: 33.9/1362.78
  2881. }
  2882. }
  2883. },
  2884. [
  2885. {
  2886. name: "Uncomfortably Small",
  2887. height: math.unit(10, "feet")
  2888. },
  2889. {
  2890. name: "Small",
  2891. height: math.unit(30, "feet")
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(100, "feet"),
  2896. default: true
  2897. },
  2898. {
  2899. name: "Macro+",
  2900. height: math.unit(2000, "feet")
  2901. },
  2902. {
  2903. name: "True Form",
  2904. height: math.unit(8924, "miles")
  2905. }
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2910. {
  2911. front: {
  2912. height: math.unit(2, "meter"),
  2913. weight: math.unit(120, "kg"),
  2914. name: "Front",
  2915. image: {
  2916. source: "./media/characters/ggv/front.svg"
  2917. }
  2918. },
  2919. side: {
  2920. height: math.unit(2, "meter"),
  2921. weight: math.unit(120, "kg"),
  2922. name: "Side",
  2923. image: {
  2924. source: "./media/characters/ggv/side.svg"
  2925. }
  2926. }
  2927. },
  2928. [
  2929. {
  2930. name: "Extremely Puny",
  2931. height: math.unit(9 + 5 / 12, "feet")
  2932. },
  2933. {
  2934. name: "Horribly Small",
  2935. height: math.unit(47.7, "miles"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Reasonably Sized",
  2940. height: math.unit(25000, "parsecs")
  2941. },
  2942. {
  2943. name: "Slightly Uncompressed",
  2944. height: math.unit(7.77e31, "parsecs")
  2945. },
  2946. {
  2947. name: "Omniversal",
  2948. height: math.unit(1e300, "meters")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(75, "lb"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/napalm/front.svg"
  2961. }
  2962. },
  2963. back: {
  2964. height: math.unit(2, "meter"),
  2965. weight: math.unit(75, "lb"),
  2966. name: "Back",
  2967. image: {
  2968. source: "./media/characters/napalm/back.svg"
  2969. }
  2970. }
  2971. },
  2972. [
  2973. {
  2974. name: "Standard",
  2975. height: math.unit(55, "feet"),
  2976. default: true
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(7 + 5 / 6, "feet"),
  2985. weight: math.unit(325, "lb"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/asana/front.svg",
  2989. extra: 1128 / 1068
  2990. }
  2991. },
  2992. back: {
  2993. height: math.unit(7 + 5 / 6, "feet"),
  2994. weight: math.unit(325, "lb"),
  2995. name: "Back",
  2996. image: {
  2997. source: "./media/characters/asana/back.svg",
  2998. extra: 1128 / 1068
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Standard",
  3005. height: math.unit(7 + 5 / 6, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(10, "meters")
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(2500, "meters")
  3015. },
  3016. {
  3017. name: "Megamacro",
  3018. height: math.unit(5e6, "meters")
  3019. },
  3020. {
  3021. name: "Examacro",
  3022. height: math.unit(5e12, "lightyears")
  3023. },
  3024. {
  3025. name: "Max Size",
  3026. height: math.unit(1e31, "lightyears")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(60, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/ebony/front.svg",
  3039. bottom: 0.03,
  3040. extra: 1045 / 810 + 0.03
  3041. }
  3042. },
  3043. side: {
  3044. height: math.unit(2, "meter"),
  3045. weight: math.unit(60, "kg"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/ebony/side.svg",
  3049. bottom: 0.03,
  3050. extra: 1045 / 810 + 0.03
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(60, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/ebony/back.svg",
  3059. bottom: 0.01,
  3060. extra: 1045 / 810 + 0.01
  3061. }
  3062. },
  3063. },
  3064. [
  3065. // TODO check why I did this lol
  3066. {
  3067. name: "Standard",
  3068. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Macro",
  3073. height: math.unit(200, "feet")
  3074. },
  3075. {
  3076. name: "Gigamacro",
  3077. height: math.unit(13000, "km")
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3083. {
  3084. front: {
  3085. height: math.unit(6, "feet"),
  3086. weight: math.unit(175, "lb"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/mountain/front.svg"
  3090. }
  3091. },
  3092. back: {
  3093. height: math.unit(6, "feet"),
  3094. weight: math.unit(175, "lb"),
  3095. name: "Back",
  3096. image: {
  3097. source: "./media/characters/mountain/back.svg"
  3098. }
  3099. },
  3100. },
  3101. [
  3102. {
  3103. name: "Large",
  3104. height: math.unit(20, "meters")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(300, "meters")
  3109. },
  3110. {
  3111. name: "Gigamacro",
  3112. height: math.unit(10000, "km"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Examacro",
  3117. height: math.unit(10e9, "lightyears")
  3118. }
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(8, "feet"),
  3126. weight: math.unit(500, "lb"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/rick/front.svg"
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Normal",
  3136. height: math.unit(8, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(5, "km")
  3142. }
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3147. {
  3148. front: {
  3149. height: math.unit(8, "feet"),
  3150. weight: math.unit(120, "lb"),
  3151. name: "Front",
  3152. image: {
  3153. source: "./media/characters/ona/front.svg"
  3154. }
  3155. },
  3156. frontAlt: {
  3157. height: math.unit(8, "feet"),
  3158. weight: math.unit(120, "lb"),
  3159. name: "Front (Alt)",
  3160. image: {
  3161. source: "./media/characters/ona/front-alt.svg"
  3162. }
  3163. },
  3164. back: {
  3165. height: math.unit(8, "feet"),
  3166. weight: math.unit(120, "lb"),
  3167. name: "Back",
  3168. image: {
  3169. source: "./media/characters/ona/back.svg"
  3170. }
  3171. },
  3172. foot: {
  3173. height: math.unit(1.1, "feet"),
  3174. name: "Foot",
  3175. image: {
  3176. source: "./media/characters/ona/foot.svg"
  3177. }
  3178. }
  3179. },
  3180. [
  3181. {
  3182. name: "Megamacro",
  3183. height: math.unit(70, "km"),
  3184. default: true
  3185. },
  3186. {
  3187. name: "Gigamacro",
  3188. height: math.unit(681818, "miles")
  3189. },
  3190. {
  3191. name: "Examacro",
  3192. height: math.unit(3800000, "lightyears")
  3193. },
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(12, "feet"),
  3201. weight: math.unit(3000, "lb"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/mech/front.svg",
  3205. bottom: 0.025,
  3206. }
  3207. },
  3208. back: {
  3209. height: math.unit(12, "feet"),
  3210. weight: math.unit(3000, "lb"),
  3211. name: "Back",
  3212. image: {
  3213. source: "./media/characters/mech/back.svg",
  3214. bottom: 0.03,
  3215. }
  3216. }
  3217. },
  3218. [
  3219. {
  3220. name: "Normal",
  3221. height: math.unit(12, "feet")
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(300, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Macro+",
  3230. height: math.unit(1500, "feet")
  3231. },
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3236. {
  3237. front: {
  3238. height: math.unit(1.3, "meter"),
  3239. weight: math.unit(30, "kg"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/gregory/front.svg",
  3243. }
  3244. }
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(1.3, "meter"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Macro",
  3254. height: math.unit(20, "meter")
  3255. }
  3256. ]
  3257. ))
  3258. characterMakers.push(() => makeCharacter(
  3259. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3260. {
  3261. front: {
  3262. height: math.unit(2.8, "meter"),
  3263. weight: math.unit(200, "kg"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/elory/front.svg",
  3267. }
  3268. }
  3269. },
  3270. [
  3271. {
  3272. name: "Normal",
  3273. height: math.unit(2.8, "meter"),
  3274. default: true
  3275. },
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(38, "meter")
  3279. }
  3280. ]
  3281. ))
  3282. characterMakers.push(() => makeCharacter(
  3283. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  3284. {
  3285. front: {
  3286. height: math.unit(470, "feet"),
  3287. weight: math.unit(924, "tons"),
  3288. name: "Front",
  3289. image: {
  3290. source: "./media/characters/angelpatamon/front.svg",
  3291. }
  3292. }
  3293. },
  3294. [
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(470, "feet"),
  3298. default: true
  3299. },
  3300. {
  3301. name: "Deity Size I",
  3302. height: math.unit(28651.2, "km")
  3303. },
  3304. {
  3305. name: "Deity Size II",
  3306. height: math.unit(171907.2, "km")
  3307. }
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3312. {
  3313. side: {
  3314. height: math.unit(7.2, "meter"),
  3315. weight: math.unit(8.2, "tons"),
  3316. name: "Side",
  3317. image: {
  3318. source: "./media/characters/cryae/side.svg",
  3319. extra: 3500 / 1500
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(7.2, "meter"),
  3327. default: true
  3328. }
  3329. ]
  3330. ))
  3331. characterMakers.push(() => makeCharacter(
  3332. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3333. {
  3334. front: {
  3335. height: math.unit(6, "feet"),
  3336. weight: math.unit(175, "lb"),
  3337. name: "Front",
  3338. image: {
  3339. source: "./media/characters/xera/front.svg",
  3340. extra: 2300 / 2061
  3341. }
  3342. },
  3343. side: {
  3344. height: math.unit(6, "feet"),
  3345. weight: math.unit(175, "lb"),
  3346. name: "Side",
  3347. image: {
  3348. source: "./media/characters/xera/side.svg",
  3349. extra: 2300 / 2061
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(175, "lb"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/xera/back.svg"
  3358. }
  3359. },
  3360. },
  3361. [
  3362. {
  3363. name: "Small",
  3364. height: math.unit(10, "feet")
  3365. },
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(500, "meters"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Macro+",
  3373. height: math.unit(10, "km")
  3374. },
  3375. {
  3376. name: "Gigamacro",
  3377. height: math.unit(25000, "km")
  3378. },
  3379. {
  3380. name: "Teramacro",
  3381. height: math.unit(3e6, "km")
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3387. {
  3388. front: {
  3389. height: math.unit(6, "feet"),
  3390. weight: math.unit(175, "lb"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/nebula/front.svg",
  3394. extra: 2600 / 2450
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Small",
  3401. height: math.unit(4.5, "meters")
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(1500, "meters"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(150, "km")
  3411. },
  3412. {
  3413. name: "Gigamacro",
  3414. height: math.unit(27000, "km")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(6, "feet"),
  3423. weight: math.unit(225, "lb"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/abysgar/front.svg"
  3427. }
  3428. }
  3429. },
  3430. [
  3431. {
  3432. name: "Small",
  3433. height: math.unit(4.5, "meters")
  3434. },
  3435. {
  3436. name: "Macro",
  3437. height: math.unit(1250, "meters"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Megamacro",
  3442. height: math.unit(125, "km")
  3443. },
  3444. {
  3445. name: "Gigamacro",
  3446. height: math.unit(26000, "km")
  3447. }
  3448. ]
  3449. ))
  3450. characterMakers.push(() => makeCharacter(
  3451. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3452. {
  3453. front: {
  3454. height: math.unit(6, "feet"),
  3455. weight: math.unit(180, "lb"),
  3456. name: "Front",
  3457. image: {
  3458. source: "./media/characters/yakuz/front.svg"
  3459. }
  3460. }
  3461. },
  3462. [
  3463. {
  3464. name: "Small",
  3465. height: math.unit(5, "meters")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(1500, "meters"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Megamacro",
  3474. height: math.unit(200, "km")
  3475. },
  3476. {
  3477. name: "Gigamacro",
  3478. height: math.unit(100000, "km")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3484. {
  3485. front: {
  3486. height: math.unit(6, "feet"),
  3487. weight: math.unit(175, "lb"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/mirova/front.svg"
  3491. }
  3492. }
  3493. },
  3494. [
  3495. {
  3496. name: "Small",
  3497. height: math.unit(5, "meters")
  3498. },
  3499. {
  3500. name: "Macro",
  3501. height: math.unit(900, "meters"),
  3502. default: true
  3503. },
  3504. {
  3505. name: "Megamacro",
  3506. height: math.unit(135, "km")
  3507. },
  3508. {
  3509. name: "Gigamacro",
  3510. height: math.unit(20000, "km")
  3511. }
  3512. ]
  3513. ))
  3514. characterMakers.push(() => makeCharacter(
  3515. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3516. {
  3517. side: {
  3518. height: math.unit(28.35, "feet"),
  3519. weight: math.unit(99.75, "tons"),
  3520. name: "Side",
  3521. image: {
  3522. source: "./media/characters/asana-mech/side.svg"
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(28.35, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(2500, "feet")
  3535. },
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(25, "miles")
  3539. },
  3540. {
  3541. name: "Examacro",
  3542. height: math.unit(6e8, "lightyears")
  3543. },
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meters"),
  3551. weight: math.unit(70, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/ashtrek/front.svg",
  3555. extra: 560 / 524,
  3556. bottom: 0.01
  3557. }
  3558. },
  3559. frontArmor: {
  3560. height: math.unit(2, "meters"),
  3561. weight: math.unit(76, "kg"),
  3562. name: "Front (Armor)",
  3563. image: {
  3564. source: "./media/characters/ashtrek/front-armor.svg",
  3565. extra: 561 / 527,
  3566. bottom: 0.01
  3567. }
  3568. },
  3569. side: {
  3570. height: math.unit(2, "meters"),
  3571. weight: math.unit(70, "kg"),
  3572. name: "Side",
  3573. image: {
  3574. source: "./media/characters/ashtrek/side.svg",
  3575. extra: 1717 / 1609,
  3576. bottom: 0.005
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(2, "meters"),
  3581. weight: math.unit(70, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/ashtrek/back.svg",
  3585. extra: 1570 / 1501
  3586. }
  3587. },
  3588. },
  3589. [
  3590. {
  3591. name: "DEFCON 5",
  3592. height: math.unit(5, "meters")
  3593. },
  3594. {
  3595. name: "DEFCON 4",
  3596. height: math.unit(500, "meters"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "DEFCON 3",
  3601. height: math.unit(5, "km")
  3602. },
  3603. {
  3604. name: "DEFCON 2",
  3605. height: math.unit(500, "km")
  3606. },
  3607. {
  3608. name: "DEFCON 1",
  3609. height: math.unit(500000, "km")
  3610. },
  3611. {
  3612. name: "DEFCON 0",
  3613. height: math.unit(3, "gigaparsecs")
  3614. },
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3619. {
  3620. front: {
  3621. height: math.unit(2, "meters"),
  3622. weight: math.unit(76, "kg"),
  3623. name: "Front",
  3624. image: {
  3625. source: "./media/characters/gale/front.svg"
  3626. }
  3627. },
  3628. frontAlt1: {
  3629. height: math.unit(2, "meters"),
  3630. weight: math.unit(76, "kg"),
  3631. name: "Front (Alt 1)",
  3632. image: {
  3633. source: "./media/characters/gale/front-alt-1.svg"
  3634. }
  3635. },
  3636. frontAlt2: {
  3637. height: math.unit(2, "meters"),
  3638. weight: math.unit(76, "kg"),
  3639. name: "Front (Alt 2)",
  3640. image: {
  3641. source: "./media/characters/gale/front-alt-2.svg"
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(7, "feet")
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(150, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro+",
  3657. height: math.unit(300, "feet")
  3658. },
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3663. {
  3664. front: {
  3665. height: math.unit(2, "meters"),
  3666. weight: math.unit(76, "kg"),
  3667. name: "Front",
  3668. image: {
  3669. source: "./media/characters/draylen/front.svg"
  3670. }
  3671. }
  3672. },
  3673. [
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(150, "feet"),
  3677. default: true
  3678. }
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3683. {
  3684. front: {
  3685. height: math.unit(7 + 9 / 12, "feet"),
  3686. weight: math.unit(379, "lbs"),
  3687. name: "Front",
  3688. image: {
  3689. source: "./media/characters/chez/front.svg"
  3690. }
  3691. },
  3692. side: {
  3693. height: math.unit(7 + 9 / 12, "feet"),
  3694. weight: math.unit(379, "lbs"),
  3695. name: "Side",
  3696. image: {
  3697. source: "./media/characters/chez/side.svg"
  3698. }
  3699. }
  3700. },
  3701. [
  3702. {
  3703. name: "Normal",
  3704. height: math.unit(7 + 9 / 12, "feet"),
  3705. default: true
  3706. },
  3707. {
  3708. name: "God King",
  3709. height: math.unit(9750000, "meters")
  3710. }
  3711. ]
  3712. ))
  3713. characterMakers.push(() => makeCharacter(
  3714. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3715. {
  3716. front: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(275, "lbs"),
  3719. name: "Front",
  3720. image: {
  3721. source: "./media/characters/kaylum/front.svg",
  3722. bottom: 0.01,
  3723. extra: 1166 / 1031
  3724. }
  3725. },
  3726. frontWingless: {
  3727. height: math.unit(6, "feet"),
  3728. weight: math.unit(275, "lbs"),
  3729. name: "Front (Wingless)",
  3730. image: {
  3731. source: "./media/characters/kaylum/front-wingless.svg",
  3732. bottom: 0.01,
  3733. extra: 1117 / 1031
  3734. }
  3735. }
  3736. },
  3737. [
  3738. {
  3739. name: "Normal",
  3740. height: math.unit(3.05, "meters")
  3741. },
  3742. {
  3743. name: "Master",
  3744. height: math.unit(5.5, "meters")
  3745. },
  3746. {
  3747. name: "Rampage",
  3748. height: math.unit(19, "meters")
  3749. },
  3750. {
  3751. name: "Macro Lite",
  3752. height: math.unit(37, "meters")
  3753. },
  3754. {
  3755. name: "Hyper Predator",
  3756. height: math.unit(61, "meters")
  3757. },
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(138, "meters"),
  3761. default: true
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(150, "lbs"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/geta/front.svg"
  3774. }
  3775. }
  3776. },
  3777. [
  3778. {
  3779. name: "Micro",
  3780. height: math.unit(3, "inches"),
  3781. default: true
  3782. },
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(5 + 5 / 12, "feet")
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(300, "lbs"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/tyrnn/front.svg"
  3798. }
  3799. }
  3800. },
  3801. [
  3802. {
  3803. name: "Main Height",
  3804. height: math.unit(355, "feet"),
  3805. default: true
  3806. },
  3807. {
  3808. name: "Fave. Height",
  3809. height: math.unit(2400, "feet")
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3815. {
  3816. front: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(300, "lbs"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/appledectomy/front.svg"
  3822. }
  3823. }
  3824. },
  3825. [
  3826. {
  3827. name: "Macro",
  3828. height: math.unit(2500, "feet")
  3829. },
  3830. {
  3831. name: "Megamacro",
  3832. height: math.unit(50, "miles"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Gigamacro",
  3837. height: math.unit(5000, "miles")
  3838. },
  3839. {
  3840. name: "Teramacro",
  3841. height: math.unit(250000, "miles")
  3842. },
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3847. {
  3848. front: {
  3849. height: math.unit(6, "feet"),
  3850. weight: math.unit(200, "lbs"),
  3851. name: "Front",
  3852. image: {
  3853. source: "./media/characters/vulpes/front.svg",
  3854. extra: 573 / 543,
  3855. bottom: 0.033
  3856. }
  3857. },
  3858. side: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(200, "lbs"),
  3861. name: "Side",
  3862. image: {
  3863. source: "./media/characters/vulpes/side.svg",
  3864. extra: 573 / 543,
  3865. bottom: 0.01
  3866. }
  3867. },
  3868. back: {
  3869. height: math.unit(6, "feet"),
  3870. weight: math.unit(200, "lbs"),
  3871. name: "Back",
  3872. image: {
  3873. source: "./media/characters/vulpes/back.svg",
  3874. extra: 573 / 543,
  3875. }
  3876. },
  3877. feet: {
  3878. height: math.unit(1.276, "feet"),
  3879. name: "Feet",
  3880. image: {
  3881. source: "./media/characters/vulpes/feet.svg"
  3882. }
  3883. },
  3884. maw: {
  3885. height: math.unit(1.18, "feet"),
  3886. name: "Maw",
  3887. image: {
  3888. source: "./media/characters/vulpes/maw.svg"
  3889. }
  3890. },
  3891. },
  3892. [
  3893. {
  3894. name: "Micro",
  3895. height: math.unit(2, "inches")
  3896. },
  3897. {
  3898. name: "Normal",
  3899. height: math.unit(6.3, "feet")
  3900. },
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(850, "feet")
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(7500, "feet"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Gigamacro",
  3912. height: math.unit(570000, "miles")
  3913. }
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3918. {
  3919. front: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(210, "lbs"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/rain-fallen/front.svg"
  3925. }
  3926. },
  3927. side: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(210, "lbs"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/rain-fallen/side.svg"
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(210, "lbs"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/rain-fallen/back.svg"
  3941. }
  3942. },
  3943. feral: {
  3944. height: math.unit(9, "feet"),
  3945. weight: math.unit(700, "lbs"),
  3946. name: "Feral",
  3947. image: {
  3948. source: "./media/characters/rain-fallen/feral.svg"
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(5, "meter")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(150, "meter"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Megamacro",
  3964. height: math.unit(278e6, "meter")
  3965. },
  3966. {
  3967. name: "Gigamacro",
  3968. height: math.unit(2e9, "meter")
  3969. },
  3970. {
  3971. name: "Teramacro",
  3972. height: math.unit(8e12, "meter")
  3973. },
  3974. {
  3975. name: "Devourer",
  3976. height: math.unit(14, "zettameters")
  3977. },
  3978. {
  3979. name: "Scarlet King",
  3980. height: math.unit(18, "yottameters")
  3981. },
  3982. {
  3983. name: "Void",
  3984. height: math.unit(6.66e66, "yottameters")
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3990. {
  3991. standing: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(180, "lbs"),
  3994. name: "Standing",
  3995. image: {
  3996. source: "./media/characters/zaakira/standing.svg"
  3997. }
  3998. },
  3999. laying: {
  4000. height: math.unit(3, "feet"),
  4001. weight: math.unit(180, "lbs"),
  4002. name: "Laying",
  4003. image: {
  4004. source: "./media/characters/zaakira/laying.svg"
  4005. }
  4006. },
  4007. },
  4008. [
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(12, "feet")
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(279, "feet"),
  4016. default: true
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(250, "lbs"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/sigvald/front.svg",
  4029. extra: 1000 / 850
  4030. }
  4031. },
  4032. back: {
  4033. height: math.unit(6, "feet"),
  4034. weight: math.unit(250, "lbs"),
  4035. name: "Back",
  4036. image: {
  4037. source: "./media/characters/sigvald/back.svg"
  4038. }
  4039. },
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(8, "feet")
  4045. },
  4046. {
  4047. name: "Large",
  4048. height: math.unit(12, "feet")
  4049. },
  4050. {
  4051. name: "Larger",
  4052. height: math.unit(20, "feet")
  4053. },
  4054. {
  4055. name: "Macro",
  4056. height: math.unit(150, "feet")
  4057. },
  4058. {
  4059. name: "Macro+",
  4060. height: math.unit(200, "feet"),
  4061. default: true
  4062. },
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4067. {
  4068. side: {
  4069. height: math.unit(12, "feet"),
  4070. weight: math.unit(2000, "kg"),
  4071. name: "Side",
  4072. image: {
  4073. source: "./media/characters/scott/side.svg",
  4074. extra: 754/724,
  4075. bottom: 0.069
  4076. }
  4077. },
  4078. upright: {
  4079. height: math.unit(12, "feet"),
  4080. weight: math.unit(2000, "kg"),
  4081. name: "Upright",
  4082. image: {
  4083. source: "./media/characters/scott/upright.svg",
  4084. extra: 3881/3722,
  4085. bottom: 0.05
  4086. }
  4087. },
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(12, "feet"),
  4093. default: true
  4094. },
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4099. {
  4100. side: {
  4101. height: math.unit(8, "meters"),
  4102. weight: math.unit(84755, "lbs"),
  4103. name: "Side",
  4104. image: {
  4105. source: "./media/characters/tobias/side.svg",
  4106. extra: 1474 / 1096,
  4107. bottom: 38.9 / 1513.1235
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Normal",
  4114. height: math.unit(8, "meters"),
  4115. default: true
  4116. },
  4117. ]
  4118. ))
  4119. characterMakers.push(() => makeCharacter(
  4120. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4121. {
  4122. front: {
  4123. height: math.unit(5.5, "feet"),
  4124. weight: math.unit(400, "lbs"),
  4125. name: "Front",
  4126. image: {
  4127. source: "./media/characters/kieran/front.svg",
  4128. extra: 2694/2364,
  4129. bottom: 217/2908
  4130. }
  4131. },
  4132. side: {
  4133. height: math.unit(5.5, "feet"),
  4134. weight: math.unit(400, "lbs"),
  4135. name: "Side",
  4136. image: {
  4137. source: "./media/characters/kieran/side.svg",
  4138. extra: 875/777,
  4139. bottom: 84.6/959
  4140. }
  4141. },
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(5.5, "feet"),
  4147. default: true
  4148. },
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4153. {
  4154. side: {
  4155. height: math.unit(2, "meters"),
  4156. weight: math.unit(70, "kg"),
  4157. name: "Side",
  4158. image: {
  4159. source: "./media/characters/sanya/side.svg",
  4160. bottom: 0.02,
  4161. extra: 1.02
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Small",
  4168. height: math.unit(2, "meters")
  4169. },
  4170. {
  4171. name: "Normal",
  4172. height: math.unit(3, "meters")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(16, "meters"),
  4177. default: true
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. side: {
  4185. height: math.unit(2, "meters"),
  4186. weight: math.unit(120, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/miranda/front.svg",
  4190. extra: 10.6 / 10
  4191. }
  4192. },
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(10, "feet"),
  4198. default: true
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "James", species: ["deer"], tags: ["anthro"] },
  4204. {
  4205. side: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(100, "kg"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/james/front.svg",
  4211. extra: 10 / 8.5
  4212. }
  4213. },
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(8.5, "feet"),
  4219. default: true
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4225. {
  4226. side: {
  4227. height: math.unit(9.5, "feet"),
  4228. weight: math.unit(2500, "lbs"),
  4229. name: "Side",
  4230. image: {
  4231. source: "./media/characters/heather/side.svg"
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(9.5, "feet"),
  4239. default: true
  4240. }
  4241. ]
  4242. ))
  4243. characterMakers.push(() => makeCharacter(
  4244. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4245. {
  4246. side: {
  4247. height: math.unit(6.5, "feet"),
  4248. weight: math.unit(400, "lbs"),
  4249. name: "Side",
  4250. image: {
  4251. source: "./media/characters/lukas/side.svg",
  4252. extra: 7.25 / 6.5
  4253. }
  4254. },
  4255. },
  4256. [
  4257. {
  4258. name: "Normal",
  4259. height: math.unit(6.5, "feet"),
  4260. default: true
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4266. {
  4267. side: {
  4268. height: math.unit(5, "feet"),
  4269. weight: math.unit(3000, "lbs"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/louise/side.svg"
  4273. }
  4274. },
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(5, "feet"),
  4280. default: true
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4286. {
  4287. side: {
  4288. height: math.unit(6, "feet"),
  4289. weight: math.unit(150, "lbs"),
  4290. name: "Side",
  4291. image: {
  4292. source: "./media/characters/ramona/side.svg"
  4293. }
  4294. },
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(5.3, "meters"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(20, "stories")
  4305. },
  4306. {
  4307. name: "Macro+",
  4308. height: math.unit(50, "stories")
  4309. },
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4314. {
  4315. standing: {
  4316. height: math.unit(5.75, "feet"),
  4317. weight: math.unit(160, "lbs"),
  4318. name: "Standing",
  4319. image: {
  4320. source: "./media/characters/deerpuff/standing.svg",
  4321. extra: 682 / 624
  4322. }
  4323. },
  4324. sitting: {
  4325. height: math.unit(5.75 / 1.79, "feet"),
  4326. weight: math.unit(160, "lbs"),
  4327. name: "Sitting",
  4328. image: {
  4329. source: "./media/characters/deerpuff/sitting.svg",
  4330. bottom: 44 / 400,
  4331. extra: 1
  4332. }
  4333. },
  4334. taurLaying: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(400, "lbs"),
  4337. name: "Taur (Laying)",
  4338. image: {
  4339. source: "./media/characters/deerpuff/taur-laying.svg"
  4340. }
  4341. },
  4342. },
  4343. [
  4344. {
  4345. name: "Puffball",
  4346. height: math.unit(6, "inches")
  4347. },
  4348. {
  4349. name: "Normalpuff",
  4350. height: math.unit(5.75, "feet")
  4351. },
  4352. {
  4353. name: "Macropuff",
  4354. height: math.unit(1500, "feet"),
  4355. default: true
  4356. },
  4357. {
  4358. name: "Megapuff",
  4359. height: math.unit(500, "miles")
  4360. },
  4361. {
  4362. name: "Gigapuff",
  4363. height: math.unit(250000, "miles")
  4364. },
  4365. {
  4366. name: "Omegapuff",
  4367. height: math.unit(1000, "lightyears")
  4368. },
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4373. {
  4374. stomping: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(170, "lbs"),
  4377. name: "Stomping",
  4378. image: {
  4379. source: "./media/characters/vivian/stomping.svg"
  4380. }
  4381. },
  4382. sitting: {
  4383. height: math.unit(6 / 1.75, "feet"),
  4384. weight: math.unit(170, "lbs"),
  4385. name: "Sitting",
  4386. image: {
  4387. source: "./media/characters/vivian/sitting.svg",
  4388. bottom: 1 / 6.4,
  4389. extra: 1,
  4390. }
  4391. },
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(7, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Macro",
  4401. height: math.unit(10, "stories")
  4402. },
  4403. {
  4404. name: "Macro+",
  4405. height: math.unit(30, "stories")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(10, "miles")
  4410. },
  4411. {
  4412. name: "Megamacro+",
  4413. height: math.unit(2750000, "meters")
  4414. },
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(160, "lbs"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/prince/front.svg",
  4426. extra: 3400 / 3000
  4427. }
  4428. },
  4429. jumping: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(160, "lbs"),
  4432. name: "Jumping",
  4433. image: {
  4434. source: "./media/characters/prince/jump.svg",
  4435. extra: 2555 / 2134
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Normal",
  4442. height: math.unit(7.75, "feet"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Not cute",
  4447. height: math.unit(17, "feet")
  4448. },
  4449. {
  4450. name: "I said NOT",
  4451. height: math.unit(91, "feet")
  4452. },
  4453. {
  4454. name: "Please stop",
  4455. height: math.unit(560, "feet")
  4456. },
  4457. {
  4458. name: "What have you done",
  4459. height: math.unit(2200, "feet")
  4460. },
  4461. {
  4462. name: "Deer God",
  4463. height: math.unit(3.6, "miles")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4469. {
  4470. standing: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(300, "lbs"),
  4473. name: "Standing",
  4474. image: {
  4475. source: "./media/characters/psymon/standing.svg",
  4476. extra: 1888 / 1810,
  4477. bottom: 0.05
  4478. }
  4479. },
  4480. slithering: {
  4481. height: math.unit(6, "feet"),
  4482. weight: math.unit(300, "lbs"),
  4483. name: "Slithering",
  4484. image: {
  4485. source: "./media/characters/psymon/slithering.svg",
  4486. extra: 1330 / 1224
  4487. }
  4488. },
  4489. slitheringAlt: {
  4490. height: math.unit(6, "feet"),
  4491. weight: math.unit(300, "lbs"),
  4492. name: "Slithering (Alt)",
  4493. image: {
  4494. source: "./media/characters/psymon/slithering-alt.svg",
  4495. extra: 1330 / 1224
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(11.25, "feet"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Large",
  4507. height: math.unit(27, "feet")
  4508. },
  4509. {
  4510. name: "Giant",
  4511. height: math.unit(87, "feet")
  4512. },
  4513. {
  4514. name: "Macro",
  4515. height: math.unit(365, "feet")
  4516. },
  4517. {
  4518. name: "Megamacro",
  4519. height: math.unit(3, "miles")
  4520. },
  4521. {
  4522. name: "World Serpent",
  4523. height: math.unit(8000, "miles")
  4524. },
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4529. {
  4530. front: {
  4531. height: math.unit(6, "feet"),
  4532. weight: math.unit(180, "lbs"),
  4533. name: "Front",
  4534. image: {
  4535. source: "./media/characters/daimos/front.svg",
  4536. extra: 4160 / 3897,
  4537. bottom: 0.021
  4538. }
  4539. }
  4540. },
  4541. [
  4542. {
  4543. name: "Normal",
  4544. height: math.unit(8, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Big Dog",
  4549. height: math.unit(22, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(127, "feet")
  4554. },
  4555. {
  4556. name: "Megamacro",
  4557. height: math.unit(3600, "feet")
  4558. },
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4563. {
  4564. side: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(180, "lbs"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/blake/side.svg",
  4570. extra: 1212 / 1120,
  4571. bottom: 0.05
  4572. }
  4573. },
  4574. crouched: {
  4575. height: math.unit(6 * 0.57, "feet"),
  4576. weight: math.unit(180, "lbs"),
  4577. name: "Crouched",
  4578. image: {
  4579. source: "./media/characters/blake/crouched.svg",
  4580. extra: 840 / 587,
  4581. bottom: 0.04
  4582. }
  4583. },
  4584. bent: {
  4585. height: math.unit(6 * 0.75, "feet"),
  4586. weight: math.unit(180, "lbs"),
  4587. name: "Bent",
  4588. image: {
  4589. source: "./media/characters/blake/bent.svg",
  4590. extra: 592 / 544,
  4591. bottom: 0.035
  4592. }
  4593. },
  4594. },
  4595. [
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(8 + 1 / 6, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Big Backside",
  4603. height: math.unit(37, "feet")
  4604. },
  4605. {
  4606. name: "Subway Shredder",
  4607. height: math.unit(72, "feet")
  4608. },
  4609. {
  4610. name: "City Carver",
  4611. height: math.unit(1675, "feet")
  4612. },
  4613. {
  4614. name: "Tectonic Tweaker",
  4615. height: math.unit(2300, "miles")
  4616. },
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4621. {
  4622. front: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(180, "lbs"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/guisetto/front.svg",
  4628. extra: 856 / 817,
  4629. bottom: 0.06
  4630. }
  4631. },
  4632. airborne: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(180, "lbs"),
  4635. name: "Airborne",
  4636. image: {
  4637. source: "./media/characters/guisetto/airborne.svg",
  4638. extra: 584 / 525
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(10 + 11 / 12, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Large",
  4650. height: math.unit(35, "feet")
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(475, "feet")
  4655. },
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4660. {
  4661. front: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(180, "lbs"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/luxor/front.svg",
  4667. extra: 2940 / 2152
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/luxor/back.svg",
  4676. extra: 1083 / 960
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(5 + 5 / 6, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Lamp",
  4688. height: math.unit(50, "feet")
  4689. },
  4690. {
  4691. name: "Lämp",
  4692. height: math.unit(300, "feet")
  4693. },
  4694. {
  4695. name: "The sun is a lamp",
  4696. height: math.unit(250000, "miles")
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(50, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/huoyan/front.svg"
  4709. }
  4710. },
  4711. side: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(180, "lbs"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/huoyan/side.svg"
  4717. }
  4718. },
  4719. },
  4720. [
  4721. {
  4722. name: "Chef",
  4723. height: math.unit(9, "feet")
  4724. },
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(65, "feet"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(780, "feet")
  4733. },
  4734. {
  4735. name: "Flaming Mountain",
  4736. height: math.unit(4.8, "miles")
  4737. },
  4738. {
  4739. name: "Celestial",
  4740. height: math.unit(765000, "miles")
  4741. },
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(5 + 3 / 4, "feet"),
  4749. weight: math.unit(120, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/tails/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Normal",
  4759. height: math.unit(5 + 3 / 4, "feet"),
  4760. default: true
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(4, "feet"),
  4769. weight: math.unit(50, "lbs"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/rainy/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(800, "feet"),
  4780. default: true
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(150, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/rainier/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Micro",
  4799. height: math.unit(2, "mm"),
  4800. default: true
  4801. }
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(180, "lbs"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/andy/front.svg"
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(8, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(1000, "feet")
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(5, "miles")
  4829. },
  4830. {
  4831. name: "Gigamacro",
  4832. height: math.unit(5000, "miles")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/cimmaron/front-sfw.svg",
  4845. extra: 701 / 676,
  4846. bottom: 0.046
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(210, "lbs"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/cimmaron/back-sfw.svg",
  4855. extra: 701 / 676,
  4856. bottom: 0.046
  4857. }
  4858. },
  4859. frontNsfw: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(210, "lbs"),
  4862. name: "Front (NSFW)",
  4863. image: {
  4864. source: "./media/characters/cimmaron/front-nsfw.svg",
  4865. extra: 701 / 676,
  4866. bottom: 0.046
  4867. }
  4868. },
  4869. backNsfw: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(210, "lbs"),
  4872. name: "Back (NSFW)",
  4873. image: {
  4874. source: "./media/characters/cimmaron/back-nsfw.svg",
  4875. extra: 701 / 676,
  4876. bottom: 0.046
  4877. }
  4878. },
  4879. dick: {
  4880. height: math.unit(1.714, "feet"),
  4881. name: "Dick",
  4882. image: {
  4883. source: "./media/characters/cimmaron/dick.svg"
  4884. }
  4885. },
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(6, "feet"),
  4891. default: true
  4892. },
  4893. {
  4894. name: "Macro Mayor",
  4895. height: math.unit(350, "meters")
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4901. {
  4902. front: {
  4903. height: math.unit(6, "feet"),
  4904. weight: math.unit(200, "lbs"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/akari/front.svg",
  4908. extra: 962 / 901,
  4909. bottom: 0.04
  4910. }
  4911. }
  4912. },
  4913. [
  4914. {
  4915. name: "Micro",
  4916. height: math.unit(5, "inches"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(7, "feet")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(140, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/cynosura/front.svg",
  4934. extra: 896 / 847
  4935. }
  4936. },
  4937. back: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(140, "lbs"),
  4940. name: "Back",
  4941. image: {
  4942. source: "./media/characters/cynosura/back.svg",
  4943. extra: 1365 / 1250
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Micro",
  4950. height: math.unit(4, "inches")
  4951. },
  4952. {
  4953. name: "Normal",
  4954. height: math.unit(5.75, "feet"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Tall",
  4959. height: math.unit(10, "feet")
  4960. },
  4961. {
  4962. name: "Big",
  4963. height: math.unit(20, "feet")
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(50, "feet")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(170, "lbs"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/gin/front.svg",
  4980. extra: 1.053,
  4981. bottom: 0.025
  4982. }
  4983. },
  4984. foot: {
  4985. height: math.unit(6 / 4.25, "feet"),
  4986. name: "Foot",
  4987. image: {
  4988. source: "./media/characters/gin/foot.svg"
  4989. }
  4990. },
  4991. sole: {
  4992. height: math.unit(6 / 4.40, "feet"),
  4993. name: "Sole",
  4994. image: {
  4995. source: "./media/characters/gin/sole.svg"
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(13 + 2/12, "feet")
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(1500, "feet")
  5007. },
  5008. {
  5009. name: "Megamacro",
  5010. height: math.unit(200, "miles"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Gigamacro",
  5015. height: math.unit(500, "megameters")
  5016. },
  5017. {
  5018. name: "Teramacro",
  5019. height: math.unit(15, "lightyears")
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(6 + 1 / 6, "feet"),
  5028. weight: math.unit(178, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/guy/front.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(6 + 1 / 6, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Large",
  5043. height: math.unit(25 + 7 / 12, "feet")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(60 + 9 / 12, "feet")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(246, "feet")
  5052. },
  5053. {
  5054. name: "Macro++",
  5055. height: math.unit(878, "feet")
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(9, "feet"),
  5064. weight: math.unit(800, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/tiberius/front.svg",
  5068. extra: 2295 / 2071
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(9, "feet"),
  5073. weight: math.unit(800, "lbs"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/tiberius/back.svg",
  5077. extra: 2373 / 2160
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(9, "feet"),
  5085. default: true
  5086. }
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5091. {
  5092. front: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(600, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/surgo/front.svg",
  5098. extra: 3591 / 2227
  5099. }
  5100. },
  5101. back: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(600, "lbs"),
  5104. name: "Back",
  5105. image: {
  5106. source: "./media/characters/surgo/back.svg",
  5107. extra: 3557 / 2228
  5108. }
  5109. },
  5110. laying: {
  5111. height: math.unit(6 * 0.85, "feet"),
  5112. weight: math.unit(600, "lbs"),
  5113. name: "Laying",
  5114. image: {
  5115. source: "./media/characters/surgo/laying.svg"
  5116. }
  5117. },
  5118. },
  5119. [
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(6, "feet"),
  5123. default: true
  5124. }
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5129. {
  5130. side: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(150, "lbs"),
  5133. name: "Side",
  5134. image: {
  5135. source: "./media/characters/cibus/side.svg",
  5136. extra: 800 / 400
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(6, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5150. {
  5151. front: {
  5152. height: math.unit(6, "feet"),
  5153. weight: math.unit(240, "lbs"),
  5154. name: "Front",
  5155. image: {
  5156. source: "./media/characters/nibbles/front.svg"
  5157. }
  5158. },
  5159. side: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(240, "lbs"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/nibbles/side.svg"
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(9, "feet"),
  5172. default: true
  5173. }
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5178. {
  5179. side: {
  5180. height: math.unit(5 + 1 / 6, "feet"),
  5181. weight: math.unit(130, "lbs"),
  5182. name: "Side",
  5183. image: {
  5184. source: "./media/characters/rikky/side.svg"
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(5 + 1 / 6, "feet")
  5192. },
  5193. {
  5194. name: "Macro",
  5195. height: math.unit(152, "feet"),
  5196. default: true
  5197. },
  5198. {
  5199. name: "Megamacro",
  5200. height: math.unit(7, "miles")
  5201. }
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5206. {
  5207. side: {
  5208. height: math.unit(370, "cm"),
  5209. weight: math.unit(350, "lbs"),
  5210. name: "Side",
  5211. image: {
  5212. source: "./media/characters/malfressa/side.svg"
  5213. }
  5214. },
  5215. walking: {
  5216. height: math.unit(370, "cm"),
  5217. weight: math.unit(350, "lbs"),
  5218. name: "Walking",
  5219. image: {
  5220. source: "./media/characters/malfressa/walking.svg"
  5221. }
  5222. },
  5223. feral: {
  5224. height: math.unit(2500, "cm"),
  5225. weight: math.unit(100000, "lbs"),
  5226. name: "Feral",
  5227. image: {
  5228. source: "./media/characters/malfressa/feral.svg",
  5229. extra: 2108 / 837,
  5230. bottom: 0.02
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(370, "cm")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(300, "meters"),
  5242. default: true
  5243. }
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(60, "kg"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/jaro/front.svg"
  5255. }
  5256. },
  5257. back: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(60, "kg"),
  5260. name: "Back",
  5261. image: {
  5262. source: "./media/characters/jaro/back.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Micro",
  5269. height: math.unit(7, "inches")
  5270. },
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5.5, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Minimacro",
  5278. height: math.unit(20, "feet")
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(200, "meters")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(195, "lb"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/rogue/front.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(90, "feet"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(5 + 8 / 12, "feet"),
  5311. weight: math.unit(140, "lb"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/piper/front.svg",
  5315. extra: 3928 / 3681
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Micro",
  5322. height: math.unit(2, "inches")
  5323. },
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(5 + 8 / 12, "feet")
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(250, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Megamacro",
  5335. height: math.unit(7, "miles")
  5336. },
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5341. {
  5342. front: {
  5343. height: math.unit(6, "feet"),
  5344. weight: math.unit(220, "lb"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/gemini/front.svg"
  5348. }
  5349. },
  5350. back: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(220, "lb"),
  5353. name: "Back",
  5354. image: {
  5355. source: "./media/characters/gemini/back.svg"
  5356. }
  5357. },
  5358. kneeling: {
  5359. height: math.unit(6 / 1.5, "feet"),
  5360. weight: math.unit(220, "lb"),
  5361. name: "Kneeling",
  5362. image: {
  5363. source: "./media/characters/gemini/kneeling.svg",
  5364. bottom: 0.02
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Macro",
  5371. height: math.unit(300, "meters"),
  5372. default: true
  5373. },
  5374. {
  5375. name: "Megamacro",
  5376. height: math.unit(6900, "meters")
  5377. },
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5382. {
  5383. anthro: {
  5384. height: math.unit(2.35, "meters"),
  5385. weight: math.unit(73, "kg"),
  5386. name: "Anthro",
  5387. image: {
  5388. source: "./media/characters/alicia/anthro.svg",
  5389. extra: 2571/2385,
  5390. bottom: 75/2648
  5391. }
  5392. },
  5393. paw: {
  5394. height: math.unit(1.32, "feet"),
  5395. name: "Paw",
  5396. image: {
  5397. source: "./media/characters/alicia/paw.svg"
  5398. }
  5399. },
  5400. feral: {
  5401. height: math.unit(1.69, "meters"),
  5402. weight: math.unit(73, "kg"),
  5403. name: "Feral",
  5404. image: {
  5405. source: "./media/characters/alicia/feral.svg",
  5406. extra: 2123/1715,
  5407. bottom: 222/2349
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(2.35, "meters")
  5415. },
  5416. {
  5417. name: "Macro",
  5418. height: math.unit(60, "meters"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Megamacro",
  5423. height: math.unit(10000, "kilometers")
  5424. },
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5429. {
  5430. front: {
  5431. height: math.unit(7, "feet"),
  5432. weight: math.unit(250, "lbs"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/archy/front.svg"
  5436. }
  5437. }
  5438. },
  5439. [
  5440. {
  5441. name: "Micro",
  5442. height: math.unit(1, "inch")
  5443. },
  5444. {
  5445. name: "Shorty",
  5446. height: math.unit(5, "feet")
  5447. },
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(7, "feet")
  5451. },
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(600, "meters"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(1, "mile")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(1.65, "meters"),
  5468. weight: math.unit(74, "kg"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/berri/front.svg",
  5472. extra: 857/837,
  5473. bottom: 18/877
  5474. }
  5475. },
  5476. bum: {
  5477. height: math.unit(1.46, "feet"),
  5478. name: "Bum",
  5479. image: {
  5480. source: "./media/characters/berri/bum.svg"
  5481. }
  5482. },
  5483. mouth: {
  5484. height: math.unit(0.44, "feet"),
  5485. name: "Mouth",
  5486. image: {
  5487. source: "./media/characters/berri/mouth.svg"
  5488. }
  5489. },
  5490. paw: {
  5491. height: math.unit(0.826, "feet"),
  5492. name: "Paw",
  5493. image: {
  5494. source: "./media/characters/berri/paw.svg"
  5495. }
  5496. },
  5497. },
  5498. [
  5499. {
  5500. name: "Normal",
  5501. height: math.unit(1.65, "meters")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(60, "m"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(9.213, "km")
  5511. },
  5512. {
  5513. name: "Planet Eater",
  5514. height: math.unit(489, "megameters")
  5515. },
  5516. {
  5517. name: "Teramacro",
  5518. height: math.unit(2471635000000, "meters")
  5519. },
  5520. {
  5521. name: "Examacro",
  5522. height: math.unit(8.0624e+26, "meters")
  5523. }
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5528. {
  5529. front: {
  5530. height: math.unit(1.72, "meters"),
  5531. weight: math.unit(68, "kg"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/lexi/front.svg"
  5535. }
  5536. }
  5537. },
  5538. [
  5539. {
  5540. name: "Very Smol",
  5541. height: math.unit(10, "mm")
  5542. },
  5543. {
  5544. name: "Micro",
  5545. height: math.unit(6.8, "cm"),
  5546. default: true
  5547. },
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(1.72, "m")
  5551. }
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(1.69, "meters"),
  5559. weight: math.unit(68, "kg"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/martin/front.svg",
  5563. extra: 596 / 581
  5564. }
  5565. }
  5566. },
  5567. [
  5568. {
  5569. name: "Micro",
  5570. height: math.unit(6.85, "cm"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(1.69, "m")
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(1.69, "meters"),
  5584. weight: math.unit(68, "kg"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/juno/front.svg"
  5588. }
  5589. }
  5590. },
  5591. [
  5592. {
  5593. name: "Micro",
  5594. height: math.unit(7, "cm")
  5595. },
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(1.89, "m")
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(353, "meters"),
  5603. default: true
  5604. }
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  5609. {
  5610. front: {
  5611. height: math.unit(1.93, "meters"),
  5612. weight: math.unit(83, "kg"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/samantha/front.svg"
  5616. }
  5617. },
  5618. frontClothed: {
  5619. height: math.unit(1.93, "meters"),
  5620. weight: math.unit(83, "kg"),
  5621. name: "Front (Clothed)",
  5622. image: {
  5623. source: "./media/characters/samantha/front-clothed.svg"
  5624. }
  5625. },
  5626. back: {
  5627. height: math.unit(1.93, "meters"),
  5628. weight: math.unit(83, "kg"),
  5629. name: "Back",
  5630. image: {
  5631. source: "./media/characters/samantha/back.svg"
  5632. }
  5633. },
  5634. },
  5635. [
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(1.93, "m")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(74, "meters"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Macro+",
  5647. height: math.unit(223, "meters"),
  5648. },
  5649. {
  5650. name: "Megamacro",
  5651. height: math.unit(8381, "meters"),
  5652. },
  5653. {
  5654. name: "Megamacro+",
  5655. height: math.unit(12000, "kilometers")
  5656. },
  5657. ]
  5658. ))
  5659. characterMakers.push(() => makeCharacter(
  5660. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5661. {
  5662. front: {
  5663. height: math.unit(1.92, "meters"),
  5664. weight: math.unit(80, "kg"),
  5665. name: "Front",
  5666. image: {
  5667. source: "./media/characters/dr-clay/front.svg"
  5668. }
  5669. },
  5670. frontClothed: {
  5671. height: math.unit(1.92, "meters"),
  5672. weight: math.unit(80, "kg"),
  5673. name: "Front (Clothed)",
  5674. image: {
  5675. source: "./media/characters/dr-clay/front-clothed.svg"
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(1.92, "m")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(214, "meters"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Macro+",
  5691. height: math.unit(12.237, "meters"),
  5692. },
  5693. {
  5694. name: "Megamacro",
  5695. height: math.unit(557, "megameters"),
  5696. },
  5697. {
  5698. name: "Unimaginable",
  5699. height: math.unit(120e9, "lightyears")
  5700. },
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5705. {
  5706. front: {
  5707. height: math.unit(2, "meters"),
  5708. weight: math.unit(80, "kg"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5712. }
  5713. }
  5714. },
  5715. [
  5716. {
  5717. name: "Teramacro",
  5718. height: math.unit(500000, "lightyears"),
  5719. default: true
  5720. },
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(2, "meters"),
  5728. weight: math.unit(150, "kg"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/vemus/front.svg",
  5732. extra: 2384 / 2084,
  5733. bottom: 0.0123
  5734. }
  5735. }
  5736. },
  5737. [
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(3.75, "meters"),
  5741. default: true
  5742. },
  5743. {
  5744. name: "Big",
  5745. height: math.unit(8, "meters")
  5746. },
  5747. {
  5748. name: "Macro",
  5749. height: math.unit(100, "meters")
  5750. },
  5751. {
  5752. name: "Macro+",
  5753. height: math.unit(1500, "meters")
  5754. },
  5755. {
  5756. name: "Stellar",
  5757. height: math.unit(14e8, "meters")
  5758. },
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5763. {
  5764. front: {
  5765. height: math.unit(2, "meters"),
  5766. weight: math.unit(70, "kg"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/beherit/front.svg",
  5770. extra: 1408 / 1242
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(6, "feet")
  5778. },
  5779. {
  5780. name: "Lorg",
  5781. height: math.unit(25, "feet"),
  5782. default: true
  5783. },
  5784. {
  5785. name: "Lorger",
  5786. height: math.unit(75, "feet")
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(200, "meters")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(2, "meters"),
  5799. weight: math.unit(150, "kg"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/everett/front.svg",
  5803. extra: 2038 / 1737,
  5804. bottom: 0.03
  5805. }
  5806. },
  5807. paw: {
  5808. height: math.unit(2 / 3.6, "meters"),
  5809. name: "Paw",
  5810. image: {
  5811. source: "./media/characters/everett/paw.svg"
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(15, "feet"),
  5819. default: true
  5820. },
  5821. {
  5822. name: "Lorg",
  5823. height: math.unit(70, "feet"),
  5824. default: true
  5825. },
  5826. {
  5827. name: "Lorger",
  5828. height: math.unit(250, "feet")
  5829. },
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(500, "meters")
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5838. {
  5839. front: {
  5840. height: math.unit(2, "meters"),
  5841. weight: math.unit(86, "kg"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/rose-lion/front.svg"
  5845. }
  5846. },
  5847. bent: {
  5848. height: math.unit(2 / 1.4288, "meters"),
  5849. weight: math.unit(86, "kg"),
  5850. name: "Bent",
  5851. image: {
  5852. source: "./media/characters/rose-lion/bent.svg"
  5853. }
  5854. }
  5855. },
  5856. [
  5857. {
  5858. name: "Mini-Micro",
  5859. height: math.unit(1, "cm")
  5860. },
  5861. {
  5862. name: "Micro",
  5863. height: math.unit(3.5, "inches"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(6 + 1 / 6, "feet")
  5869. },
  5870. {
  5871. name: "Mini-Macro",
  5872. height: math.unit(9 + 10 / 12, "feet")
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5878. {
  5879. front: {
  5880. height: math.unit(2, "meters"),
  5881. weight: math.unit(350, "lbs"),
  5882. name: "Front",
  5883. image: {
  5884. source: "./media/characters/regal/front.svg"
  5885. }
  5886. },
  5887. back: {
  5888. height: math.unit(2, "meters"),
  5889. weight: math.unit(350, "lbs"),
  5890. name: "Back",
  5891. image: {
  5892. source: "./media/characters/regal/back.svg"
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Macro",
  5899. height: math.unit(350, "feet"),
  5900. default: true
  5901. }
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(4 + 11 / 12, "feet"),
  5909. weight: math.unit(100, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/opal/front.svg"
  5913. }
  5914. },
  5915. frontAlt: {
  5916. height: math.unit(4 + 11 / 12, "feet"),
  5917. weight: math.unit(100, "lbs"),
  5918. name: "Front (Alt)",
  5919. image: {
  5920. source: "./media/characters/opal/front-alt.svg"
  5921. }
  5922. },
  5923. },
  5924. [
  5925. {
  5926. name: "Small",
  5927. height: math.unit(4 + 11 / 12, "feet")
  5928. },
  5929. {
  5930. name: "Normal",
  5931. height: math.unit(20, "feet"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Macro",
  5936. height: math.unit(120, "feet")
  5937. },
  5938. {
  5939. name: "Megamacro",
  5940. height: math.unit(80, "miles")
  5941. },
  5942. {
  5943. name: "True Size",
  5944. height: math.unit(100000, "lightyears")
  5945. },
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5950. {
  5951. front: {
  5952. height: math.unit(6, "feet"),
  5953. weight: math.unit(200, "lbs"),
  5954. name: "Front",
  5955. image: {
  5956. source: "./media/characters/vector-wuff/front.svg"
  5957. }
  5958. }
  5959. },
  5960. [
  5961. {
  5962. name: "Normal",
  5963. height: math.unit(2.8, "meters")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(450, "meters"),
  5968. default: true
  5969. },
  5970. {
  5971. name: "Megamacro",
  5972. height: math.unit(15, "kilometers")
  5973. }
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5978. {
  5979. front: {
  5980. height: math.unit(6, "feet"),
  5981. weight: math.unit(256, "lbs"),
  5982. name: "Front",
  5983. image: {
  5984. source: "./media/characters/dannik/front.svg"
  5985. }
  5986. }
  5987. },
  5988. [
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(69.57, "meters"),
  5992. default: true
  5993. },
  5994. ]
  5995. ))
  5996. characterMakers.push(() => makeCharacter(
  5997. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  5998. {
  5999. front: {
  6000. height: math.unit(6, "feet"),
  6001. weight: math.unit(120, "lbs"),
  6002. name: "Front",
  6003. image: {
  6004. source: "./media/characters/azura-saharah/front.svg"
  6005. }
  6006. },
  6007. back: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(120, "lbs"),
  6010. name: "Back",
  6011. image: {
  6012. source: "./media/characters/azura-saharah/back.svg"
  6013. }
  6014. },
  6015. },
  6016. [
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(100, "feet"),
  6020. default: true
  6021. },
  6022. ]
  6023. ))
  6024. characterMakers.push(() => makeCharacter(
  6025. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6026. {
  6027. side: {
  6028. height: math.unit(5 + 4 / 12, "feet"),
  6029. weight: math.unit(163, "lbs"),
  6030. name: "Side",
  6031. image: {
  6032. source: "./media/characters/kennedy/side.svg"
  6033. }
  6034. }
  6035. },
  6036. [
  6037. {
  6038. name: "Standard Doggo",
  6039. height: math.unit(5 + 4 / 12, "feet")
  6040. },
  6041. {
  6042. name: "Big Doggo",
  6043. height: math.unit(25 + 3 / 12, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6050. {
  6051. front: {
  6052. height: math.unit(6, "feet"),
  6053. weight: math.unit(90, "lbs"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/odi-lunar/front.svg"
  6057. }
  6058. }
  6059. },
  6060. [
  6061. {
  6062. name: "Micro",
  6063. height: math.unit(3, "inches"),
  6064. default: true
  6065. },
  6066. {
  6067. name: "Normal",
  6068. height: math.unit(5.5, "feet")
  6069. }
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6074. {
  6075. back: {
  6076. height: math.unit(6, "feet"),
  6077. weight: math.unit(220, "lbs"),
  6078. name: "Back",
  6079. image: {
  6080. source: "./media/characters/mandake/back.svg"
  6081. }
  6082. }
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(7, "feet"),
  6088. default: true
  6089. },
  6090. {
  6091. name: "Macro",
  6092. height: math.unit(78, "feet")
  6093. },
  6094. {
  6095. name: "Macro+",
  6096. height: math.unit(300, "meters")
  6097. },
  6098. {
  6099. name: "Macro++",
  6100. height: math.unit(2400, "feet")
  6101. },
  6102. {
  6103. name: "Megamacro",
  6104. height: math.unit(5167, "meters")
  6105. },
  6106. {
  6107. name: "Gigamacro",
  6108. height: math.unit(41769, "miles")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6114. {
  6115. front: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(120, "lbs"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/yozey/front.svg"
  6121. }
  6122. },
  6123. frontAlt: {
  6124. height: math.unit(6, "feet"),
  6125. weight: math.unit(120, "lbs"),
  6126. name: "Front (Alt)",
  6127. image: {
  6128. source: "./media/characters/yozey/front-alt.svg"
  6129. }
  6130. },
  6131. side: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(120, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/yozey/side.svg"
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Micro",
  6143. height: math.unit(3, "inches"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6, "feet")
  6149. }
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6154. {
  6155. front: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(103, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/valeska-voss/front.svg"
  6161. }
  6162. }
  6163. },
  6164. [
  6165. {
  6166. name: "Mini-Sized Sub",
  6167. height: math.unit(3.1, "inches")
  6168. },
  6169. {
  6170. name: "Mid-Sized Sub",
  6171. height: math.unit(6.2, "inches")
  6172. },
  6173. {
  6174. name: "Full-Sized Sub",
  6175. height: math.unit(9.3, "inches")
  6176. },
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(5 + 2 / 12, "foot"),
  6180. default: true
  6181. },
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(160, "lbs"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/gene-zeta/front.svg",
  6193. bottom: 0.03,
  6194. extra: 1
  6195. }
  6196. }
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(6.25, "foot"),
  6202. default: true
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(350, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/razinox/front.svg",
  6215. extra: 1686 / 1548,
  6216. bottom: 28.2/1868
  6217. }
  6218. },
  6219. back: {
  6220. height: math.unit(6, "feet"),
  6221. weight: math.unit(350, "lbs"),
  6222. name: "Back",
  6223. image: {
  6224. source: "./media/characters/razinox/back.svg",
  6225. extra: 1660 / 1590,
  6226. bottom: 15/1665
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(10 + 8 / 12, "foot")
  6234. },
  6235. {
  6236. name: "Minimacro",
  6237. height: math.unit(15, "foot")
  6238. },
  6239. {
  6240. name: "Macro",
  6241. height: math.unit(60, "foot"),
  6242. default: true
  6243. },
  6244. {
  6245. name: "Megamacro",
  6246. height: math.unit(5, "miles")
  6247. },
  6248. {
  6249. name: "Gigamacro",
  6250. height: math.unit(6000, "miles")
  6251. },
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6256. {
  6257. front: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(150, "lbs"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/cobalt/front.svg"
  6263. }
  6264. }
  6265. },
  6266. [
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(8 + 1 / 12, "foot")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(111, "foot"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Supracosmic",
  6278. height: math.unit(1e42, "feet")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(140, "lbs"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/amanda/front.svg"
  6291. }
  6292. }
  6293. },
  6294. [
  6295. {
  6296. name: "Micro",
  6297. height: math.unit(5, "inches"),
  6298. default: true
  6299. },
  6300. ]
  6301. ))
  6302. characterMakers.push(() => makeCharacter(
  6303. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6304. {
  6305. front: {
  6306. height: math.unit(5.59, "feet"),
  6307. weight: math.unit(250, "lbs"),
  6308. name: "Front",
  6309. image: {
  6310. source: "./media/characters/teal/front.svg"
  6311. }
  6312. },
  6313. frontAlt: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(250, "lbs"),
  6316. name: "Front (Alt)",
  6317. image: {
  6318. source: "./media/characters/teal/front-alt.svg",
  6319. bottom: 0.04,
  6320. extra: 1
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(12, "feet"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(300, "feet")
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6338. {
  6339. frontCat: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(180, "lbs"),
  6342. name: "Front (Cat)",
  6343. image: {
  6344. source: "./media/characters/ravin-amulet/front-cat.svg"
  6345. }
  6346. },
  6347. frontCatAlt: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(180, "lbs"),
  6350. name: "Front (Alt, Cat)",
  6351. image: {
  6352. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6353. }
  6354. },
  6355. frontWerewolf: {
  6356. height: math.unit(6 * 1.2, "feet"),
  6357. weight: math.unit(225, "lbs"),
  6358. name: "Front (Werewolf)",
  6359. image: {
  6360. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6361. }
  6362. },
  6363. backWerewolf: {
  6364. height: math.unit(6 * 1.2, "feet"),
  6365. weight: math.unit(225, "lbs"),
  6366. name: "Back (Werewolf)",
  6367. image: {
  6368. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6369. }
  6370. },
  6371. },
  6372. [
  6373. {
  6374. name: "Nano",
  6375. height: math.unit(1, "micrometer")
  6376. },
  6377. {
  6378. name: "Micro",
  6379. height: math.unit(1, "inch")
  6380. },
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(6, "feet"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(60, "feet")
  6389. }
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(165, "lbs"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/fluoresce/front.svg"
  6401. }
  6402. }
  6403. },
  6404. [
  6405. {
  6406. name: "Micro",
  6407. height: math.unit(6, "cm")
  6408. },
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(5 + 7 / 12, "feet"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(56, "feet")
  6417. },
  6418. {
  6419. name: "Megamacro",
  6420. height: math.unit(1.9, "miles")
  6421. },
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(9 + 6 / 12, "feet"),
  6429. weight: math.unit(523, "lbs"),
  6430. name: "Side",
  6431. image: {
  6432. source: "./media/characters/aurora/side.svg"
  6433. }
  6434. }
  6435. },
  6436. [
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(9 + 6 / 12, "feet")
  6440. },
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(96, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Macro+",
  6448. height: math.unit(243, "feet")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(194, "cm"),
  6457. weight: math.unit(90, "kg"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/ranek/front.svg"
  6461. }
  6462. },
  6463. side: {
  6464. height: math.unit(194, "cm"),
  6465. weight: math.unit(90, "kg"),
  6466. name: "Side",
  6467. image: {
  6468. source: "./media/characters/ranek/side.svg"
  6469. }
  6470. },
  6471. back: {
  6472. height: math.unit(194, "cm"),
  6473. weight: math.unit(90, "kg"),
  6474. name: "Back",
  6475. image: {
  6476. source: "./media/characters/ranek/back.svg"
  6477. }
  6478. },
  6479. feral: {
  6480. height: math.unit(30, "cm"),
  6481. weight: math.unit(1.6, "lbs"),
  6482. name: "Feral",
  6483. image: {
  6484. source: "./media/characters/ranek/feral.svg"
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(194, "cm"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Macro",
  6496. height: math.unit(100, "meters")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(5 + 6 / 12, "feet"),
  6505. weight: math.unit(153, "lbs"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/andrew-cooper/front.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Nano",
  6515. height: math.unit(1, "mm")
  6516. },
  6517. {
  6518. name: "Micro",
  6519. height: math.unit(2, "inches")
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(5 + 6 / 12, "feet"),
  6524. default: true
  6525. }
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(180, "lbs"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/akane-sato/front.svg",
  6537. extra: 1219 / 1140
  6538. }
  6539. },
  6540. back: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(180, "lbs"),
  6543. name: "Back",
  6544. image: {
  6545. source: "./media/characters/akane-sato/back.svg",
  6546. extra: 1219 / 1170
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(2.5, "meters")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(250, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Megamacro",
  6562. height: math.unit(25, "km")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(65, "kg"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/rook/front.svg",
  6575. extra: 960/950
  6576. }
  6577. }
  6578. },
  6579. [
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(8.8, "feet")
  6583. },
  6584. {
  6585. name: "Macro",
  6586. height: math.unit(88, "feet"),
  6587. default: true
  6588. },
  6589. {
  6590. name: "Megamacro",
  6591. height: math.unit(8, "miles")
  6592. },
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(12 + 2 / 12, "feet"),
  6600. weight: math.unit(808, "lbs"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/prodigy/front.svg"
  6604. }
  6605. }
  6606. },
  6607. [
  6608. {
  6609. name: "Normal",
  6610. height: math.unit(12 + 2 / 12, "feet"),
  6611. default: true
  6612. },
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(143, "feet")
  6616. },
  6617. {
  6618. name: "Macro+",
  6619. height: math.unit(400, "feet")
  6620. },
  6621. ]
  6622. ))
  6623. characterMakers.push(() => makeCharacter(
  6624. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6625. {
  6626. front: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(225, "lbs"),
  6629. name: "Front",
  6630. image: {
  6631. source: "./media/characters/daniel/front.svg"
  6632. }
  6633. },
  6634. leaning: {
  6635. height: math.unit(6, "feet"),
  6636. weight: math.unit(225, "lbs"),
  6637. name: "Leaning",
  6638. image: {
  6639. source: "./media/characters/daniel/leaning.svg"
  6640. }
  6641. },
  6642. },
  6643. [
  6644. {
  6645. name: "Macro",
  6646. height: math.unit(1000, "feet"),
  6647. default: true
  6648. },
  6649. ]
  6650. ))
  6651. characterMakers.push(() => makeCharacter(
  6652. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6653. {
  6654. front: {
  6655. height: math.unit(6, "feet"),
  6656. weight: math.unit(88, "lbs"),
  6657. name: "Front",
  6658. image: {
  6659. source: "./media/characters/chiros/front.svg",
  6660. extra: 306 / 226
  6661. }
  6662. },
  6663. side: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(88, "lbs"),
  6666. name: "Side",
  6667. image: {
  6668. source: "./media/characters/chiros/side.svg",
  6669. extra: 306 / 226
  6670. }
  6671. },
  6672. },
  6673. [
  6674. {
  6675. name: "Normal",
  6676. height: math.unit(6, "cm"),
  6677. default: true
  6678. },
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6683. {
  6684. front: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(100, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/selka/front.svg",
  6690. extra: 947 / 887
  6691. }
  6692. }
  6693. },
  6694. [
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(5, "cm"),
  6698. default: true
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(8 + 3 / 12, "feet"),
  6707. weight: math.unit(424, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/verin/front.svg",
  6711. extra: 1845 / 1550
  6712. }
  6713. },
  6714. frontArmored: {
  6715. height: math.unit(8 + 3 / 12, "feet"),
  6716. weight: math.unit(424, "lbs"),
  6717. name: "Front (Armored)",
  6718. image: {
  6719. source: "./media/characters/verin/front-armor.svg",
  6720. extra: 1845 / 1550,
  6721. bottom: 0.01
  6722. }
  6723. },
  6724. back: {
  6725. height: math.unit(8 + 3 / 12, "feet"),
  6726. weight: math.unit(424, "lbs"),
  6727. name: "Back",
  6728. image: {
  6729. source: "./media/characters/verin/back.svg",
  6730. bottom: 0.1,
  6731. extra: 1
  6732. }
  6733. },
  6734. foot: {
  6735. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6736. name: "Foot",
  6737. image: {
  6738. source: "./media/characters/verin/foot.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(8 + 3 / 12, "feet")
  6746. },
  6747. {
  6748. name: "Minimacro",
  6749. height: math.unit(21, "feet"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(626, "feet")
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(2.718, "meters"),
  6763. weight: math.unit(150, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/sovrim-terraquian/front.svg"
  6767. }
  6768. },
  6769. back: {
  6770. height: math.unit(2.718, "meters"),
  6771. weight: math.unit(150, "lbs"),
  6772. name: "Back",
  6773. image: {
  6774. source: "./media/characters/sovrim-terraquian/back.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Micro",
  6781. height: math.unit(2, "inches")
  6782. },
  6783. {
  6784. name: "Small",
  6785. height: math.unit(1, "meter")
  6786. },
  6787. {
  6788. name: "Normal",
  6789. height: math.unit(Math.E, "meters"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(20, "meters")
  6795. },
  6796. {
  6797. name: "Macro+",
  6798. height: math.unit(400, "meters")
  6799. },
  6800. ]
  6801. ))
  6802. characterMakers.push(() => makeCharacter(
  6803. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6804. {
  6805. front: {
  6806. height: math.unit(7, "feet"),
  6807. weight: math.unit(489, "lbs"),
  6808. name: "Front",
  6809. image: {
  6810. source: "./media/characters/reece-silvermane/front.svg",
  6811. bottom: 0.02,
  6812. extra: 1
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(1.5, "miles"),
  6820. default: true
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(78, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/kane/front.svg",
  6833. extra: 978 / 899
  6834. }
  6835. },
  6836. },
  6837. [
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(2.1, "m"),
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(1, "km"),
  6845. default: true
  6846. },
  6847. ]
  6848. ))
  6849. characterMakers.push(() => makeCharacter(
  6850. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6851. {
  6852. front: {
  6853. height: math.unit(6, "feet"),
  6854. weight: math.unit(200, "kg"),
  6855. name: "Front",
  6856. image: {
  6857. source: "./media/characters/tegon/front.svg",
  6858. bottom: 0.01,
  6859. extra: 1
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "Micro",
  6866. height: math.unit(1, "inch")
  6867. },
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(6 + 3 / 12, "feet"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(300, "feet")
  6876. },
  6877. {
  6878. name: "Megamacro",
  6879. height: math.unit(69, "miles")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6885. {
  6886. side: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(2304, "lbs"),
  6889. name: "Side",
  6890. image: {
  6891. source: "./media/characters/arcturax/side.svg",
  6892. extra: 790 / 376,
  6893. bottom: 0.01
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Micro",
  6900. height: math.unit(2, "inch")
  6901. },
  6902. {
  6903. name: "Normal",
  6904. height: math.unit(6, "feet")
  6905. },
  6906. {
  6907. name: "Macro",
  6908. height: math.unit(39, "feet"),
  6909. default: true
  6910. },
  6911. {
  6912. name: "Megamacro",
  6913. height: math.unit(7, "miles")
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(6, "feet"),
  6922. weight: math.unit(50, "lbs"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/sentri/front.svg",
  6926. extra: 1750 / 1570,
  6927. bottom: 0.025
  6928. }
  6929. },
  6930. frontAlt: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(50, "lbs"),
  6933. name: "Front (Alt)",
  6934. image: {
  6935. source: "./media/characters/sentri/front-alt.svg",
  6936. extra: 1750 / 1570,
  6937. bottom: 0.025
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(15, "feet"),
  6945. default: true
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(2500, "feet")
  6950. }
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6955. {
  6956. front: {
  6957. height: math.unit(5 + 8 / 12, "feet"),
  6958. weight: math.unit(130, "lbs"),
  6959. name: "Front",
  6960. image: {
  6961. source: "./media/characters/corvin/front.svg",
  6962. extra: 1803 / 1629
  6963. }
  6964. },
  6965. frontShirt: {
  6966. height: math.unit(5 + 8 / 12, "feet"),
  6967. weight: math.unit(130, "lbs"),
  6968. name: "Front (Shirt)",
  6969. image: {
  6970. source: "./media/characters/corvin/front-shirt.svg",
  6971. extra: 1803 / 1629
  6972. }
  6973. },
  6974. frontPoncho: {
  6975. height: math.unit(5 + 8 / 12, "feet"),
  6976. weight: math.unit(130, "lbs"),
  6977. name: "Front (Poncho)",
  6978. image: {
  6979. source: "./media/characters/corvin/front-poncho.svg",
  6980. extra: 1803 / 1629
  6981. }
  6982. },
  6983. side: {
  6984. height: math.unit(5 + 8 / 12, "feet"),
  6985. weight: math.unit(130, "lbs"),
  6986. name: "Side",
  6987. image: {
  6988. source: "./media/characters/corvin/side.svg",
  6989. extra: 1012 / 945
  6990. }
  6991. },
  6992. back: {
  6993. height: math.unit(5 + 8 / 12, "feet"),
  6994. weight: math.unit(130, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/corvin/back.svg",
  6998. extra: 1803 / 1629
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Micro",
  7005. height: math.unit(3, "inches")
  7006. },
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(5 + 8 / 12, "feet")
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(300, "feet"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Megamacro",
  7018. height: math.unit(500, "miles")
  7019. }
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(6, "feet"),
  7027. weight: math.unit(135, "lbs"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/q/front.svg",
  7031. extra: 854 / 752,
  7032. bottom: 0.005
  7033. }
  7034. },
  7035. back: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(130, "lbs"),
  7038. name: "Back",
  7039. image: {
  7040. source: "./media/characters/q/back.svg",
  7041. extra: 854 / 752
  7042. }
  7043. },
  7044. },
  7045. [
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(90, "feet"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Extra Macro",
  7053. height: math.unit(300, "feet"),
  7054. },
  7055. {
  7056. name: "BIG WALF",
  7057. height: math.unit(750, "feet"),
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(150, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/carley/front.svg",
  7070. extra: 3927 / 3540,
  7071. bottom: 0.03
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(6 + 3 / 12, "feet")
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(185, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Megamacro",
  7087. height: math.unit(8, "miles"),
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(3, "feet"),
  7096. weight: math.unit(28, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/citrine/front.svg"
  7100. }
  7101. }
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(3, "feet"),
  7107. default: true
  7108. }
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7113. {
  7114. front: {
  7115. height: math.unit(14, "feet"),
  7116. weight: math.unit(1450, "kg"),
  7117. capacity: math.unit(15, "people"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/aura-starwind/front.svg",
  7121. extra: 1455 / 1335
  7122. }
  7123. },
  7124. side: {
  7125. height: math.unit(14, "feet"),
  7126. weight: math.unit(1450, "kg"),
  7127. capacity: math.unit(15, "people"),
  7128. name: "Side",
  7129. image: {
  7130. source: "./media/characters/aura-starwind/side.svg",
  7131. extra: 1654 / 1497
  7132. }
  7133. },
  7134. taur: {
  7135. height: math.unit(18, "feet"),
  7136. weight: math.unit(5500, "kg"),
  7137. capacity: math.unit(50, "people"),
  7138. name: "Taur",
  7139. image: {
  7140. source: "./media/characters/aura-starwind/taur.svg",
  7141. extra: 1760 / 1650
  7142. }
  7143. },
  7144. feral: {
  7145. height: math.unit(46, "feet"),
  7146. weight: math.unit(25000, "kg"),
  7147. capacity: math.unit(120, "people"),
  7148. name: "Feral",
  7149. image: {
  7150. source: "./media/characters/aura-starwind/feral.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(14, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Macro",
  7162. height: math.unit(50, "meters")
  7163. },
  7164. {
  7165. name: "Megamacro",
  7166. height: math.unit(5000, "meters")
  7167. },
  7168. {
  7169. name: "Gigamacro",
  7170. height: math.unit(100000, "kilometers")
  7171. },
  7172. ]
  7173. ))
  7174. characterMakers.push(() => makeCharacter(
  7175. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7176. {
  7177. front: {
  7178. height: math.unit(2 + 7 / 12, "feet"),
  7179. weight: math.unit(32, "lbs"),
  7180. name: "Front",
  7181. image: {
  7182. source: "./media/characters/rivet/front.svg",
  7183. extra: 1716 / 1658,
  7184. bottom: 0.03
  7185. }
  7186. },
  7187. foot: {
  7188. height: math.unit(0.551, "feet"),
  7189. name: "Rivet's Foot",
  7190. image: {
  7191. source: "./media/characters/rivet/foot.svg"
  7192. },
  7193. rename: true
  7194. }
  7195. },
  7196. [
  7197. {
  7198. name: "Micro",
  7199. height: math.unit(1.5, "inches"),
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(2 + 7 / 12, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(85, "feet")
  7209. },
  7210. {
  7211. name: "Megamacro",
  7212. height: math.unit(2.2, "km")
  7213. }
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(5 + 9 / 12, "feet"),
  7221. weight: math.unit(150, "lbs"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/coffee/front.svg",
  7225. extra: 3666 / 3032,
  7226. bottom: 0.04
  7227. }
  7228. },
  7229. foot: {
  7230. height: math.unit(1.29, "feet"),
  7231. name: "Foot",
  7232. image: {
  7233. source: "./media/characters/coffee/foot.svg"
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Micro",
  7240. height: math.unit(2, "inches"),
  7241. },
  7242. {
  7243. name: "Normal",
  7244. height: math.unit(5 + 9 / 12, "feet"),
  7245. default: true
  7246. },
  7247. {
  7248. name: "Macro",
  7249. height: math.unit(800, "feet")
  7250. },
  7251. {
  7252. name: "Megamacro",
  7253. height: math.unit(25, "miles")
  7254. }
  7255. ]
  7256. ))
  7257. characterMakers.push(() => makeCharacter(
  7258. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7259. {
  7260. front: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(200, "lbs"),
  7263. name: "Front",
  7264. image: {
  7265. source: "./media/characters/chari-gal/front.svg",
  7266. extra: 1568 / 1385,
  7267. bottom: 0.047
  7268. }
  7269. },
  7270. gigantamax: {
  7271. height: math.unit(6 * 16, "feet"),
  7272. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7273. name: "Gigantamax",
  7274. image: {
  7275. source: "./media/characters/chari-gal/gigantamax.svg",
  7276. extra: 1124 / 888,
  7277. bottom: 0.03
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(5 + 7 / 12, "feet")
  7285. },
  7286. {
  7287. name: "Macro",
  7288. height: math.unit(200, "feet"),
  7289. default: true
  7290. }
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(150, "lbs"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/nova/front.svg",
  7302. extra: 5000 / 4722,
  7303. bottom: 0.02
  7304. }
  7305. }
  7306. },
  7307. [
  7308. {
  7309. name: "Micro-",
  7310. height: math.unit(0.8, "inches")
  7311. },
  7312. {
  7313. name: "Micro",
  7314. height: math.unit(2, "inches"),
  7315. default: true
  7316. },
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(3 + 1 / 12, "feet"),
  7324. weight: math.unit(21.7, "lbs"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/argent/front.svg",
  7328. extra: 1565 / 1416,
  7329. bottom: 0.01
  7330. }
  7331. }
  7332. },
  7333. [
  7334. {
  7335. name: "Micro",
  7336. height: math.unit(2, "inches")
  7337. },
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(3 + 1 / 12, "feet"),
  7341. default: true
  7342. },
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(120, "feet")
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7351. {
  7352. lamp: {
  7353. height: math.unit(7 * 1559 / 989, "feet"),
  7354. name: "Magic Lamp",
  7355. image: {
  7356. source: "./media/characters/mira-al-cul/lamp.svg",
  7357. extra: 1617 / 1559
  7358. }
  7359. },
  7360. front: {
  7361. height: math.unit(7, "feet"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/mira-al-cul/front.svg",
  7365. extra: 1044 / 990
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Heavily Restricted",
  7372. height: math.unit(7 * 1559 / 989, "feet")
  7373. },
  7374. {
  7375. name: "Freshly Freed",
  7376. height: math.unit(50 * 1559 / 989, "feet")
  7377. },
  7378. {
  7379. name: "World Encompassing",
  7380. height: math.unit(10000 * 1559 / 989, "miles")
  7381. },
  7382. {
  7383. name: "Galactic",
  7384. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7385. },
  7386. {
  7387. name: "Palmed Universe",
  7388. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Multiversal Matriarch",
  7393. height: math.unit(8.87e10, "yottameters")
  7394. },
  7395. {
  7396. name: "Void Mother",
  7397. height: math.unit(3.14e110, "yottaparsecs")
  7398. },
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7403. {
  7404. front: {
  7405. height: math.unit(17 + 1 / 12, "feet"),
  7406. weight: math.unit(476.2 * 5, "lbs"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/kuro-shi-uchū/front.svg",
  7410. extra: 2329 / 1835,
  7411. bottom: 0.02
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Micro",
  7418. height: math.unit(2, "inches")
  7419. },
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(12, "meters")
  7423. },
  7424. {
  7425. name: "Planetary",
  7426. height: math.unit(0.00929, "AU"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Universal",
  7431. height: math.unit(20, "gigaparsecs")
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(5 + 2 / 12, "feet"),
  7440. weight: math.unit(120, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/katherine/front.svg",
  7444. extra: 2075 / 1969
  7445. }
  7446. },
  7447. dress: {
  7448. height: math.unit(5 + 2 / 12, "feet"),
  7449. weight: math.unit(120, "lbs"),
  7450. name: "Dress",
  7451. image: {
  7452. source: "./media/characters/katherine/dress.svg",
  7453. extra: 2258 / 2064
  7454. }
  7455. },
  7456. },
  7457. [
  7458. {
  7459. name: "Micro",
  7460. height: math.unit(1, "inches"),
  7461. default: true
  7462. },
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(5 + 2 / 12, "feet")
  7466. },
  7467. {
  7468. name: "Macro",
  7469. height: math.unit(100, "meters")
  7470. },
  7471. {
  7472. name: "Megamacro",
  7473. height: math.unit(80, "miles")
  7474. },
  7475. ]
  7476. ))
  7477. characterMakers.push(() => makeCharacter(
  7478. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7479. {
  7480. front: {
  7481. height: math.unit(7 + 8 / 12, "feet"),
  7482. weight: math.unit(250, "lbs"),
  7483. name: "Front",
  7484. image: {
  7485. source: "./media/characters/yevis/front.svg",
  7486. extra: 1938 / 1755
  7487. }
  7488. }
  7489. },
  7490. [
  7491. {
  7492. name: "Mortal",
  7493. height: math.unit(7 + 8 / 12, "feet")
  7494. },
  7495. {
  7496. name: "Battle",
  7497. height: math.unit(25 + 11 / 12, "feet")
  7498. },
  7499. {
  7500. name: "Wrath",
  7501. height: math.unit(1654 + 11 / 12, "feet")
  7502. },
  7503. {
  7504. name: "Planet Destroyer",
  7505. height: math.unit(12000, "miles")
  7506. },
  7507. {
  7508. name: "Galaxy Conqueror",
  7509. height: math.unit(1.45, "zettameters"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Universal War",
  7514. height: math.unit(184, "gigaparsecs")
  7515. },
  7516. {
  7517. name: "Eternity War",
  7518. height: math.unit(1.98e55, "yottaparsecs")
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(5 + 8 / 12, "feet"),
  7527. weight: math.unit(63, "kg"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/xavier/front.svg",
  7531. extra: 944 / 883
  7532. }
  7533. },
  7534. frontStretch: {
  7535. height: math.unit(5 + 8 / 12, "feet"),
  7536. weight: math.unit(63, "kg"),
  7537. name: "Stretching",
  7538. image: {
  7539. source: "./media/characters/xavier/front-stretch.svg",
  7540. extra: 962 / 820
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(5 + 8 / 12, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(100, "meters"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "McLargeHuge",
  7556. height: math.unit(10, "miles")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(5 + 5 / 12, "feet"),
  7565. weight: math.unit(150, "lb"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/joshii/front.svg"
  7569. }
  7570. },
  7571. foot: {
  7572. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7573. name: "Foot",
  7574. image: {
  7575. source: "./media/characters/joshii/foot.svg"
  7576. }
  7577. },
  7578. },
  7579. [
  7580. {
  7581. name: "Micro",
  7582. height: math.unit(2, "inches")
  7583. },
  7584. {
  7585. name: "Normal",
  7586. height: math.unit(5 + 5 / 12, "feet"),
  7587. default: true
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(785, "feet")
  7592. },
  7593. {
  7594. name: "Megamacro",
  7595. height: math.unit(24.5, "miles")
  7596. },
  7597. ]
  7598. ))
  7599. characterMakers.push(() => makeCharacter(
  7600. { name: "Goddess Elizabeth", species: ["wolf"], tags: ["anthro"] },
  7601. {
  7602. front: {
  7603. height: math.unit(6, "feet"),
  7604. weight: math.unit(150, "lb"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/goddess-elizabeth/front.svg",
  7608. extra: 1800 / 1525,
  7609. bottom: 0.005
  7610. }
  7611. },
  7612. foot: {
  7613. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7614. name: "Foot",
  7615. image: {
  7616. source: "./media/characters/goddess-elizabeth/foot.svg"
  7617. }
  7618. },
  7619. mouth: {
  7620. height: math.unit(6, "feet"),
  7621. name: "Mouth",
  7622. image: {
  7623. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7624. }
  7625. },
  7626. },
  7627. [
  7628. {
  7629. name: "Micro",
  7630. height: math.unit(12, "feet")
  7631. },
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(80, "miles"),
  7635. default: true
  7636. },
  7637. {
  7638. name: "Macro",
  7639. height: math.unit(15000, "parsecs")
  7640. },
  7641. ]
  7642. ))
  7643. characterMakers.push(() => makeCharacter(
  7644. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7645. {
  7646. front: {
  7647. height: math.unit(5 + 9 / 12, "feet"),
  7648. weight: math.unit(144, "lb"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/kara/front.svg"
  7652. }
  7653. },
  7654. feet: {
  7655. height: math.unit(6 / 6.765, "feet"),
  7656. name: "Kara's Feet",
  7657. rename: true,
  7658. image: {
  7659. source: "./media/characters/kara/feet.svg"
  7660. }
  7661. },
  7662. },
  7663. [
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(5 + 9 / 12, "feet")
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(174, "feet"),
  7671. default: true
  7672. },
  7673. ]
  7674. ))
  7675. characterMakers.push(() => makeCharacter(
  7676. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7677. {
  7678. front: {
  7679. height: math.unit(18, "feet"),
  7680. weight: math.unit(4050, "lb"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/tyrone/front.svg",
  7684. extra: 2520 / 2402,
  7685. bottom: 0.025
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(18, "feet"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(300, "feet")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(7 + 8 / 12, "feet"),
  7706. weight: math.unit(120, "lb"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/danny/front.svg",
  7710. extra: 1490 / 1350
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(7 + 8 / 12, "feet"),
  7715. weight: math.unit(120, "lb"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/danny/back.svg",
  7719. extra: 1490 / 1350
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(7 + 8 / 12, "feet"),
  7727. default: true
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7733. {
  7734. front: {
  7735. height: math.unit(3.5, "inches"),
  7736. weight: math.unit(19, "grams"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/mallow/front.svg",
  7740. extra: 471 / 431
  7741. }
  7742. },
  7743. back: {
  7744. height: math.unit(3.5, "inches"),
  7745. weight: math.unit(19, "grams"),
  7746. name: "Back",
  7747. image: {
  7748. source: "./media/characters/mallow/back.svg",
  7749. extra: 471 / 431
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Normal",
  7756. height: math.unit(3.5, "inches"),
  7757. default: true
  7758. },
  7759. ]
  7760. ))
  7761. characterMakers.push(() => makeCharacter(
  7762. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7763. {
  7764. front: {
  7765. height: math.unit(9, "feet"),
  7766. weight: math.unit(230, "kg"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/starry-aqua/front.svg"
  7770. }
  7771. },
  7772. back: {
  7773. height: math.unit(9, "feet"),
  7774. weight: math.unit(230, "kg"),
  7775. name: "Back",
  7776. image: {
  7777. source: "./media/characters/starry-aqua/back.svg"
  7778. }
  7779. },
  7780. hand: {
  7781. height: math.unit(9 * 0.1168, "feet"),
  7782. name: "Hand",
  7783. image: {
  7784. source: "./media/characters/starry-aqua/hand.svg"
  7785. }
  7786. },
  7787. foot: {
  7788. height: math.unit(9 * 0.18, "feet"),
  7789. name: "Foot",
  7790. image: {
  7791. source: "./media/characters/starry-aqua/foot.svg"
  7792. }
  7793. }
  7794. },
  7795. [
  7796. {
  7797. name: "Micro",
  7798. height: math.unit(3, "inches")
  7799. },
  7800. {
  7801. name: "Normal",
  7802. height: math.unit(9, "feet")
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(300, "feet"),
  7807. default: true
  7808. },
  7809. {
  7810. name: "Megamacro",
  7811. height: math.unit(3200, "feet")
  7812. }
  7813. ]
  7814. ))
  7815. characterMakers.push(() => makeCharacter(
  7816. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7817. {
  7818. front: {
  7819. height: math.unit(6, "feet"),
  7820. weight: math.unit(230, "lb"),
  7821. name: "Front",
  7822. image: {
  7823. source: "./media/characters/luka/front.svg",
  7824. extra: 1,
  7825. bottom: 0.025
  7826. }
  7827. },
  7828. },
  7829. [
  7830. {
  7831. name: "Normal",
  7832. height: math.unit(12 + 8 / 12, "feet"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Minimacro",
  7837. height: math.unit(20, "feet")
  7838. },
  7839. {
  7840. name: "Macro",
  7841. height: math.unit(250, "feet")
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(5, "miles")
  7846. },
  7847. {
  7848. name: "Gigamacro",
  7849. height: math.unit(8000, "miles")
  7850. },
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7855. {
  7856. front: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(150, "lb"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/natalie-nightring/front.svg",
  7862. extra: 1,
  7863. bottom: 0.06
  7864. }
  7865. },
  7866. },
  7867. [
  7868. {
  7869. name: "Uh Oh",
  7870. height: math.unit(0.1, "mm")
  7871. },
  7872. {
  7873. name: "Small",
  7874. height: math.unit(3, "inches")
  7875. },
  7876. {
  7877. name: "Human Scale",
  7878. height: math.unit(6, "feet")
  7879. },
  7880. {
  7881. name: "Librarian",
  7882. height: math.unit(50, "feet"),
  7883. default: true
  7884. },
  7885. {
  7886. name: "Immense",
  7887. height: math.unit(200, "miles")
  7888. },
  7889. ]
  7890. ))
  7891. characterMakers.push(() => makeCharacter(
  7892. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7893. {
  7894. front: {
  7895. height: math.unit(6, "feet"),
  7896. weight: math.unit(180, "lbs"),
  7897. name: "Front",
  7898. image: {
  7899. source: "./media/characters/danni-rosie/front.svg",
  7900. extra: 1260 / 1128,
  7901. bottom: 0.022
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(2, "inches"),
  7909. default: true
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(5 + 9 / 12, "feet"),
  7918. weight: math.unit(220, "lb"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/samantha-kruse/front.svg",
  7922. extra: (985 / 935),
  7923. bottom: 0.03
  7924. }
  7925. },
  7926. frontUndressed: {
  7927. height: math.unit(5 + 9 / 12, "feet"),
  7928. weight: math.unit(220, "lb"),
  7929. name: "Front (Undressed)",
  7930. image: {
  7931. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7932. extra: (973 / 923),
  7933. bottom: 0.025
  7934. }
  7935. },
  7936. fat: {
  7937. height: math.unit(5 + 9 / 12, "feet"),
  7938. weight: math.unit(900, "lb"),
  7939. name: "Front (Fat)",
  7940. image: {
  7941. source: "./media/characters/samantha-kruse/fat.svg",
  7942. extra: 2688 / 2561
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(5 + 9 / 12, "feet"),
  7950. default: true
  7951. }
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7956. {
  7957. back: {
  7958. height: math.unit(5 + 4 / 12, "feet"),
  7959. weight: math.unit(4963, "lb"),
  7960. name: "Back",
  7961. image: {
  7962. source: "./media/characters/amelia-rosie/back.svg",
  7963. extra: 1113 / 963,
  7964. bottom: 0.01
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Level 0",
  7971. height: math.unit(5 + 4 / 12, "feet")
  7972. },
  7973. {
  7974. name: "Level 1",
  7975. height: math.unit(164597, "feet"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Level 2",
  7980. height: math.unit(956243, "miles")
  7981. },
  7982. {
  7983. name: "Level 3",
  7984. height: math.unit(29421709423, "miles")
  7985. },
  7986. {
  7987. name: "Level 4",
  7988. height: math.unit(154, "lightyears")
  7989. },
  7990. {
  7991. name: "Level 5",
  7992. height: math.unit(4738272, "lightyears")
  7993. },
  7994. {
  7995. name: "Level 6",
  7996. height: math.unit(145787152896, "lightyears")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Rook Kitara", species: ["mammal"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(5 + 11 / 12, "feet"),
  8005. weight: math.unit(65, "kg"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/rook-kitara/front.svg",
  8009. extra: 1347 / 1274,
  8010. bottom: 0.005
  8011. }
  8012. },
  8013. },
  8014. [
  8015. {
  8016. name: "Totally Unfair",
  8017. height: math.unit(1.8, "mm")
  8018. },
  8019. {
  8020. name: "Lap Rookie",
  8021. height: math.unit(1.4, "feet")
  8022. },
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(5 + 11 / 12, "feet"),
  8026. default: true
  8027. },
  8028. {
  8029. name: "How Did This Happen",
  8030. height: math.unit(80, "miles")
  8031. }
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8036. {
  8037. front: {
  8038. height: math.unit(7, "feet"),
  8039. weight: math.unit(300, "lb"),
  8040. name: "Front",
  8041. image: {
  8042. source: "./media/characters/pisces/front.svg",
  8043. extra: 2255 / 2115,
  8044. bottom: 0.03
  8045. }
  8046. },
  8047. back: {
  8048. height: math.unit(7, "feet"),
  8049. weight: math.unit(300, "lb"),
  8050. name: "Back",
  8051. image: {
  8052. source: "./media/characters/pisces/back.svg",
  8053. extra: 2146 / 2055,
  8054. bottom: 0.04
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(7, "feet"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Swimming Pool",
  8066. height: math.unit(12.2, "meters")
  8067. },
  8068. {
  8069. name: "Olympic Swimming Pool",
  8070. height: math.unit(56.3, "meters")
  8071. },
  8072. {
  8073. name: "Lake Superior",
  8074. height: math.unit(93900, "meters")
  8075. },
  8076. {
  8077. name: "Mediterranean Sea",
  8078. height: math.unit(644457, "meters")
  8079. },
  8080. {
  8081. name: "World's Oceans",
  8082. height: math.unit(4567491, "meters")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(2.3, "meters"),
  8091. weight: math.unit(120, "kg"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/zelas/front.svg"
  8095. }
  8096. },
  8097. side: {
  8098. height: math.unit(2.3, "meters"),
  8099. weight: math.unit(120, "kg"),
  8100. name: "Side",
  8101. image: {
  8102. source: "./media/characters/zelas/side.svg"
  8103. }
  8104. },
  8105. back: {
  8106. height: math.unit(2.3, "meters"),
  8107. weight: math.unit(120, "kg"),
  8108. name: "Back",
  8109. image: {
  8110. source: "./media/characters/zelas/back.svg"
  8111. }
  8112. },
  8113. foot: {
  8114. height: math.unit(1.116, "feet"),
  8115. name: "Foot",
  8116. image: {
  8117. source: "./media/characters/zelas/foot.svg"
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(2.3, "meters")
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(30, "meters"),
  8129. default: true
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(1, "inch"),
  8138. weight: math.unit(0.21, "grams"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/talbot/front.svg",
  8142. extra: 594 / 544
  8143. }
  8144. },
  8145. },
  8146. [
  8147. {
  8148. name: "Micro",
  8149. height: math.unit(1, "inch"),
  8150. default: true
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8156. {
  8157. front: {
  8158. height: math.unit(3 + 3 / 12, "feet"),
  8159. weight: math.unit(51.8, "lb"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/fliss/front.svg",
  8163. extra: 840 / 640
  8164. }
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "Teeny Tiny",
  8170. height: math.unit(1, "mm")
  8171. },
  8172. {
  8173. name: "Small",
  8174. height: math.unit(1, "inch"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Standard Sylveon",
  8179. height: math.unit(3 + 3 / 12, "feet")
  8180. },
  8181. {
  8182. name: "Large Nuisance",
  8183. height: math.unit(33, "feet")
  8184. },
  8185. {
  8186. name: "City Filler",
  8187. height: math.unit(3000, "feet")
  8188. },
  8189. {
  8190. name: "New Horizon",
  8191. height: math.unit(6000, "miles")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(5, "cm"),
  8200. weight: math.unit(1.94, "g"),
  8201. name: "Front",
  8202. image: {
  8203. source: "./media/characters/fleta/front.svg",
  8204. extra: 835 / 803
  8205. }
  8206. },
  8207. back: {
  8208. height: math.unit(5, "cm"),
  8209. weight: math.unit(1.94, "g"),
  8210. name: "Back",
  8211. image: {
  8212. source: "./media/characters/fleta/back.svg",
  8213. extra: 835 / 803
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(5, "cm"),
  8221. default: true
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(225, "lb"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/dominic/front.svg",
  8234. extra: 1770 / 1620,
  8235. bottom: 0.025
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(225, "lb"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/dominic/back.svg",
  8244. extra: 1745 / 1620,
  8245. bottom: 0.065
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Nano",
  8252. height: math.unit(0.1, "mm")
  8253. },
  8254. {
  8255. name: "Micro-",
  8256. height: math.unit(1, "mm")
  8257. },
  8258. {
  8259. name: "Micro",
  8260. height: math.unit(4, "inches")
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(6 + 4 / 12, "feet"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(115, "feet")
  8270. },
  8271. {
  8272. name: "Macro+",
  8273. height: math.unit(955, "feet")
  8274. },
  8275. {
  8276. name: "Megamacro",
  8277. height: math.unit(8990, "feet")
  8278. },
  8279. {
  8280. name: "Gigmacro",
  8281. height: math.unit(9310, "miles")
  8282. },
  8283. {
  8284. name: "Teramacro",
  8285. height: math.unit(1567005010, "miles")
  8286. },
  8287. {
  8288. name: "Examacro",
  8289. height: math.unit(1425, "parsecs")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(400, "feet"),
  8298. weight: math.unit(44444444, "lb"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/major-colonel/front.svg"
  8302. }
  8303. },
  8304. back: {
  8305. height: math.unit(400, "feet"),
  8306. weight: math.unit(44444444, "lb"),
  8307. name: "Back",
  8308. image: {
  8309. source: "./media/characters/major-colonel/back.svg"
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(400, "feet"),
  8317. default: true
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(6, "feet"),
  8326. weight: math.unit(120, "lb"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/axel-lycan/front.svg",
  8330. extra: 1,
  8331. bottom: 0.08
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(1, "km"),
  8339. default: true
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(5 + 9 / 12, "feet"),
  8348. weight: math.unit(175, "lb"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/vanrel-hyena/front.svg",
  8352. extra: 1086 / 1010,
  8353. bottom: 0.04
  8354. }
  8355. },
  8356. },
  8357. [
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(5 + 9 / 12, "feet"),
  8361. default: true
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(6, "feet"),
  8370. weight: math.unit(103, "lb"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/abbott-absol/front.svg",
  8374. extra: 2010 / 1842
  8375. }
  8376. },
  8377. },
  8378. [
  8379. {
  8380. name: "Megamicro",
  8381. height: math.unit(0.1, "mm")
  8382. },
  8383. {
  8384. name: "Micro",
  8385. height: math.unit(1, "inch")
  8386. },
  8387. {
  8388. name: "Normal",
  8389. height: math.unit(6, "feet"),
  8390. default: true
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(6, "feet"),
  8399. weight: math.unit(264, "lb"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/hector/front.svg",
  8403. extra: 2280 / 2130,
  8404. bottom: 0.07
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(12.25, "foot"),
  8412. default: true
  8413. },
  8414. {
  8415. name: "Macro",
  8416. height: math.unit(160, "feet")
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(150, "lb"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/sal/front.svg",
  8429. extra: 1846 / 1699,
  8430. bottom: 0.04
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Megamacro",
  8437. height: math.unit(10, "miles"),
  8438. default: true
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8444. {
  8445. front: {
  8446. height: math.unit(3, "meters"),
  8447. weight: math.unit(450, "kg"),
  8448. name: "front",
  8449. image: {
  8450. source: "./media/characters/ranger/front.svg",
  8451. extra: 2401 / 2243,
  8452. bottom: 0.05
  8453. }
  8454. },
  8455. },
  8456. [
  8457. {
  8458. name: "Normal",
  8459. height: math.unit(3, "meters"),
  8460. default: true
  8461. },
  8462. ]
  8463. ))
  8464. characterMakers.push(() => makeCharacter(
  8465. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8466. {
  8467. front: {
  8468. height: math.unit(14, "feet"),
  8469. weight: math.unit(800, "kg"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/theresa/front.svg",
  8473. extra: 3575 / 3346,
  8474. bottom: 0.03
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(14, "feet"),
  8482. default: true
  8483. },
  8484. ]
  8485. ))
  8486. characterMakers.push(() => makeCharacter(
  8487. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8488. {
  8489. front: {
  8490. height: math.unit(6, "feet"),
  8491. weight: math.unit(3, "kg"),
  8492. name: "Front",
  8493. image: {
  8494. source: "./media/characters/ine/front.svg",
  8495. extra: 678 / 539,
  8496. bottom: 0.023
  8497. }
  8498. },
  8499. },
  8500. [
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(2.265, "feet"),
  8504. default: true
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(5, "feet"),
  8513. weight: math.unit(30, "kg"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/vial/front.svg",
  8517. extra: 1365 / 1277,
  8518. bottom: 0.04
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(5, "feet"),
  8526. default: true
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8532. {
  8533. side: {
  8534. height: math.unit(3.4, "meters"),
  8535. weight: math.unit(1000, "lb"),
  8536. name: "Side",
  8537. image: {
  8538. source: "./media/characters/rovoska/side.svg",
  8539. extra: 4403 / 1515
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(3.4, "meters"),
  8547. default: true
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8553. {
  8554. front: {
  8555. height: math.unit(8, "feet"),
  8556. weight: math.unit(315, "lb"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/gunner-rotthbauer/front.svg"
  8560. }
  8561. },
  8562. back: {
  8563. height: math.unit(8, "feet"),
  8564. weight: math.unit(315, "lb"),
  8565. name: "Back",
  8566. image: {
  8567. source: "./media/characters/gunner-rotthbauer/back.svg"
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Micro",
  8574. height: math.unit(3.5, "inches")
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(8, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(250, "feet")
  8584. },
  8585. {
  8586. name: "Megamacro",
  8587. height: math.unit(1, "AU")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(5 + 5 / 12, "feet"),
  8596. weight: math.unit(140, "lb"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/allatia/front.svg",
  8600. extra: 1227 / 1180,
  8601. bottom: 0.027
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(5 + 5 / 12, "feet")
  8609. },
  8610. {
  8611. name: "Macro",
  8612. height: math.unit(250, "feet"),
  8613. default: true
  8614. },
  8615. {
  8616. name: "Megamacro",
  8617. height: math.unit(8, "miles")
  8618. }
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(120, "lb"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/tene/front.svg",
  8630. extra: 1728 / 1578,
  8631. bottom: 0.022
  8632. }
  8633. },
  8634. stomping: {
  8635. height: math.unit(2.025, "meters"),
  8636. weight: math.unit(120, "lb"),
  8637. name: "Stomping",
  8638. image: {
  8639. source: "./media/characters/tene/stomping.svg",
  8640. extra: 938 / 873,
  8641. bottom: 0.01
  8642. }
  8643. },
  8644. sitting: {
  8645. height: math.unit(1, "meter"),
  8646. weight: math.unit(120, "lb"),
  8647. name: "Sitting",
  8648. image: {
  8649. source: "./media/characters/tene/sitting.svg",
  8650. extra: 437 / 415,
  8651. bottom: 0.1
  8652. }
  8653. },
  8654. feral: {
  8655. height: math.unit(3.9, "feet"),
  8656. weight: math.unit(250, "lb"),
  8657. name: "Feral",
  8658. image: {
  8659. source: "./media/characters/tene/feral.svg",
  8660. extra: 717 / 458,
  8661. bottom: 0.179
  8662. }
  8663. },
  8664. },
  8665. [
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(6, "feet")
  8669. },
  8670. {
  8671. name: "Macro",
  8672. height: math.unit(300, "feet"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Megamacro",
  8677. height: math.unit(5, "miles")
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8683. {
  8684. side: {
  8685. height: math.unit(6, "feet"),
  8686. name: "Side",
  8687. image: {
  8688. source: "./media/characters/evander/side.svg",
  8689. extra: 877 / 477
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(0.83, "meters"),
  8697. default: true
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(12, "feet"),
  8706. weight: math.unit(1000, "lb"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8710. extra: 1762 / 1611
  8711. }
  8712. },
  8713. back: {
  8714. height: math.unit(12, "feet"),
  8715. weight: math.unit(1000, "lb"),
  8716. name: "Back",
  8717. image: {
  8718. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8719. extra: 1762 / 1611
  8720. }
  8721. },
  8722. },
  8723. [
  8724. {
  8725. name: "Normal",
  8726. height: math.unit(12, "feet"),
  8727. default: true
  8728. },
  8729. {
  8730. name: "Kaiju",
  8731. height: math.unit(150, "feet")
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(150, "lb"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/zero-alurus/front.svg"
  8744. }
  8745. },
  8746. back: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lb"),
  8749. name: "Back",
  8750. image: {
  8751. source: "./media/characters/zero-alurus/back.svg"
  8752. }
  8753. },
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(5 + 10 / 12, "feet")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(60, "feet"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Macro+",
  8767. height: math.unit(450, "feet")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(6, "feet"),
  8776. weight: math.unit(200, "lb"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/mega-shi/front.svg",
  8780. extra: 1279 / 1250,
  8781. bottom: 0.02
  8782. }
  8783. },
  8784. back: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(200, "lb"),
  8787. name: "Back",
  8788. image: {
  8789. source: "./media/characters/mega-shi/back.svg",
  8790. extra: 1279 / 1250,
  8791. bottom: 0.02
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(16 + 6 / 12, "feet")
  8799. },
  8800. {
  8801. name: "Third Dimension",
  8802. height: math.unit(40, "meters")
  8803. },
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(660, "feet"),
  8807. default: true
  8808. },
  8809. {
  8810. name: "Megamacro",
  8811. height: math.unit(10, "miles")
  8812. },
  8813. {
  8814. name: "Planetary Launch",
  8815. height: math.unit(500, "miles")
  8816. },
  8817. {
  8818. name: "Interstellar",
  8819. height: math.unit(1e9, "miles")
  8820. },
  8821. {
  8822. name: "Leaving the Universe",
  8823. height: math.unit(1, "gigaparsec")
  8824. },
  8825. {
  8826. name: "Travelling Universes",
  8827. height: math.unit(30e15, "parsecs")
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(150, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/odyssey/front.svg",
  8840. extra: 1782 / 1582,
  8841. bottom: 0.01
  8842. }
  8843. },
  8844. side: {
  8845. height: math.unit(5.7, "feet"),
  8846. weight: math.unit(140, "lb"),
  8847. name: "Side",
  8848. image: {
  8849. source: "./media/characters/odyssey/side.svg",
  8850. extra: 6462 / 5700
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(5 + 4 / 12, "feet")
  8858. },
  8859. {
  8860. name: "Macro",
  8861. height: math.unit(1, "km")
  8862. },
  8863. {
  8864. name: "Megamacro",
  8865. height: math.unit(3000, "km")
  8866. },
  8867. {
  8868. name: "Gigamacro",
  8869. height: math.unit(1, "AU"),
  8870. default: true
  8871. },
  8872. {
  8873. name: "Omniversal",
  8874. height: math.unit(100e14, "lightyears")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(300, "lb"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/mekuto/front.svg",
  8887. extra: 921 / 832,
  8888. bottom: 0.03
  8889. }
  8890. },
  8891. hand: {
  8892. height: math.unit(6 / 10.24, "feet"),
  8893. name: "Hand",
  8894. image: {
  8895. source: "./media/characters/mekuto/hand.svg"
  8896. }
  8897. },
  8898. foot: {
  8899. height: math.unit(6 / 5.05, "feet"),
  8900. name: "Foot",
  8901. image: {
  8902. source: "./media/characters/mekuto/foot.svg"
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Minimicro",
  8909. height: math.unit(0.2, "inches")
  8910. },
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(1.5, "inches")
  8914. },
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(5 + 11 / 12, "feet"),
  8918. default: true
  8919. },
  8920. {
  8921. name: "Minimacro",
  8922. height: math.unit(17 + 9 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(177.5, "feet")
  8927. },
  8928. {
  8929. name: "Megamacro",
  8930. height: math.unit(152, "miles")
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Dafydd Tomos", species: ["unknown"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(6.5, "inches"),
  8939. weight: math.unit(13, "oz"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/dafydd-tomos/front.svg",
  8943. extra: 2990 / 2603,
  8944. bottom: 0.03
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Micro",
  8951. height: math.unit(6.5, "inches"),
  8952. default: true
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(150, "lb"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/splinter/front.svg",
  8965. extra: 2990 / 2882,
  8966. bottom: 0.04
  8967. }
  8968. },
  8969. back: {
  8970. height: math.unit(6, "feet"),
  8971. weight: math.unit(150, "lb"),
  8972. name: "Back",
  8973. image: {
  8974. source: "./media/characters/splinter/back.svg",
  8975. extra: 2990 / 2882,
  8976. bottom: 0.04
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(6, "feet")
  8984. },
  8985. {
  8986. name: "Macro",
  8987. height: math.unit(230, "meters"),
  8988. default: true
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(4 + 10 / 12, "feet"),
  8997. weight: math.unit(480, "lb"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/snow-gabumon/front.svg",
  9001. extra: 1140 / 963,
  9002. bottom: 0.058
  9003. }
  9004. },
  9005. back: {
  9006. height: math.unit(4 + 10 / 12, "feet"),
  9007. weight: math.unit(480, "lb"),
  9008. name: "Back",
  9009. image: {
  9010. source: "./media/characters/snow-gabumon/back.svg",
  9011. extra: 1115 / 962,
  9012. bottom: 0.041
  9013. }
  9014. },
  9015. frontUndresed: {
  9016. height: math.unit(4 + 10 / 12, "feet"),
  9017. weight: math.unit(480, "lb"),
  9018. name: "Front (Undressed)",
  9019. image: {
  9020. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9021. extra: 1061 / 960,
  9022. bottom: 0.045
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Micro",
  9029. height: math.unit(1, "inch")
  9030. },
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(4 + 10 / 12, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(200, "feet")
  9039. },
  9040. {
  9041. name: "Megamacro",
  9042. height: math.unit(120, "miles")
  9043. },
  9044. {
  9045. name: "Gigamacro",
  9046. height: math.unit(9800, "miles")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(1.7, "meters"),
  9055. weight: math.unit(140, "lb"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/moody/front.svg",
  9059. extra: 3226 / 3007,
  9060. bottom: 0.087
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Micro",
  9067. height: math.unit(1, "mm")
  9068. },
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(1.7, "meters"),
  9072. default: true
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(80, "meters")
  9077. },
  9078. {
  9079. name: "Macro+",
  9080. height: math.unit(500, "meters")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(6, "feet"),
  9089. weight: math.unit(150, "lb"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/zyas/front.svg",
  9093. extra: 1180 / 1120,
  9094. bottom: 0.045
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(10, "feet"),
  9102. default: true
  9103. },
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(500, "feet")
  9107. },
  9108. {
  9109. name: "Megamacro",
  9110. height: math.unit(5, "miles")
  9111. },
  9112. {
  9113. name: "Teramacro",
  9114. height: math.unit(150000, "miles")
  9115. },
  9116. ]
  9117. ))
  9118. characterMakers.push(() => makeCharacter(
  9119. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9120. {
  9121. front: {
  9122. height: math.unit(6, "feet"),
  9123. weight: math.unit(150, "lb"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/cuon/front.svg",
  9127. extra: 1390 / 1320,
  9128. bottom: 0.008
  9129. }
  9130. },
  9131. },
  9132. [
  9133. {
  9134. name: "Micro",
  9135. height: math.unit(3, "inches")
  9136. },
  9137. {
  9138. name: "Normal",
  9139. height: math.unit(18 + 9 / 12, "feet"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(360, "feet")
  9145. },
  9146. {
  9147. name: "Megamacro",
  9148. height: math.unit(360, "miles")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(2.4, "meters"),
  9157. weight: math.unit(70, "kg"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/nyanuxk/front.svg",
  9161. extra: 1172 / 1084,
  9162. bottom: 0.065
  9163. }
  9164. },
  9165. side: {
  9166. height: math.unit(2.4, "meters"),
  9167. weight: math.unit(70, "kg"),
  9168. name: "Side",
  9169. image: {
  9170. source: "./media/characters/nyanuxk/side.svg",
  9171. extra: 1190 / 1132,
  9172. bottom: 0.007
  9173. }
  9174. },
  9175. back: {
  9176. height: math.unit(2.4, "meters"),
  9177. weight: math.unit(70, "kg"),
  9178. name: "Back",
  9179. image: {
  9180. source: "./media/characters/nyanuxk/back.svg",
  9181. extra: 1200 / 1141,
  9182. bottom: 0.015
  9183. }
  9184. },
  9185. foot: {
  9186. height: math.unit(0.52, "meters"),
  9187. name: "Foot",
  9188. image: {
  9189. source: "./media/characters/nyanuxk/foot.svg"
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Micro",
  9196. height: math.unit(2, "cm")
  9197. },
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(2.4, "meters"),
  9201. default: true
  9202. },
  9203. {
  9204. name: "Smaller Macro",
  9205. height: math.unit(120, "meters")
  9206. },
  9207. {
  9208. name: "Bigger Macro",
  9209. height: math.unit(1.2, "km")
  9210. },
  9211. {
  9212. name: "Megamacro",
  9213. height: math.unit(15, "kilometers")
  9214. },
  9215. {
  9216. name: "Gigamacro",
  9217. height: math.unit(2000, "km")
  9218. },
  9219. {
  9220. name: "Teramacro",
  9221. height: math.unit(500000, "km")
  9222. },
  9223. ]
  9224. ))
  9225. characterMakers.push(() => makeCharacter(
  9226. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9227. {
  9228. side: {
  9229. height: math.unit(6, "feet"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/ailbhe/side.svg",
  9233. extra: 757 / 464,
  9234. bottom: 0.041
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(1.07, "meters"),
  9242. default: true
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(6, "feet"),
  9251. weight: math.unit(120, "kg"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/zevulfius/front.svg",
  9255. extra: 965 / 903
  9256. }
  9257. },
  9258. side: {
  9259. height: math.unit(6, "feet"),
  9260. weight: math.unit(120, "kg"),
  9261. name: "Side",
  9262. image: {
  9263. source: "./media/characters/zevulfius/side.svg",
  9264. extra: 939 / 900
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(120, "kg"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/zevulfius/back.svg",
  9273. extra: 918 / 854,
  9274. bottom: 0.005
  9275. }
  9276. },
  9277. foot: {
  9278. height: math.unit(6 / 3.72, "feet"),
  9279. name: "Foot",
  9280. image: {
  9281. source: "./media/characters/zevulfius/foot.svg"
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Macro",
  9288. height: math.unit(750, "meters")
  9289. },
  9290. {
  9291. name: "Megamacro",
  9292. height: math.unit(20, "km"),
  9293. default: true
  9294. },
  9295. {
  9296. name: "Gigamacro",
  9297. height: math.unit(2000, "km")
  9298. },
  9299. {
  9300. name: "Teramacro",
  9301. height: math.unit(250000, "km")
  9302. },
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9307. {
  9308. front: {
  9309. height: math.unit(100, "feet"),
  9310. weight: math.unit(350, "kg"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/rikes/front.svg",
  9314. extra: 1565 / 1483,
  9315. bottom: 0.017
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Macro",
  9322. height: math.unit(100, "feet"),
  9323. default: true
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9329. {
  9330. anthro: {
  9331. height: math.unit(8, "feet"),
  9332. weight: math.unit(120, "kg"),
  9333. name: "Anthro",
  9334. image: {
  9335. source: "./media/characters/adam-silver-mane/anthro.svg",
  9336. extra: 5743 / 5339,
  9337. bottom: 0.07
  9338. }
  9339. },
  9340. taur: {
  9341. height: math.unit(16, "feet"),
  9342. weight: math.unit(1500, "kg"),
  9343. name: "Taur",
  9344. image: {
  9345. source: "./media/characters/adam-silver-mane/taur.svg",
  9346. extra: 1713 / 1571,
  9347. bottom: 0.01
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Normal",
  9354. height: math.unit(8, "feet")
  9355. },
  9356. {
  9357. name: "Minimacro",
  9358. height: math.unit(80, "feet")
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(800, "feet"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Megamacro",
  9367. height: math.unit(8000, "feet")
  9368. },
  9369. {
  9370. name: "Gigamacro",
  9371. height: math.unit(800, "miles")
  9372. },
  9373. {
  9374. name: "Teramacro",
  9375. height: math.unit(80000, "miles")
  9376. },
  9377. {
  9378. name: "Celestial",
  9379. height: math.unit(8e6, "miles")
  9380. },
  9381. {
  9382. name: "Star Dragon",
  9383. height: math.unit(800000, "parsecs")
  9384. },
  9385. {
  9386. name: "Godly",
  9387. height: math.unit(800, "teraparsecs")
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(150, "lb"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/ky'owin/front.svg",
  9400. extra: 3888 / 3068,
  9401. bottom: 0.015
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Normal",
  9408. height: math.unit(6 + 8 / 12, "feet")
  9409. },
  9410. {
  9411. name: "Large",
  9412. height: math.unit(68, "feet")
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(132, "feet")
  9417. },
  9418. {
  9419. name: "Macro+",
  9420. height: math.unit(340, "feet")
  9421. },
  9422. {
  9423. name: "Macro++",
  9424. height: math.unit(680, "feet"),
  9425. default: true
  9426. },
  9427. {
  9428. name: "Megamacro",
  9429. height: math.unit(1, "mile")
  9430. },
  9431. {
  9432. name: "Megamacro+",
  9433. height: math.unit(10, "miles")
  9434. },
  9435. ]
  9436. ))
  9437. characterMakers.push(() => makeCharacter(
  9438. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9439. {
  9440. front: {
  9441. height: math.unit(4, "feet"),
  9442. weight: math.unit(50, "lb"),
  9443. name: "Front",
  9444. image: {
  9445. source: "./media/characters/mal/front.svg",
  9446. extra: 785 / 724,
  9447. bottom: 0.07
  9448. }
  9449. },
  9450. },
  9451. [
  9452. {
  9453. name: "Micro",
  9454. height: math.unit(4, "inches")
  9455. },
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(4, "feet"),
  9459. default: true
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(200, "feet")
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9469. {
  9470. front: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(150, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/jordan-deware/front.svg",
  9476. extra: 1191 / 1012
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Nano",
  9483. height: math.unit(0.01, "mm")
  9484. },
  9485. {
  9486. name: "Minimicro",
  9487. height: math.unit(1, "mm")
  9488. },
  9489. {
  9490. name: "Micro",
  9491. height: math.unit(0.5, "inches")
  9492. },
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(4, "feet"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Minimacro",
  9500. height: math.unit(40, "meters")
  9501. },
  9502. {
  9503. name: "Small Macro",
  9504. height: math.unit(400, "meters")
  9505. },
  9506. {
  9507. name: "Macro",
  9508. height: math.unit(4, "miles")
  9509. },
  9510. {
  9511. name: "Megamacro",
  9512. height: math.unit(40, "miles")
  9513. },
  9514. {
  9515. name: "Megamacro+",
  9516. height: math.unit(400, "miles")
  9517. },
  9518. {
  9519. name: "Gigamacro",
  9520. height: math.unit(400000, "miles")
  9521. },
  9522. ]
  9523. ))
  9524. characterMakers.push(() => makeCharacter(
  9525. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9526. {
  9527. side: {
  9528. height: math.unit(6, "feet"),
  9529. weight: math.unit(150, "lb"),
  9530. name: "Side",
  9531. image: {
  9532. source: "./media/characters/kimiko/side.svg",
  9533. extra: 600 / 358
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(15, "feet"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Macro",
  9545. height: math.unit(220, "feet")
  9546. },
  9547. {
  9548. name: "Macro+",
  9549. height: math.unit(1450, "feet")
  9550. },
  9551. {
  9552. name: "Megamacro",
  9553. height: math.unit(11500, "feet")
  9554. },
  9555. {
  9556. name: "Gigamacro",
  9557. height: math.unit(9500, "miles")
  9558. },
  9559. {
  9560. name: "Teramacro",
  9561. height: math.unit(2208005005, "miles")
  9562. },
  9563. {
  9564. name: "Examacro",
  9565. height: math.unit(2750, "parsecs")
  9566. },
  9567. {
  9568. name: "Zettamacro",
  9569. height: math.unit(101500, "parsecs")
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9575. {
  9576. front: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(70, "kg"),
  9579. name: "Front",
  9580. image: {
  9581. source: "./media/characters/andrew-sleepy/front.svg"
  9582. }
  9583. },
  9584. side: {
  9585. height: math.unit(6, "feet"),
  9586. weight: math.unit(70, "kg"),
  9587. name: "Side",
  9588. image: {
  9589. source: "./media/characters/andrew-sleepy/side.svg"
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(1, "mm"),
  9597. default: true
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(6, "feet"),
  9606. weight: math.unit(150, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/judio/front.svg",
  9610. extra: 1258 / 1110
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(5 + 6 / 12, "feet")
  9618. },
  9619. {
  9620. name: "Macro",
  9621. height: math.unit(1000, "feet"),
  9622. default: true
  9623. },
  9624. {
  9625. name: "Megamacro",
  9626. height: math.unit(10, "miles")
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9632. {
  9633. front: {
  9634. height: math.unit(6, "feet"),
  9635. weight: math.unit(68, "kg"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/nomaxice/front.svg",
  9639. extra: 1498 / 1073,
  9640. bottom: 0.075
  9641. }
  9642. },
  9643. foot: {
  9644. height: math.unit(1.1, "feet"),
  9645. name: "Foot",
  9646. image: {
  9647. source: "./media/characters/nomaxice/foot.svg"
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Micro",
  9654. height: math.unit(8, "cm")
  9655. },
  9656. {
  9657. name: "Norm",
  9658. height: math.unit(1.82, "m")
  9659. },
  9660. {
  9661. name: "Norm+",
  9662. height: math.unit(8.8, "feet")
  9663. },
  9664. {
  9665. name: "Big",
  9666. height: math.unit(8, "meters"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Macro",
  9671. height: math.unit(18, "meters")
  9672. },
  9673. {
  9674. name: "Macro+",
  9675. height: math.unit(88, "meters")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(12, "feet"),
  9684. weight: math.unit(1.5, "tons"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/dydros/front.svg",
  9688. extra: 863 / 800,
  9689. bottom: 0.015
  9690. }
  9691. },
  9692. back: {
  9693. height: math.unit(12, "feet"),
  9694. weight: math.unit(1.5, "tons"),
  9695. name: "Back",
  9696. image: {
  9697. source: "./media/characters/dydros/back.svg",
  9698. extra: 900 / 843,
  9699. bottom: 0.005
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(12, "feet"),
  9707. default: true
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(100, "kg"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/riggi/front.svg",
  9720. extra: 5787 / 5303
  9721. }
  9722. },
  9723. hyper: {
  9724. height: math.unit(6 * 5 / 3, "feet"),
  9725. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9726. name: "Hyper",
  9727. image: {
  9728. source: "./media/characters/riggi/hyper.svg",
  9729. extra: 3595 / 3485
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Small Macro",
  9736. height: math.unit(50, "feet")
  9737. },
  9738. {
  9739. name: "Default",
  9740. height: math.unit(200, "feet"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Loom",
  9745. height: math.unit(10000, "feet")
  9746. },
  9747. {
  9748. name: "Cruising Altitude",
  9749. height: math.unit(30000, "feet")
  9750. },
  9751. {
  9752. name: "Megamacro",
  9753. height: math.unit(100, "miles")
  9754. },
  9755. {
  9756. name: "Continent Sized",
  9757. height: math.unit(2800, "miles")
  9758. },
  9759. {
  9760. name: "Earth Sized",
  9761. height: math.unit(8000, "miles")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(250, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/alexi/front.svg",
  9774. extra: 3483 / 3291,
  9775. bottom: 0.04
  9776. }
  9777. },
  9778. back: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(250, "lb"),
  9781. name: "Back",
  9782. image: {
  9783. source: "./media/characters/alexi/back.svg",
  9784. extra: 3533 / 3356,
  9785. bottom: 0.021
  9786. }
  9787. },
  9788. frontTransforming: {
  9789. height: math.unit(8.58, "feet"),
  9790. weight: math.unit(1300, "lb"),
  9791. name: "Transforming",
  9792. image: {
  9793. source: "./media/characters/alexi/front-transforming.svg",
  9794. extra: 437 / 409,
  9795. bottom: 19/458.66
  9796. }
  9797. },
  9798. frontTransformed: {
  9799. height: math.unit(12.5, "feet"),
  9800. weight: math.unit(4000, "lb"),
  9801. name: "Transformed",
  9802. image: {
  9803. source: "./media/characters/alexi/front-transformed.svg",
  9804. extra: 639 / 614,
  9805. bottom: 30.55/671
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(3, "meters"),
  9813. default: true
  9814. },
  9815. {
  9816. name: "Minimacro",
  9817. height: math.unit(30, "meters")
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(500, "meters")
  9822. },
  9823. {
  9824. name: "Megamacro",
  9825. height: math.unit(9000, "km")
  9826. },
  9827. {
  9828. name: "Teramacro",
  9829. height: math.unit(384000, "km")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(150, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/kayroo/front.svg",
  9842. extra: 1153 / 1038,
  9843. bottom: 0.06
  9844. }
  9845. },
  9846. foot: {
  9847. height: math.unit(6, "feet"),
  9848. weight: math.unit(150, "lb"),
  9849. name: "Foot",
  9850. image: {
  9851. source: "./media/characters/kayroo/foot.svg"
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(8, "feet"),
  9859. default: true
  9860. },
  9861. {
  9862. name: "Minimacro",
  9863. height: math.unit(250, "feet")
  9864. },
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(2800, "feet")
  9868. },
  9869. {
  9870. name: "Megamacro",
  9871. height: math.unit(5200, "feet")
  9872. },
  9873. {
  9874. name: "Gigamacro",
  9875. height: math.unit(27000, "feet")
  9876. },
  9877. {
  9878. name: "Omega",
  9879. height: math.unit(45000, "feet")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(18, "feet"),
  9888. weight: math.unit(5800, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/rhys/front.svg",
  9892. extra: 3386 / 3090,
  9893. bottom: 0.07
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(18, "feet"),
  9901. default: true
  9902. },
  9903. {
  9904. name: "Working Size",
  9905. height: math.unit(200, "feet")
  9906. },
  9907. {
  9908. name: "Demolition Size",
  9909. height: math.unit(2000, "feet")
  9910. },
  9911. {
  9912. name: "Maximum Licensed Size",
  9913. height: math.unit(5, "miles")
  9914. },
  9915. {
  9916. name: "Maximum Observed Size",
  9917. height: math.unit(10, "yottameters")
  9918. },
  9919. ]
  9920. ))
  9921. characterMakers.push(() => makeCharacter(
  9922. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9923. {
  9924. front: {
  9925. height: math.unit(6, "feet"),
  9926. weight: math.unit(250, "lb"),
  9927. name: "Front",
  9928. image: {
  9929. source: "./media/characters/toto/front.svg",
  9930. extra: 527 / 479,
  9931. bottom: 0.05
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Micro",
  9938. height: math.unit(3, "feet")
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(10, "feet")
  9943. },
  9944. {
  9945. name: "Macro",
  9946. height: math.unit(150, "feet"),
  9947. default: true
  9948. },
  9949. {
  9950. name: "Megamacro",
  9951. height: math.unit(1200, "feet")
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "King", species: ["lion"], tags: ["anthro"] },
  9957. {
  9958. back: {
  9959. height: math.unit(6, "feet"),
  9960. weight: math.unit(150, "lb"),
  9961. name: "Back",
  9962. image: {
  9963. source: "./media/characters/king/back.svg"
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Micro",
  9970. height: math.unit(2, "inches")
  9971. },
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(8, "feet")
  9975. },
  9976. {
  9977. name: "Macro",
  9978. height: math.unit(200, "feet"),
  9979. default: true
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(50, "miles")
  9984. },
  9985. ]
  9986. ))
  9987. characterMakers.push(() => makeCharacter(
  9988. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  9989. {
  9990. anthro: {
  9991. height: math.unit(6 + 5 / 12, "feet"),
  9992. weight: math.unit(280, "lb"),
  9993. name: "Anthro",
  9994. image: {
  9995. source: "./media/characters/cordite/anthro.svg",
  9996. extra: 1986 / 1905,
  9997. bottom: 0.025
  9998. }
  9999. },
  10000. feral: {
  10001. height: math.unit(2, "feet"),
  10002. weight: math.unit(90, "lb"),
  10003. name: "Feral",
  10004. image: {
  10005. source: "./media/characters/cordite/feral.svg",
  10006. extra: 1260 / 755,
  10007. bottom: 0.05
  10008. }
  10009. },
  10010. },
  10011. [
  10012. {
  10013. name: "Normal",
  10014. height: math.unit(6 + 5 / 12, "feet"),
  10015. default: true
  10016. },
  10017. ]
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10021. {
  10022. front: {
  10023. height: math.unit(6, "feet"),
  10024. weight: math.unit(150, "lb"),
  10025. name: "Front",
  10026. image: {
  10027. source: "./media/characters/pianostrong/front.svg",
  10028. extra: 6577 / 6254,
  10029. bottom: 0.02
  10030. }
  10031. },
  10032. side: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(150, "lb"),
  10035. name: "Side",
  10036. image: {
  10037. source: "./media/characters/pianostrong/side.svg",
  10038. extra: 6106 / 5730
  10039. }
  10040. },
  10041. back: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Back",
  10045. image: {
  10046. source: "./media/characters/pianostrong/back.svg",
  10047. extra: 6085 / 5733,
  10048. bottom: 0.01
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Macro",
  10055. height: math.unit(100, "feet")
  10056. },
  10057. {
  10058. name: "Macro+",
  10059. height: math.unit(300, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro++",
  10064. height: math.unit(1000, "feet")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/kona/front.svg",
  10077. extra: 2960 / 2629,
  10078. bottom: 0.005
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(11 + 8 / 12, "feet")
  10086. },
  10087. {
  10088. name: "Macro",
  10089. height: math.unit(850, "feet"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Macro+",
  10094. height: math.unit(1.5, "km"),
  10095. default: true
  10096. },
  10097. {
  10098. name: "Megamacro",
  10099. height: math.unit(80, "miles")
  10100. },
  10101. {
  10102. name: "Gigamacro",
  10103. height: math.unit(3500, "miles")
  10104. },
  10105. ]
  10106. ))
  10107. characterMakers.push(() => makeCharacter(
  10108. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10109. {
  10110. side: {
  10111. height: math.unit(1.9, "meters"),
  10112. weight: math.unit(326, "kg"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/levi/side.svg",
  10116. extra: 1704 / 1334,
  10117. bottom: 0.02
  10118. }
  10119. },
  10120. },
  10121. [
  10122. {
  10123. name: "Normal",
  10124. height: math.unit(1.9, "meters"),
  10125. default: true
  10126. },
  10127. {
  10128. name: "Macro",
  10129. height: math.unit(20, "meters")
  10130. },
  10131. {
  10132. name: "Macro+",
  10133. height: math.unit(200, "meters")
  10134. },
  10135. {
  10136. name: "Megamacro",
  10137. height: math.unit(2, "km")
  10138. },
  10139. {
  10140. name: "Megamacro+",
  10141. height: math.unit(20, "km")
  10142. },
  10143. {
  10144. name: "Gigamacro",
  10145. height: math.unit(2500, "km")
  10146. },
  10147. {
  10148. name: "Gigamacro+",
  10149. height: math.unit(120000, "km")
  10150. },
  10151. {
  10152. name: "Teramacro",
  10153. height: math.unit(7.77e6, "km")
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10159. {
  10160. front: {
  10161. height: math.unit(6 + 4 / 12, "feet"),
  10162. weight: math.unit(188, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/bmc/front.svg",
  10166. extra: 1067 / 1022,
  10167. bottom: 0.047
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Human-sized",
  10174. height: math.unit(6 + 4 / 12, "feet")
  10175. },
  10176. {
  10177. name: "Small",
  10178. height: math.unit(250, "feet")
  10179. },
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(1250, "feet"),
  10183. default: true
  10184. },
  10185. {
  10186. name: "Good Day",
  10187. height: math.unit(88, "miles")
  10188. },
  10189. {
  10190. name: "Largest Measured Size",
  10191. height: math.unit(11.2e6, "lightyears")
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10197. {
  10198. front: {
  10199. height: math.unit(20, "feet"),
  10200. weight: math.unit(2016, "kg"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/sven-the-kaiju/front.svg",
  10204. extra: 1479 / 1449,
  10205. bottom: 0.05
  10206. }
  10207. },
  10208. },
  10209. [
  10210. {
  10211. name: "Fairy",
  10212. height: math.unit(6, "inches")
  10213. },
  10214. {
  10215. name: "Normal",
  10216. height: math.unit(20, "feet"),
  10217. default: true
  10218. },
  10219. {
  10220. name: "Rampage",
  10221. height: math.unit(200, "feet")
  10222. },
  10223. {
  10224. name: "Archfey Forest Guardian",
  10225. height: math.unit(1, "mile")
  10226. },
  10227. ]
  10228. ))
  10229. characterMakers.push(() => makeCharacter(
  10230. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10231. {
  10232. front: {
  10233. height: math.unit(4, "meters"),
  10234. weight: math.unit(2, "tons"),
  10235. name: "Front",
  10236. image: {
  10237. source: "./media/characters/marik/front.svg",
  10238. extra: 1057 / 1003,
  10239. bottom: 0.08
  10240. }
  10241. },
  10242. },
  10243. [
  10244. {
  10245. name: "Normal",
  10246. height: math.unit(4, "meters"),
  10247. default: true
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(20, "meters")
  10252. },
  10253. {
  10254. name: "Megamacro",
  10255. height: math.unit(50, "km")
  10256. },
  10257. {
  10258. name: "Gigamacro",
  10259. height: math.unit(100, "km")
  10260. },
  10261. {
  10262. name: "Alpha Macro",
  10263. height: math.unit(7.88e7, "yottameters")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10269. {
  10270. front: {
  10271. height: math.unit(6, "feet"),
  10272. weight: math.unit(110, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/mel/front.svg",
  10276. extra: 736 / 617,
  10277. bottom: 0.017
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Pico",
  10284. height: math.unit(3, "pm")
  10285. },
  10286. {
  10287. name: "Nano",
  10288. height: math.unit(3, "nm")
  10289. },
  10290. {
  10291. name: "Micro",
  10292. height: math.unit(0.3, "mm"),
  10293. default: true
  10294. },
  10295. {
  10296. name: "Micro+",
  10297. height: math.unit(3, "mm")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(5 + 10.5 / 12, "feet")
  10302. },
  10303. ]
  10304. ))
  10305. characterMakers.push(() => makeCharacter(
  10306. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10307. {
  10308. kaiju: {
  10309. height: math.unit(1.75, "meters"),
  10310. weight: math.unit(55, "kg"),
  10311. name: "Kaiju",
  10312. image: {
  10313. source: "./media/characters/lykonous/kaiju.svg",
  10314. extra: 1055 / 946,
  10315. bottom: 0.135
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Normal",
  10322. height: math.unit(2.5, "meters"),
  10323. default: true
  10324. },
  10325. {
  10326. name: "Kaiju Dragon",
  10327. height: math.unit(60, "meters")
  10328. },
  10329. {
  10330. name: "Mega Kaiju",
  10331. height: math.unit(120, "km")
  10332. },
  10333. {
  10334. name: "Giga Kaiju",
  10335. height: math.unit(200, "megameters")
  10336. },
  10337. {
  10338. name: "Terra Kaiju",
  10339. height: math.unit(400, "gigameters")
  10340. },
  10341. {
  10342. name: "Kaiju Dragon God",
  10343. height: math.unit(13000, "exaparsecs")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(6, "feet"),
  10352. weight: math.unit(150, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/blü/front.svg",
  10356. extra: 1883 / 1564,
  10357. bottom: 0.031
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(13, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Big Boi",
  10369. height: math.unit(150, "meters")
  10370. },
  10371. {
  10372. name: "Mini Stomper",
  10373. height: math.unit(300, "meters")
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(1000, "meters")
  10378. },
  10379. {
  10380. name: "Megamacro",
  10381. height: math.unit(11000, "meters")
  10382. },
  10383. {
  10384. name: "Gigamacro",
  10385. height: math.unit(11000, "km")
  10386. },
  10387. {
  10388. name: "Teramacro",
  10389. height: math.unit(420000, "km")
  10390. },
  10391. {
  10392. name: "Examacro",
  10393. height: math.unit(120, "parsecs")
  10394. },
  10395. {
  10396. name: "God Tho",
  10397. height: math.unit(98000000000, "parsecs")
  10398. },
  10399. ]
  10400. ))
  10401. characterMakers.push(() => makeCharacter(
  10402. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10403. {
  10404. taurFront: {
  10405. height: math.unit(6, "feet"),
  10406. weight: math.unit(200, "lb"),
  10407. name: "Taur (Front)",
  10408. image: {
  10409. source: "./media/characters/scales/taur-front.svg",
  10410. extra: 1,
  10411. bottom: 0.05
  10412. }
  10413. },
  10414. taurBack: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(200, "lb"),
  10417. name: "Taur (Back)",
  10418. image: {
  10419. source: "./media/characters/scales/taur-back.svg",
  10420. extra: 1,
  10421. bottom: 0.08
  10422. }
  10423. },
  10424. anthro: {
  10425. height: math.unit(6 * 7 / 12, "feet"),
  10426. weight: math.unit(100, "lb"),
  10427. name: "Anthro",
  10428. image: {
  10429. source: "./media/characters/scales/anthro.svg",
  10430. extra: 1,
  10431. bottom: 0.06
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(12, "feet"),
  10439. default: true
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10445. {
  10446. front: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(150, "lb"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/koragos/front.svg",
  10452. extra: 841 / 794,
  10453. bottom: 0.035
  10454. }
  10455. },
  10456. back: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(150, "lb"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/koragos/back.svg",
  10462. extra: 841 / 810,
  10463. bottom: 0.022
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(6 + 11 / 12, "feet"),
  10471. default: true
  10472. },
  10473. {
  10474. name: "Macro",
  10475. height: math.unit(490, "feet")
  10476. },
  10477. {
  10478. name: "Megamacro",
  10479. height: math.unit(10, "miles")
  10480. },
  10481. {
  10482. name: "Gigamacro",
  10483. height: math.unit(50, "miles")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(6, "feet"),
  10492. weight: math.unit(250, "lb"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/xylrem/front.svg",
  10496. extra: 3323 / 3050,
  10497. bottom: 0.065
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Micro",
  10504. height: math.unit(4, "feet")
  10505. },
  10506. {
  10507. name: "Normal",
  10508. height: math.unit(16, "feet"),
  10509. default: true
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(2720, "feet")
  10514. },
  10515. {
  10516. name: "Megamacro",
  10517. height: math.unit(25000, "miles")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(8, "feet"),
  10526. weight: math.unit(250, "kg"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/ikideru/front.svg",
  10530. extra: 930 / 870,
  10531. bottom: 0.087
  10532. }
  10533. },
  10534. back: {
  10535. height: math.unit(8, "feet"),
  10536. weight: math.unit(250, "kg"),
  10537. name: "Back",
  10538. image: {
  10539. source: "./media/characters/ikideru/back.svg",
  10540. extra: 919 / 852,
  10541. bottom: 0.055
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Rare",
  10548. height: math.unit(8, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Playful Loom",
  10553. height: math.unit(80, "feet")
  10554. },
  10555. {
  10556. name: "City Leaner",
  10557. height: math.unit(230, "feet")
  10558. },
  10559. {
  10560. name: "Megamacro",
  10561. height: math.unit(2500, "feet")
  10562. },
  10563. {
  10564. name: "Gigamacro",
  10565. height: math.unit(26400, "feet")
  10566. },
  10567. {
  10568. name: "Tectonic Shifter",
  10569. height: math.unit(1.7, "megameters")
  10570. },
  10571. {
  10572. name: "Planet Carer",
  10573. height: math.unit(21, "megameters")
  10574. },
  10575. {
  10576. name: "God",
  10577. height: math.unit(11157.22, "parsecs")
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(120, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/neo/front.svg"
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Micro",
  10596. height: math.unit(2, "inches"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Human Size",
  10601. height: math.unit(5 + 8 / 12, "feet")
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10607. {
  10608. front: {
  10609. height: math.unit(13 + 10 / 12, "feet"),
  10610. weight: math.unit(5320, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/chauncey-chantz/front.svg",
  10614. extra: 1587 / 1435,
  10615. bottom: 0.02
  10616. }
  10617. },
  10618. },
  10619. [
  10620. {
  10621. name: "Normal",
  10622. height: math.unit(13 + 10 / 12, "feet"),
  10623. default: true
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(45, "feet")
  10628. },
  10629. {
  10630. name: "Megamacro",
  10631. height: math.unit(250, "miles")
  10632. },
  10633. {
  10634. name: "Planetary",
  10635. height: math.unit(10000, "miles")
  10636. },
  10637. {
  10638. name: "Galactic",
  10639. height: math.unit(40000, "parsecs")
  10640. },
  10641. {
  10642. name: "Universal",
  10643. height: math.unit(1, "yottameter")
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10649. {
  10650. front: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(150, "lb"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/epifox/front.svg",
  10656. extra: 1,
  10657. bottom: 0.075
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Micro",
  10664. height: math.unit(6, "inches")
  10665. },
  10666. {
  10667. name: "Normal",
  10668. height: math.unit(12, "feet"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Macro",
  10673. height: math.unit(3810, "feet")
  10674. },
  10675. {
  10676. name: "Megamacro",
  10677. height: math.unit(500, "miles")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(1.8796, "m"),
  10686. weight: math.unit(230, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/colin-t/front.svg",
  10690. extra: 1272 / 1193,
  10691. bottom: 0.07
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Micro",
  10698. height: math.unit(0.571, "meters")
  10699. },
  10700. {
  10701. name: "Normal",
  10702. height: math.unit(1.8796, "meters"),
  10703. default: true
  10704. },
  10705. {
  10706. name: "Tall",
  10707. height: math.unit(4, "meters")
  10708. },
  10709. {
  10710. name: "Macro",
  10711. height: math.unit(67.241, "meters")
  10712. },
  10713. {
  10714. name: "Megamacro",
  10715. height: math.unit(371.856, "meters")
  10716. },
  10717. {
  10718. name: "Planetary",
  10719. height: math.unit(12631.5689, "km")
  10720. },
  10721. ]
  10722. ))
  10723. characterMakers.push(() => makeCharacter(
  10724. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10725. {
  10726. front: {
  10727. height: math.unit(1.85, "meters"),
  10728. weight: math.unit(80, "kg"),
  10729. name: "Front",
  10730. image: {
  10731. source: "./media/characters/matvei/front.svg",
  10732. extra: 614 / 594,
  10733. bottom: 0.01
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Normal",
  10740. height: math.unit(1.85, "meters"),
  10741. default: true
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(5 + 9 / 12, "feet"),
  10750. weight: math.unit(70, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/quincy/front.svg",
  10754. extra: 3041 / 2751
  10755. }
  10756. },
  10757. back: {
  10758. height: math.unit(5 + 9 / 12, "feet"),
  10759. weight: math.unit(70, "lb"),
  10760. name: "Back",
  10761. image: {
  10762. source: "./media/characters/quincy/back.svg",
  10763. extra: 3041 / 2751
  10764. }
  10765. },
  10766. flying: {
  10767. height: math.unit(5 + 4 / 12, "feet"),
  10768. weight: math.unit(70, "lb"),
  10769. name: "Flying",
  10770. image: {
  10771. source: "./media/characters/quincy/flying.svg",
  10772. extra: 1044 / 930
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Micro",
  10779. height: math.unit(3, "cm")
  10780. },
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(5 + 9 / 12, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(200, "meters"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(1000, "meters")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(4 + 7 / 12, "feet"),
  10801. weight: math.unit(150, "lb"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/vanrel/front.svg",
  10805. extra: 1,
  10806. bottom: 0.02
  10807. }
  10808. },
  10809. elemental: {
  10810. height: math.unit(3, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Elemental",
  10813. image: {
  10814. source: "./media/characters/vanrel/elemental.svg",
  10815. extra: 192.3/162.8,
  10816. bottom: 1.79/194.17
  10817. }
  10818. },
  10819. side: {
  10820. height: math.unit(4 + 7 / 12, "feet"),
  10821. weight: math.unit(150, "lb"),
  10822. name: "Side",
  10823. image: {
  10824. source: "./media/characters/vanrel/side.svg",
  10825. extra: 1,
  10826. bottom: 0.025
  10827. }
  10828. },
  10829. tome: {
  10830. height: math.unit(1.35, "feet"),
  10831. weight: math.unit(10, "lb"),
  10832. name: "Vanrel's Tome",
  10833. rename: true,
  10834. image: {
  10835. source: "./media/characters/vanrel/tome.svg"
  10836. }
  10837. },
  10838. beans: {
  10839. height: math.unit(0.89, "feet"),
  10840. name: "Beans",
  10841. image: {
  10842. source: "./media/characters/vanrel/beans.svg"
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(4 + 7 / 12, "feet"),
  10850. default: true
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(7 + 5 / 12, "feet"),
  10859. weight: math.unit(150, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/kuiper-vanrel/front.svg",
  10863. extra: 1118 / 1068,
  10864. bottom: 0.09
  10865. }
  10866. },
  10867. foot: {
  10868. height: math.unit(0.55, "meters"),
  10869. name: "Foot",
  10870. image: {
  10871. source: "./media/characters/kuiper-vanrel/foot.svg",
  10872. }
  10873. },
  10874. battle: {
  10875. height: math.unit(6.824, "feet"),
  10876. weight: math.unit(150, "lb"),
  10877. name: "Battle",
  10878. image: {
  10879. source: "./media/characters/kuiper-vanrel/battle.svg",
  10880. extra: 1466/1327,
  10881. bottom: 29/1492.5
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(7 + 5 / 12, "feet"),
  10889. default: true
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(8 + 5 / 12, "feet"),
  10898. weight: math.unit(150, "lb"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/keset-vanrel/front.svg",
  10902. extra: 1150 / 1084,
  10903. bottom: 0.05
  10904. }
  10905. },
  10906. hand: {
  10907. height: math.unit(0.6, "meters"),
  10908. name: "Hand",
  10909. image: {
  10910. source: "./media/characters/keset-vanrel/hand.svg"
  10911. }
  10912. },
  10913. foot: {
  10914. height: math.unit(0.94978, "meters"),
  10915. name: "Foot",
  10916. image: {
  10917. source: "./media/characters/keset-vanrel/foot.svg"
  10918. }
  10919. },
  10920. battle: {
  10921. height: math.unit(7.408, "feet"),
  10922. weight: math.unit(150, "lb"),
  10923. name: "Battle",
  10924. image: {
  10925. source: "./media/characters/keset-vanrel/battle.svg",
  10926. extra: 1890/1386,
  10927. bottom: 73.28/1970
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(8 + 5 / 12, "feet"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/neos/front.svg",
  10948. extra: 1696 / 992,
  10949. bottom: 0.14
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(54, "cm"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(100, "m")
  10962. },
  10963. {
  10964. name: "Megamacro",
  10965. height: math.unit(10, "km")
  10966. },
  10967. {
  10968. name: "Megamacro+",
  10969. height: math.unit(100, "km")
  10970. },
  10971. {
  10972. name: "Gigamacro",
  10973. height: math.unit(100, "Mm")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(100, "Gm")
  10978. },
  10979. {
  10980. name: "Examacro",
  10981. height: math.unit(100, "Em")
  10982. },
  10983. {
  10984. name: "Godly",
  10985. height: math.unit(10000, "Ym")
  10986. },
  10987. {
  10988. name: "Beyond Godly",
  10989. height: math.unit(10000000, "Ym")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  10995. {
  10996. feminine: {
  10997. height: math.unit(5, "feet"),
  10998. weight: math.unit(100, "lb"),
  10999. name: "Feminine",
  11000. image: {
  11001. source: "./media/characters/sammy-mouse/feminine.svg",
  11002. extra: 2526 / 2425,
  11003. bottom: 0.123
  11004. }
  11005. },
  11006. masculine: {
  11007. height: math.unit(5, "feet"),
  11008. weight: math.unit(100, "lb"),
  11009. name: "Masculine",
  11010. image: {
  11011. source: "./media/characters/sammy-mouse/masculine.svg",
  11012. extra: 2526 / 2425,
  11013. bottom: 0.123
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Micro",
  11020. height: math.unit(5, "inches")
  11021. },
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(5, "feet"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Macro",
  11029. height: math.unit(60, "feet")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(4, "feet"),
  11038. weight: math.unit(50, "lb"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/kole/front.svg",
  11042. extra: 1423 / 1303,
  11043. bottom: 0.025
  11044. }
  11045. },
  11046. back: {
  11047. height: math.unit(4, "feet"),
  11048. weight: math.unit(50, "lb"),
  11049. name: "Back",
  11050. image: {
  11051. source: "./media/characters/kole/back.svg",
  11052. extra: 1426 / 1280,
  11053. bottom: 0.02
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(4, "feet"),
  11061. default: true
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(2 + 6 / 12, "feet"),
  11070. weight: math.unit(20, "lb"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/rufran/front.svg",
  11074. extra: 2041 / 1839,
  11075. bottom: 0.055
  11076. }
  11077. },
  11078. back: {
  11079. height: math.unit(2 + 6 / 12, "feet"),
  11080. weight: math.unit(20, "lb"),
  11081. name: "Back",
  11082. image: {
  11083. source: "./media/characters/rufran/back.svg",
  11084. extra: 2054 / 1839,
  11085. bottom: 0.01
  11086. }
  11087. },
  11088. hand: {
  11089. height: math.unit(0.2166, "meters"),
  11090. name: "Hand",
  11091. image: {
  11092. source: "./media/characters/rufran/hand.svg"
  11093. }
  11094. },
  11095. foot: {
  11096. height: math.unit(0.185, "meters"),
  11097. name: "Foot",
  11098. image: {
  11099. source: "./media/characters/rufran/foot.svg"
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Micro",
  11106. height: math.unit(1, "inch")
  11107. },
  11108. {
  11109. name: "Normal",
  11110. height: math.unit(2 + 6 / 12, "feet"),
  11111. default: true
  11112. },
  11113. {
  11114. name: "Big",
  11115. height: math.unit(60, "feet")
  11116. },
  11117. {
  11118. name: "Macro",
  11119. height: math.unit(325, "feet")
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11125. {
  11126. front: {
  11127. height: math.unit(0.3, "meters"),
  11128. weight: math.unit(3.5, "kg"),
  11129. name: "Front",
  11130. image: {
  11131. source: "./media/characters/chip/front.svg",
  11132. extra: 748 / 674
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Micro",
  11139. height: math.unit(1, "inch"),
  11140. default: true
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11146. {
  11147. side: {
  11148. height: math.unit(2.3, "meters"),
  11149. weight: math.unit(3500, "lb"),
  11150. name: "Side",
  11151. image: {
  11152. source: "./media/characters/torvid/side.svg",
  11153. extra: 1972 / 722,
  11154. bottom: 0.035
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(2.3, "meters"),
  11162. default: true
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(2, "meters"),
  11171. weight: math.unit(150.5, "kg"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/susan/front.svg",
  11175. extra: 693 / 635,
  11176. bottom: 0.05
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Megamacro",
  11183. height: math.unit(505, "miles"),
  11184. default: true
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(6, "feet"),
  11193. weight: math.unit(150, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/raindrops/front.svg",
  11197. extra: 2655 / 2461,
  11198. bottom: 0.02
  11199. }
  11200. },
  11201. back: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(150, "lb"),
  11204. name: "Back",
  11205. image: {
  11206. source: "./media/characters/raindrops/back.svg",
  11207. extra: 2574 / 2400,
  11208. bottom: 0.03
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Micro",
  11215. height: math.unit(6, "inches")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(6 + 2 / 12, "feet")
  11220. },
  11221. {
  11222. name: "Macro",
  11223. height: math.unit(131, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(15, "miles")
  11229. },
  11230. {
  11231. name: "Gigamacro",
  11232. height: math.unit(4000, "miles")
  11233. },
  11234. {
  11235. name: "Teramacro",
  11236. height: math.unit(315000, "miles")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(2.794, "meters"),
  11245. weight: math.unit(325, "kg"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/tezwa/front.svg",
  11249. extra: 2083 / 1906,
  11250. bottom: 0.031
  11251. }
  11252. },
  11253. foot: {
  11254. height: math.unit(0.687, "meters"),
  11255. name: "Foot",
  11256. image: {
  11257. source: "./media/characters/tezwa/foot.svg"
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(9 + 2 / 12, "feet"),
  11265. default: true
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11271. {
  11272. front: {
  11273. height: math.unit(58, "feet"),
  11274. weight: math.unit(89000, "lb"),
  11275. name: "Front",
  11276. image: {
  11277. source: "./media/characters/typhus/front.svg",
  11278. extra: 816 / 800,
  11279. bottom: 0.065
  11280. }
  11281. },
  11282. },
  11283. [
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(58, "feet"),
  11287. default: true
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11293. {
  11294. front: {
  11295. height: math.unit(12, "feet"),
  11296. weight: math.unit(6, "tonnes"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/lyra-von-wulf/front.svg",
  11300. extra: 1,
  11301. bottom: 0.10
  11302. }
  11303. },
  11304. frontMecha: {
  11305. height: math.unit(12, "feet"),
  11306. weight: math.unit(12, "tonnes"),
  11307. name: "Front (Mecha)",
  11308. image: {
  11309. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11310. extra: 1,
  11311. bottom: 0.042
  11312. }
  11313. },
  11314. maw: {
  11315. height: math.unit(2.2, "feet"),
  11316. name: "Maw",
  11317. image: {
  11318. source: "./media/characters/lyra-von-wulf/maw.svg"
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(12, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Classic",
  11330. height: math.unit(50, "feet")
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(500, "feet")
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(1, "mile")
  11339. },
  11340. {
  11341. name: "Gigamacro",
  11342. height: math.unit(400, "miles")
  11343. },
  11344. {
  11345. name: "Teramacro",
  11346. height: math.unit(22000, "miles")
  11347. },
  11348. {
  11349. name: "Solarmacro",
  11350. height: math.unit(8600000, "miles")
  11351. },
  11352. {
  11353. name: "Galactic",
  11354. height: math.unit(1057000, "lightyears")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6 + 10 / 12, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/dixon/front.svg",
  11367. extra: 3361 / 3209,
  11368. bottom: 0.01
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(6 + 10 / 12, "feet"),
  11376. default: true
  11377. },
  11378. {
  11379. name: "Big",
  11380. height: math.unit(12, "meters")
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(500, "meters")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(2, "km")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(185, "cm"),
  11397. weight: math.unit(68, "kg"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/kauko/front.svg",
  11401. extra: 1455 / 1421,
  11402. bottom: 0.03
  11403. }
  11404. },
  11405. back: {
  11406. height: math.unit(185, "cm"),
  11407. weight: math.unit(68, "kg"),
  11408. name: "Back",
  11409. image: {
  11410. source: "./media/characters/kauko/back.svg",
  11411. extra: 1455 / 1421,
  11412. bottom: 0.004
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(185, "cm"),
  11420. default: true
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(6, "feet"),
  11429. weight: math.unit(150, "kg"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/varg/front.svg",
  11433. extra: 1108 / 1018,
  11434. bottom: 0.0375
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(5, "meters")
  11442. },
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(200, "meters")
  11446. },
  11447. {
  11448. name: "Megamacro",
  11449. height: math.unit(20, "kilometers")
  11450. },
  11451. {
  11452. name: "True Size",
  11453. height: math.unit(211, "km"),
  11454. default: true
  11455. },
  11456. {
  11457. name: "Gigamacro",
  11458. height: math.unit(1000, "km")
  11459. },
  11460. {
  11461. name: "Gigamacro+",
  11462. height: math.unit(8000, "km")
  11463. },
  11464. {
  11465. name: "Teramacro",
  11466. height: math.unit(1000000, "km")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(7 + 7 / 12, "feet"),
  11475. weight: math.unit(267, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/dayza/front.svg",
  11479. extra: 1262 / 1200,
  11480. bottom: 0.035
  11481. }
  11482. },
  11483. side: {
  11484. height: math.unit(7 + 7 / 12, "feet"),
  11485. weight: math.unit(267, "lb"),
  11486. name: "Side",
  11487. image: {
  11488. source: "./media/characters/dayza/side.svg",
  11489. extra: 1295 / 1245,
  11490. bottom: 0.05
  11491. }
  11492. },
  11493. back: {
  11494. height: math.unit(7 + 7 / 12, "feet"),
  11495. weight: math.unit(267, "lb"),
  11496. name: "Back",
  11497. image: {
  11498. source: "./media/characters/dayza/back.svg",
  11499. extra: 1241 / 1170
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Normal",
  11506. height: math.unit(7 + 7 / 12, "feet"),
  11507. default: true
  11508. },
  11509. {
  11510. name: "Macro",
  11511. height: math.unit(155, "feet")
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(6 + 5 / 12, "feet"),
  11520. weight: math.unit(160, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/xanthos/front.svg",
  11524. extra: 1,
  11525. bottom: 0.04
  11526. }
  11527. },
  11528. back: {
  11529. height: math.unit(6 + 5 / 12, "feet"),
  11530. weight: math.unit(160, "lb"),
  11531. name: "Back",
  11532. image: {
  11533. source: "./media/characters/xanthos/back.svg",
  11534. extra: 1,
  11535. bottom: 0.03
  11536. }
  11537. },
  11538. hand: {
  11539. height: math.unit(0.928, "feet"),
  11540. name: "Hand",
  11541. image: {
  11542. source: "./media/characters/xanthos/hand.svg"
  11543. }
  11544. },
  11545. foot: {
  11546. height: math.unit(1.286, "feet"),
  11547. name: "Foot",
  11548. image: {
  11549. source: "./media/characters/xanthos/foot.svg"
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(6 + 5 / 12, "feet"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Normal+",
  11561. height: math.unit(6, "meters")
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(40, "feet")
  11566. },
  11567. {
  11568. name: "Macro+",
  11569. height: math.unit(200, "meters")
  11570. },
  11571. {
  11572. name: "Megamacro",
  11573. height: math.unit(20, "km")
  11574. },
  11575. {
  11576. name: "Megamacro+",
  11577. height: math.unit(100, "km")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(6 + 3 / 12, "feet"),
  11586. weight: math.unit(215, "lb"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/grynn/front.svg",
  11590. extra: 4627 / 4209,
  11591. bottom: 0.047
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Micro",
  11598. height: math.unit(6, "inches")
  11599. },
  11600. {
  11601. name: "Normal",
  11602. height: math.unit(6 + 3 / 12, "feet"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Big",
  11607. height: math.unit(104, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(944, "feet")
  11612. },
  11613. {
  11614. name: "Macro+",
  11615. height: math.unit(9480, "feet")
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(78752, "feet")
  11620. },
  11621. {
  11622. name: "Megamacro+",
  11623. height: math.unit(630128, "feet")
  11624. },
  11625. {
  11626. name: "Megamacro++",
  11627. height: math.unit(3150695, "feet")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(7 + 5 / 12, "feet"),
  11636. weight: math.unit(450, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/mocha-aura/front.svg",
  11640. extra: 1907 / 1817,
  11641. bottom: 0.04
  11642. }
  11643. },
  11644. back: {
  11645. height: math.unit(7 + 5 / 12, "feet"),
  11646. weight: math.unit(450, "lb"),
  11647. name: "Back",
  11648. image: {
  11649. source: "./media/characters/mocha-aura/back.svg",
  11650. extra: 1900 / 1825,
  11651. bottom: 0.045
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Nano",
  11658. height: math.unit(1, "nm")
  11659. },
  11660. {
  11661. name: "Megamicro",
  11662. height: math.unit(1, "mm")
  11663. },
  11664. {
  11665. name: "Micro",
  11666. height: math.unit(3, "inches")
  11667. },
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(7 + 5 / 12, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(30, "feet")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(3500, "feet")
  11680. },
  11681. {
  11682. name: "Teramacro",
  11683. height: math.unit(500000, "miles")
  11684. },
  11685. {
  11686. name: "Petamacro",
  11687. height: math.unit(50000000000000000, "parsecs")
  11688. },
  11689. ]
  11690. ))
  11691. characterMakers.push(() => makeCharacter(
  11692. { name: "Ilisha Devya", species: ["alligator", "cobra"], tags: ["anthro"] },
  11693. {
  11694. front: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(150, "lb"),
  11697. name: "Front",
  11698. image: {
  11699. source: "./media/characters/ilisha-devya/front.svg",
  11700. extra: 1,
  11701. bottom: 0.175
  11702. }
  11703. },
  11704. back: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(150, "lb"),
  11707. name: "Back",
  11708. image: {
  11709. source: "./media/characters/ilisha-devya/back.svg",
  11710. extra: 1,
  11711. bottom: 0.015
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(500, "feet"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Megamacro",
  11723. height: math.unit(10, "miles")
  11724. },
  11725. {
  11726. name: "Gigamacro",
  11727. height: math.unit(100000, "miles")
  11728. },
  11729. {
  11730. name: "Examacro",
  11731. height: math.unit(1e9, "lightyears")
  11732. },
  11733. {
  11734. name: "Omniversal",
  11735. height: math.unit(1e33, "lightyears")
  11736. },
  11737. {
  11738. name: "Beyond Infinite",
  11739. height: math.unit(1e100, "lightyears")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11745. {
  11746. Side: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(150, "lb"),
  11749. name: "Side",
  11750. image: {
  11751. source: "./media/characters/mira/side.svg",
  11752. extra: 900 / 799,
  11753. bottom: 0.02
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Human Size",
  11760. height: math.unit(6, "feet")
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(100, "feet"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Megamacro",
  11769. height: math.unit(10, "miles")
  11770. },
  11771. {
  11772. name: "Gigamacro",
  11773. height: math.unit(25000, "miles")
  11774. },
  11775. {
  11776. name: "Teramacro",
  11777. height: math.unit(300, "AU")
  11778. },
  11779. {
  11780. name: "Full Size",
  11781. height: math.unit(4.5e10, "lightyears")
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/holly/front.svg",
  11794. extra: 639 / 606
  11795. }
  11796. },
  11797. back: {
  11798. height: math.unit(6, "feet"),
  11799. weight: math.unit(150, "lb"),
  11800. name: "Back",
  11801. image: {
  11802. source: "./media/characters/holly/back.svg",
  11803. extra: 623 / 598
  11804. }
  11805. },
  11806. frontWorking: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Front (Working)",
  11810. image: {
  11811. source: "./media/characters/holly/front-working.svg",
  11812. extra: 607 / 577,
  11813. bottom: 0.048
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(12 + 3 / 12, "feet"),
  11821. default: true
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(6, "feet"),
  11830. weight: math.unit(150, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/porter/front.svg",
  11834. extra: 1,
  11835. bottom: 0.01
  11836. }
  11837. },
  11838. frontRobes: {
  11839. height: math.unit(6, "feet"),
  11840. weight: math.unit(150, "lb"),
  11841. name: "Front (Robes)",
  11842. image: {
  11843. source: "./media/characters/porter/front-robes.svg",
  11844. extra: 1.01,
  11845. bottom: 0.01
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Normal",
  11852. height: math.unit(11 + 9 / 12, "feet"),
  11853. default: true
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11859. {
  11860. legendary: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(150, "lb"),
  11863. name: "Legendary",
  11864. image: {
  11865. source: "./media/characters/lucy/legendary.svg",
  11866. extra: 1355 / 1100,
  11867. bottom: 0.045
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Legendary",
  11874. height: math.unit(86882 * 2, "miles"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(150, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/drusilla/front.svg",
  11888. extra: 678 / 635,
  11889. bottom: 0.03
  11890. }
  11891. },
  11892. back: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Back",
  11896. image: {
  11897. source: "./media/characters/drusilla/back.svg",
  11898. extra: 678 / 635,
  11899. bottom: 0.005
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(100, "feet")
  11907. },
  11908. {
  11909. name: "Canon Height",
  11910. height: math.unit(2000, "feet"),
  11911. default: true
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(180, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/renard-thatch/front.svg",
  11924. extra: 2411 / 2275,
  11925. bottom: 0.01
  11926. }
  11927. },
  11928. frontPosing: {
  11929. height: math.unit(6, "feet"),
  11930. weight: math.unit(180, "lb"),
  11931. name: "Front (Posing)",
  11932. image: {
  11933. source: "./media/characters/renard-thatch/front-posing.svg",
  11934. extra: 2381 / 2261,
  11935. bottom: 0.01
  11936. }
  11937. },
  11938. back: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(180, "lb"),
  11941. name: "Back",
  11942. image: {
  11943. source: "./media/characters/renard-thatch/back.svg",
  11944. extra: 2428 / 2288
  11945. }
  11946. },
  11947. },
  11948. [
  11949. {
  11950. name: "Micro",
  11951. height: math.unit(3, "inches")
  11952. },
  11953. {
  11954. name: "Default",
  11955. height: math.unit(6, "feet"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Macro",
  11960. height: math.unit(75, "feet")
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(1450, "feet"),
  11969. weight: math.unit(1.21e6, "tons"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/sekvra/front.svg",
  11973. extra: 1,
  11974. bottom: 0.03
  11975. }
  11976. },
  11977. frontClothed: {
  11978. height: math.unit(1450, "feet"),
  11979. weight: math.unit(1.21e6, "tons"),
  11980. name: "Front (Clothed)",
  11981. image: {
  11982. source: "./media/characters/sekvra/front-clothed.svg",
  11983. extra: 1,
  11984. bottom: 0.03
  11985. }
  11986. },
  11987. side: {
  11988. height: math.unit(1450, "feet"),
  11989. weight: math.unit(1.21e6, "tons"),
  11990. name: "Side",
  11991. image: {
  11992. source: "./media/characters/sekvra/side.svg",
  11993. extra: 1,
  11994. bottom: 0.025
  11995. }
  11996. },
  11997. back: {
  11998. height: math.unit(1450, "feet"),
  11999. weight: math.unit(1.21e6, "tons"),
  12000. name: "Back",
  12001. image: {
  12002. source: "./media/characters/sekvra/back.svg",
  12003. extra: 1,
  12004. bottom: 0.005
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(1450, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(15000, "feet")
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12022. {
  12023. front: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(150, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/carmine/front.svg",
  12029. extra: 1,
  12030. bottom: 0.035
  12031. }
  12032. },
  12033. frontArmor: {
  12034. height: math.unit(6, "feet"),
  12035. weight: math.unit(150, "lb"),
  12036. name: "Front (Armor)",
  12037. image: {
  12038. source: "./media/characters/carmine/front-armor.svg",
  12039. extra: 1,
  12040. bottom: 0.035
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Large",
  12047. height: math.unit(1, "mile")
  12048. },
  12049. {
  12050. name: "Huge",
  12051. height: math.unit(40, "miles"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Colossal",
  12056. height: math.unit(2500, "miles")
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(6, "feet"),
  12065. weight: math.unit(150, "lb"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/elyssia/front.svg",
  12069. extra: 2201 / 2035,
  12070. bottom: 0.05
  12071. }
  12072. },
  12073. frontClothed: {
  12074. height: math.unit(6, "feet"),
  12075. weight: math.unit(150, "lb"),
  12076. name: "Front (Clothed)",
  12077. image: {
  12078. source: "./media/characters/elyssia/front-clothed.svg",
  12079. extra: 2201 / 2035,
  12080. bottom: 0.05
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(150, "lb"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/elyssia/back.svg",
  12089. extra: 2201 / 2035,
  12090. bottom: 0.013
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Smaller",
  12097. height: math.unit(150, "feet")
  12098. },
  12099. {
  12100. name: "Standard",
  12101. height: math.unit(1400, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Distracted",
  12106. height: math.unit(15000, "feet")
  12107. },
  12108. ]
  12109. ))
  12110. characterMakers.push(() => makeCharacter(
  12111. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12112. {
  12113. front: {
  12114. height: math.unit(7 + 4 / 12, "feet"),
  12115. weight: math.unit(500, "lb"),
  12116. name: "Front",
  12117. image: {
  12118. source: "./media/characters/geno-maxwell/front.svg",
  12119. extra: 2207 / 2040,
  12120. bottom: 0.015
  12121. }
  12122. },
  12123. },
  12124. [
  12125. {
  12126. name: "Micro",
  12127. height: math.unit(3, "inches")
  12128. },
  12129. {
  12130. name: "Normal",
  12131. height: math.unit(7 + 4 / 12, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Macro",
  12136. height: math.unit(220, "feet")
  12137. },
  12138. {
  12139. name: "Megamacro",
  12140. height: math.unit(11, "miles")
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(7 + 4 / 12, "feet"),
  12149. weight: math.unit(500, "lb"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/regena-maxwell/front.svg",
  12153. extra: 3115 / 2770,
  12154. bottom: 0.02
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(7 + 4 / 12, "feet"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Macro",
  12166. height: math.unit(220, "feet")
  12167. },
  12168. {
  12169. name: "Megamacro",
  12170. height: math.unit(11, "miles")
  12171. },
  12172. ]
  12173. ))
  12174. characterMakers.push(() => makeCharacter(
  12175. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12176. {
  12177. front: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(150, "lb"),
  12180. name: "Front",
  12181. image: {
  12182. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12183. extra: 860 / 690,
  12184. bottom: 0.03
  12185. }
  12186. },
  12187. },
  12188. [
  12189. {
  12190. name: "Normal",
  12191. height: math.unit(1.7, "meters"),
  12192. default: true
  12193. },
  12194. ]
  12195. ))
  12196. characterMakers.push(() => makeCharacter(
  12197. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12198. {
  12199. front: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(150, "lb"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/quilly/front.svg",
  12205. extra: 890 / 776
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Gigamacro",
  12212. height: math.unit(404090, "miles"),
  12213. default: true
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(7 + 8 / 12, "feet"),
  12222. weight: math.unit(350, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/tempest/front.svg",
  12226. extra: 1175 / 1086,
  12227. bottom: 0.02
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(7 + 8 / 12, "feet"),
  12235. default: true
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12241. {
  12242. side: {
  12243. height: math.unit(4 + 5 / 12, "feet"),
  12244. weight: math.unit(80, "lb"),
  12245. name: "Side",
  12246. image: {
  12247. source: "./media/characters/rodger/side.svg",
  12248. extra: 1235 / 1118
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Micro",
  12255. height: math.unit(1, "inch")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(4 + 5 / 12, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Macro",
  12264. height: math.unit(120, "feet")
  12265. },
  12266. ]
  12267. ))
  12268. characterMakers.push(() => makeCharacter(
  12269. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12270. {
  12271. front: {
  12272. height: math.unit(6, "feet"),
  12273. weight: math.unit(150, "lb"),
  12274. name: "Front",
  12275. image: {
  12276. source: "./media/characters/danyel/front.svg",
  12277. extra: 1185 / 1123,
  12278. bottom: 0.05
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Shrunken",
  12285. height: math.unit(0.5, "mm")
  12286. },
  12287. {
  12288. name: "Micro",
  12289. height: math.unit(1, "mm"),
  12290. default: true
  12291. },
  12292. {
  12293. name: "Upsized",
  12294. height: math.unit(5 + 5 / 12, "feet")
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(5 + 6 / 12, "feet"),
  12303. weight: math.unit(200, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/vivian-bijoux/front.svg",
  12307. extra: 1,
  12308. bottom: 0.072
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(5 + 6 / 12, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Bad Dream",
  12320. height: math.unit(500, "feet")
  12321. },
  12322. {
  12323. name: "Nightmare",
  12324. height: math.unit(500, "miles")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(6 + 1 / 12, "feet"),
  12333. weight: math.unit(260, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/zeta/front.svg",
  12337. extra: 1968 / 1889,
  12338. bottom: 0.06
  12339. }
  12340. },
  12341. back: {
  12342. height: math.unit(6 + 1 / 12, "feet"),
  12343. weight: math.unit(260, "lb"),
  12344. name: "Back",
  12345. image: {
  12346. source: "./media/characters/zeta/back.svg",
  12347. extra: 1944 / 1858,
  12348. bottom: 0.03
  12349. }
  12350. },
  12351. hand: {
  12352. height: math.unit(1.112, "feet"),
  12353. name: "Hand",
  12354. image: {
  12355. source: "./media/characters/zeta/hand.svg"
  12356. }
  12357. },
  12358. foot: {
  12359. height: math.unit(1.48, "feet"),
  12360. name: "Foot",
  12361. image: {
  12362. source: "./media/characters/zeta/foot.svg"
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Micro",
  12369. height: math.unit(6, "inches")
  12370. },
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(6 + 1 / 12, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(20, "feet")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(150, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/jamie-larsen/front.svg",
  12391. extra: 962 / 933,
  12392. bottom: 0.02
  12393. }
  12394. },
  12395. back: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Back",
  12399. image: {
  12400. source: "./media/characters/jamie-larsen/back.svg",
  12401. extra: 997 / 946
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(28 + 7 / 12, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Macro+",
  12413. height: math.unit(180, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(10, "miles")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(200000, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(120, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/vance/front.svg",
  12434. extra: 1980 / 1890,
  12435. bottom: 0.09
  12436. }
  12437. },
  12438. back: {
  12439. height: math.unit(6, "feet"),
  12440. weight: math.unit(120, "lb"),
  12441. name: "Back",
  12442. image: {
  12443. source: "./media/characters/vance/back.svg",
  12444. extra: 2081 / 1994,
  12445. bottom: 0.014
  12446. }
  12447. },
  12448. hand: {
  12449. height: math.unit(0.88, "feet"),
  12450. name: "Hand",
  12451. image: {
  12452. source: "./media/characters/vance/hand.svg"
  12453. }
  12454. },
  12455. foot: {
  12456. height: math.unit(0.64, "feet"),
  12457. name: "Foot",
  12458. image: {
  12459. source: "./media/characters/vance/foot.svg"
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Small",
  12466. height: math.unit(90, "feet"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(100, "meters")
  12472. },
  12473. {
  12474. name: "Megamacro",
  12475. height: math.unit(15, "miles")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(180, "lb"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/xochitl/front.svg",
  12488. extra: 2297 / 2261,
  12489. bottom: 0.065
  12490. }
  12491. },
  12492. back: {
  12493. height: math.unit(6, "feet"),
  12494. weight: math.unit(180, "lb"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/xochitl/back.svg",
  12498. extra: 2386 / 2354,
  12499. bottom: 0.01
  12500. }
  12501. },
  12502. foot: {
  12503. height: math.unit(6 / 5 * 1.15, "feet"),
  12504. weight: math.unit(150, "lb"),
  12505. name: "Foot",
  12506. image: {
  12507. source: "./media/characters/xochitl/foot.svg"
  12508. }
  12509. },
  12510. },
  12511. [
  12512. {
  12513. name: "Macro",
  12514. height: math.unit(80, "feet")
  12515. },
  12516. {
  12517. name: "Macro+",
  12518. height: math.unit(400, "feet"),
  12519. default: true
  12520. },
  12521. {
  12522. name: "Gigamacro",
  12523. height: math.unit(80000, "miles")
  12524. },
  12525. {
  12526. name: "Gigamacro+",
  12527. height: math.unit(400000, "miles")
  12528. },
  12529. {
  12530. name: "Teramacro",
  12531. height: math.unit(300, "AU")
  12532. },
  12533. ]
  12534. ))
  12535. characterMakers.push(() => makeCharacter(
  12536. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12537. {
  12538. front: {
  12539. height: math.unit(6, "feet"),
  12540. weight: math.unit(150, "lb"),
  12541. name: "Front",
  12542. image: {
  12543. source: "./media/characters/vincent/front.svg",
  12544. extra: 1130 / 1080,
  12545. bottom: 0.055
  12546. }
  12547. },
  12548. beak: {
  12549. height: math.unit(6 * 0.1, "feet"),
  12550. name: "Beak",
  12551. image: {
  12552. source: "./media/characters/vincent/beak.svg"
  12553. }
  12554. },
  12555. hand: {
  12556. height: math.unit(6 * 0.85, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Hand",
  12559. image: {
  12560. source: "./media/characters/vincent/hand.svg"
  12561. }
  12562. },
  12563. foot: {
  12564. height: math.unit(6 * 0.19, "feet"),
  12565. weight: math.unit(150, "lb"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/vincent/foot.svg"
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Base",
  12575. height: math.unit(6 + 5 / 12, "feet"),
  12576. default: true
  12577. },
  12578. {
  12579. name: "Macro",
  12580. height: math.unit(300, "feet")
  12581. },
  12582. {
  12583. name: "Megamacro",
  12584. height: math.unit(2, "miles")
  12585. },
  12586. {
  12587. name: "Gigamacro",
  12588. height: math.unit(1000, "miles")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6 + 2 / 12, "feet"),
  12597. weight: math.unit(265, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/jay/front.svg",
  12601. extra: 1510 / 1430,
  12602. bottom: 0.042
  12603. }
  12604. },
  12605. back: {
  12606. height: math.unit(6 + 2 / 12, "feet"),
  12607. weight: math.unit(265, "lb"),
  12608. name: "Back",
  12609. image: {
  12610. source: "./media/characters/jay/back.svg",
  12611. extra: 1510 / 1430,
  12612. bottom: 0.025
  12613. }
  12614. },
  12615. clothed: {
  12616. height: math.unit(6 + 2 / 12, "feet"),
  12617. weight: math.unit(265, "lb"),
  12618. name: "Front (Clothed)",
  12619. image: {
  12620. source: "./media/characters/jay/clothed.svg",
  12621. extra: 744 / 699,
  12622. bottom: 0.043
  12623. }
  12624. },
  12625. head: {
  12626. height: math.unit(1.772, "feet"),
  12627. name: "Head",
  12628. image: {
  12629. source: "./media/characters/jay/head.svg"
  12630. }
  12631. },
  12632. sizeRay: {
  12633. height: math.unit(1.331, "feet"),
  12634. name: "Size Ray",
  12635. image: {
  12636. source: "./media/characters/jay/size-ray.svg"
  12637. }
  12638. },
  12639. },
  12640. [
  12641. {
  12642. name: "Micro",
  12643. height: math.unit(1, "inch")
  12644. },
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(6 + 2 / 12, "feet"),
  12648. default: true
  12649. },
  12650. {
  12651. name: "Macro",
  12652. height: math.unit(1, "mile")
  12653. },
  12654. {
  12655. name: "Megamacro",
  12656. height: math.unit(100, "miles")
  12657. },
  12658. ]
  12659. ))
  12660. characterMakers.push(() => makeCharacter(
  12661. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12662. {
  12663. front: {
  12664. height: math.unit(2, "meters"),
  12665. weight: math.unit(500, "kg"),
  12666. name: "Front",
  12667. image: {
  12668. source: "./media/characters/coatl/front.svg",
  12669. extra: 3948 / 3500,
  12670. bottom: 0.082
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Normal",
  12677. height: math.unit(4, "meters")
  12678. },
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(100, "meters"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Macro+",
  12686. height: math.unit(300, "meters")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(3, "gigameters")
  12691. },
  12692. {
  12693. name: "Megamacro+",
  12694. height: math.unit(300, "terameters")
  12695. },
  12696. {
  12697. name: "Megamacro++",
  12698. height: math.unit(3, "lightyears")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Shiroryu", species: ["dragon"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(50, "kg"),
  12708. name: "front",
  12709. image: {
  12710. source: "./media/characters/shiroryu/front.svg",
  12711. extra: 1990 / 1935
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Mortal Mingling",
  12718. height: math.unit(3, "meters")
  12719. },
  12720. {
  12721. name: "Kaiju-ish",
  12722. height: math.unit(250, "meters")
  12723. },
  12724. {
  12725. name: "Somewhat Godly",
  12726. height: math.unit(400, "km"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Planetary",
  12731. height: math.unit(300, "megameters")
  12732. },
  12733. {
  12734. name: "Galaxy-dwarfing",
  12735. height: math.unit(450, "kiloparsecs")
  12736. },
  12737. {
  12738. name: "Universe Eater",
  12739. height: math.unit(150, "gigaparsecs")
  12740. },
  12741. {
  12742. name: "Almost Immeasurable",
  12743. height: math.unit(1.3e266, "yottaparsecs")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(150, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/umeko/front.svg",
  12756. extra: 1,
  12757. bottom: 0.019
  12758. }
  12759. },
  12760. frontArmored: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front (Armored)",
  12764. image: {
  12765. source: "./media/characters/umeko/front-armored.svg",
  12766. extra: 1,
  12767. bottom: 0.021
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Macro",
  12774. height: math.unit(220, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Guardian Dragon",
  12779. height: math.unit(50, "miles")
  12780. },
  12781. {
  12782. name: "Cosmic",
  12783. height: math.unit(800000, "miles")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/cassidy/front.svg",
  12796. extra: 1,
  12797. bottom: 0.043
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Canon Height",
  12804. height: math.unit(120, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Macro+",
  12809. height: math.unit(400, "feet")
  12810. },
  12811. {
  12812. name: "Macro++",
  12813. height: math.unit(4000, "feet")
  12814. },
  12815. {
  12816. name: "Megamacro",
  12817. height: math.unit(3, "miles")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/isaac/front.svg",
  12830. extra: 896 / 815,
  12831. bottom: 0.11
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Human Size",
  12838. height: math.unit(8, "feet"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Macro",
  12843. height: math.unit(400, "feet")
  12844. },
  12845. {
  12846. name: "Megamacro",
  12847. height: math.unit(50, "miles")
  12848. },
  12849. {
  12850. name: "Canon Height",
  12851. height: math.unit(200, "AU")
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(72, "kg"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/sleekit/front.svg",
  12864. extra: 4693 / 4487,
  12865. bottom: 0.012
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Minimum Height",
  12872. height: math.unit(10, "meters")
  12873. },
  12874. {
  12875. name: "Smaller",
  12876. height: math.unit(25, "meters")
  12877. },
  12878. {
  12879. name: "Larger",
  12880. height: math.unit(38, "meters"),
  12881. default: true
  12882. },
  12883. {
  12884. name: "Maximum height",
  12885. height: math.unit(100, "meters")
  12886. },
  12887. ]
  12888. ))
  12889. characterMakers.push(() => makeCharacter(
  12890. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12891. {
  12892. front: {
  12893. height: math.unit(6, "feet"),
  12894. weight: math.unit(150, "lb"),
  12895. name: "Front",
  12896. image: {
  12897. source: "./media/characters/nillia/front.svg",
  12898. extra: 2195 / 2037,
  12899. bottom: 0.005
  12900. }
  12901. },
  12902. back: {
  12903. height: math.unit(6, "feet"),
  12904. weight: math.unit(150, "lb"),
  12905. name: "Back",
  12906. image: {
  12907. source: "./media/characters/nillia/back.svg",
  12908. extra: 2195 / 2037,
  12909. bottom: 0.005
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Canon Height",
  12916. height: math.unit(489, "feet"),
  12917. default: true
  12918. }
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(6, "feet"),
  12926. weight: math.unit(150, "lb"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/mesmyriza/front.svg",
  12930. extra: 2067 / 1784,
  12931. bottom: 0.035
  12932. }
  12933. },
  12934. foot: {
  12935. height: math.unit(6 / (250 / 35), "feet"),
  12936. name: "Foot",
  12937. image: {
  12938. source: "./media/characters/mesmyriza/foot.svg"
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(457, "meters"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Megamacro",
  12950. height: math.unit(8, "megameters")
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  12956. {
  12957. front: {
  12958. height: math.unit(6, "feet"),
  12959. weight: math.unit(250, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/saudade/front.svg",
  12963. extra: 1172 / 1139,
  12964. bottom: 0.035
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Micro",
  12971. height: math.unit(3, "inches")
  12972. },
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(6, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(50, "feet")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(2800, "feet")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(5 + 4 / 12, "feet"),
  12993. weight: math.unit(100, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/keireer/front.svg",
  12997. extra: 716 / 666,
  12998. bottom: 0.05
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Normal",
  13005. height: math.unit(5 + 4 / 12, "feet"),
  13006. default: true
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(6, "feet"),
  13015. weight: math.unit(90, "kg"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/mirja/front.svg",
  13019. extra: 1789 / 1683,
  13020. bottom: 0.05
  13021. }
  13022. },
  13023. frontDressed: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(90, "lb"),
  13026. name: "Front (Dressed)",
  13027. image: {
  13028. source: "./media/characters/mirja/front-dressed.svg",
  13029. extra: 1789 / 1683,
  13030. bottom: 0.05
  13031. }
  13032. },
  13033. back: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(90, "lb"),
  13036. name: "Back",
  13037. image: {
  13038. source: "./media/characters/mirja/back.svg",
  13039. extra: 953 / 917,
  13040. bottom: 0.017
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "\"Incognito\"",
  13047. height: math.unit(3, "meters")
  13048. },
  13049. {
  13050. name: "Strolling Size",
  13051. height: math.unit(15, "km")
  13052. },
  13053. {
  13054. name: "Larger Strolling Size",
  13055. height: math.unit(400, "km")
  13056. },
  13057. {
  13058. name: "Preferred Size",
  13059. height: math.unit(5000, "km")
  13060. },
  13061. {
  13062. name: "True Size",
  13063. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13064. default: true
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13070. {
  13071. front: {
  13072. height: math.unit(15, "feet"),
  13073. weight: math.unit(880, "kg"),
  13074. name: "Front",
  13075. image: {
  13076. source: "./media/characters/nightraver/front.svg",
  13077. extra: 2444 / 2160,
  13078. bottom: 0.027
  13079. }
  13080. },
  13081. back: {
  13082. height: math.unit(15, "feet"),
  13083. weight: math.unit(880, "kg"),
  13084. name: "Back",
  13085. image: {
  13086. source: "./media/characters/nightraver/back.svg",
  13087. extra: 2309 / 2180,
  13088. bottom: 0.005
  13089. }
  13090. },
  13091. sole: {
  13092. height: math.unit(2.878, "feet"),
  13093. name: "Sole",
  13094. image: {
  13095. source: "./media/characters/nightraver/sole.svg"
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(2.285, "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/nightraver/foot.svg"
  13103. }
  13104. },
  13105. maw: {
  13106. height: math.unit(2.67, "feet"),
  13107. name: "Maw",
  13108. image: {
  13109. source: "./media/characters/nightraver/maw.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Micro",
  13116. height: math.unit(1, "cm")
  13117. },
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(15, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(300, "feet")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(300, "miles")
  13130. },
  13131. {
  13132. name: "Gigamacro",
  13133. height: math.unit(10000, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13139. {
  13140. side: {
  13141. height: math.unit(2, "inches"),
  13142. weight: math.unit(5, "grams"),
  13143. name: "Side",
  13144. image: {
  13145. source: "./media/characters/arc/side.svg"
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Micro",
  13152. height: math.unit(2, "inches"),
  13153. default: true
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(1.1938, "meters"),
  13162. weight: math.unit(54, "kg"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/nebula-shahar/front.svg",
  13166. extra: 1642 / 1436,
  13167. bottom: 0.06
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Megamicro",
  13174. height: math.unit(0.3, "mm")
  13175. },
  13176. {
  13177. name: "Micro",
  13178. height: math.unit(3, "cm")
  13179. },
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(138, "cm"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(30, "m")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(5.24, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/shayla/front.svg",
  13200. extra: 1512 / 1414,
  13201. bottom: 0.01
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(5.24, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/shayla/back.svg",
  13210. extra: 1512 / 1414
  13211. }
  13212. },
  13213. hand: {
  13214. height: math.unit(0.7781496062992126, "feet"),
  13215. name: "Hand",
  13216. image: {
  13217. source: "./media/characters/shayla/hand.svg"
  13218. }
  13219. },
  13220. foot: {
  13221. height: math.unit(1.4206036745406823, "feet"),
  13222. name: "Foot",
  13223. image: {
  13224. source: "./media/characters/shayla/foot.svg"
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Micro",
  13231. height: math.unit(0.32, "feet")
  13232. },
  13233. {
  13234. name: "Normal",
  13235. height: math.unit(5.24, "feet"),
  13236. default: true
  13237. },
  13238. {
  13239. name: "Macro",
  13240. height: math.unit(492.12, "feet")
  13241. },
  13242. {
  13243. name: "Megamacro",
  13244. height: math.unit(186.41, "miles")
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13250. {
  13251. front: {
  13252. height: math.unit(2.2, "m"),
  13253. weight: math.unit(120, "kg"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/pia-jr/front.svg",
  13257. extra: 1000 / 970,
  13258. bottom: 0.035
  13259. }
  13260. },
  13261. hand: {
  13262. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13263. name: "Hand",
  13264. image: {
  13265. source: "./media/characters/pia-jr/hand.svg"
  13266. }
  13267. },
  13268. paw: {
  13269. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13270. name: "Paw",
  13271. image: {
  13272. source: "./media/characters/pia-jr/paw.svg"
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Micro",
  13279. height: math.unit(1.2, "cm")
  13280. },
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(2.2, "m"),
  13284. default: true
  13285. },
  13286. {
  13287. name: "Macro",
  13288. height: math.unit(180, "m")
  13289. },
  13290. {
  13291. name: "Megamacro",
  13292. height: math.unit(420, "km")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(2, "m"),
  13301. weight: math.unit(115, "kg"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/pia-sr/front.svg",
  13305. extra: 760 / 730,
  13306. bottom: 0.015
  13307. }
  13308. },
  13309. back: {
  13310. height: math.unit(2, "m"),
  13311. weight: math.unit(115, "kg"),
  13312. name: "Back",
  13313. image: {
  13314. source: "./media/characters/pia-sr/back.svg",
  13315. extra: 760 / 730,
  13316. bottom: 0.01
  13317. }
  13318. },
  13319. hand: {
  13320. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13321. name: "Hand",
  13322. image: {
  13323. source: "./media/characters/pia-sr/hand.svg"
  13324. }
  13325. },
  13326. foot: {
  13327. height: math.unit(1.83, "feet"),
  13328. name: "Foot",
  13329. image: {
  13330. source: "./media/characters/pia-sr/foot.svg"
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Micro",
  13337. height: math.unit(88, "mm")
  13338. },
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(2, "m"),
  13342. default: true
  13343. },
  13344. {
  13345. name: "Macro",
  13346. height: math.unit(200, "m")
  13347. },
  13348. {
  13349. name: "Megamacro",
  13350. height: math.unit(420, "km")
  13351. },
  13352. ]
  13353. ))
  13354. characterMakers.push(() => makeCharacter(
  13355. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13356. {
  13357. front: {
  13358. height: math.unit(8 + 2 / 12, "feet"),
  13359. weight: math.unit(300, "lb"),
  13360. name: "Front",
  13361. image: {
  13362. source: "./media/characters/kibibyte/front.svg",
  13363. extra: 2221 / 2098,
  13364. bottom: 0.04
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(8 + 2 / 12, "feet"),
  13372. default: true
  13373. },
  13374. {
  13375. name: "Socialable Macro",
  13376. height: math.unit(50, "feet")
  13377. },
  13378. {
  13379. name: "Macro",
  13380. height: math.unit(300, "feet")
  13381. },
  13382. {
  13383. name: "Megamacro",
  13384. height: math.unit(500, "miles")
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13390. {
  13391. front: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(150, "lb"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/felix/front.svg",
  13397. extra: 762 / 722,
  13398. bottom: 0.02
  13399. }
  13400. },
  13401. frontClothed: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Front (Clothed)",
  13405. image: {
  13406. source: "./media/characters/felix/front-clothed.svg",
  13407. extra: 762 / 722,
  13408. bottom: 0.02
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Normal",
  13415. height: math.unit(6 + 8 / 12, "feet"),
  13416. default: true
  13417. },
  13418. {
  13419. name: "Macro",
  13420. height: math.unit(2600, "feet")
  13421. },
  13422. {
  13423. name: "Megamacro",
  13424. height: math.unit(450, "miles")
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13430. {
  13431. front: {
  13432. height: math.unit(6 + 1 / 12, "feet"),
  13433. weight: math.unit(250, "lb"),
  13434. name: "Front",
  13435. image: {
  13436. source: "./media/characters/tobo/front.svg",
  13437. extra: 608 / 586,
  13438. bottom: 0.023
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(6 + 1 / 12, "feet"),
  13443. weight: math.unit(250, "lb"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/tobo/back.svg",
  13447. extra: 608 / 586
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Nano",
  13454. height: math.unit(2, "nm")
  13455. },
  13456. {
  13457. name: "Megamicro",
  13458. height: math.unit(0.1, "mm")
  13459. },
  13460. {
  13461. name: "Micro",
  13462. height: math.unit(1, "inch"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Human-sized",
  13467. height: math.unit(6 + 1 / 12, "feet")
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(250, "feet")
  13472. },
  13473. {
  13474. name: "Megamacro",
  13475. height: math.unit(75, "miles")
  13476. },
  13477. {
  13478. name: "Texas-sized",
  13479. height: math.unit(750, "miles")
  13480. },
  13481. {
  13482. name: "Teramacro",
  13483. height: math.unit(50000, "miles")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(269, "lb"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/danny-kapowsky/front.svg",
  13496. extra: 766 / 736,
  13497. bottom: 0.044
  13498. }
  13499. },
  13500. back: {
  13501. height: math.unit(6, "feet"),
  13502. weight: math.unit(269, "lb"),
  13503. name: "Back",
  13504. image: {
  13505. source: "./media/characters/danny-kapowsky/back.svg",
  13506. extra: 797 / 760,
  13507. bottom: 0.025
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Macro",
  13514. height: math.unit(150, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Macro+",
  13519. height: math.unit(200, "feet")
  13520. },
  13521. {
  13522. name: "Macro++",
  13523. height: math.unit(300, "feet")
  13524. },
  13525. {
  13526. name: "Macro+++",
  13527. height: math.unit(400, "feet")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13533. {
  13534. side: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(170, "lb"),
  13537. name: "Side",
  13538. image: {
  13539. source: "./media/characters/finn/side.svg",
  13540. extra: 1953 / 1807,
  13541. bottom: 0.057
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Megamacro",
  13548. height: math.unit(14445, "feet"),
  13549. default: true
  13550. },
  13551. ]
  13552. ))
  13553. characterMakers.push(() => makeCharacter(
  13554. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13555. {
  13556. front: {
  13557. height: math.unit(5 + 6 / 12, "feet"),
  13558. weight: math.unit(125, "lb"),
  13559. name: "Front",
  13560. image: {
  13561. source: "./media/characters/roy/front.svg",
  13562. extra: 1,
  13563. bottom: 0.11
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Micro",
  13570. height: math.unit(3, "inches"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(5 + 6 / 12, "feet")
  13576. },
  13577. {
  13578. name: "Lesser Macro",
  13579. height: math.unit(60, "feet")
  13580. },
  13581. {
  13582. name: "Greater Macro",
  13583. height: math.unit(120, "feet")
  13584. },
  13585. ]
  13586. ))
  13587. characterMakers.push(() => makeCharacter(
  13588. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13589. {
  13590. front: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(100, "lb"),
  13593. name: "Front",
  13594. image: {
  13595. source: "./media/characters/aevsivs/front.svg",
  13596. extra: 1,
  13597. bottom: 0.03
  13598. }
  13599. },
  13600. back: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(100, "lb"),
  13603. name: "Back",
  13604. image: {
  13605. source: "./media/characters/aevsivs/back.svg"
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Micro",
  13612. height: math.unit(2, "inches"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(5, "feet")
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(5 + 7 / 12, "feet"),
  13626. weight: math.unit(159, "lb"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/hildegard/front.svg",
  13630. extra: 312 / 286,
  13631. bottom: 0.005
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "Normal",
  13638. height: math.unit(5 + 7 / 12, "feet"),
  13639. default: true
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13645. {
  13646. bernard: {
  13647. height: math.unit(2 + 7 / 12, "feet"),
  13648. weight: math.unit(66, "lb"),
  13649. name: "Bernard",
  13650. rename: true,
  13651. image: {
  13652. source: "./media/characters/bernard-wilder/bernard.svg",
  13653. extra: 192 / 128,
  13654. bottom: 0.05
  13655. }
  13656. },
  13657. wilder: {
  13658. height: math.unit(5 + 8 / 12, "feet"),
  13659. weight: math.unit(143, "lb"),
  13660. name: "Wilder",
  13661. rename: true,
  13662. image: {
  13663. source: "./media/characters/bernard-wilder/wilder.svg",
  13664. extra: 361 / 312,
  13665. bottom: 0.02
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(2 + 7 / 12, "feet"),
  13673. default: true
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13679. {
  13680. anthro: {
  13681. height: math.unit(6 + 1 / 12, "feet"),
  13682. weight: math.unit(155, "lb"),
  13683. name: "Anthro",
  13684. image: {
  13685. source: "./media/characters/hearth/anthro.svg",
  13686. extra: 260 / 250,
  13687. bottom: 0.02
  13688. }
  13689. },
  13690. feral: {
  13691. height: math.unit(3.78, "feet"),
  13692. weight: math.unit(35, "kg"),
  13693. name: "Feral",
  13694. image: {
  13695. source: "./media/characters/hearth/feral.svg",
  13696. extra: 153 / 135,
  13697. bottom: 0.03
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Normal",
  13704. height: math.unit(6 + 1 / 12, "feet"),
  13705. default: true
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(182, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/ingrid/front.svg",
  13718. extra: 294 / 268,
  13719. bottom: 0.027
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(6, "feet"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13733. {
  13734. eevee: {
  13735. height: math.unit(2 + 10 / 12, "feet"),
  13736. weight: math.unit(86, "lb"),
  13737. name: "Malgam",
  13738. image: {
  13739. source: "./media/characters/malgam/eevee.svg",
  13740. extra: 218 / 180,
  13741. bottom: 0.2
  13742. }
  13743. },
  13744. sylveon: {
  13745. height: math.unit(4, "feet"),
  13746. weight: math.unit(101, "lb"),
  13747. name: "Future Malgam",
  13748. rename: true,
  13749. image: {
  13750. source: "./media/characters/malgam/sylveon.svg",
  13751. extra: 371 / 325,
  13752. bottom: 0.015
  13753. }
  13754. },
  13755. gigantamax: {
  13756. height: math.unit(50, "feet"),
  13757. name: "Gigantamax Malgam",
  13758. rename: true,
  13759. image: {
  13760. source: "./media/characters/malgam/gigantamax.svg"
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Normal",
  13767. height: math.unit(2 + 10 / 12, "feet"),
  13768. default: true
  13769. },
  13770. ]
  13771. ))
  13772. characterMakers.push(() => makeCharacter(
  13773. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13774. {
  13775. front: {
  13776. height: math.unit(5 + 11 / 12, "feet"),
  13777. weight: math.unit(188, "lb"),
  13778. name: "Front",
  13779. image: {
  13780. source: "./media/characters/fleur/front.svg",
  13781. extra: 309 / 283,
  13782. bottom: 0.007
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(5 + 11 / 12, "feet"),
  13790. default: true
  13791. },
  13792. ]
  13793. ))
  13794. characterMakers.push(() => makeCharacter(
  13795. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13796. {
  13797. front: {
  13798. height: math.unit(5 + 4 / 12, "feet"),
  13799. weight: math.unit(122, "lb"),
  13800. name: "Front",
  13801. image: {
  13802. source: "./media/characters/jude/front.svg",
  13803. extra: 288 / 273,
  13804. bottom: 0.03
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(5 + 4 / 12, "feet"),
  13812. default: true
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(5 + 11 / 12, "feet"),
  13821. weight: math.unit(190, "lb"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/seara/front.svg",
  13825. extra: 1,
  13826. bottom: 0.05
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Normal",
  13833. height: math.unit(5 + 11 / 12, "feet"),
  13834. default: true
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(16 + 5 / 12, "feet"),
  13843. weight: math.unit(524, "lb"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/caspian/front.svg",
  13847. extra: 1,
  13848. bottom: 0.04
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(16 + 5 / 12, "feet"),
  13856. default: true
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(5 + 7 / 12, "feet"),
  13865. weight: math.unit(170, "lb"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/mika/front.svg",
  13869. extra: 1,
  13870. bottom: 0.016
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(5 + 7 / 12, "feet"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(6 + 2 / 12, "feet"),
  13887. weight: math.unit(268, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/sol/front.svg",
  13891. extra: 247 / 231,
  13892. bottom: 0.05
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(6 + 2 / 12, "feet"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13906. {
  13907. buizel: {
  13908. height: math.unit(2 + 5 / 12, "feet"),
  13909. weight: math.unit(87, "lb"),
  13910. name: "Buizel",
  13911. image: {
  13912. source: "./media/characters/umiko/buizel.svg",
  13913. extra: 172 / 157,
  13914. bottom: 0.01
  13915. }
  13916. },
  13917. floatzel: {
  13918. height: math.unit(5 + 9 / 12, "feet"),
  13919. weight: math.unit(250, "lb"),
  13920. name: "Floatzel",
  13921. image: {
  13922. source: "./media/characters/umiko/floatzel.svg",
  13923. extra: 262 / 248
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(2 + 5 / 12, "feet"),
  13931. default: true
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(6 + 2 / 12, "feet"),
  13940. weight: math.unit(146, "lb"),
  13941. name: "Front",
  13942. image: {
  13943. source: "./media/characters/iliac/front.svg",
  13944. extra: 389 / 365,
  13945. bottom: 0.035
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(6 + 2 / 12, "feet"),
  13953. default: true
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(170, "lb"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/topaz/front.svg",
  13966. extra: 317 / 303,
  13967. bottom: 0.055
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Normal",
  13974. height: math.unit(6, "feet"),
  13975. default: true
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(5 + 11 / 12, "feet"),
  13984. weight: math.unit(144, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/gabriel/front.svg",
  13988. extra: 285 / 262,
  13989. bottom: 0.004
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(5 + 11 / 12, "feet"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14003. {
  14004. side: {
  14005. height: math.unit(6 + 5 / 12, "feet"),
  14006. weight: math.unit(300, "lb"),
  14007. name: "Side",
  14008. image: {
  14009. source: "./media/characters/tempest-suicune/side.svg",
  14010. extra: 195 / 154,
  14011. bottom: 0.04
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(6 + 5 / 12, "feet"),
  14019. default: true
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(7 + 2 / 12, "feet"),
  14028. weight: math.unit(322, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/vulcan/front.svg",
  14032. extra: 154 / 147,
  14033. bottom: 0.04
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Normal",
  14040. height: math.unit(7 + 2 / 12, "feet"),
  14041. default: true
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(5 + 10 / 12, "feet"),
  14050. weight: math.unit(264, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/gault/front.svg",
  14054. extra: 161 / 140,
  14055. bottom: 0.028
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(5 + 10 / 12, "feet"),
  14063. default: true
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/shard/front.svg",
  14076. extra: 273 / 238,
  14077. bottom: 0.02
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Normal",
  14084. height: math.unit(3 + 6 / 12, "feet"),
  14085. default: true
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(5 + 11 / 12, "feet"),
  14094. weight: math.unit(146, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/ashe/front.svg",
  14098. extra: 400 / 373,
  14099. bottom: 0.01
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(5 + 11 / 12, "feet"),
  14107. default: true
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(5 + 5 / 12, "feet"),
  14116. weight: math.unit(135, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/beatrix/front.svg",
  14120. extra: 392 / 379,
  14121. bottom: 0.01
  14122. }
  14123. },
  14124. },
  14125. [
  14126. {
  14127. name: "Normal",
  14128. height: math.unit(6, "feet"),
  14129. default: true
  14130. },
  14131. ]
  14132. ))
  14133. characterMakers.push(() => makeCharacter(
  14134. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14135. {
  14136. front: {
  14137. height: math.unit(6, "feet"),
  14138. weight: math.unit(150, "lb"),
  14139. name: "Front",
  14140. image: {
  14141. source: "./media/characters/ignatius/front.svg",
  14142. extra: 245 / 222,
  14143. bottom: 0.01
  14144. }
  14145. },
  14146. },
  14147. [
  14148. {
  14149. name: "Normal",
  14150. height: math.unit(5 + 5 / 12, "feet"),
  14151. default: true
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6 + 2 / 12, "feet"),
  14160. weight: math.unit(138, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/mei-li/front.svg",
  14164. extra: 237 / 229,
  14165. bottom: 0.03
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Normal",
  14172. height: math.unit(6 + 2 / 12, "feet"),
  14173. default: true
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(2 + 4 / 12, "feet"),
  14182. weight: math.unit(62, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/puru/front.svg",
  14186. extra: 206 / 149,
  14187. bottom: 0.06
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Normal",
  14194. height: math.unit(2 + 4 / 12, "feet"),
  14195. default: true
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14201. {
  14202. taur: {
  14203. height: math.unit(11, "feet"),
  14204. weight: math.unit(500, "lb"),
  14205. name: "Taur",
  14206. image: {
  14207. source: "./media/characters/kee/taur.svg",
  14208. extra: 1,
  14209. bottom: 0.04
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(11, "feet"),
  14217. default: true
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14223. {
  14224. anthro: {
  14225. height: math.unit(7, "feet"),
  14226. weight: math.unit(190, "lb"),
  14227. name: "Anthro",
  14228. image: {
  14229. source: "./media/characters/cobalt-dracha/anthro.svg",
  14230. extra: 231 / 225,
  14231. bottom: 0.04
  14232. }
  14233. },
  14234. feral: {
  14235. height: math.unit(9 + 7 / 12, "feet"),
  14236. weight: math.unit(294, "lb"),
  14237. name: "Feral",
  14238. image: {
  14239. source: "./media/characters/cobalt-dracha/feral.svg",
  14240. extra: 692 / 633,
  14241. bottom: 0.05
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(7, "feet"),
  14249. default: true
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Java", species: ["snake"], tags: ["naga"] },
  14255. {
  14256. fallen: {
  14257. height: math.unit(11 + 8 / 12, "feet"),
  14258. weight: math.unit(485, "lb"),
  14259. name: "Java (Fallen)",
  14260. rename: true,
  14261. image: {
  14262. source: "./media/characters/java/fallen.svg",
  14263. extra: 226 / 208,
  14264. bottom: 0.005
  14265. }
  14266. },
  14267. godkin: {
  14268. height: math.unit(10 + 6 / 12, "feet"),
  14269. weight: math.unit(328, "lb"),
  14270. name: "Java (Godkin)",
  14271. rename: true,
  14272. image: {
  14273. source: "./media/characters/java/godkin.svg",
  14274. extra: 270 / 262,
  14275. bottom: 0.02
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Normal",
  14282. height: math.unit(11 + 8 / 12, "feet"),
  14283. default: true
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(7 + 8 / 12, "feet"),
  14292. weight: math.unit(320, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/skoll/front.svg",
  14296. extra: 232 / 220,
  14297. bottom: 0.02
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(7 + 8 / 12, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(5 + 9 / 12, "feet"),
  14314. weight: math.unit(170, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/purna/front.svg",
  14318. extra: 239 / 229,
  14319. bottom: 0.01
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(5 + 9 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(5 + 9 / 12, "feet"),
  14336. weight: math.unit(142, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/kuva/front.svg",
  14340. extra: 281 / 271,
  14341. bottom: 0.006
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(5 + 9 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14355. {
  14356. anthro: {
  14357. height: math.unit(9 + 2 / 12, "feet"),
  14358. weight: math.unit(270, "lb"),
  14359. name: "Anthro",
  14360. image: {
  14361. source: "./media/characters/embra/anthro.svg",
  14362. extra: 200 / 187,
  14363. bottom: 0.02
  14364. }
  14365. },
  14366. feral: {
  14367. height: math.unit(18 + 8 / 12, "feet"),
  14368. weight: math.unit(576, "lb"),
  14369. name: "Feral",
  14370. image: {
  14371. source: "./media/characters/embra/feral.svg",
  14372. extra: 152 / 137,
  14373. bottom: 0.037
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(9 + 2 / 12, "feet"),
  14381. default: true
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14387. {
  14388. anthro: {
  14389. height: math.unit(10 + 9 / 12, "feet"),
  14390. weight: math.unit(224, "lb"),
  14391. name: "Anthro",
  14392. image: {
  14393. source: "./media/characters/grottos/anthro.svg",
  14394. extra: 350 / 332,
  14395. bottom: 0.045
  14396. }
  14397. },
  14398. feral: {
  14399. height: math.unit(20 + 7 / 12, "feet"),
  14400. weight: math.unit(629, "lb"),
  14401. name: "Feral",
  14402. image: {
  14403. source: "./media/characters/grottos/feral.svg",
  14404. extra: 207 / 190,
  14405. bottom: 0.05
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Normal",
  14412. height: math.unit(10 + 9 / 12, "feet"),
  14413. default: true
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14419. {
  14420. anthro: {
  14421. height: math.unit(9 + 6 / 12, "feet"),
  14422. weight: math.unit(298, "lb"),
  14423. name: "Anthro",
  14424. image: {
  14425. source: "./media/characters/frifna/anthro.svg",
  14426. extra: 282 / 269,
  14427. bottom: 0.015
  14428. }
  14429. },
  14430. feral: {
  14431. height: math.unit(16 + 2 / 12, "feet"),
  14432. weight: math.unit(624, "lb"),
  14433. name: "Feral",
  14434. image: {
  14435. source: "./media/characters/frifna/feral.svg"
  14436. }
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(9 + 6 / 12, "feet"),
  14443. default: true
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14449. {
  14450. front: {
  14451. height: math.unit(6 + 2 / 12, "feet"),
  14452. weight: math.unit(168, "lb"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/elise/front.svg",
  14456. extra: 276 / 271
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(6 + 2 / 12, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(5 + 10 / 12, "feet"),
  14473. weight: math.unit(210, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/glade/front.svg",
  14477. extra: 258 / 247,
  14478. bottom: 0.008
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(5 + 10 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(5 + 10 / 12, "feet"),
  14495. weight: math.unit(129, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/rina/front.svg",
  14499. extra: 266 / 255,
  14500. bottom: 0.005
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(5 + 10 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(6 + 1 / 12, "feet"),
  14517. weight: math.unit(192, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/veronica/front.svg",
  14521. extra: 319 / 309,
  14522. bottom: 0.005
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(6 + 1 / 12, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(9 + 3 / 12, "feet"),
  14539. weight: math.unit(1100, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/braxton/front.svg",
  14543. extra: 1057 / 984,
  14544. bottom: 0.05
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(9 + 3 / 12, "feet")
  14552. },
  14553. {
  14554. name: "Giant",
  14555. height: math.unit(300, "feet"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Macro",
  14560. height: math.unit(700, "feet")
  14561. },
  14562. {
  14563. name: "Megamacro",
  14564. height: math.unit(6000, "feet")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(6 + 7 / 12, "feet"),
  14573. weight: math.unit(150, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/blue-feyonics/front.svg",
  14577. extra: 1403 / 1306,
  14578. bottom: 0.047
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(6 + 7 / 12, "feet"),
  14586. default: true
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14592. {
  14593. front: {
  14594. height: math.unit(1.8, "meters"),
  14595. weight: math.unit(60, "kg"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/maxwell/front.svg",
  14599. extra: 2060 / 1873
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Micro",
  14606. height: math.unit(1, "mm")
  14607. },
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(1.8, "meter"),
  14611. default: true
  14612. },
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(30, "meters")
  14616. },
  14617. {
  14618. name: "Megamacro",
  14619. height: math.unit(10, "km")
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(6, "feet"),
  14628. weight: math.unit(150, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/jack/front.svg",
  14632. extra: 1754 / 1640,
  14633. bottom: 0.01
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(80000, "feet"),
  14641. default: true
  14642. },
  14643. {
  14644. name: "Max size",
  14645. height: math.unit(10, "lightyears")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14651. {
  14652. upright: {
  14653. height: math.unit(7, "feet"),
  14654. weight: math.unit(170, "lb"),
  14655. name: "Upright",
  14656. image: {
  14657. source: "./media/characters/cafat/upright.svg",
  14658. bottom: 0.01
  14659. }
  14660. },
  14661. uprightFull: {
  14662. height: math.unit(7, "feet"),
  14663. weight: math.unit(170, "lb"),
  14664. name: "Upright (Full)",
  14665. image: {
  14666. source: "./media/characters/cafat/upright-full.svg",
  14667. bottom: 0.01
  14668. }
  14669. },
  14670. side: {
  14671. height: math.unit(5, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Side",
  14674. image: {
  14675. source: "./media/characters/cafat/side.svg"
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Small",
  14682. height: math.unit(7, "feet"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Large",
  14687. height: math.unit(15.5, "feet")
  14688. },
  14689. ]
  14690. ))
  14691. characterMakers.push(() => makeCharacter(
  14692. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14693. {
  14694. front: {
  14695. height: math.unit(6, "feet"),
  14696. weight: math.unit(150, "lb"),
  14697. name: "Front",
  14698. image: {
  14699. source: "./media/characters/verin-raharra/front.svg",
  14700. extra: 5019 / 4835,
  14701. bottom: 0.023
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Normal",
  14708. height: math.unit(7 + 5 / 12, "feet"),
  14709. default: true
  14710. },
  14711. {
  14712. name: "Upsized",
  14713. height: math.unit(20, "feet")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(7, "feet"),
  14722. weight: math.unit(230, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/nakata/front.svg",
  14726. extra: 1.005,
  14727. bottom: 0.01
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(7, "feet"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Big",
  14739. height: math.unit(14, "feet")
  14740. },
  14741. {
  14742. name: "Macro",
  14743. height: math.unit(400, "feet")
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(4.91, "feet"),
  14752. weight: math.unit(100, "lb"),
  14753. name: "Front",
  14754. image: {
  14755. source: "./media/characters/lily/front.svg",
  14756. extra: 1585 / 1415,
  14757. bottom: 0.02
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Normal",
  14764. height: math.unit(4.91, "feet"),
  14765. default: true
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14771. {
  14772. laying: {
  14773. height: math.unit(4 + 4 / 12, "feet"),
  14774. weight: math.unit(600, "lb"),
  14775. name: "Laying",
  14776. image: {
  14777. source: "./media/characters/sheila/laying.svg",
  14778. extra: 1333 / 1265,
  14779. bottom: 0.16
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(4 + 4 / 12, "feet"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(6, "feet"),
  14796. weight: math.unit(190, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/sax/front.svg",
  14800. extra: 1187 / 973,
  14801. bottom: 0.042
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Micro",
  14808. height: math.unit(4, "inches"),
  14809. default: true
  14810. },
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(6, "feet"),
  14818. weight: math.unit(150, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/pandora/front.svg",
  14822. extra: 2720 / 2556,
  14823. bottom: 0.015
  14824. }
  14825. },
  14826. back: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(150, "lb"),
  14829. name: "Back",
  14830. image: {
  14831. source: "./media/characters/pandora/back.svg",
  14832. extra: 2720 / 2556,
  14833. bottom: 0.01
  14834. }
  14835. },
  14836. beans: {
  14837. height: math.unit(6 / 8, "feet"),
  14838. name: "Beans",
  14839. image: {
  14840. source: "./media/characters/pandora/beans.svg"
  14841. }
  14842. },
  14843. skirt: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Skirt",
  14847. image: {
  14848. source: "./media/characters/pandora/skirt.svg",
  14849. extra: 1622 / 1525,
  14850. bottom: 0.015
  14851. }
  14852. },
  14853. hoodie: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Hoodie",
  14857. image: {
  14858. source: "./media/characters/pandora/hoodie.svg",
  14859. extra: 1622 / 1525,
  14860. bottom: 0.015
  14861. }
  14862. },
  14863. casual: {
  14864. height: math.unit(6, "feet"),
  14865. weight: math.unit(150, "lb"),
  14866. name: "Casual",
  14867. image: {
  14868. source: "./media/characters/pandora/casual.svg",
  14869. extra: 1622 / 1525,
  14870. bottom: 0.015
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(6, "feet")
  14878. },
  14879. {
  14880. name: "Big Steppy",
  14881. height: math.unit(1, "km"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14888. {
  14889. side: {
  14890. height: math.unit(10, "feet"),
  14891. weight: math.unit(800, "kg"),
  14892. name: "Side",
  14893. image: {
  14894. source: "./media/characters/venio-darcony/side.svg",
  14895. extra: 1373 / 1003,
  14896. bottom: 0.037
  14897. }
  14898. },
  14899. front: {
  14900. height: math.unit(19, "feet"),
  14901. weight: math.unit(800, "kg"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/venio-darcony/front.svg"
  14905. }
  14906. },
  14907. back: {
  14908. height: math.unit(19, "feet"),
  14909. weight: math.unit(800, "kg"),
  14910. name: "Back",
  14911. image: {
  14912. source: "./media/characters/venio-darcony/back.svg"
  14913. }
  14914. },
  14915. sideNsfw: {
  14916. height: math.unit(10, "feet"),
  14917. weight: math.unit(800, "kg"),
  14918. name: "Side (NSFW)",
  14919. image: {
  14920. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14921. extra: 1373 / 1003,
  14922. bottom: 0.037
  14923. }
  14924. },
  14925. frontNsfw: {
  14926. height: math.unit(19, "feet"),
  14927. weight: math.unit(800, "kg"),
  14928. name: "Front (NSFW)",
  14929. image: {
  14930. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14931. }
  14932. },
  14933. backNsfw: {
  14934. height: math.unit(19, "feet"),
  14935. weight: math.unit(800, "kg"),
  14936. name: "Back (NSFW)",
  14937. image: {
  14938. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14939. }
  14940. },
  14941. sideArmored: {
  14942. height: math.unit(10, "feet"),
  14943. weight: math.unit(800, "kg"),
  14944. name: "Side (Armored)",
  14945. image: {
  14946. source: "./media/characters/venio-darcony/side-armored.svg",
  14947. extra: 1373 / 1003,
  14948. bottom: 0.037
  14949. }
  14950. },
  14951. frontArmored: {
  14952. height: math.unit(19, "feet"),
  14953. weight: math.unit(900, "kg"),
  14954. name: "Front (Armored)",
  14955. image: {
  14956. source: "./media/characters/venio-darcony/front-armored.svg"
  14957. }
  14958. },
  14959. backArmored: {
  14960. height: math.unit(19, "feet"),
  14961. weight: math.unit(900, "kg"),
  14962. name: "Back (Armored)",
  14963. image: {
  14964. source: "./media/characters/venio-darcony/back-armored.svg"
  14965. }
  14966. },
  14967. sword: {
  14968. height: math.unit(10, "feet"),
  14969. weight: math.unit(50, "lb"),
  14970. name: "Sword",
  14971. image: {
  14972. source: "./media/characters/venio-darcony/sword.svg"
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Normal",
  14979. height: math.unit(10, "feet")
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(130, "feet"),
  14984. default: true
  14985. },
  14986. {
  14987. name: "Macro+",
  14988. height: math.unit(240, "feet")
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/veski/front.svg",
  15001. extra: 1299 / 1225,
  15002. bottom: 0.04
  15003. }
  15004. },
  15005. back: {
  15006. height: math.unit(6, "feet"),
  15007. weight: math.unit(150, "lb"),
  15008. name: "Back",
  15009. image: {
  15010. source: "./media/characters/veski/back.svg",
  15011. extra: 1299 / 1225,
  15012. bottom: 0.008
  15013. }
  15014. },
  15015. maw: {
  15016. height: math.unit(1.5 * 1.21, "feet"),
  15017. name: "Maw",
  15018. image: {
  15019. source: "./media/characters/veski/maw.svg"
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Macro",
  15026. height: math.unit(2, "km"),
  15027. default: true
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(5 + 7 / 12, "feet"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/isabelle/front.svg",
  15039. extra: 2130 / 1976,
  15040. bottom: 0.05
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Supermicro",
  15047. height: math.unit(10, "micrometers")
  15048. },
  15049. {
  15050. name: "Micro",
  15051. height: math.unit(1, "inch")
  15052. },
  15053. {
  15054. name: "Tiny",
  15055. height: math.unit(5, "inches")
  15056. },
  15057. {
  15058. name: "Standard",
  15059. height: math.unit(5 + 7 / 12, "inches")
  15060. },
  15061. {
  15062. name: "Macro",
  15063. height: math.unit(80, "meters"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Megamacro",
  15068. height: math.unit(250, "meters")
  15069. },
  15070. {
  15071. name: "Gigamacro",
  15072. height: math.unit(5, "km")
  15073. },
  15074. {
  15075. name: "Cosmic",
  15076. height: math.unit(2.5e6, "miles")
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15082. {
  15083. front: {
  15084. height: math.unit(6, "feet"),
  15085. weight: math.unit(150, "lb"),
  15086. name: "Front",
  15087. image: {
  15088. source: "./media/characters/hanzo/front.svg",
  15089. extra: 374 / 344,
  15090. bottom: 0.02
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(8, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(7, "feet"),
  15107. weight: math.unit(130, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/anna/front.svg",
  15111. extra: 169 / 145,
  15112. bottom: 0.06
  15113. }
  15114. },
  15115. full: {
  15116. height: math.unit(4.96, "feet"),
  15117. weight: math.unit(220, "lb"),
  15118. name: "Full",
  15119. image: {
  15120. source: "./media/characters/anna/full.svg",
  15121. extra: 138 / 114,
  15122. bottom: 0.15
  15123. }
  15124. },
  15125. tongue: {
  15126. height: math.unit(2.53, "feet"),
  15127. name: "Tongue",
  15128. image: {
  15129. source: "./media/characters/anna/tongue.svg"
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Normal",
  15136. height: math.unit(7, "feet"),
  15137. default: true
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(7, "feet"),
  15146. weight: math.unit(150, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/ian-corvid/front.svg",
  15150. extra: 150 / 142,
  15151. bottom: 0.02
  15152. }
  15153. },
  15154. back: {
  15155. height: math.unit(7, "feet"),
  15156. weight: math.unit(150, "lb"),
  15157. name: "Back",
  15158. image: {
  15159. source: "./media/characters/ian-corvid/back.svg",
  15160. extra: 150 / 143,
  15161. bottom: 0.01
  15162. }
  15163. },
  15164. stomping: {
  15165. height: math.unit(7, "feet"),
  15166. weight: math.unit(150, "lb"),
  15167. name: "Stomping",
  15168. image: {
  15169. source: "./media/characters/ian-corvid/stomping.svg",
  15170. extra: 76 / 72
  15171. }
  15172. },
  15173. sitting: {
  15174. height: math.unit(7 / 1.8, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Sitting",
  15177. image: {
  15178. source: "./media/characters/ian-corvid/sitting.svg",
  15179. extra: 1400 / 1269,
  15180. bottom: 0.15
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Tiny Microw",
  15187. height: math.unit(1, "inch")
  15188. },
  15189. {
  15190. name: "Microw",
  15191. height: math.unit(6, "inches")
  15192. },
  15193. {
  15194. name: "Crow",
  15195. height: math.unit(7 + 1 / 12, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macrow",
  15200. height: math.unit(176, "feet")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(5 + 7 / 12, "feet"),
  15209. weight: math.unit(147, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/natalie-kellon/front.svg",
  15213. extra: 1214 / 1141,
  15214. bottom: 0.02
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Micro",
  15221. height: math.unit(1 / 16, "inch")
  15222. },
  15223. {
  15224. name: "Tiny",
  15225. height: math.unit(4, "inches")
  15226. },
  15227. {
  15228. name: "Normal",
  15229. height: math.unit(5 + 7 / 12, "feet"),
  15230. default: true
  15231. },
  15232. {
  15233. name: "Amazon",
  15234. height: math.unit(12, "feet")
  15235. },
  15236. {
  15237. name: "Giantess",
  15238. height: math.unit(160, "meters")
  15239. },
  15240. {
  15241. name: "Titaness",
  15242. height: math.unit(800, "meters")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/alluria/front.svg",
  15255. extra: 806 / 738,
  15256. bottom: 0.01
  15257. }
  15258. },
  15259. side: {
  15260. height: math.unit(6, "feet"),
  15261. weight: math.unit(150, "lb"),
  15262. name: "Side",
  15263. image: {
  15264. source: "./media/characters/alluria/side.svg",
  15265. extra: 800 / 750,
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(150, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/alluria/back.svg",
  15274. extra: 806 / 738,
  15275. }
  15276. },
  15277. frontMaid: {
  15278. height: math.unit(6, "feet"),
  15279. weight: math.unit(150, "lb"),
  15280. name: "Front (Maid)",
  15281. image: {
  15282. source: "./media/characters/alluria/front-maid.svg",
  15283. extra: 806 / 738,
  15284. bottom: 0.01
  15285. }
  15286. },
  15287. sideMaid: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Side (Maid)",
  15291. image: {
  15292. source: "./media/characters/alluria/side-maid.svg",
  15293. extra: 800 / 750,
  15294. bottom: 0.005
  15295. }
  15296. },
  15297. backMaid: {
  15298. height: math.unit(6, "feet"),
  15299. weight: math.unit(150, "lb"),
  15300. name: "Back (Maid)",
  15301. image: {
  15302. source: "./media/characters/alluria/back-maid.svg",
  15303. extra: 806 / 738,
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Micro",
  15310. height: math.unit(6, "inches"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(6, "feet"),
  15320. weight: math.unit(150, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/kyle/front.svg",
  15324. extra: 1069 / 962,
  15325. bottom: 77.228 / 1727.45
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(150, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(6, "feet"),
  15342. weight: math.unit(300, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/duncan/front.svg",
  15346. extra: 1650 / 1482,
  15347. bottom: 0.05
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Macro",
  15354. height: math.unit(100, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(5 + 4 / 12, "feet"),
  15364. weight: math.unit(220, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/memory/front.svg",
  15368. extra: 3641 / 3545,
  15369. bottom: 0.03
  15370. }
  15371. },
  15372. back: {
  15373. height: math.unit(5 + 4 / 12, "feet"),
  15374. weight: math.unit(220, "lb"),
  15375. name: "Back",
  15376. image: {
  15377. source: "./media/characters/memory/back.svg",
  15378. extra: 3641 / 3545,
  15379. bottom: 0.025
  15380. }
  15381. },
  15382. frontSkirt: {
  15383. height: math.unit(5 + 4 / 12, "feet"),
  15384. weight: math.unit(220, "lb"),
  15385. name: "Front (Skirt)",
  15386. image: {
  15387. source: "./media/characters/memory/front-skirt.svg",
  15388. extra: 3641 / 3545,
  15389. bottom: 0.03
  15390. }
  15391. },
  15392. frontDress: {
  15393. height: math.unit(5 + 4 / 12, "feet"),
  15394. weight: math.unit(220, "lb"),
  15395. name: "Front (Dress)",
  15396. image: {
  15397. source: "./media/characters/memory/front-dress.svg",
  15398. extra: 3641 / 3545,
  15399. bottom: 0.03
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Micro",
  15406. height: math.unit(6, "inches"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(5 + 4 / 12, "feet")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(4 + 11 / 12, "feet"),
  15420. weight: math.unit(100, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/luno/front.svg",
  15424. extra: 1535 / 1487,
  15425. bottom: 0.03
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Micro",
  15432. height: math.unit(3, "inches")
  15433. },
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(4 + 11 / 12, "feet"),
  15437. default: true
  15438. },
  15439. {
  15440. name: "Macro",
  15441. height: math.unit(300, "feet")
  15442. },
  15443. {
  15444. name: "Megamacro",
  15445. height: math.unit(700, "miles")
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(6 + 2 / 12, "feet"),
  15454. weight: math.unit(170, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/jamesy/front.svg",
  15458. extra: 440 / 382,
  15459. bottom: 0.005
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Micro",
  15466. height: math.unit(3, "inches")
  15467. },
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(6 + 2 / 12, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(300, "feet")
  15476. },
  15477. {
  15478. name: "Megamacro",
  15479. height: math.unit(700, "miles")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(6, "feet"),
  15488. weight: math.unit(160, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/mark/front.svg",
  15492. extra: 3300 / 3100,
  15493. bottom: 136.42 / 3440.47
  15494. }
  15495. },
  15496. },
  15497. [
  15498. {
  15499. name: "Macro",
  15500. height: math.unit(120, "meters")
  15501. },
  15502. {
  15503. name: "Bigger Macro",
  15504. height: math.unit(350, "meters")
  15505. },
  15506. {
  15507. name: "Megamacro",
  15508. height: math.unit(8, "km"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Continental",
  15513. height: math.unit(4550, "km")
  15514. },
  15515. {
  15516. name: "Planetary",
  15517. height: math.unit(65000, "km")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(400, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/mac/front.svg",
  15530. extra: 1048 / 987.7,
  15531. bottom: 60 / 1107.6,
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Macro",
  15538. height: math.unit(500, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(5 + 2 / 12, "feet"),
  15548. weight: math.unit(190, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/bari/front.svg",
  15552. extra: 3156 / 2880,
  15553. bottom: 0.03
  15554. }
  15555. },
  15556. back: {
  15557. height: math.unit(5 + 2 / 12, "feet"),
  15558. weight: math.unit(190, "lb"),
  15559. name: "Back",
  15560. image: {
  15561. source: "./media/characters/bari/back.svg",
  15562. extra: 3260 / 2834,
  15563. bottom: 0.025
  15564. }
  15565. },
  15566. frontPlush: {
  15567. height: math.unit(5 + 2 / 12, "feet"),
  15568. weight: math.unit(190, "lb"),
  15569. name: "Front (Plush)",
  15570. image: {
  15571. source: "./media/characters/bari/front-plush.svg",
  15572. extra: 1112 / 1061,
  15573. bottom: 0.002
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Micro",
  15580. height: math.unit(3, "inches")
  15581. },
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(5 + 2 / 12, "feet"),
  15585. default: true
  15586. },
  15587. {
  15588. name: "Macro",
  15589. height: math.unit(20, "feet")
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6 + 1 / 12, "feet"),
  15598. weight: math.unit(275, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/hunter-misha-raven/front.svg"
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Mortal",
  15608. height: math.unit(6 + 1 / 12, "feet")
  15609. },
  15610. {
  15611. name: "Divine",
  15612. height: math.unit(1.12134e34, "parsecs"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(6 + 3 / 12, "feet"),
  15622. weight: math.unit(220, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/max-calore/front.svg",
  15626. extra: 1700 / 1648,
  15627. bottom: 0.01
  15628. }
  15629. },
  15630. back: {
  15631. height: math.unit(6 + 3 / 12, "feet"),
  15632. weight: math.unit(220, "lb"),
  15633. name: "Back",
  15634. image: {
  15635. source: "./media/characters/max-calore/back.svg",
  15636. extra: 1700 / 1648,
  15637. bottom: 0.01
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(6 + 3 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15651. {
  15652. side: {
  15653. height: math.unit(2 + 8 / 12, "feet"),
  15654. weight: math.unit(99, "lb"),
  15655. name: "Side",
  15656. image: {
  15657. source: "./media/characters/aspen/side.svg",
  15658. extra: 152 / 138,
  15659. bottom: 0.032
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(2 + 8 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15673. {
  15674. side: {
  15675. height: math.unit(3 + 2 / 12, "feet"),
  15676. weight: math.unit(224, "lb"),
  15677. name: "Side",
  15678. image: {
  15679. source: "./media/characters/sheila-feral-wolf/side.svg",
  15680. extra: 179 / 166,
  15681. bottom: 0.03
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(3 + 2 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15695. {
  15696. side: {
  15697. height: math.unit(1 + 9 / 12, "feet"),
  15698. weight: math.unit(38, "lb"),
  15699. name: "Side",
  15700. image: {
  15701. source: "./media/characters/michelle/side.svg",
  15702. extra: 147 / 136.7,
  15703. bottom: 0.03
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Normal",
  15710. height: math.unit(1 + 9 / 12, "feet"),
  15711. default: true
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(1 + 1 / 12, "feet"),
  15720. weight: math.unit(18, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/nino/front.svg"
  15724. }
  15725. },
  15726. },
  15727. [
  15728. {
  15729. name: "Normal",
  15730. height: math.unit(1 + 1 / 12, "feet"),
  15731. default: true
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(1, "feet"),
  15740. weight: math.unit(16, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/viola/front.svg"
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(1, "feet"),
  15751. default: true
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15757. {
  15758. front: {
  15759. height: math.unit(6 + 5 / 12, "feet"),
  15760. weight: math.unit(580, "lb"),
  15761. name: "Front",
  15762. image: {
  15763. source: "./media/characters/atlas/front.svg",
  15764. extra: 298.5 / 290,
  15765. bottom: 0.015
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Normal",
  15772. height: math.unit(6 + 5 / 12, "feet"),
  15773. default: true
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15779. {
  15780. side: {
  15781. height: math.unit(1 + 10 / 12, "feet"),
  15782. weight: math.unit(25, "lb"),
  15783. name: "Side",
  15784. image: {
  15785. source: "./media/characters/davy/side.svg",
  15786. extra: 200 / 170,
  15787. bottom: 0.01
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(1 + 10 / 12, "feet"),
  15795. default: true
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15801. {
  15802. side: {
  15803. height: math.unit(4 + 8 / 12, "feet"),
  15804. weight: math.unit(166, "lb"),
  15805. name: "Side",
  15806. image: {
  15807. source: "./media/characters/fiona/side.svg",
  15808. extra: 232 / 220,
  15809. bottom: 0.03
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(4 + 8 / 12, "feet"),
  15817. default: true
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15823. {
  15824. front: {
  15825. height: math.unit(2, "feet"),
  15826. weight: math.unit(62, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/lyla/front.svg",
  15830. bottom: 0.1
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(2, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15844. {
  15845. side: {
  15846. height: math.unit(1.8, "feet"),
  15847. weight: math.unit(44, "lb"),
  15848. name: "Side",
  15849. image: {
  15850. source: "./media/characters/perseus/side.svg",
  15851. bottom: 0.21
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(1.8, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15865. {
  15866. side: {
  15867. height: math.unit(4 + 2 / 12, "feet"),
  15868. weight: math.unit(20, "lb"),
  15869. name: "Side",
  15870. image: {
  15871. source: "./media/characters/remus/side.svg"
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(4 + 2 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15885. {
  15886. front: {
  15887. height: math.unit(4 + 11 / 12, "feet"),
  15888. weight: math.unit(114, "lb"),
  15889. name: "Front",
  15890. image: {
  15891. source: "./media/characters/raf/front.svg",
  15892. bottom: 0.01
  15893. }
  15894. },
  15895. side: {
  15896. height: math.unit(4 + 11 / 12, "feet"),
  15897. weight: math.unit(114, "lb"),
  15898. name: "Side",
  15899. image: {
  15900. source: "./media/characters/raf/side.svg",
  15901. bottom: 0.005
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Micro",
  15908. height: math.unit(2, "inches")
  15909. },
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(4 + 11 / 12, "feet"),
  15913. default: true
  15914. },
  15915. {
  15916. name: "Macro",
  15917. height: math.unit(70, "feet")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(1.5, "meters"),
  15926. weight: math.unit(68, "kg"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/liam-einarr/front.svg",
  15930. extra: 2822 / 2666
  15931. }
  15932. },
  15933. back: {
  15934. height: math.unit(1.5, "meters"),
  15935. weight: math.unit(68, "kg"),
  15936. name: "Back",
  15937. image: {
  15938. source: "./media/characters/liam-einarr/back.svg",
  15939. extra: 2822 / 2666,
  15940. bottom: 0.015
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(1.5, "meters"),
  15948. default: true
  15949. },
  15950. {
  15951. name: "Macro",
  15952. height: math.unit(150, "meters")
  15953. },
  15954. {
  15955. name: "Megamacro",
  15956. height: math.unit(35, "km")
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(6, "feet"),
  15965. weight: math.unit(75, "kg"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/linda/front.svg",
  15969. extra: 930 / 874,
  15970. bottom: 0.004
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(6, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6 + 8 / 12, "feet"),
  15987. weight: math.unit(220, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/caylex/front.svg",
  15991. extra: 821 / 772,
  15992. bottom: 0.07
  15993. }
  15994. },
  15995. back: {
  15996. height: math.unit(6 + 8 / 12, "feet"),
  15997. weight: math.unit(220, "lb"),
  15998. name: "Back",
  15999. image: {
  16000. source: "./media/characters/caylex/back.svg",
  16001. extra: 821 / 772,
  16002. bottom: 0.022
  16003. }
  16004. },
  16005. hand: {
  16006. height: math.unit(1.25, "feet"),
  16007. name: "Hand",
  16008. image: {
  16009. source: "./media/characters/caylex/hand.svg"
  16010. }
  16011. },
  16012. foot: {
  16013. height: math.unit(1.6, "feet"),
  16014. name: "Foot",
  16015. image: {
  16016. source: "./media/characters/caylex/foot.svg"
  16017. }
  16018. },
  16019. armored: {
  16020. height: math.unit(6 + 8 / 12, "feet"),
  16021. weight: math.unit(250, "lb"),
  16022. name: "Armored",
  16023. image: {
  16024. source: "./media/characters/caylex/armored.svg",
  16025. extra: 1420 / 1310,
  16026. bottom: 0.045
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(6 + 8 / 12, "feet"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Normal+",
  16038. height: math.unit(12, "feet")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(7 + 6 / 12, "feet"),
  16047. weight: math.unit(288, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/alana/front.svg",
  16051. extra: 679 / 653,
  16052. bottom: 22.5 / 701
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(7 + 6 / 12, "feet")
  16060. },
  16061. {
  16062. name: "Large",
  16063. height: math.unit(50, "feet")
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(100, "feet"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro+",
  16072. height: math.unit(200, "feet")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6 + 1 / 12, "feet"),
  16081. weight: math.unit(210, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/hasani/front.svg",
  16085. extra: 244 / 232,
  16086. bottom: 0.01
  16087. }
  16088. },
  16089. back: {
  16090. height: math.unit(6 + 1 / 12, "feet"),
  16091. weight: math.unit(210, "lb"),
  16092. name: "Back",
  16093. image: {
  16094. source: "./media/characters/hasani/back.svg",
  16095. extra: 244 / 232,
  16096. bottom: 0.01
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Normal",
  16103. height: math.unit(6 + 1 / 12, "feet")
  16104. },
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(175, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(1.82, "meters"),
  16117. weight: math.unit(140, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/nita/front.svg",
  16121. extra: 2473 / 2363,
  16122. bottom: 0.01
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Normal",
  16129. height: math.unit(1.82, "m")
  16130. },
  16131. {
  16132. name: "Macro",
  16133. height: math.unit(300, "m")
  16134. },
  16135. {
  16136. name: "Mistake Canon",
  16137. height: math.unit(0.5, "miles"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Big Mistake",
  16142. height: math.unit(13, "miles")
  16143. },
  16144. {
  16145. name: "Playing God",
  16146. height: math.unit(2450, "miles")
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(4, "feet"),
  16155. weight: math.unit(120, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/shiriko/front.svg",
  16159. extra: 195 / 188
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(4, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6, "feet"),
  16176. name: "front",
  16177. image: {
  16178. source: "./media/characters/deja/front.svg",
  16179. extra: 926 / 840,
  16180. bottom: 0.07
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Planck Length",
  16187. height: math.unit(1.6e-35, "meters")
  16188. },
  16189. {
  16190. name: "Normal",
  16191. height: math.unit(30.48, "meters"),
  16192. default: true
  16193. },
  16194. {
  16195. name: "Universal",
  16196. height: math.unit(8.8e26, "meters")
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16202. {
  16203. side: {
  16204. height: math.unit(8, "feet"),
  16205. weight: math.unit(6300, "lb"),
  16206. name: "Side",
  16207. image: {
  16208. source: "./media/characters/anima/side.svg",
  16209. bottom: 0.035
  16210. }
  16211. },
  16212. },
  16213. [
  16214. {
  16215. name: "Normal",
  16216. height: math.unit(8, "feet"),
  16217. default: true
  16218. },
  16219. ]
  16220. ))
  16221. characterMakers.push(() => makeCharacter(
  16222. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16223. {
  16224. front: {
  16225. height: math.unit(8, "feet"),
  16226. weight: math.unit(350, "lb"),
  16227. name: "Front",
  16228. image: {
  16229. source: "./media/characters/bianca/front.svg",
  16230. extra: 234 / 225,
  16231. bottom: 0.03
  16232. }
  16233. },
  16234. },
  16235. [
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(8, "feet"),
  16239. default: true
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6, "feet"),
  16248. weight: math.unit(150, "lb"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/adinia/front.svg",
  16252. extra: 1845 / 1672,
  16253. bottom: 0.02
  16254. }
  16255. },
  16256. back: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(150, "lb"),
  16259. name: "Back",
  16260. image: {
  16261. source: "./media/characters/adinia/back.svg",
  16262. extra: 1845 / 1672,
  16263. bottom: 0.002
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Normal",
  16270. height: math.unit(11 + 5 / 12, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16277. {
  16278. front: {
  16279. height: math.unit(3, "meters"),
  16280. weight: math.unit(200, "kg"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/lykasa/front.svg",
  16284. extra: 1076 / 976,
  16285. bottom: 0.06
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(3, "meters")
  16293. },
  16294. {
  16295. name: "Kaiju",
  16296. height: math.unit(120, "meters"),
  16297. default: true
  16298. },
  16299. {
  16300. name: "Mega Kaiju",
  16301. height: math.unit(240, "km")
  16302. },
  16303. {
  16304. name: "Giga Kaiju",
  16305. height: math.unit(400, "megameters")
  16306. },
  16307. {
  16308. name: "Tera Kaiju",
  16309. height: math.unit(800, "gigameters")
  16310. },
  16311. {
  16312. name: "Kaiju Dragon Goddess",
  16313. height: math.unit(26, "zettaparsecs")
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16319. {
  16320. side: {
  16321. height: math.unit(283 / 124 * 6, "feet"),
  16322. weight: math.unit(35000, "lb"),
  16323. name: "Side",
  16324. image: {
  16325. source: "./media/characters/malfaren/side.svg",
  16326. extra: 2500 / 1010,
  16327. bottom: 0.01
  16328. }
  16329. },
  16330. front: {
  16331. height: math.unit(22.36, "feet"),
  16332. weight: math.unit(35000, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/malfaren/front.svg",
  16336. extra: 1631 / 1476,
  16337. bottom: 0.01
  16338. }
  16339. },
  16340. maw: {
  16341. height: math.unit(6.9, "feet"),
  16342. name: "Maw",
  16343. image: {
  16344. source: "./media/characters/malfaren/maw.svg"
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Big",
  16351. height: math.unit(283 / 162 * 6, "feet"),
  16352. },
  16353. {
  16354. name: "Bigger",
  16355. height: math.unit(283 / 124 * 6, "feet")
  16356. },
  16357. {
  16358. name: "Massive",
  16359. height: math.unit(283 / 92 * 6, "feet"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "👀💦",
  16364. height: math.unit(283 / 73 * 6, "feet"),
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(1.7, "m"),
  16373. weight: math.unit(70, "kg"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/kernel/front.svg",
  16377. extra: 222 / 210,
  16378. bottom: 0.007
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Nano",
  16385. height: math.unit(17, "micrometers")
  16386. },
  16387. {
  16388. name: "Micro",
  16389. height: math.unit(1.7, "mm")
  16390. },
  16391. {
  16392. name: "Small",
  16393. height: math.unit(1.7, "cm")
  16394. },
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(1.7, "m"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(1.75, "meters"),
  16407. weight: math.unit(65, "kg"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/jayne-folest/front.svg",
  16411. extra: 2115 / 2007,
  16412. bottom: 0.02
  16413. }
  16414. },
  16415. back: {
  16416. height: math.unit(1.75, "meters"),
  16417. weight: math.unit(65, "kg"),
  16418. name: "Back",
  16419. image: {
  16420. source: "./media/characters/jayne-folest/back.svg",
  16421. extra: 2115 / 2007,
  16422. bottom: 0.005
  16423. }
  16424. },
  16425. frontClothed: {
  16426. height: math.unit(1.75, "meters"),
  16427. weight: math.unit(65, "kg"),
  16428. name: "Front (Clothed)",
  16429. image: {
  16430. source: "./media/characters/jayne-folest/front-clothed.svg",
  16431. extra: 2115 / 2007,
  16432. bottom: 0.035
  16433. }
  16434. },
  16435. hand: {
  16436. height: math.unit(1 / 1.260, "feet"),
  16437. name: "Hand",
  16438. image: {
  16439. source: "./media/characters/jayne-folest/hand.svg"
  16440. }
  16441. },
  16442. foot: {
  16443. height: math.unit(1 / 0.918, "feet"),
  16444. name: "Foot",
  16445. image: {
  16446. source: "./media/characters/jayne-folest/foot.svg"
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Micro",
  16453. height: math.unit(4, "cm")
  16454. },
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(1.75, "meters")
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(47.5, "meters"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(180, "cm"),
  16471. weight: math.unit(70, "kg"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/algier/front.svg",
  16475. extra: 596 / 572,
  16476. bottom: 0.04
  16477. }
  16478. },
  16479. back: {
  16480. height: math.unit(180, "cm"),
  16481. weight: math.unit(70, "kg"),
  16482. name: "Back",
  16483. image: {
  16484. source: "./media/characters/algier/back.svg",
  16485. extra: 596 / 572,
  16486. bottom: 0.025
  16487. }
  16488. },
  16489. frontdressed: {
  16490. height: math.unit(180, "cm"),
  16491. weight: math.unit(150, "kg"),
  16492. name: "Front-dressed",
  16493. image: {
  16494. source: "./media/characters/algier/front-dressed.svg",
  16495. extra: 596 / 572,
  16496. bottom: 0.038
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(5, "cm")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(180, "cm"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(64, "m")
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16518. {
  16519. upright: {
  16520. height: math.unit(7, "feet"),
  16521. weight: math.unit(300, "lb"),
  16522. name: "Upright",
  16523. image: {
  16524. source: "./media/characters/pretzel/upright.svg",
  16525. extra: 534 / 522,
  16526. bottom: 0.065
  16527. }
  16528. },
  16529. sprawling: {
  16530. height: math.unit(3.75, "feet"),
  16531. weight: math.unit(300, "lb"),
  16532. name: "Sprawling",
  16533. image: {
  16534. source: "./media/characters/pretzel/sprawling.svg",
  16535. extra: 314 / 281,
  16536. bottom: 0.1
  16537. }
  16538. },
  16539. tongue: {
  16540. height: math.unit(2, "feet"),
  16541. name: "Tongue",
  16542. image: {
  16543. source: "./media/characters/pretzel/tongue.svg"
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(7, "feet"),
  16551. default: true
  16552. },
  16553. {
  16554. name: "Oversized",
  16555. height: math.unit(15, "feet")
  16556. },
  16557. {
  16558. name: "Huge",
  16559. height: math.unit(30, "feet")
  16560. },
  16561. {
  16562. name: "Macro",
  16563. height: math.unit(250, "feet")
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16569. {
  16570. sideFront: {
  16571. height: math.unit(5 + 2 / 12, "feet"),
  16572. weight: math.unit(120, "lb"),
  16573. name: "Front Side",
  16574. image: {
  16575. source: "./media/characters/roxi/side-front.svg",
  16576. extra: 2924 / 2717,
  16577. bottom: 0.08
  16578. }
  16579. },
  16580. sideBack: {
  16581. height: math.unit(5 + 2 / 12, "feet"),
  16582. weight: math.unit(120, "lb"),
  16583. name: "Back Side",
  16584. image: {
  16585. source: "./media/characters/roxi/side-back.svg",
  16586. extra: 2904 / 2693,
  16587. bottom: 0.06
  16588. }
  16589. },
  16590. front: {
  16591. height: math.unit(5 + 2 / 12, "feet"),
  16592. weight: math.unit(120, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/roxi/front.svg",
  16596. extra: 2028 / 1907,
  16597. bottom: 0.01
  16598. }
  16599. },
  16600. frontAlt: {
  16601. height: math.unit(5 + 2 / 12, "feet"),
  16602. weight: math.unit(120, "lb"),
  16603. name: "Front (Alt)",
  16604. image: {
  16605. source: "./media/characters/roxi/front-alt.svg",
  16606. extra: 1828 / 1798,
  16607. bottom: 0.01
  16608. }
  16609. },
  16610. sitting: {
  16611. height: math.unit(2.8, "feet"),
  16612. weight: math.unit(120, "lb"),
  16613. name: "Sitting",
  16614. image: {
  16615. source: "./media/characters/roxi/sitting.svg",
  16616. extra: 2660 / 2462,
  16617. bottom: 0.1
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(5 + 2 / 12, "feet"),
  16625. default: true
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16631. {
  16632. side: {
  16633. height: math.unit(55, "feet"),
  16634. weight: math.unit(153, "tons"),
  16635. name: "Side",
  16636. image: {
  16637. source: "./media/characters/shadow/side.svg",
  16638. extra: 701 / 628,
  16639. bottom: 0.02
  16640. }
  16641. },
  16642. flying: {
  16643. height: math.unit(145, "feet"),
  16644. weight: math.unit(153, "tons"),
  16645. name: "Flying",
  16646. image: {
  16647. source: "./media/characters/shadow/flying.svg"
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(55, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(6, "feet"),
  16664. weight: math.unit(200, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/marcie/front.svg",
  16668. extra: 960 / 876,
  16669. bottom: 58 / 1017.87
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Macro",
  16676. height: math.unit(1, "mile"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(7, "feet"),
  16686. weight: math.unit(200, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/kachina/front.svg",
  16690. extra: 1290.68 / 1119,
  16691. bottom: 36.5 / 1327.18
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(7, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16705. {
  16706. looking: {
  16707. height: math.unit(2, "meters"),
  16708. weight: math.unit(300, "kg"),
  16709. name: "Looking",
  16710. image: {
  16711. source: "./media/characters/kash/looking.svg",
  16712. extra: 474 / 344,
  16713. bottom: 0.03
  16714. }
  16715. },
  16716. side: {
  16717. height: math.unit(2, "meters"),
  16718. weight: math.unit(300, "kg"),
  16719. name: "Side",
  16720. image: {
  16721. source: "./media/characters/kash/side.svg",
  16722. extra: 302 / 251,
  16723. bottom: 0.03
  16724. }
  16725. },
  16726. front: {
  16727. height: math.unit(2, "meters"),
  16728. weight: math.unit(300, "kg"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/kash/front.svg",
  16732. extra: 495 / 360,
  16733. bottom: 0.015
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(2, "meters"),
  16741. default: true
  16742. },
  16743. {
  16744. name: "Big",
  16745. height: math.unit(3, "meters")
  16746. },
  16747. {
  16748. name: "Large",
  16749. height: math.unit(5, "meters")
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16755. {
  16756. feeding: {
  16757. height: math.unit(6.7, "feet"),
  16758. weight: math.unit(350, "lb"),
  16759. name: "Feeding",
  16760. image: {
  16761. source: "./media/characters/lalim/feeding.svg",
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(6.7, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(9.5, "feet"),
  16778. weight: math.unit(600, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/de'vout/front.svg",
  16782. extra: 1443 / 1328,
  16783. bottom: 0.025
  16784. }
  16785. },
  16786. back: {
  16787. height: math.unit(9.5, "feet"),
  16788. weight: math.unit(600, "lb"),
  16789. name: "Back",
  16790. image: {
  16791. source: "./media/characters/de'vout/back.svg",
  16792. extra: 1443 / 1328
  16793. }
  16794. },
  16795. frontDressed: {
  16796. height: math.unit(9.5, "feet"),
  16797. weight: math.unit(600, "lb"),
  16798. name: "Front (Dressed",
  16799. image: {
  16800. source: "./media/characters/de'vout/front-dressed.svg",
  16801. extra: 1443 / 1328,
  16802. bottom: 0.025
  16803. }
  16804. },
  16805. backDressed: {
  16806. height: math.unit(9.5, "feet"),
  16807. weight: math.unit(600, "lb"),
  16808. name: "Back (Dressed",
  16809. image: {
  16810. source: "./media/characters/de'vout/back-dressed.svg",
  16811. extra: 1443 / 1328
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(9.5, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16825. {
  16826. front: {
  16827. height: math.unit(8, "feet"),
  16828. weight: math.unit(225, "lb"),
  16829. name: "Front",
  16830. image: {
  16831. source: "./media/characters/talana/front.svg",
  16832. extra: 1410 / 1300,
  16833. bottom: 0.015
  16834. }
  16835. },
  16836. frontDressed: {
  16837. height: math.unit(8, "feet"),
  16838. weight: math.unit(225, "lb"),
  16839. name: "Front (Dressed",
  16840. image: {
  16841. source: "./media/characters/talana/front-dressed.svg",
  16842. extra: 1410 / 1300,
  16843. bottom: 0.015
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(8, "feet"),
  16851. default: true
  16852. },
  16853. ]
  16854. ))
  16855. characterMakers.push(() => makeCharacter(
  16856. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16857. {
  16858. side: {
  16859. height: math.unit(7.2, "feet"),
  16860. weight: math.unit(150, "lb"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/xeauvok/side.svg",
  16864. extra: 1975 / 1523,
  16865. bottom: 0.07
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Normal",
  16872. height: math.unit(7.2, "feet"),
  16873. default: true
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16879. {
  16880. side: {
  16881. height: math.unit(10, "feet"),
  16882. weight: math.unit(900, "kg"),
  16883. name: "Side",
  16884. image: {
  16885. source: "./media/characters/zara/side.svg",
  16886. extra: 504 / 498
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(10, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16900. {
  16901. side: {
  16902. height: math.unit(6, "feet"),
  16903. weight: math.unit(150, "lb"),
  16904. name: "Side",
  16905. image: {
  16906. source: "./media/characters/richard-dragon/side.svg",
  16907. extra: 845 / 340,
  16908. bottom: 0.017
  16909. }
  16910. },
  16911. maw: {
  16912. height: math.unit(2.97, "feet"),
  16913. name: "Maw",
  16914. image: {
  16915. source: "./media/characters/richard-dragon/maw.svg"
  16916. }
  16917. },
  16918. },
  16919. [
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16924. {
  16925. front: {
  16926. height: math.unit(4, "feet"),
  16927. weight: math.unit(100, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/richard-smeargle/front.svg",
  16931. extra: 2952 / 2820,
  16932. bottom: 0.028
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(4, "feet"),
  16940. default: true
  16941. },
  16942. {
  16943. name: "Dynamax",
  16944. height: math.unit(20, "meters")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(110, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/klay/front.svg",
  16957. extra: 962 / 883,
  16958. bottom: 0.04
  16959. }
  16960. },
  16961. back: {
  16962. height: math.unit(6, "feet"),
  16963. weight: math.unit(110, "lb"),
  16964. name: "Back",
  16965. image: {
  16966. source: "./media/characters/klay/back.svg",
  16967. extra: 962 / 883
  16968. }
  16969. },
  16970. beans: {
  16971. height: math.unit(1.15, "feet"),
  16972. name: "Beans",
  16973. image: {
  16974. source: "./media/characters/klay/beans.svg"
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Micro",
  16981. height: math.unit(6, "inches")
  16982. },
  16983. {
  16984. name: "Mini",
  16985. height: math.unit(3, "feet")
  16986. },
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(6, "feet"),
  16990. default: true
  16991. },
  16992. {
  16993. name: "Big",
  16994. height: math.unit(25, "feet")
  16995. },
  16996. {
  16997. name: "Macro",
  16998. height: math.unit(100, "feet")
  16999. },
  17000. {
  17001. name: "Megamacro",
  17002. height: math.unit(400, "feet")
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(6, "feet"),
  17011. weight: math.unit(160, "lb"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/marcus/front.svg",
  17015. extra: 734 / 676,
  17016. bottom: 0.03
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Little",
  17023. height: math.unit(6, "feet")
  17024. },
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(110, "feet"),
  17028. default: true
  17029. },
  17030. {
  17031. name: "Macro",
  17032. height: math.unit(250, "feet")
  17033. },
  17034. {
  17035. name: "Megamacro",
  17036. height: math.unit(1000, "feet")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(7, "feet"),
  17045. weight: math.unit(275, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/claude-delroute/front.svg",
  17049. extra: 230 / 214,
  17050. bottom: 0.007
  17051. }
  17052. },
  17053. side: {
  17054. height: math.unit(7, "feet"),
  17055. weight: math.unit(275, "lb"),
  17056. name: "Side",
  17057. image: {
  17058. source: "./media/characters/claude-delroute/side.svg",
  17059. extra: 222 / 214,
  17060. bottom: 0.01
  17061. }
  17062. },
  17063. back: {
  17064. height: math.unit(7, "feet"),
  17065. weight: math.unit(275, "lb"),
  17066. name: "Back",
  17067. image: {
  17068. source: "./media/characters/claude-delroute/back.svg",
  17069. extra: 230 / 214,
  17070. bottom: 0.015
  17071. }
  17072. },
  17073. maw: {
  17074. height: math.unit(0.6407, "meters"),
  17075. name: "Maw",
  17076. image: {
  17077. source: "./media/characters/claude-delroute/maw.svg"
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(7, "feet"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "Lorge",
  17089. height: math.unit(20, "feet")
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(8 + 4 / 12, "feet"),
  17098. weight: math.unit(600, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/dragonien/front.svg",
  17102. extra: 100 / 94,
  17103. bottom: 3.3 / 103.3445
  17104. }
  17105. },
  17106. back: {
  17107. height: math.unit(8 + 4 / 12, "feet"),
  17108. weight: math.unit(600, "lb"),
  17109. name: "Back",
  17110. image: {
  17111. source: "./media/characters/dragonien/back.svg",
  17112. extra: 776 / 746,
  17113. bottom: 6.4 / 782.0616
  17114. }
  17115. },
  17116. foot: {
  17117. height: math.unit(1.54, "feet"),
  17118. name: "Foot",
  17119. image: {
  17120. source: "./media/characters/dragonien/foot.svg",
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(8 + 4 / 12, "feet"),
  17128. default: true
  17129. },
  17130. {
  17131. name: "Macro",
  17132. height: math.unit(200, "feet")
  17133. },
  17134. {
  17135. name: "Megamacro",
  17136. height: math.unit(1, "mile")
  17137. },
  17138. {
  17139. name: "Gigamacro",
  17140. height: math.unit(1000, "miles")
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(5 + 2 / 12, "feet"),
  17149. weight: math.unit(110, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/desta/front.svg",
  17153. extra: 1482 / 1417
  17154. }
  17155. },
  17156. side: {
  17157. height: math.unit(5 + 2 / 12, "feet"),
  17158. weight: math.unit(110, "lb"),
  17159. name: "Side",
  17160. image: {
  17161. source: "./media/characters/desta/side.svg",
  17162. extra: 2579 / 2491,
  17163. bottom: 0.053
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Micro",
  17170. height: math.unit(6, "inches")
  17171. },
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(5 + 2 / 12, "feet"),
  17175. default: true
  17176. },
  17177. {
  17178. name: "Macro",
  17179. height: math.unit(62, "feet")
  17180. },
  17181. {
  17182. name: "Megamacro",
  17183. height: math.unit(1800, "feet")
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(10, "feet"),
  17192. weight: math.unit(700, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/storm-alystar/front.svg",
  17196. extra: 2112 / 1898,
  17197. bottom: 0.034
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Micro",
  17204. height: math.unit(3.5, "inches")
  17205. },
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(10, "feet"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(400, "feet")
  17214. },
  17215. {
  17216. name: "Deific",
  17217. height: math.unit(60, "miles")
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(2.35, "meters"),
  17226. weight: math.unit(119, "kg"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/ilia/front.svg",
  17230. extra: 1285 / 1255,
  17231. bottom: 0.06
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(2.35, "meters")
  17239. },
  17240. {
  17241. name: "Macro",
  17242. height: math.unit(140, "meters"),
  17243. default: true
  17244. },
  17245. {
  17246. name: "Megamacro",
  17247. height: math.unit(100, "miles")
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17253. {
  17254. front: {
  17255. height: math.unit(6 + 5 / 12, "feet"),
  17256. weight: math.unit(190, "lb"),
  17257. name: "Front",
  17258. image: {
  17259. source: "./media/characters/kingdead/front.svg",
  17260. extra: 1228 / 1177
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Micro",
  17267. height: math.unit(7, "inches")
  17268. },
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(6 + 5 / 12, "feet")
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(150, "feet"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "Megamacro",
  17280. height: math.unit(200, "miles")
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(8, "feet"),
  17289. weight: math.unit(600, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/kyrehx/front.svg",
  17293. extra: 1195 / 1095,
  17294. bottom: 0.034
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Micro",
  17301. height: math.unit(2, "inches")
  17302. },
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(8, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(255, "feet")
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17319. weight: math.unit(184, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/xang/front.svg",
  17323. extra: 845 / 755
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17331. default: true
  17332. },
  17333. {
  17334. name: "Macro",
  17335. height: math.unit(0.935 * 146, "feet")
  17336. },
  17337. {
  17338. name: "Megamacro",
  17339. height: math.unit(0.935 * 3, "miles")
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17345. {
  17346. frontDressed: {
  17347. height: math.unit(5 + 7 / 12, "feet"),
  17348. weight: math.unit(140, "lb"),
  17349. name: "Front (Dressed)",
  17350. image: {
  17351. source: "./media/characters/doc-weardno/front-dressed.svg",
  17352. extra: 263 / 234
  17353. }
  17354. },
  17355. backDressed: {
  17356. height: math.unit(5 + 7 / 12, "feet"),
  17357. weight: math.unit(140, "lb"),
  17358. name: "Back (Dressed)",
  17359. image: {
  17360. source: "./media/characters/doc-weardno/back-dressed.svg",
  17361. extra: 266 / 238
  17362. }
  17363. },
  17364. front: {
  17365. height: math.unit(5 + 7 / 12, "feet"),
  17366. weight: math.unit(140, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/doc-weardno/front.svg",
  17370. extra: 254 / 233
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Micro",
  17377. height: math.unit(3, "inches")
  17378. },
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(5 + 7 / 12, "feet"),
  17382. default: true
  17383. },
  17384. {
  17385. name: "Macro",
  17386. height: math.unit(25, "feet")
  17387. },
  17388. {
  17389. name: "Megamacro",
  17390. height: math.unit(2, "miles")
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(6 + 2 / 12, "feet"),
  17399. weight: math.unit(153, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/seth-whilst/front.svg",
  17403. bottom: 0.07
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Micro",
  17410. height: math.unit(5, "inches")
  17411. },
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(6 + 2 / 12, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17421. {
  17422. front: {
  17423. height: math.unit(3, "inches"),
  17424. weight: math.unit(8, "grams"),
  17425. name: "Front",
  17426. image: {
  17427. source: "./media/characters/pocket-jabari/front.svg",
  17428. extra: 1024 / 974,
  17429. bottom: 0.039
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Minimicro",
  17436. height: math.unit(8, "mm")
  17437. },
  17438. {
  17439. name: "Micro",
  17440. height: math.unit(3, "inches"),
  17441. default: true
  17442. },
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(3, "feet")
  17446. },
  17447. ]
  17448. ))
  17449. characterMakers.push(() => makeCharacter(
  17450. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17451. {
  17452. front: {
  17453. height: math.unit(15, "feet"),
  17454. weight: math.unit(3280, "lb"),
  17455. name: "Front",
  17456. image: {
  17457. source: "./media/characters/sapphy/front.svg",
  17458. extra: 671 / 577,
  17459. bottom: 0.085
  17460. }
  17461. },
  17462. back: {
  17463. height: math.unit(15, "feet"),
  17464. weight: math.unit(3280, "lb"),
  17465. name: "Back",
  17466. image: {
  17467. source: "./media/characters/sapphy/back.svg",
  17468. extra: 631 / 607,
  17469. bottom: 0.045
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(15, "feet")
  17477. },
  17478. {
  17479. name: "Casual Macro",
  17480. height: math.unit(120, "feet")
  17481. },
  17482. {
  17483. name: "Macro",
  17484. height: math.unit(2150, "feet"),
  17485. default: true
  17486. },
  17487. {
  17488. name: "Megamacro",
  17489. height: math.unit(8, "miles")
  17490. },
  17491. {
  17492. name: "Galaxy Mom",
  17493. height: math.unit(6, "megalightyears")
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17499. {
  17500. front: {
  17501. height: math.unit(6, "feet"),
  17502. weight: math.unit(170, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/kiro/front.svg",
  17506. extra: 1064 / 1012,
  17507. bottom: 0.052
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Micro",
  17514. height: math.unit(6, "inches")
  17515. },
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(6, "feet"),
  17519. default: true
  17520. },
  17521. {
  17522. name: "Macro",
  17523. height: math.unit(72, "feet")
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(5 + 9 / 12, "feet"),
  17532. weight: math.unit(175, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/irishfox/front.svg",
  17536. extra: 1912 / 1680,
  17537. bottom: 0.02
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Nano",
  17544. height: math.unit(1, "mm")
  17545. },
  17546. {
  17547. name: "Micro",
  17548. height: math.unit(2, "inches")
  17549. },
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(5 + 9 / 12, "feet"),
  17553. default: true
  17554. },
  17555. {
  17556. name: "Macro",
  17557. height: math.unit(45, "feet")
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6 + 1 / 12, "feet"),
  17566. weight: math.unit(150, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/aronai-sieyes/front.svg",
  17570. extra: 1556 / 1480,
  17571. bottom: 0.015
  17572. }
  17573. },
  17574. side: {
  17575. height: math.unit(6 + 1 / 12, "feet"),
  17576. weight: math.unit(150, "lb"),
  17577. name: "Side",
  17578. image: {
  17579. source: "./media/characters/aronai-sieyes/side.svg",
  17580. extra: 1433 / 1390,
  17581. bottom: 0.0393
  17582. }
  17583. },
  17584. back: {
  17585. height: math.unit(6 + 1 / 12, "feet"),
  17586. weight: math.unit(150, "lb"),
  17587. name: "Back",
  17588. image: {
  17589. source: "./media/characters/aronai-sieyes/back.svg",
  17590. extra: 1544 / 1494,
  17591. bottom: 0.02
  17592. }
  17593. },
  17594. frontClothed: {
  17595. height: math.unit(6 + 1 / 12, "feet"),
  17596. weight: math.unit(150, "lb"),
  17597. name: "Front (Clothed)",
  17598. image: {
  17599. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17600. extra: 1582 / 1527
  17601. }
  17602. },
  17603. feral: {
  17604. height: math.unit(18, "feet"),
  17605. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17606. name: "Feral",
  17607. image: {
  17608. source: "./media/characters/aronai-sieyes/feral.svg",
  17609. extra: 1530 / 1240,
  17610. bottom: 0.035
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Micro",
  17617. height: math.unit(2, "inches")
  17618. },
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(6 + 1 / 12, "feet"),
  17622. default: true
  17623. }
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(12, "feet"),
  17631. weight: math.unit(410, "kg"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/xuna/front.svg",
  17635. extra: 2184 / 1980
  17636. }
  17637. },
  17638. side: {
  17639. height: math.unit(12, "feet"),
  17640. weight: math.unit(410, "kg"),
  17641. name: "Side",
  17642. image: {
  17643. source: "./media/characters/xuna/side.svg",
  17644. extra: 2184 / 1980
  17645. }
  17646. },
  17647. back: {
  17648. height: math.unit(12, "feet"),
  17649. weight: math.unit(410, "kg"),
  17650. name: "Back",
  17651. image: {
  17652. source: "./media/characters/xuna/back.svg",
  17653. extra: 2184 / 1980
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Nano glow",
  17660. height: math.unit(10, "nm")
  17661. },
  17662. {
  17663. name: "Micro floof",
  17664. height: math.unit(0.3, "m")
  17665. },
  17666. {
  17667. name: "Huggable softy boi",
  17668. height: math.unit(3.6576, "m"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Admirable floof",
  17673. height: math.unit(80, "meters")
  17674. },
  17675. {
  17676. name: "Gentle macro",
  17677. height: math.unit(300, "meters")
  17678. },
  17679. {
  17680. name: "Very careful floof",
  17681. height: math.unit(3200, "meters")
  17682. },
  17683. {
  17684. name: "The mega floof",
  17685. height: math.unit(36000, "meters")
  17686. },
  17687. {
  17688. name: "Giga-fur-Wicker",
  17689. height: math.unit(4800000, "meters")
  17690. },
  17691. {
  17692. name: "Licky world",
  17693. height: math.unit(20000000, "meters")
  17694. },
  17695. {
  17696. name: "Floofy cyan sun",
  17697. height: math.unit(1500000000, "meters")
  17698. },
  17699. {
  17700. name: "Milky Wicker",
  17701. height: math.unit(1000000000000000000000, "meters")
  17702. },
  17703. {
  17704. name: "The observing Wicker",
  17705. height: math.unit(999999999999999999999999999, "meters")
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(5 + 9 / 12, "feet"),
  17714. weight: math.unit(150, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/arokha-sieyes/front.svg",
  17718. extra: 1425 / 1284,
  17719. bottom: 0.05
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(5 + 9 / 12, "feet")
  17727. },
  17728. {
  17729. name: "Macro",
  17730. height: math.unit(30, "meters"),
  17731. default: true
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(180, "lb"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/arokh-sieyes/front.svg",
  17744. extra: 1830 / 1769,
  17745. bottom: 0.01
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(6, "feet")
  17753. },
  17754. {
  17755. name: "Macro",
  17756. height: math.unit(30, "meters"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17763. {
  17764. side: {
  17765. height: math.unit(13 + 1 / 12, "feet"),
  17766. weight: math.unit(8.5, "tonnes"),
  17767. name: "Side",
  17768. image: {
  17769. source: "./media/characters/goldeneye/side.svg",
  17770. extra: 1182 / 778,
  17771. bottom: 0.067
  17772. }
  17773. },
  17774. paw: {
  17775. height: math.unit(3.4, "feet"),
  17776. name: "Paw",
  17777. image: {
  17778. source: "./media/characters/goldeneye/paw.svg"
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(13 + 1 / 12, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17792. {
  17793. front: {
  17794. height: math.unit(6 + 1 / 12, "feet"),
  17795. weight: math.unit(210, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/leonardo-lycheborne/front.svg",
  17799. extra: 390 / 365,
  17800. bottom: 0.032
  17801. }
  17802. },
  17803. side: {
  17804. height: math.unit(6 + 1 / 12, "feet"),
  17805. weight: math.unit(210, "lb"),
  17806. name: "Side",
  17807. image: {
  17808. source: "./media/characters/leonardo-lycheborne/side.svg",
  17809. extra: 390 / 365,
  17810. bottom: 0.005
  17811. }
  17812. },
  17813. back: {
  17814. height: math.unit(6 + 1 / 12, "feet"),
  17815. weight: math.unit(210, "lb"),
  17816. name: "Back",
  17817. image: {
  17818. source: "./media/characters/leonardo-lycheborne/back.svg",
  17819. extra: 392 / 366,
  17820. bottom: 0.01
  17821. }
  17822. },
  17823. hand: {
  17824. height: math.unit(1.08, "feet"),
  17825. name: "Hand",
  17826. image: {
  17827. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17828. }
  17829. },
  17830. foot: {
  17831. height: math.unit(1.32, "feet"),
  17832. name: "Foot",
  17833. image: {
  17834. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17835. }
  17836. },
  17837. were: {
  17838. height: math.unit(20, "feet"),
  17839. weight: math.unit(7800, "lb"),
  17840. name: "Were",
  17841. image: {
  17842. source: "./media/characters/leonardo-lycheborne/were.svg",
  17843. extra: 308 / 294,
  17844. bottom: 0.048
  17845. }
  17846. },
  17847. feral: {
  17848. height: math.unit(7.5, "feet"),
  17849. weight: math.unit(600, "lb"),
  17850. name: "Feral",
  17851. image: {
  17852. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17853. extra: 210 / 186,
  17854. bottom: 0.108
  17855. }
  17856. },
  17857. taur: {
  17858. height: math.unit(11, "feet"),
  17859. weight: math.unit(3300, "lb"),
  17860. name: "Taur",
  17861. image: {
  17862. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17863. extra: 320 / 303,
  17864. bottom: 0.025
  17865. }
  17866. },
  17867. barghest: {
  17868. height: math.unit(11, "feet"),
  17869. weight: math.unit(1300, "lb"),
  17870. name: "Barghest",
  17871. image: {
  17872. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17873. extra: 323 / 302,
  17874. bottom: 0.027
  17875. }
  17876. },
  17877. dick: {
  17878. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17879. name: "Dick",
  17880. image: {
  17881. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17882. }
  17883. },
  17884. dickWere: {
  17885. height: math.unit((20) / 3.8, "feet"),
  17886. name: "Dick (Were)",
  17887. image: {
  17888. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(6 + 1 / 12, "feet"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17902. {
  17903. front: {
  17904. height: math.unit(10, "feet"),
  17905. weight: math.unit(350, "lb"),
  17906. name: "Front",
  17907. image: {
  17908. source: "./media/characters/jet/front.svg",
  17909. extra: 2050 / 1980,
  17910. bottom: 0.013
  17911. }
  17912. },
  17913. back: {
  17914. height: math.unit(10, "feet"),
  17915. weight: math.unit(350, "lb"),
  17916. name: "Back",
  17917. image: {
  17918. source: "./media/characters/jet/back.svg",
  17919. extra: 2050 / 1980,
  17920. bottom: 0.013
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Micro",
  17927. height: math.unit(6, "inches")
  17928. },
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(10, "feet"),
  17932. default: true
  17933. },
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(100, "feet")
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17942. {
  17943. front: {
  17944. height: math.unit(15, "feet"),
  17945. weight: math.unit(2800, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/tanarath/front.svg",
  17949. extra: 2392 / 2220,
  17950. bottom: 0.03
  17951. }
  17952. },
  17953. back: {
  17954. height: math.unit(15, "feet"),
  17955. weight: math.unit(2800, "lb"),
  17956. name: "Back",
  17957. image: {
  17958. source: "./media/characters/tanarath/back.svg",
  17959. extra: 2392 / 2220,
  17960. bottom: 0.03
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(15, "feet"),
  17968. default: true
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(7 + 1 / 12, "feet"),
  17977. weight: math.unit(175, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/patty-cattybatty/front.svg",
  17981. extra: 908 / 874,
  17982. bottom: 0.025
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Micro",
  17989. height: math.unit(1, "inch")
  17990. },
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(7 + 1 / 12, "feet")
  17994. },
  17995. {
  17996. name: "Mini Macro",
  17997. height: math.unit(155, "feet")
  17998. },
  17999. {
  18000. name: "Macro",
  18001. height: math.unit(1077, "feet")
  18002. },
  18003. {
  18004. name: "Mega Macro",
  18005. height: math.unit(47650, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Giga Macro",
  18010. height: math.unit(440, "miles")
  18011. },
  18012. {
  18013. name: "Tera Macro",
  18014. height: math.unit(8700, "miles")
  18015. },
  18016. {
  18017. name: "Planetary Macro",
  18018. height: math.unit(32700, "miles")
  18019. },
  18020. {
  18021. name: "Solar Macro",
  18022. height: math.unit(550000, "miles")
  18023. },
  18024. {
  18025. name: "Celestial Macro",
  18026. height: math.unit(2.5, "AU")
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(4 + 5 / 12, "feet"),
  18035. weight: math.unit(90, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/cappu/front.svg",
  18039. extra: 1247 / 1152,
  18040. bottom: 0.012
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(4 + 5 / 12, "feet"),
  18048. default: true
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18054. {
  18055. frontDressed: {
  18056. height: math.unit(70, "cm"),
  18057. weight: math.unit(6, "kg"),
  18058. name: "Front (Dressed)",
  18059. image: {
  18060. source: "./media/characters/sebi/front-dressed.svg",
  18061. extra: 713.5 / 686.5,
  18062. bottom: 0.003
  18063. }
  18064. },
  18065. front: {
  18066. height: math.unit(70, "cm"),
  18067. weight: math.unit(5, "kg"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/sebi/front.svg",
  18071. extra: 713.5 / 686.5,
  18072. bottom: 0.003
  18073. }
  18074. }
  18075. },
  18076. [
  18077. {
  18078. name: "Normal",
  18079. height: math.unit(70, "cm"),
  18080. default: true
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(8, "meters")
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(150, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/typhek/front.svg",
  18097. extra: 1948 / 1929,
  18098. bottom: 0.025
  18099. }
  18100. },
  18101. side: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Side",
  18105. image: {
  18106. source: "./media/characters/typhek/side.svg",
  18107. extra: 2034 / 2010,
  18108. bottom: 0.003
  18109. }
  18110. },
  18111. back: {
  18112. height: math.unit(6, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Back",
  18115. image: {
  18116. source: "./media/characters/typhek/back.svg",
  18117. extra: 2005 / 1978,
  18118. bottom: 0.004
  18119. }
  18120. },
  18121. palm: {
  18122. height: math.unit(1.2, "feet"),
  18123. name: "Palm",
  18124. image: {
  18125. source: "./media/characters/typhek/palm.svg"
  18126. }
  18127. },
  18128. fist: {
  18129. height: math.unit(1.1, "feet"),
  18130. name: "Fist",
  18131. image: {
  18132. source: "./media/characters/typhek/fist.svg"
  18133. }
  18134. },
  18135. foot: {
  18136. height: math.unit(1.57, "feet"),
  18137. name: "Foot",
  18138. image: {
  18139. source: "./media/characters/typhek/foot.svg"
  18140. }
  18141. },
  18142. sole: {
  18143. height: math.unit(2.05, "feet"),
  18144. name: "Sole",
  18145. image: {
  18146. source: "./media/characters/typhek/sole.svg"
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(40, "stories"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Megamacro",
  18158. height: math.unit(1, "mile")
  18159. },
  18160. {
  18161. name: "Gigamacro",
  18162. height: math.unit(4000, "solarradii")
  18163. },
  18164. {
  18165. name: "Universal",
  18166. height: math.unit(1.1, "universes")
  18167. }
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18172. {
  18173. side: {
  18174. height: math.unit(5 + 7 / 12, "feet"),
  18175. weight: math.unit(150, "lb"),
  18176. name: "Side",
  18177. image: {
  18178. source: "./media/characters/kassy/side.svg",
  18179. extra: 1280 / 1225,
  18180. bottom: 0.002
  18181. }
  18182. },
  18183. front: {
  18184. height: math.unit(5 + 7 / 12, "feet"),
  18185. weight: math.unit(150, "lb"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/kassy/front.svg",
  18189. extra: 1280 / 1225,
  18190. bottom: 0.025
  18191. }
  18192. },
  18193. back: {
  18194. height: math.unit(5 + 7 / 12, "feet"),
  18195. weight: math.unit(150, "lb"),
  18196. name: "Back",
  18197. image: {
  18198. source: "./media/characters/kassy/back.svg",
  18199. extra: 1280 / 1225,
  18200. bottom: 0.002
  18201. }
  18202. },
  18203. foot: {
  18204. height: math.unit(1.266, "feet"),
  18205. name: "Foot",
  18206. image: {
  18207. source: "./media/characters/kassy/foot.svg"
  18208. }
  18209. },
  18210. },
  18211. [
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(5 + 7 / 12, "feet")
  18215. },
  18216. {
  18217. name: "Macro",
  18218. height: math.unit(137, "feet"),
  18219. default: true
  18220. },
  18221. {
  18222. name: "Megamacro",
  18223. height: math.unit(1, "mile")
  18224. },
  18225. ]
  18226. ))
  18227. characterMakers.push(() => makeCharacter(
  18228. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18229. {
  18230. front: {
  18231. height: math.unit(6 + 1 / 12, "feet"),
  18232. weight: math.unit(200, "lb"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/neil/front.svg",
  18236. extra: 1326 / 1250,
  18237. bottom: 0.023
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(6 + 1 / 12, "feet"),
  18245. default: true
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(200, "feet")
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18255. {
  18256. front: {
  18257. height: math.unit(5 + 9 / 12, "feet"),
  18258. weight: math.unit(190, "lb"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/atticus/front.svg",
  18262. extra: 2934 / 2785,
  18263. bottom: 0.025
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(5 + 9 / 12, "feet"),
  18271. default: true
  18272. },
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(180, "feet")
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18281. {
  18282. side: {
  18283. height: math.unit(9, "feet"),
  18284. weight: math.unit(650, "lb"),
  18285. name: "Side",
  18286. image: {
  18287. source: "./media/characters/milo/side.svg",
  18288. extra: 2644 / 2310,
  18289. bottom: 0.032
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(9, "feet"),
  18297. default: true
  18298. },
  18299. {
  18300. name: "Macro",
  18301. height: math.unit(300, "feet")
  18302. },
  18303. ]
  18304. ))
  18305. characterMakers.push(() => makeCharacter(
  18306. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18307. {
  18308. side: {
  18309. height: math.unit(8, "meters"),
  18310. weight: math.unit(90000, "kg"),
  18311. name: "Side",
  18312. image: {
  18313. source: "./media/characters/ijzer/side.svg",
  18314. extra: 2756 / 1600,
  18315. bottom: 0.01
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Small",
  18322. height: math.unit(3, "meters")
  18323. },
  18324. {
  18325. name: "Normal",
  18326. height: math.unit(8, "meters"),
  18327. default: true
  18328. },
  18329. {
  18330. name: "Normal+",
  18331. height: math.unit(10, "meters")
  18332. },
  18333. {
  18334. name: "Bigger",
  18335. height: math.unit(24, "meters")
  18336. },
  18337. {
  18338. name: "Huge",
  18339. height: math.unit(80, "meters")
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(6 + 2 / 12, "feet"),
  18348. weight: math.unit(153, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/luca-cervicum/front.svg",
  18352. extra: 370 / 327,
  18353. bottom: 0.015
  18354. }
  18355. },
  18356. back: {
  18357. height: math.unit(6 + 2 / 12, "feet"),
  18358. weight: math.unit(153, "lb"),
  18359. name: "Back",
  18360. image: {
  18361. source: "./media/characters/luca-cervicum/back.svg",
  18362. extra: 367 / 333,
  18363. bottom: 0.005
  18364. }
  18365. },
  18366. frontGear: {
  18367. height: math.unit(6 + 2 / 12, "feet"),
  18368. weight: math.unit(173, "lb"),
  18369. name: "Front (Gear)",
  18370. image: {
  18371. source: "./media/characters/luca-cervicum/front-gear.svg",
  18372. extra: 377 / 333,
  18373. bottom: 0.006
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(6 + 2 / 12, "feet"),
  18381. default: true
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(6 + 1 / 12, "feet"),
  18390. weight: math.unit(304, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/oliver/front.svg",
  18394. extra: 157 / 143,
  18395. bottom: 0.08
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(6 + 1 / 12, "feet"),
  18403. default: true
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(5 + 7 / 12, "feet"),
  18412. weight: math.unit(140, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/shane/front.svg",
  18416. extra: 304 / 289,
  18417. bottom: 0.005
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(5 + 7 / 12, "feet"),
  18425. default: true
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(5 + 9 / 12, "feet"),
  18434. weight: math.unit(178, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/shin/front.svg",
  18438. extra: 159 / 151,
  18439. bottom: 0.015
  18440. }
  18441. },
  18442. },
  18443. [
  18444. {
  18445. name: "Normal",
  18446. height: math.unit(5 + 9 / 12, "feet"),
  18447. default: true
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(5 + 10 / 12, "feet"),
  18456. weight: math.unit(168, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/xerxes/front.svg",
  18460. extra: 282 / 260,
  18461. bottom: 0.045
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(5 + 10 / 12, "feet"),
  18469. default: true
  18470. },
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18475. {
  18476. front: {
  18477. height: math.unit(6 + 7 / 12, "feet"),
  18478. weight: math.unit(208, "lb"),
  18479. name: "Front",
  18480. image: {
  18481. source: "./media/characters/chaska/front.svg",
  18482. extra: 332 / 319,
  18483. bottom: 0.015
  18484. }
  18485. },
  18486. },
  18487. [
  18488. {
  18489. name: "Normal",
  18490. height: math.unit(6 + 7 / 12, "feet"),
  18491. default: true
  18492. },
  18493. ]
  18494. ))
  18495. characterMakers.push(() => makeCharacter(
  18496. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18497. {
  18498. front: {
  18499. height: math.unit(5 + 8 / 12, "feet"),
  18500. weight: math.unit(208, "lb"),
  18501. name: "Front",
  18502. image: {
  18503. source: "./media/characters/enuk/front.svg",
  18504. extra: 437 / 406,
  18505. bottom: 0.02
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Normal",
  18512. height: math.unit(5 + 8 / 12, "feet"),
  18513. default: true
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(5 + 10 / 12, "feet"),
  18522. weight: math.unit(252, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/bruun/front.svg",
  18526. extra: 197 / 187,
  18527. bottom: 0.012
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(5 + 10 / 12, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6 + 10 / 12, "feet"),
  18544. weight: math.unit(255, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/alexeev/front.svg",
  18548. extra: 213 / 200,
  18549. bottom: 0.05
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(6 + 10 / 12, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(2 + 8 / 12, "feet"),
  18566. weight: math.unit(22, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/evelyn/front.svg",
  18570. extra: 208 / 180
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(2 + 8 / 12, "feet"),
  18578. default: true
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(5 + 9 / 12, "feet"),
  18587. weight: math.unit(139, "lb"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/inca/front.svg",
  18591. extra: 294 / 291,
  18592. bottom: 0.03
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(5 + 9 / 12, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(5 + 1 / 12, "feet"),
  18609. weight: math.unit(84, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/magdalene/front.svg",
  18613. extra: 293 / 273
  18614. }
  18615. },
  18616. },
  18617. [
  18618. {
  18619. name: "Normal",
  18620. height: math.unit(5 + 1 / 12, "feet"),
  18621. default: true
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(6 + 3 / 12, "feet"),
  18630. weight: math.unit(185, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/mera/front.svg",
  18634. extra: 291 / 277,
  18635. bottom: 0.03
  18636. }
  18637. },
  18638. },
  18639. [
  18640. {
  18641. name: "Normal",
  18642. height: math.unit(6 + 3 / 12, "feet"),
  18643. default: true
  18644. },
  18645. ]
  18646. ))
  18647. characterMakers.push(() => makeCharacter(
  18648. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18649. {
  18650. front: {
  18651. height: math.unit(6 + 7 / 12, "feet"),
  18652. weight: math.unit(160, "lb"),
  18653. name: "Front",
  18654. image: {
  18655. source: "./media/characters/ceres/front.svg",
  18656. extra: 1023 / 950,
  18657. bottom: 0.027
  18658. }
  18659. },
  18660. back: {
  18661. height: math.unit(6 + 7 / 12, "feet"),
  18662. weight: math.unit(160, "lb"),
  18663. name: "Back",
  18664. image: {
  18665. source: "./media/characters/ceres/back.svg",
  18666. extra: 1023 / 950
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Normal",
  18673. height: math.unit(6 + 7 / 12, "feet"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(5 + 10 / 12, "feet"),
  18683. weight: math.unit(150, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/kris/front.svg",
  18687. extra: 885 / 803,
  18688. bottom: 0.03
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(5 + 10 / 12, "feet"),
  18696. default: true
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18702. {
  18703. front: {
  18704. height: math.unit(7, "feet"),
  18705. weight: math.unit(120, "kg"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/taluthus/front.svg",
  18709. extra: 903 / 833,
  18710. bottom: 0.015
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(7, "feet"),
  18718. default: true
  18719. },
  18720. {
  18721. name: "Macro",
  18722. height: math.unit(300, "feet")
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18728. {
  18729. front: {
  18730. height: math.unit(5 + 9 / 12, "feet"),
  18731. weight: math.unit(145, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/dawn/front.svg",
  18735. extra: 2094 / 2016,
  18736. bottom: 0.025
  18737. }
  18738. },
  18739. back: {
  18740. height: math.unit(5 + 9 / 12, "feet"),
  18741. weight: math.unit(160, "lb"),
  18742. name: "Back",
  18743. image: {
  18744. source: "./media/characters/dawn/back.svg",
  18745. extra: 2112 / 2080,
  18746. bottom: 0.005
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(6 + 7 / 12, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18760. {
  18761. anthro: {
  18762. height: math.unit(8 + 3 / 12, "feet"),
  18763. weight: math.unit(450, "lb"),
  18764. name: "Anthro",
  18765. image: {
  18766. source: "./media/characters/arador/anthro.svg",
  18767. extra: 1835 / 1718,
  18768. bottom: 0.025
  18769. }
  18770. },
  18771. feral: {
  18772. height: math.unit(4, "feet"),
  18773. weight: math.unit(200, "lb"),
  18774. name: "Feral",
  18775. image: {
  18776. source: "./media/characters/arador/feral.svg",
  18777. extra: 1683 / 1514,
  18778. bottom: 0.07
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Normal",
  18785. height: math.unit(8 + 3 / 12, "feet")
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(82.5, "feet"),
  18790. default: true
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18796. {
  18797. front: {
  18798. height: math.unit(5 + 10 / 12, "feet"),
  18799. weight: math.unit(125, "lb"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/dharsi/front.svg",
  18803. extra: 716 / 630,
  18804. bottom: 0.035
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Nano",
  18811. height: math.unit(100, "nm")
  18812. },
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(2, "inches")
  18816. },
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(5 + 10 / 12, "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Macro",
  18824. height: math.unit(1000, "feet")
  18825. },
  18826. {
  18827. name: "Megamacro",
  18828. height: math.unit(10, "miles")
  18829. },
  18830. {
  18831. name: "Gigamacro",
  18832. height: math.unit(3000, "miles")
  18833. },
  18834. {
  18835. name: "Teramacro",
  18836. height: math.unit(500000, "miles")
  18837. },
  18838. {
  18839. name: "Teramacro+",
  18840. height: math.unit(30, "galaxies")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18846. {
  18847. front: {
  18848. height: math.unit(6, "feet"),
  18849. weight: math.unit(150, "lb"),
  18850. name: "Front",
  18851. image: {
  18852. source: "./media/characters/deathy/front.svg",
  18853. extra: 1552 / 1463,
  18854. bottom: 0.025
  18855. }
  18856. },
  18857. side: {
  18858. height: math.unit(6, "feet"),
  18859. weight: math.unit(150, "lb"),
  18860. name: "Side",
  18861. image: {
  18862. source: "./media/characters/deathy/side.svg",
  18863. extra: 1604 / 1455,
  18864. bottom: 0.025
  18865. }
  18866. },
  18867. back: {
  18868. height: math.unit(6, "feet"),
  18869. weight: math.unit(150, "lb"),
  18870. name: "Back",
  18871. image: {
  18872. source: "./media/characters/deathy/back.svg",
  18873. extra: 1580 / 1463,
  18874. bottom: 0.005
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Micro",
  18881. height: math.unit(5, "millimeters")
  18882. },
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(6 + 5 / 12, "feet"),
  18886. default: true
  18887. },
  18888. ]
  18889. ))
  18890. characterMakers.push(() => makeCharacter(
  18891. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18892. {
  18893. front: {
  18894. height: math.unit(16, "feet"),
  18895. weight: math.unit(4000, "lb"),
  18896. name: "Front",
  18897. image: {
  18898. source: "./media/characters/juniper/front.svg",
  18899. bottom: 0.04
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(16, "feet"),
  18907. default: true
  18908. },
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18913. {
  18914. front: {
  18915. height: math.unit(6, "feet"),
  18916. weight: math.unit(150, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/hipster/front.svg",
  18920. extra: 1312 / 1209,
  18921. bottom: 0.025
  18922. }
  18923. },
  18924. back: {
  18925. height: math.unit(6, "feet"),
  18926. weight: math.unit(150, "lb"),
  18927. name: "Back",
  18928. image: {
  18929. source: "./media/characters/hipster/back.svg",
  18930. extra: 1281 / 1196,
  18931. bottom: 0.01
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Micro",
  18938. height: math.unit(1, "mm")
  18939. },
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(4, "inches"),
  18943. default: true
  18944. },
  18945. {
  18946. name: "Macro",
  18947. height: math.unit(500, "feet")
  18948. },
  18949. {
  18950. name: "Megamacro",
  18951. height: math.unit(1000, "miles")
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(6, "feet"),
  18960. weight: math.unit(150, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/tendirmuldr/front.svg",
  18964. extra: 1878 / 1772,
  18965. bottom: 0.015
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Megamacro",
  18972. height: math.unit(1500, "miles"),
  18973. default: true
  18974. },
  18975. ]
  18976. ))
  18977. characterMakers.push(() => makeCharacter(
  18978. { name: "Mort", species: ["demon"], tags: ["feral"] },
  18979. {
  18980. front: {
  18981. height: math.unit(14, "feet"),
  18982. weight: math.unit(12000, "lb"),
  18983. name: "Front",
  18984. image: {
  18985. source: "./media/characters/mort/front.svg",
  18986. extra: 365 / 318,
  18987. bottom: 0.01
  18988. }
  18989. },
  18990. side: {
  18991. height: math.unit(14, "feet"),
  18992. weight: math.unit(12000, "lb"),
  18993. name: "Side",
  18994. image: {
  18995. source: "./media/characters/mort/side.svg",
  18996. extra: 365 / 318,
  18997. bottom: 0.052
  18998. },
  18999. default: true
  19000. },
  19001. back: {
  19002. height: math.unit(14, "feet"),
  19003. weight: math.unit(12000, "lb"),
  19004. name: "Back",
  19005. image: {
  19006. source: "./media/characters/mort/back.svg",
  19007. extra: 371 / 332,
  19008. bottom: 0.18
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(14, "feet"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19022. {
  19023. front: {
  19024. height: math.unit(8, "feet"),
  19025. weight: math.unit(1, "ton"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/lycoa/front.svg",
  19029. extra: 1875 / 1789,
  19030. bottom: 0.022
  19031. }
  19032. },
  19033. back: {
  19034. height: math.unit(8, "feet"),
  19035. weight: math.unit(1, "ton"),
  19036. name: "Back",
  19037. image: {
  19038. source: "./media/characters/lycoa/back.svg",
  19039. extra: 1835 / 1781,
  19040. bottom: 0.03
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(8, "feet"),
  19048. default: true
  19049. },
  19050. {
  19051. name: "Macro",
  19052. height: math.unit(30, "feet")
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19058. {
  19059. front: {
  19060. height: math.unit(4 + 2 / 12, "feet"),
  19061. weight: math.unit(70, "lb"),
  19062. name: "Front",
  19063. image: {
  19064. source: "./media/characters/naldara/front.svg",
  19065. extra: 841 / 720,
  19066. bottom: 0.04
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(4 + 2 / 12, "feet"),
  19074. default: true
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(13 + 7 / 12, "feet"),
  19083. weight: math.unit(1500, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/briar/front.svg",
  19087. extra: 626 / 596,
  19088. bottom: 0.08
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(13 + 7 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19102. {
  19103. side: {
  19104. height: math.unit(10, "feet"),
  19105. weight: math.unit(500, "lb"),
  19106. name: "Side",
  19107. image: {
  19108. source: "./media/characters/vanguard/side.svg",
  19109. extra: 502 / 425,
  19110. bottom: 0.087
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(10, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(7.5, "feet"),
  19127. weight: math.unit(2, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/artemis/front.svg",
  19131. extra: 1192 / 1075,
  19132. bottom: 0.07
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(7.5, "feet"),
  19140. default: true
  19141. },
  19142. {
  19143. name: "Enlarged",
  19144. height: math.unit(12, "feet")
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(5 + 3 / 12, "feet"),
  19153. weight: math.unit(160, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/kira/front.svg",
  19157. extra: 906 / 786,
  19158. bottom: 0.01
  19159. }
  19160. },
  19161. back: {
  19162. height: math.unit(5 + 3 / 12, "feet"),
  19163. weight: math.unit(160, "lb"),
  19164. name: "Back",
  19165. image: {
  19166. source: "./media/characters/kira/back.svg",
  19167. extra: 882 / 757,
  19168. bottom: 0.005
  19169. }
  19170. },
  19171. frontDressed: {
  19172. height: math.unit(5 + 3 / 12, "feet"),
  19173. weight: math.unit(160, "lb"),
  19174. name: "Front (Dressed)",
  19175. image: {
  19176. source: "./media/characters/kira/front-dressed.svg",
  19177. extra: 906 / 786,
  19178. bottom: 0.01
  19179. }
  19180. },
  19181. beans: {
  19182. height: math.unit(0.92, "feet"),
  19183. name: "Beans",
  19184. image: {
  19185. source: "./media/characters/kira/beans.svg"
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(5 + 3 / 12, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(5 + 4 / 12, "feet"),
  19202. weight: math.unit(145, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/scramble/front.svg",
  19206. extra: 763 / 727,
  19207. bottom: 0.05
  19208. }
  19209. },
  19210. back: {
  19211. height: math.unit(5 + 4 / 12, "feet"),
  19212. weight: math.unit(145, "lb"),
  19213. name: "Back",
  19214. image: {
  19215. source: "./media/characters/scramble/back.svg",
  19216. extra: 826 / 737,
  19217. bottom: 0.002
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(5 + 4 / 12, "feet"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19231. {
  19232. side: {
  19233. height: math.unit(6 + 2 / 12, "feet"),
  19234. weight: math.unit(190, "lb"),
  19235. name: "Side",
  19236. image: {
  19237. source: "./media/characters/biscuit/side.svg",
  19238. extra: 858 / 791,
  19239. bottom: 0.044
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(6 + 2 / 12, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(5 + 2 / 12, "feet"),
  19256. weight: math.unit(120, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/poffin/front.svg",
  19260. extra: 786 / 680,
  19261. bottom: 0.005
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(5 + 2 / 12, "feet"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19275. {
  19276. front: {
  19277. height: math.unit(6 + 3 / 12, "feet"),
  19278. weight: math.unit(519, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/dhari/front.svg",
  19282. extra: 1048 / 946,
  19283. bottom: 0.015
  19284. }
  19285. },
  19286. back: {
  19287. height: math.unit(6 + 3 / 12, "feet"),
  19288. weight: math.unit(519, "lb"),
  19289. name: "Back",
  19290. image: {
  19291. source: "./media/characters/dhari/back.svg",
  19292. extra: 1048 / 931,
  19293. bottom: 0.005
  19294. }
  19295. },
  19296. frontDressed: {
  19297. height: math.unit(6 + 3 / 12, "feet"),
  19298. weight: math.unit(519, "lb"),
  19299. name: "Front (Dressed)",
  19300. image: {
  19301. source: "./media/characters/dhari/front-dressed.svg",
  19302. extra: 1713 / 1546,
  19303. bottom: 0.02
  19304. }
  19305. },
  19306. backDressed: {
  19307. height: math.unit(6 + 3 / 12, "feet"),
  19308. weight: math.unit(519, "lb"),
  19309. name: "Back (Dressed)",
  19310. image: {
  19311. source: "./media/characters/dhari/back-dressed.svg",
  19312. extra: 1699 / 1537,
  19313. bottom: 0.01
  19314. }
  19315. },
  19316. maw: {
  19317. height: math.unit(0.95, "feet"),
  19318. name: "Maw",
  19319. image: {
  19320. source: "./media/characters/dhari/maw.svg"
  19321. }
  19322. },
  19323. wereFront: {
  19324. height: math.unit(12 + 8 / 12, "feet"),
  19325. weight: math.unit(4000, "lb"),
  19326. name: "Front (Were)",
  19327. image: {
  19328. source: "./media/characters/dhari/were-front.svg",
  19329. extra: 1065 / 969,
  19330. bottom: 0.015
  19331. }
  19332. },
  19333. wereBack: {
  19334. height: math.unit(12 + 8 / 12, "feet"),
  19335. weight: math.unit(4000, "lb"),
  19336. name: "Back (Were)",
  19337. image: {
  19338. source: "./media/characters/dhari/were-back.svg",
  19339. extra: 1065 / 969,
  19340. bottom: 0.012
  19341. }
  19342. },
  19343. wereMaw: {
  19344. height: math.unit(0.625, "meters"),
  19345. name: "Maw (Were)",
  19346. image: {
  19347. source: "./media/characters/dhari/were-maw.svg"
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 3 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19361. {
  19362. anthro: {
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. weight: math.unit(175, "lb"),
  19365. name: "Anthro",
  19366. image: {
  19367. source: "./media/characters/rena-dyne/anthro.svg",
  19368. extra: 1849 / 1785,
  19369. bottom: 0.005
  19370. }
  19371. },
  19372. taur: {
  19373. height: math.unit(15 + 6 / 12, "feet"),
  19374. weight: math.unit(8000, "lb"),
  19375. name: "Taur",
  19376. image: {
  19377. source: "./media/characters/rena-dyne/taur.svg",
  19378. extra: 2315 / 2234,
  19379. bottom: 0.033
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(5 + 7 / 12, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(8, "feet"),
  19396. weight: math.unit(600, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/weremeep/front.svg",
  19400. extra: 967 / 862,
  19401. bottom: 0.01
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(8, "feet"),
  19409. default: true
  19410. },
  19411. {
  19412. name: "Lorg",
  19413. height: math.unit(12, "feet")
  19414. },
  19415. {
  19416. name: "Oh Lawd She Comin'",
  19417. height: math.unit(20, "feet")
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19423. {
  19424. front: {
  19425. height: math.unit(4, "feet"),
  19426. weight: math.unit(90, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/reza/front.svg",
  19430. extra: 1183 / 1111,
  19431. bottom: 0.017
  19432. }
  19433. },
  19434. back: {
  19435. height: math.unit(4, "feet"),
  19436. weight: math.unit(90, "lb"),
  19437. name: "Back",
  19438. image: {
  19439. source: "./media/characters/reza/back.svg",
  19440. extra: 1183 / 1111,
  19441. bottom: 0.01
  19442. }
  19443. },
  19444. drake: {
  19445. height: math.unit(30, "feet"),
  19446. weight: math.unit(246960, "lb"),
  19447. name: "Drake",
  19448. image: {
  19449. source: "./media/characters/reza/drake.svg",
  19450. extra: 2350/2024,
  19451. bottom: 60.7/2403
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(4, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19465. {
  19466. side: {
  19467. height: math.unit(15, "feet"),
  19468. weight: math.unit(14, "tons"),
  19469. name: "Side",
  19470. image: {
  19471. source: "./media/characters/athea/side.svg",
  19472. extra: 960 / 540,
  19473. bottom: 0.003
  19474. }
  19475. },
  19476. sitting: {
  19477. height: math.unit(6 * 2.85, "feet"),
  19478. weight: math.unit(14, "tons"),
  19479. name: "Sitting",
  19480. image: {
  19481. source: "./media/characters/athea/sitting.svg",
  19482. extra: 621 / 581,
  19483. bottom: 0.075
  19484. }
  19485. },
  19486. maw: {
  19487. height: math.unit(7.59498031496063, "feet"),
  19488. name: "Maw",
  19489. image: {
  19490. source: "./media/characters/athea/maw.svg"
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Lap Cat",
  19497. height: math.unit(2.5, "feet")
  19498. },
  19499. {
  19500. name: "Minimacro",
  19501. height: math.unit(15, "feet"),
  19502. default: true
  19503. },
  19504. {
  19505. name: "Macro",
  19506. height: math.unit(120, "feet")
  19507. },
  19508. {
  19509. name: "Macro+",
  19510. height: math.unit(640, "feet")
  19511. },
  19512. {
  19513. name: "Colossus",
  19514. height: math.unit(2.2, "miles")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(8 + 8 / 12, "feet"),
  19523. weight: math.unit(130, "kg"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/seroko/front.svg",
  19527. extra: 1385 / 1280,
  19528. bottom: 0.025
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(8 + 8 / 12, "feet"),
  19533. weight: math.unit(130, "kg"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/seroko/back.svg",
  19537. extra: 1369 / 1238,
  19538. bottom: 0.018
  19539. }
  19540. },
  19541. frontDressed: {
  19542. height: math.unit(8 + 8 / 12, "feet"),
  19543. weight: math.unit(130, "kg"),
  19544. name: "Front (Dressed)",
  19545. image: {
  19546. source: "./media/characters/seroko/front-dressed.svg",
  19547. extra: 1366 / 1275,
  19548. bottom: 0.03
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Normal",
  19555. height: math.unit(8 + 8 / 12, "feet"),
  19556. default: true
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(5.5, "feet"),
  19565. weight: math.unit(160, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/quatzi/front.svg",
  19569. extra: 2346 / 2242,
  19570. bottom: 0.015
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(5.5, "feet"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Big",
  19582. height: math.unit(7.7, "feet")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 11 / 12, "feet"),
  19591. weight: math.unit(180, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/sen/front.svg",
  19595. extra: 1321 / 1254,
  19596. bottom: 0.015
  19597. }
  19598. },
  19599. side: {
  19600. height: math.unit(5 + 11 / 12, "feet"),
  19601. weight: math.unit(180, "lb"),
  19602. name: "Side",
  19603. image: {
  19604. source: "./media/characters/sen/side.svg",
  19605. extra: 1321 / 1254,
  19606. bottom: 0.007
  19607. }
  19608. },
  19609. back: {
  19610. height: math.unit(5 + 11 / 12, "feet"),
  19611. weight: math.unit(180, "lb"),
  19612. name: "Back",
  19613. image: {
  19614. source: "./media/characters/sen/back.svg",
  19615. extra: 1321 / 1254
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(5 + 11 / 12, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19629. {
  19630. front: {
  19631. height: math.unit(166.6, "cm"),
  19632. weight: math.unit(66.6, "kg"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/fruity/front.svg",
  19636. extra: 1510 / 1386,
  19637. bottom: 0.04
  19638. }
  19639. },
  19640. back: {
  19641. height: math.unit(166.6, "cm"),
  19642. weight: math.unit(66.6, "lb"),
  19643. name: "Back",
  19644. image: {
  19645. source: "./media/characters/fruity/back.svg",
  19646. extra: 1563 / 1435,
  19647. bottom: 0.005
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(166.6, "cm"),
  19655. default: true
  19656. },
  19657. {
  19658. name: "Demonic",
  19659. height: math.unit(166.6, "feet")
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19665. {
  19666. side: {
  19667. height: math.unit(10, "feet"),
  19668. weight: math.unit(500, "lb"),
  19669. name: "Side",
  19670. image: {
  19671. source: "./media/characters/zost/side.svg",
  19672. extra: 966 / 880,
  19673. bottom: 0.075
  19674. }
  19675. },
  19676. mawFront: {
  19677. height: math.unit(1.08, "meters"),
  19678. name: "Maw (Front)",
  19679. image: {
  19680. source: "./media/characters/zost/maw-front.svg"
  19681. }
  19682. },
  19683. mawSide: {
  19684. height: math.unit(2.66, "feet"),
  19685. name: "Maw (Side)",
  19686. image: {
  19687. source: "./media/characters/zost/maw-side.svg"
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(10, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(5 + 4 / 12, "feet"),
  19704. weight: math.unit(120, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/luci/front.svg",
  19708. extra: 1985 / 1884,
  19709. bottom: 0.04
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(5 + 4 / 12, "feet"),
  19714. weight: math.unit(120, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/luci/back.svg",
  19718. extra: 1892 / 1791,
  19719. bottom: 0.002
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(5 + 4 / 12, "feet"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(1500, "feet"),
  19736. weight: math.unit(3.8e6, "tons"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/2th/front.svg",
  19740. extra: 3489 / 3350,
  19741. bottom: 0.1
  19742. }
  19743. },
  19744. foot: {
  19745. height: math.unit(461, "feet"),
  19746. name: "Foot",
  19747. image: {
  19748. source: "./media/characters/2th/foot.svg"
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "\"Micro\"",
  19755. height: math.unit(15 + 7 / 12, "feet")
  19756. },
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(1500, "feet"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Macro",
  19764. height: math.unit(5000, "feet")
  19765. },
  19766. {
  19767. name: "Megamacro",
  19768. height: math.unit(15, "miles")
  19769. },
  19770. {
  19771. name: "Gigamacro",
  19772. height: math.unit(4000, "miles")
  19773. },
  19774. {
  19775. name: "Galactic",
  19776. height: math.unit(50, "AU")
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19782. {
  19783. front: {
  19784. height: math.unit(5 + 6 / 12, "feet"),
  19785. weight: math.unit(220, "lb"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/amethyst/front.svg",
  19789. extra: 2078 / 2040,
  19790. bottom: 0.045
  19791. }
  19792. },
  19793. back: {
  19794. height: math.unit(5 + 6 / 12, "feet"),
  19795. weight: math.unit(220, "lb"),
  19796. name: "Back",
  19797. image: {
  19798. source: "./media/characters/amethyst/back.svg",
  19799. extra: 2021 / 1989,
  19800. bottom: 0.02
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 6 / 12, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(4 + 11 / 12, "feet"),
  19817. weight: math.unit(120, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/yumi-akiyama/front.svg",
  19821. extra: 1327 / 1235,
  19822. bottom: 0.02
  19823. }
  19824. },
  19825. back: {
  19826. height: math.unit(4 + 11 / 12, "feet"),
  19827. weight: math.unit(120, "lb"),
  19828. name: "Back",
  19829. image: {
  19830. source: "./media/characters/yumi-akiyama/back.svg",
  19831. extra: 1287 / 1245,
  19832. bottom: 0.002
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Galactic",
  19839. height: math.unit(50, "galaxies"),
  19840. default: true
  19841. },
  19842. {
  19843. name: "Universal",
  19844. height: math.unit(100, "universes")
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19850. {
  19851. front: {
  19852. height: math.unit(8, "feet"),
  19853. weight: math.unit(500, "lb"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/rifter-yrmori/front.svg",
  19857. extra: 1180 / 1125,
  19858. bottom: 0.02
  19859. }
  19860. },
  19861. back: {
  19862. height: math.unit(8, "feet"),
  19863. weight: math.unit(500, "lb"),
  19864. name: "Back",
  19865. image: {
  19866. source: "./media/characters/rifter-yrmori/back.svg",
  19867. extra: 1190 / 1145,
  19868. bottom: 0.001
  19869. }
  19870. },
  19871. wings: {
  19872. height: math.unit(7.75, "feet"),
  19873. weight: math.unit(500, "lb"),
  19874. name: "Wings",
  19875. image: {
  19876. source: "./media/characters/rifter-yrmori/wings.svg",
  19877. extra: 1357 / 1285
  19878. }
  19879. },
  19880. maw: {
  19881. height: math.unit(0.8, "feet"),
  19882. name: "Maw",
  19883. image: {
  19884. source: "./media/characters/rifter-yrmori/maw.svg"
  19885. }
  19886. },
  19887. },
  19888. [
  19889. {
  19890. name: "Normal",
  19891. height: math.unit(8, "feet"),
  19892. default: true
  19893. },
  19894. {
  19895. name: "Macro",
  19896. height: math.unit(42, "meters")
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19902. {
  19903. were: {
  19904. height: math.unit(25 + 6 / 12, "feet"),
  19905. weight: math.unit(10000, "lb"),
  19906. name: "Were",
  19907. image: {
  19908. source: "./media/characters/tahajin/were.svg",
  19909. extra: 801 / 770,
  19910. bottom: 0.042
  19911. }
  19912. },
  19913. aquatic: {
  19914. height: math.unit(6 + 4 / 12, "feet"),
  19915. weight: math.unit(160, "lb"),
  19916. name: "Aquatic",
  19917. image: {
  19918. source: "./media/characters/tahajin/aquatic.svg",
  19919. extra: 572 / 542,
  19920. bottom: 0.04
  19921. }
  19922. },
  19923. chow: {
  19924. height: math.unit(8 + 11 / 12, "feet"),
  19925. weight: math.unit(450, "lb"),
  19926. name: "Chow",
  19927. image: {
  19928. source: "./media/characters/tahajin/chow.svg",
  19929. extra: 660 / 640,
  19930. bottom: 0.015
  19931. }
  19932. },
  19933. demiNaga: {
  19934. height: math.unit(6 + 8 / 12, "feet"),
  19935. weight: math.unit(300, "lb"),
  19936. name: "Demi Naga",
  19937. image: {
  19938. source: "./media/characters/tahajin/demi-naga.svg",
  19939. extra: 643 / 615,
  19940. bottom: 0.1
  19941. }
  19942. },
  19943. data: {
  19944. height: math.unit(5, "inches"),
  19945. weight: math.unit(0.1, "lb"),
  19946. name: "Data",
  19947. image: {
  19948. source: "./media/characters/tahajin/data.svg"
  19949. }
  19950. },
  19951. fluu: {
  19952. height: math.unit(5 + 7 / 12, "feet"),
  19953. weight: math.unit(140, "lb"),
  19954. name: "Fluu",
  19955. image: {
  19956. source: "./media/characters/tahajin/fluu.svg",
  19957. extra: 628 / 592,
  19958. bottom: 0.02
  19959. }
  19960. },
  19961. starWarrior: {
  19962. height: math.unit(4 + 5 / 12, "feet"),
  19963. weight: math.unit(50, "lb"),
  19964. name: "Star Warrior",
  19965. image: {
  19966. source: "./media/characters/tahajin/star-warrior.svg"
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(25 + 6 / 12, "feet"),
  19974. default: true
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  19980. {
  19981. front: {
  19982. height: math.unit(8, "feet"),
  19983. weight: math.unit(350, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/gabira/front.svg",
  19987. extra: 608 / 580,
  19988. bottom: 0.03
  19989. }
  19990. },
  19991. back: {
  19992. height: math.unit(8, "feet"),
  19993. weight: math.unit(350, "lb"),
  19994. name: "Back",
  19995. image: {
  19996. source: "./media/characters/gabira/back.svg",
  19997. extra: 608 / 580,
  19998. bottom: 0.03
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(8, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(5 + 3 / 12, "feet"),
  20015. weight: math.unit(137, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/sasha-katraine/front.svg",
  20019. bottom: 0.045
  20020. }
  20021. },
  20022. },
  20023. [
  20024. {
  20025. name: "Micro",
  20026. height: math.unit(5, "inches")
  20027. },
  20028. {
  20029. name: "Normal",
  20030. height: math.unit(5 + 3 / 12, "feet"),
  20031. default: true
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20037. {
  20038. side: {
  20039. height: math.unit(4, "inches"),
  20040. weight: math.unit(200, "grams"),
  20041. name: "Side",
  20042. image: {
  20043. source: "./media/characters/der/side.svg",
  20044. extra: 719 / 400,
  20045. bottom: 30.6 / 749.9187
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Micro",
  20052. height: math.unit(4, "inches"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20059. {
  20060. side: {
  20061. height: math.unit(30, "meters"),
  20062. weight: math.unit(700, "tonnes"),
  20063. name: "Side",
  20064. image: {
  20065. source: "./media/characters/fixerdragon/side.svg",
  20066. extra: (1293.0514 - 116.03) / 1106.86,
  20067. bottom: 116.03 / 1293.0514
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Planck",
  20074. height: math.unit(1.6e-35, "meters")
  20075. },
  20076. {
  20077. name: "Micro",
  20078. height: math.unit(0.4, "meters")
  20079. },
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(30, "meters"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Megamacro",
  20087. height: math.unit(1.2, "megameters")
  20088. },
  20089. {
  20090. name: "Teramacro",
  20091. height: math.unit(130, "terameters")
  20092. },
  20093. {
  20094. name: "Yottamacro",
  20095. height: math.unit(6200, "yottameters")
  20096. },
  20097. ]
  20098. ));
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(8, "feet"),
  20104. weight: math.unit(250, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/kite/front.svg",
  20108. extra: 2796 / 2659,
  20109. bottom: 0.002
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(8, "feet"),
  20117. default: true
  20118. },
  20119. {
  20120. name: "Macro",
  20121. height: math.unit(360, "feet")
  20122. },
  20123. {
  20124. name: "Megamacro",
  20125. height: math.unit(1500, "feet")
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(5 + 10 / 12, "feet"),
  20134. weight: math.unit(150, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/poojawa-vynar/front.svg",
  20138. extra: (1506.1547 - 55) / 1356.6,
  20139. bottom: 55 / 1506.1547
  20140. }
  20141. },
  20142. frontTailless: {
  20143. height: math.unit(5 + 10 / 12, "feet"),
  20144. weight: math.unit(150, "lb"),
  20145. name: "Front (Tailless)",
  20146. image: {
  20147. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20148. extra: (1506.1547 - 55) / 1356.6,
  20149. bottom: 55 / 1506.1547
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(5 + 10 / 12, "feet"),
  20157. default: true
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20163. {
  20164. front: {
  20165. height: math.unit(293, "meters"),
  20166. weight: math.unit(70400, "tons"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/violette/front.svg",
  20170. extra: 1227 / 1180,
  20171. bottom: 0.005
  20172. }
  20173. },
  20174. back: {
  20175. height: math.unit(293, "meters"),
  20176. weight: math.unit(70400, "tons"),
  20177. name: "Back",
  20178. image: {
  20179. source: "./media/characters/violette/back.svg",
  20180. extra: 1227 / 1180,
  20181. bottom: 0.005
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Macro",
  20188. height: math.unit(293, "meters"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(1050, "feet"),
  20198. weight: math.unit(200000, "tons"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/alessandra/front.svg",
  20202. extra: 960 / 912,
  20203. bottom: 0.06
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(1050, "feet")
  20211. },
  20212. {
  20213. name: "Macro+",
  20214. height: math.unit(900, "meters"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(5, "feet"),
  20224. weight: math.unit(187, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/person/front.svg",
  20228. extra: 3087 / 2945,
  20229. bottom: 91 / 3181
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Micro",
  20236. height: math.unit(3, "inches")
  20237. },
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(5, "feet"),
  20241. default: true
  20242. },
  20243. {
  20244. name: "Macro",
  20245. height: math.unit(90, "feet")
  20246. },
  20247. {
  20248. name: "Max Size",
  20249. height: math.unit(280, "feet")
  20250. },
  20251. ]
  20252. ))
  20253. characterMakers.push(() => makeCharacter(
  20254. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20255. {
  20256. front: {
  20257. height: math.unit(4.5, "meters"),
  20258. weight: math.unit(3200, "lb"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/ty/front.svg",
  20262. extra: 1038 / 960,
  20263. bottom: 31.156 / 1068
  20264. }
  20265. },
  20266. back: {
  20267. height: math.unit(4.5, "meters"),
  20268. weight: math.unit(3200, "lb"),
  20269. name: "Back",
  20270. image: {
  20271. source: "./media/characters/ty/back.svg",
  20272. extra: 1044 / 966,
  20273. bottom: 7.48 / 1049
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Normal",
  20280. height: math.unit(4.5, "meters"),
  20281. default: true
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(5 + 4 / 12, "feet"),
  20290. weight: math.unit(115, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/rocky/front.svg",
  20294. extra: 1012 / 975,
  20295. bottom: 54 / 1066
  20296. }
  20297. },
  20298. },
  20299. [
  20300. {
  20301. name: "Normal",
  20302. height: math.unit(5 + 4 / 12, "feet"),
  20303. default: true
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20309. {
  20310. upright: {
  20311. height: math.unit(6, "meters"),
  20312. weight: math.unit(4000, "kg"),
  20313. name: "Upright",
  20314. image: {
  20315. source: "./media/characters/ruin/upright.svg",
  20316. extra: 668 / 661,
  20317. bottom: 42 / 799.8396
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(6, "meters"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20331. {
  20332. front: {
  20333. height: math.unit(5, "feet"),
  20334. weight: math.unit(106, "lb"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/robin/front.svg",
  20338. extra: 862 / 799,
  20339. bottom: 42.4 / 914.8856
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(5, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20353. {
  20354. side: {
  20355. height: math.unit(3, "feet"),
  20356. weight: math.unit(225, "lb"),
  20357. name: "Side",
  20358. image: {
  20359. source: "./media/characters/saian/side.svg",
  20360. extra: 566 / 356,
  20361. bottom: 79.7 / 643
  20362. }
  20363. },
  20364. maw: {
  20365. height: math.unit(2.85, "feet"),
  20366. name: "Maw",
  20367. image: {
  20368. source: "./media/characters/saian/maw.svg"
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(3, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20382. {
  20383. side: {
  20384. height: math.unit(8, "feet"),
  20385. weight: math.unit(300, "lb"),
  20386. name: "Side",
  20387. image: {
  20388. source: "./media/characters/equus-silvermane/side.svg",
  20389. extra: 2176 / 2050,
  20390. bottom: 65.7 / 2245
  20391. }
  20392. },
  20393. front: {
  20394. height: math.unit(8, "feet"),
  20395. weight: math.unit(300, "lb"),
  20396. name: "Front",
  20397. image: {
  20398. source: "./media/characters/equus-silvermane/front.svg",
  20399. extra: 4633 / 4400,
  20400. bottom: 71.3 / 4706.915
  20401. }
  20402. },
  20403. sideStepping: {
  20404. height: math.unit(8, "feet"),
  20405. weight: math.unit(300, "lb"),
  20406. name: "Side (Stepping)",
  20407. image: {
  20408. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20409. extra: 1968 / 1860,
  20410. bottom: 16.4 / 1989
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(8, "feet")
  20418. },
  20419. {
  20420. name: "Minimacro",
  20421. height: math.unit(75, "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(150, "feet")
  20427. },
  20428. {
  20429. name: "Macro+",
  20430. height: math.unit(1000, "feet")
  20431. },
  20432. {
  20433. name: "Megamacro",
  20434. height: math.unit(1, "mile")
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20440. {
  20441. side: {
  20442. height: math.unit(20, "feet"),
  20443. weight: math.unit(30000, "kg"),
  20444. name: "Side",
  20445. image: {
  20446. source: "./media/characters/windar/side.svg",
  20447. extra: 1491 / 1248,
  20448. bottom: 82.56 / 1568
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(20, "feet"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20462. {
  20463. side: {
  20464. height: math.unit(15.66, "feet"),
  20465. weight: math.unit(150, "lb"),
  20466. name: "Side",
  20467. image: {
  20468. source: "./media/characters/melody/side.svg",
  20469. extra: 1097 / 944,
  20470. bottom: 11.8 / 1109
  20471. }
  20472. },
  20473. sideOutfit: {
  20474. height: math.unit(15.66, "feet"),
  20475. weight: math.unit(150, "lb"),
  20476. name: "Side (Outfit)",
  20477. image: {
  20478. source: "./media/characters/melody/side-outfit.svg",
  20479. extra: 1097 / 944,
  20480. bottom: 11.8 / 1109
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(15.66, "feet"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(8, "feet"),
  20497. weight: math.unit(325, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/windera/front.svg",
  20501. extra: 3180 / 2845,
  20502. bottom: 178 / 3365
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Normal",
  20509. height: math.unit(8, "feet"),
  20510. default: true
  20511. },
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20516. {
  20517. front: {
  20518. height: math.unit(28.75, "feet"),
  20519. weight: math.unit(2000, "kg"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/sonear/front.svg",
  20523. extra: 1041.1 / 964.9,
  20524. bottom: 53.7 / 1096.6
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(28.75, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20538. {
  20539. side: {
  20540. height: math.unit(25.5, "feet"),
  20541. weight: math.unit(23000, "kg"),
  20542. name: "Side",
  20543. image: {
  20544. source: "./media/characters/kanara/side.svg"
  20545. }
  20546. },
  20547. },
  20548. [
  20549. {
  20550. name: "Normal",
  20551. height: math.unit(25.5, "feet"),
  20552. default: true
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20558. {
  20559. side: {
  20560. height: math.unit(10, "feet"),
  20561. weight: math.unit(1000, "kg"),
  20562. name: "Side",
  20563. image: {
  20564. source: "./media/characters/ereus/side.svg",
  20565. extra: 1157 / 959,
  20566. bottom: 153 / 1312.5
  20567. }
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(10, "feet"),
  20574. default: true
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20580. {
  20581. side: {
  20582. height: math.unit(4.5, "feet"),
  20583. weight: math.unit(500, "lb"),
  20584. name: "Side",
  20585. image: {
  20586. source: "./media/characters/e-ter/side.svg",
  20587. extra: 1550 / 1248,
  20588. bottom: 146 / 1694
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(4.5, "feet"),
  20596. default: true
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20602. {
  20603. side: {
  20604. height: math.unit(9.7, "feet"),
  20605. weight: math.unit(4000, "kg"),
  20606. name: "Side",
  20607. image: {
  20608. source: "./media/characters/yamie/side.svg"
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(9.7, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Anders", species: ["unicorn"], tags: ["anthro"] },
  20622. {
  20623. front: {
  20624. height: math.unit(50, "feet"),
  20625. weight: math.unit(50000, "kg"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/anders/front.svg",
  20629. extra: 570 / 539,
  20630. bottom: 14.7 / 586.7
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Large",
  20637. height: math.unit(50, "feet")
  20638. },
  20639. {
  20640. name: "Macro",
  20641. height: math.unit(2000, "feet"),
  20642. default: true
  20643. },
  20644. {
  20645. name: "Megamacro",
  20646. height: math.unit(12, "miles")
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20652. {
  20653. front: {
  20654. height: math.unit(7 + 2 / 12, "feet"),
  20655. weight: math.unit(300, "lb"),
  20656. name: "Front",
  20657. image: {
  20658. source: "./media/characters/reban/front.svg",
  20659. extra: 516 / 487,
  20660. bottom: 42.82 / 558.356
  20661. }
  20662. },
  20663. dick: {
  20664. height: math.unit(7 / 5, "feet"),
  20665. name: "Dick",
  20666. image: {
  20667. source: "./media/characters/reban/dick.svg"
  20668. }
  20669. },
  20670. },
  20671. [
  20672. {
  20673. name: "Natural Height",
  20674. height: math.unit(7 + 2 / 12, "feet")
  20675. },
  20676. {
  20677. name: "Macro",
  20678. height: math.unit(500, "feet"),
  20679. default: true
  20680. },
  20681. {
  20682. name: "Canon Height",
  20683. height: math.unit(50, "AU")
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20689. {
  20690. front: {
  20691. height: math.unit(6, "feet"),
  20692. weight: math.unit(150, "lb"),
  20693. name: "Front",
  20694. image: {
  20695. source: "./media/characters/terrance-keayes/front.svg",
  20696. extra: 1.005,
  20697. bottom: 151 / 1615
  20698. }
  20699. },
  20700. side: {
  20701. height: math.unit(6, "feet"),
  20702. weight: math.unit(150, "lb"),
  20703. name: "Side",
  20704. image: {
  20705. source: "./media/characters/terrance-keayes/side.svg",
  20706. extra: 1.005,
  20707. bottom: 129.4 / 1544
  20708. }
  20709. },
  20710. back: {
  20711. height: math.unit(6, "feet"),
  20712. weight: math.unit(150, "lb"),
  20713. name: "Back",
  20714. image: {
  20715. source: "./media/characters/terrance-keayes/back.svg",
  20716. extra: 1.005,
  20717. bottom: 58.4 / 1557.3
  20718. }
  20719. },
  20720. dick: {
  20721. height: math.unit(6 * 0.208, "feet"),
  20722. name: "Dick",
  20723. image: {
  20724. source: "./media/characters/terrance-keayes/dick.svg"
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Canon Height",
  20731. height: math.unit(35, "miles"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(6, "feet"),
  20741. weight: math.unit(150, "lb"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/ofelia/front.svg",
  20745. extra: 546 / 541,
  20746. bottom: 39 / 583
  20747. }
  20748. },
  20749. back: {
  20750. height: math.unit(6, "feet"),
  20751. weight: math.unit(150, "lb"),
  20752. name: "Back",
  20753. image: {
  20754. source: "./media/characters/ofelia/back.svg",
  20755. extra: 564 / 559.5,
  20756. bottom: 8.69 / 573.02
  20757. }
  20758. },
  20759. maw: {
  20760. height: math.unit(1, "feet"),
  20761. name: "Maw",
  20762. image: {
  20763. source: "./media/characters/ofelia/maw.svg"
  20764. }
  20765. },
  20766. foot: {
  20767. height: math.unit(1.949, "feet"),
  20768. name: "Foot",
  20769. image: {
  20770. source: "./media/characters/ofelia/foot.svg"
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Canon Height",
  20777. height: math.unit(2000, "miles"),
  20778. default: true
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(6, "feet"),
  20787. weight: math.unit(150, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/samuel/front.svg",
  20791. extra: 265 / 258,
  20792. bottom: 2 / 266.1566
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Macro",
  20799. height: math.unit(100, "feet"),
  20800. default: true
  20801. },
  20802. {
  20803. name: "Full Size",
  20804. height: math.unit(1000, "miles")
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20810. {
  20811. front: {
  20812. height: math.unit(6, "feet"),
  20813. weight: math.unit(300, "lb"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/beishir-kiel/front.svg",
  20817. extra: 569 / 547,
  20818. bottom: 41.9 / 609
  20819. }
  20820. },
  20821. maw: {
  20822. height: math.unit(6 * 0.202, "feet"),
  20823. name: "Maw",
  20824. image: {
  20825. source: "./media/characters/beishir-kiel/maw.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Macro",
  20832. height: math.unit(300, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(5 + 8 / 12, "feet"),
  20842. weight: math.unit(120, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/logan-grey/front.svg",
  20846. extra: 2539 / 2393,
  20847. bottom: 97.6 / 2636.37
  20848. }
  20849. },
  20850. frontAlt: {
  20851. height: math.unit(5 + 8 / 12, "feet"),
  20852. weight: math.unit(120, "lb"),
  20853. name: "Front (Alt)",
  20854. image: {
  20855. source: "./media/characters/logan-grey/front-alt.svg",
  20856. extra: 958 / 893,
  20857. bottom: 15 / 970.768
  20858. }
  20859. },
  20860. back: {
  20861. height: math.unit(5 + 8 / 12, "feet"),
  20862. weight: math.unit(120, "lb"),
  20863. name: "Back",
  20864. image: {
  20865. source: "./media/characters/logan-grey/back.svg",
  20866. extra: 958 / 893,
  20867. bottom: 2.1881 / 970.9788
  20868. }
  20869. },
  20870. dick: {
  20871. height: math.unit(1.437, "feet"),
  20872. name: "Dick",
  20873. image: {
  20874. source: "./media/characters/logan-grey/dick.svg"
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(5 + 8 / 12, "feet")
  20882. },
  20883. {
  20884. name: "The 500 Foot Femboy",
  20885. height: math.unit(500, "feet"),
  20886. default: true
  20887. },
  20888. {
  20889. name: "Megmacro",
  20890. height: math.unit(20, "miles")
  20891. },
  20892. ]
  20893. ))
  20894. characterMakers.push(() => makeCharacter(
  20895. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20896. {
  20897. front: {
  20898. height: math.unit(8 + 2 / 12, "feet"),
  20899. weight: math.unit(275, "lb"),
  20900. name: "Front",
  20901. image: {
  20902. source: "./media/characters/draganta/front.svg",
  20903. extra: 1177 / 1135,
  20904. bottom: 33.46 / 1212.1
  20905. }
  20906. },
  20907. },
  20908. [
  20909. {
  20910. name: "Normal",
  20911. height: math.unit(8 + 6 / 12, "feet"),
  20912. default: true
  20913. },
  20914. {
  20915. name: "Macro",
  20916. height: math.unit(150, "feet")
  20917. },
  20918. {
  20919. name: "Megamacro",
  20920. height: math.unit(1000, "miles")
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(1.72, "m"),
  20929. weight: math.unit(80, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/voski/front.svg",
  20933. extra: 2076.22 / 2022.4,
  20934. bottom: 102.7 / 2177.3866
  20935. }
  20936. },
  20937. frontNsfw: {
  20938. height: math.unit(1.72, "m"),
  20939. weight: math.unit(80, "lb"),
  20940. name: "Front (NSFW)",
  20941. image: {
  20942. source: "./media/characters/voski/front-nsfw.svg",
  20943. extra: 2076.22 / 2022.4,
  20944. bottom: 102.7 / 2177.3866
  20945. }
  20946. },
  20947. back: {
  20948. height: math.unit(1.72, "m"),
  20949. weight: math.unit(80, "lb"),
  20950. name: "Back",
  20951. image: {
  20952. source: "./media/characters/voski/back.svg",
  20953. extra: 2104 / 2051,
  20954. bottom: 10.45 / 2113.63
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Normal",
  20961. height: math.unit(1.72, "m")
  20962. },
  20963. {
  20964. name: "Macro",
  20965. height: math.unit(55, "m"),
  20966. default: true
  20967. },
  20968. {
  20969. name: "Macro+",
  20970. height: math.unit(300, "m")
  20971. },
  20972. {
  20973. name: "Macro++",
  20974. height: math.unit(700, "m")
  20975. },
  20976. {
  20977. name: "Macro+++",
  20978. height: math.unit(4500, "m")
  20979. },
  20980. {
  20981. name: "Macro++++",
  20982. height: math.unit(45, "km")
  20983. },
  20984. {
  20985. name: "Macro+++++",
  20986. height: math.unit(1220, "km")
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(2.3, "m"),
  20995. weight: math.unit(304, "kg"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/icowom-lee/front.svg",
  20999. extra: 985/955,
  21000. bottom: 25.4/1012
  21001. }
  21002. },
  21003. fronttentacles: {
  21004. height: math.unit(2.3, "m"),
  21005. weight: math.unit(304, "kg"),
  21006. name: "Front-tentacles",
  21007. image: {
  21008. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21009. extra: 985/955,
  21010. bottom: 25.4/1012
  21011. }
  21012. },
  21013. back: {
  21014. height: math.unit(2.3, "m"),
  21015. weight: math.unit(304, "kg"),
  21016. name: "Back",
  21017. image: {
  21018. source: "./media/characters/icowom-lee/back.svg",
  21019. extra: 975/954,
  21020. bottom: 9.5/985
  21021. }
  21022. },
  21023. backtentacles: {
  21024. height: math.unit(2.3, "m"),
  21025. weight: math.unit(304, "kg"),
  21026. name: "Back-tentacles",
  21027. image: {
  21028. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21029. extra: 975/954,
  21030. bottom: 9.5/985
  21031. }
  21032. },
  21033. frontDressed: {
  21034. height: math.unit(2.3, "m"),
  21035. weight: math.unit(304, "kg"),
  21036. name: "Front (Dressed)",
  21037. image: {
  21038. source: "./media/characters/icowom-lee/front-dressed.svg",
  21039. extra: 3076 / 2933,
  21040. bottom: 51.4 / 3125.1889
  21041. }
  21042. },
  21043. rump: {
  21044. height: math.unit(0.776, "meters"),
  21045. name: "Rump",
  21046. image: {
  21047. source: "./media/characters/icowom-lee/rump.svg"
  21048. }
  21049. },
  21050. genitals: {
  21051. height: math.unit(0.78, "meters"),
  21052. name: "Genitals",
  21053. image: {
  21054. source: "./media/characters/icowom-lee/genitals.svg"
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(2.3, "meters"),
  21062. default: true
  21063. },
  21064. {
  21065. name: "Macro",
  21066. height: math.unit(94, "meters"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21073. {
  21074. front: {
  21075. height: math.unit(22, "meters"),
  21076. weight: math.unit(21000, "kg"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/shock-diamond/front.svg",
  21080. extra: 2204 / 2053,
  21081. bottom: 65 / 2239.47
  21082. }
  21083. },
  21084. frontNude: {
  21085. height: math.unit(22, "meters"),
  21086. weight: math.unit(21000, "kg"),
  21087. name: "Front (Nude)",
  21088. image: {
  21089. source: "./media/characters/shock-diamond/front-nude.svg",
  21090. extra: 2514 / 2285,
  21091. bottom: 13 / 2527.56
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(3, "meters")
  21099. },
  21100. {
  21101. name: "Macro",
  21102. height: math.unit(22, "meters"),
  21103. default: true
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(5 + 4 / 12, "feet"),
  21112. weight: math.unit(120, "lb"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/rory/front.svg",
  21116. extra: 589 / 556,
  21117. bottom: 45.7 / 635.76
  21118. }
  21119. },
  21120. frontNude: {
  21121. height: math.unit(5 + 4 / 12, "feet"),
  21122. weight: math.unit(120, "lb"),
  21123. name: "Front (Nude)",
  21124. image: {
  21125. source: "./media/characters/rory/front-nude.svg",
  21126. extra: 589 / 556,
  21127. bottom: 45.7 / 635.76
  21128. }
  21129. },
  21130. side: {
  21131. height: math.unit(5 + 4 / 12, "feet"),
  21132. weight: math.unit(120, "lb"),
  21133. name: "Side",
  21134. image: {
  21135. source: "./media/characters/rory/side.svg",
  21136. extra: 597 / 564,
  21137. bottom: 55 / 653
  21138. }
  21139. },
  21140. back: {
  21141. height: math.unit(5 + 4 / 12, "feet"),
  21142. weight: math.unit(120, "lb"),
  21143. name: "Back",
  21144. image: {
  21145. source: "./media/characters/rory/back.svg",
  21146. extra: 620 / 585,
  21147. bottom: 8.86 / 630.43
  21148. }
  21149. },
  21150. dick: {
  21151. height: math.unit(0.86, "feet"),
  21152. name: "Dick",
  21153. image: {
  21154. source: "./media/characters/rory/dick.svg"
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(5 + 4 / 12, "feet"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Macro",
  21166. height: math.unit(100, "feet")
  21167. },
  21168. {
  21169. name: "Macro+",
  21170. height: math.unit(140, "feet")
  21171. },
  21172. {
  21173. name: "Macro++",
  21174. height: math.unit(300, "feet")
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21180. {
  21181. front: {
  21182. height: math.unit(5 + 9 / 12, "feet"),
  21183. weight: math.unit(190, "lb"),
  21184. name: "Front",
  21185. image: {
  21186. source: "./media/characters/sprisk/front.svg",
  21187. extra: 1225 / 1180,
  21188. bottom: 42.7 / 1266.4
  21189. }
  21190. },
  21191. frontNsfw: {
  21192. height: math.unit(5 + 9 / 12, "feet"),
  21193. weight: math.unit(190, "lb"),
  21194. name: "Front (NSFW)",
  21195. image: {
  21196. source: "./media/characters/sprisk/front-nsfw.svg",
  21197. extra: 1225 / 1180,
  21198. bottom: 42.7 / 1266.4
  21199. }
  21200. },
  21201. back: {
  21202. height: math.unit(5 + 9 / 12, "feet"),
  21203. weight: math.unit(190, "lb"),
  21204. name: "Back",
  21205. image: {
  21206. source: "./media/characters/sprisk/back.svg",
  21207. extra: 1247 / 1200,
  21208. bottom: 5.6 / 1253.04
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Tiny",
  21215. height: math.unit(2, "inches")
  21216. },
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(5 + 9 / 12, "feet"),
  21220. default: true
  21221. },
  21222. {
  21223. name: "Mini Macro",
  21224. height: math.unit(18, "feet")
  21225. },
  21226. {
  21227. name: "Macro",
  21228. height: math.unit(100, "feet")
  21229. },
  21230. {
  21231. name: "MACRO",
  21232. height: math.unit(50, "miles")
  21233. },
  21234. {
  21235. name: "M A C R O",
  21236. height: math.unit(300, "miles")
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21242. {
  21243. side: {
  21244. height: math.unit(15.6, "meters"),
  21245. weight: math.unit(700000, "kg"),
  21246. name: "Side",
  21247. image: {
  21248. source: "./media/characters/bunsen/side.svg",
  21249. extra: 1644 / 358
  21250. }
  21251. },
  21252. foot: {
  21253. height: math.unit(1.611 * 1644 / 358, "meter"),
  21254. name: "Foot",
  21255. image: {
  21256. source: "./media/characters/bunsen/foot.svg"
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Small",
  21263. height: math.unit(10, "feet")
  21264. },
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(15.6, "meters"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(4 + 11 / 12, "feet"),
  21277. weight: math.unit(140, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/sesh/front.svg",
  21281. extra: 3420 / 3231,
  21282. bottom: 72 / 3949.5
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(4 + 11 / 12, "feet")
  21290. },
  21291. {
  21292. name: "Grown",
  21293. height: math.unit(15, "feet"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Macro",
  21298. height: math.unit(1500, "feet")
  21299. },
  21300. {
  21301. name: "Megamacro",
  21302. height: math.unit(30, "miles")
  21303. },
  21304. {
  21305. name: "Continental",
  21306. height: math.unit(3000, "miles")
  21307. },
  21308. {
  21309. name: "Gravity Mass",
  21310. height: math.unit(300000, "miles")
  21311. },
  21312. {
  21313. name: "Planet Buster",
  21314. height: math.unit(30000000, "miles")
  21315. },
  21316. {
  21317. name: "Big",
  21318. height: math.unit(3000000000, "miles")
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(9, "feet"),
  21327. weight: math.unit(350, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/pepper/front.svg",
  21331. extra: 1448/1312,
  21332. bottom: 9.4/1457.88
  21333. }
  21334. },
  21335. back: {
  21336. height: math.unit(9, "feet"),
  21337. weight: math.unit(350, "lb"),
  21338. name: "Back",
  21339. image: {
  21340. source: "./media/characters/pepper/back.svg",
  21341. extra: 1423/1300,
  21342. bottom: 4.6/1429
  21343. }
  21344. },
  21345. maw: {
  21346. height: math.unit(0.932, "feet"),
  21347. name: "Maw",
  21348. image: {
  21349. source: "./media/characters/pepper/maw.svg"
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(9, "feet"),
  21357. default: true
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(6, "feet"),
  21366. weight: math.unit(150, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/maelstrom/front.svg",
  21370. extra: 2100/1883,
  21371. bottom: 94/2196.7
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Less Kaiju",
  21378. height: math.unit(200, "feet")
  21379. },
  21380. {
  21381. name: "Kaiju",
  21382. height: math.unit(400, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Kaiju-er",
  21387. height: math.unit(600, "feet")
  21388. },
  21389. ]
  21390. ))
  21391. characterMakers.push(() => makeCharacter(
  21392. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21393. {
  21394. front: {
  21395. height: math.unit(6 + 5/12, "feet"),
  21396. weight: math.unit(180, "lb"),
  21397. name: "Front",
  21398. image: {
  21399. source: "./media/characters/lexir/front.svg",
  21400. extra: 180/172,
  21401. bottom: 12/192
  21402. }
  21403. },
  21404. back: {
  21405. height: math.unit(6 + 5/12, "feet"),
  21406. weight: math.unit(180, "lb"),
  21407. name: "Back",
  21408. image: {
  21409. source: "./media/characters/lexir/back.svg",
  21410. extra: 183.84/175.5,
  21411. bottom: 3.1/187
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Very Smal",
  21418. height: math.unit(1, "nm")
  21419. },
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(6 + 5/12, "feet"),
  21423. default: true
  21424. },
  21425. {
  21426. name: "Macro",
  21427. height: math.unit(1, "mile")
  21428. },
  21429. {
  21430. name: "Megamacro",
  21431. height: math.unit(50, "miles")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(1.5, "meters"),
  21440. weight: math.unit(100, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/maksio/front.svg",
  21444. extra: 1549/1531,
  21445. bottom: 123.7/1674.5429
  21446. }
  21447. },
  21448. back: {
  21449. height: math.unit(1.5, "meters"),
  21450. weight: math.unit(100, "lb"),
  21451. name: "Back",
  21452. image: {
  21453. source: "./media/characters/maksio/back.svg",
  21454. extra: 1541/1509,
  21455. bottom: 97/1639
  21456. }
  21457. },
  21458. hand: {
  21459. height: math.unit(0.621, "feet"),
  21460. name: "Hand",
  21461. image: {
  21462. source: "./media/characters/maksio/hand.svg"
  21463. }
  21464. },
  21465. foot: {
  21466. height: math.unit(1.611, "feet"),
  21467. name: "Foot",
  21468. image: {
  21469. source: "./media/characters/maksio/foot.svg"
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Shrunken",
  21476. height: math.unit(10, "cm")
  21477. },
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(150, "cm"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(100, "feet"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/erza-bear/front.svg",
  21493. extra: 2449/2390,
  21494. bottom: 46/2494
  21495. }
  21496. },
  21497. back: {
  21498. height: math.unit(100, "feet"),
  21499. name: "Back",
  21500. image: {
  21501. source: "./media/characters/erza-bear/back.svg",
  21502. extra: 2489/2430,
  21503. bottom: 85.4/2480
  21504. }
  21505. },
  21506. tail: {
  21507. height: math.unit(42, "feet"),
  21508. name: "Tail",
  21509. image: {
  21510. source: "./media/characters/erza-bear/tail.svg"
  21511. }
  21512. },
  21513. tongue: {
  21514. height: math.unit(8, "feet"),
  21515. name: "Tongue",
  21516. image: {
  21517. source: "./media/characters/erza-bear/tongue.svg"
  21518. }
  21519. },
  21520. dick: {
  21521. height: math.unit(10.5, "feet"),
  21522. name: "Dick",
  21523. image: {
  21524. source: "./media/characters/erza-bear/dick.svg"
  21525. }
  21526. },
  21527. dickVertical: {
  21528. height: math.unit(16.9, "feet"),
  21529. name: "Dick (Vertical)",
  21530. image: {
  21531. source: "./media/characters/erza-bear/dick-vertical.svg"
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(100, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(172, "cm"),
  21548. weight: math.unit(73, "kg"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/violet-flor/front.svg",
  21552. extra: 1530/1442,
  21553. bottom: 61.9/1588.8
  21554. }
  21555. },
  21556. back: {
  21557. height: math.unit(180, "cm"),
  21558. weight: math.unit(73, "kg"),
  21559. name: "Back",
  21560. image: {
  21561. source: "./media/characters/violet-flor/back.svg",
  21562. extra: 1692/1630,
  21563. bottom: 20/1712
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(172, "cm"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(6, "feet"),
  21580. weight: math.unit(220, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/lynn-rhea/front.svg",
  21584. extra: 310/273
  21585. }
  21586. },
  21587. back: {
  21588. height: math.unit(6, "feet"),
  21589. weight: math.unit(220, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/lynn-rhea/back.svg",
  21593. extra: 310/273
  21594. }
  21595. },
  21596. dicks: {
  21597. height: math.unit(0.9, "feet"),
  21598. name: "Dicks",
  21599. image: {
  21600. source: "./media/characters/lynn-rhea/dicks.svg"
  21601. }
  21602. },
  21603. slit: {
  21604. height: math.unit(0.4, "feet"),
  21605. name: "Slit",
  21606. image: {
  21607. source: "./media/characters/lynn-rhea/slit.svg"
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Micro",
  21614. height: math.unit(1, "inch")
  21615. },
  21616. {
  21617. name: "Macro",
  21618. height: math.unit(60, "feet"),
  21619. default: true
  21620. },
  21621. {
  21622. name: "Megamacro",
  21623. height: math.unit(2, "miles")
  21624. },
  21625. {
  21626. name: "Gigamacro",
  21627. height: math.unit(3, "earths")
  21628. },
  21629. {
  21630. name: "Galactic",
  21631. height: math.unit(0.8, "galaxies")
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21637. {
  21638. front: {
  21639. height: math.unit(1600, "feet"),
  21640. weight: math.unit(85758785169, "kg"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/valathos/front.svg",
  21644. extra: 1451/1339
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Macro",
  21651. height: math.unit(1600, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(7 + 5/12, "feet"),
  21661. weight: math.unit(300, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/azula/front.svg",
  21665. extra: 3208/2880,
  21666. bottom: 80.2/3277
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(7 + 5/12, "feet"),
  21671. weight: math.unit(300, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/azula/back.svg",
  21675. extra: 3169/2822,
  21676. bottom: 150.6/3321
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(7 + 5/12, "feet"),
  21684. default: true
  21685. },
  21686. {
  21687. name: "Big",
  21688. height: math.unit(20, "feet")
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(5 + 1/12, "feet"),
  21697. weight: math.unit(110, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/rupert/front.svg",
  21701. extra: 1549/1495,
  21702. bottom: 54.2/1604.4
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(5 + 1/12, "feet"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21716. {
  21717. front: {
  21718. height: math.unit(8 + 4/12, "feet"),
  21719. weight: math.unit(350, "lb"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/sheera-castellar/front.svg",
  21723. extra: 1957/1894,
  21724. bottom: 26.97/1975.017
  21725. }
  21726. },
  21727. side: {
  21728. height: math.unit(8 + 4/12, "feet"),
  21729. weight: math.unit(350, "lb"),
  21730. name: "Side",
  21731. image: {
  21732. source: "./media/characters/sheera-castellar/side.svg",
  21733. extra: 1957/1894
  21734. }
  21735. },
  21736. back: {
  21737. height: math.unit(8 + 4/12, "feet"),
  21738. weight: math.unit(350, "lb"),
  21739. name: "Back",
  21740. image: {
  21741. source: "./media/characters/sheera-castellar/back.svg",
  21742. extra: 1957/1894
  21743. }
  21744. },
  21745. angled: {
  21746. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21747. weight: math.unit(350, "lb"),
  21748. name: "Angled",
  21749. image: {
  21750. source: "./media/characters/sheera-castellar/angled.svg",
  21751. extra: 1807/1707,
  21752. bottom: 68/1875
  21753. }
  21754. },
  21755. genitals: {
  21756. height: math.unit(2.2, "feet"),
  21757. name: "Genitals",
  21758. image: {
  21759. source: "./media/characters/sheera-castellar/genitals.svg"
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(8 + 4/12, "feet")
  21767. },
  21768. {
  21769. name: "Macro",
  21770. height: math.unit(150, "feet"),
  21771. default: true
  21772. },
  21773. {
  21774. name: "Macro+",
  21775. height: math.unit(800, "feet")
  21776. },
  21777. ]
  21778. ))
  21779. characterMakers.push(() => makeCharacter(
  21780. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21781. {
  21782. front: {
  21783. height: math.unit(6, "feet"),
  21784. weight: math.unit(150, "lb"),
  21785. name: "Front",
  21786. image: {
  21787. source: "./media/characters/jaipur/front.svg",
  21788. extra: 3860/3731,
  21789. bottom: 287/4140
  21790. }
  21791. },
  21792. back: {
  21793. height: math.unit(6, "feet"),
  21794. weight: math.unit(150, "lb"),
  21795. name: "Back",
  21796. image: {
  21797. source: "./media/characters/jaipur/back.svg",
  21798. extra: 4060/3930,
  21799. bottom: 151/4200
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(1.85, "meters"),
  21807. default: true
  21808. },
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(150, "meters")
  21812. },
  21813. {
  21814. name: "Macro+",
  21815. height: math.unit(0.5, "miles")
  21816. },
  21817. {
  21818. name: "Macro++",
  21819. height: math.unit(2.5, "miles")
  21820. },
  21821. {
  21822. name: "Macro+++",
  21823. height: math.unit(12, "miles")
  21824. },
  21825. {
  21826. name: "Macro++++",
  21827. height: math.unit(120, "miles")
  21828. },
  21829. {
  21830. name: "Macro+++++",
  21831. height: math.unit(1200, "miles")
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21837. {
  21838. front: {
  21839. height: math.unit(6, "feet"),
  21840. weight: math.unit(150, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/sheila-wolf/front.svg",
  21844. extra: 1931/1808,
  21845. bottom: 29.5/1960
  21846. }
  21847. },
  21848. dick: {
  21849. height: math.unit(1.464, "feet"),
  21850. name: "Dick",
  21851. image: {
  21852. source: "./media/characters/sheila-wolf/dick.svg"
  21853. }
  21854. },
  21855. muzzle: {
  21856. height: math.unit(0.513, "feet"),
  21857. name: "Muzzle",
  21858. image: {
  21859. source: "./media/characters/sheila-wolf/muzzle.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Macro",
  21866. height: math.unit(70, "feet"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(32, "meters"),
  21876. weight: math.unit(300000, "kg"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/almor/front.svg",
  21880. extra: 1408/1322,
  21881. bottom: 94.6/1506.5
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Macro",
  21888. height: math.unit(32, "meters"),
  21889. default: true
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21895. {
  21896. front: {
  21897. height: math.unit(7, "feet"),
  21898. weight: math.unit(200, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/silver/front.svg",
  21902. extra: 472.1/450.5,
  21903. bottom: 26.5/499.424
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(7, "feet"),
  21911. default: true
  21912. },
  21913. {
  21914. name: "Macro",
  21915. height: math.unit(800, "feet")
  21916. },
  21917. {
  21918. name: "Megamacro",
  21919. height: math.unit(250, "miles")
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21925. {
  21926. front: {
  21927. height: math.unit(6, "feet"),
  21928. weight: math.unit(150, "lb"),
  21929. name: "Front",
  21930. image: {
  21931. source: "./media/characters/pliskin/front.svg",
  21932. extra: 1469/1359,
  21933. bottom: 70/1540
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Micro",
  21940. height: math.unit(3, "inches")
  21941. },
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(5 + 11/12, "feet"),
  21945. default: true
  21946. },
  21947. {
  21948. name: "Macro",
  21949. height: math.unit(120, "feet")
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(6, "feet"),
  21958. weight: math.unit(150, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/sammy/front.svg",
  21962. extra: 1193/1089,
  21963. bottom: 30.5/1226
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Macro",
  21970. height: math.unit(1700, "feet"),
  21971. default: true
  21972. },
  21973. {
  21974. name: "Examacro",
  21975. height: math.unit(2.5e9, "lightyears")
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21981. {
  21982. front: {
  21983. height: math.unit(21, "meters"),
  21984. weight: math.unit(12, "tonnes"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/kuru/front.svg",
  21988. extra: 4301/3785,
  21989. bottom: 371.3/4691
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(21, "meters"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(23, "meters"),
  22006. weight: math.unit(12.2, "tonnes"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/rakka/front.svg",
  22010. extra: 4670/4169,
  22011. bottom: 301/4968.7
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(23, "meters"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(6, "feet"),
  22028. weight: math.unit(150, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/rhys-feline/front.svg",
  22032. extra: 2488/2308,
  22033. bottom: 35.67/2519.19
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Really Small",
  22040. height: math.unit(1, "nm")
  22041. },
  22042. {
  22043. name: "Micro",
  22044. height: math.unit(4, "inches")
  22045. },
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(4 + 10/12, "feet"),
  22049. default: true
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(100, "feet")
  22054. },
  22055. {
  22056. name: "Megamacto",
  22057. height: math.unit(50, "miles")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22063. {
  22064. side: {
  22065. height: math.unit(30, "feet"),
  22066. weight: math.unit(35000, "kg"),
  22067. name: "Side",
  22068. image: {
  22069. source: "./media/characters/alydar/side.svg",
  22070. extra: 234/222,
  22071. bottom: 6.5/241
  22072. }
  22073. },
  22074. front: {
  22075. height: math.unit(30, "feet"),
  22076. weight: math.unit(35000, "kg"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/alydar/front.svg",
  22080. extra: 223.37/210.2,
  22081. bottom: 22.3/246.76
  22082. }
  22083. },
  22084. top: {
  22085. height: math.unit(64.54, "feet"),
  22086. weight: math.unit(35000, "kg"),
  22087. name: "Top",
  22088. image: {
  22089. source: "./media/characters/alydar/top.svg"
  22090. }
  22091. },
  22092. anthro: {
  22093. height: math.unit(30, "feet"),
  22094. weight: math.unit(9000, "kg"),
  22095. name: "Anthro",
  22096. image: {
  22097. source: "./media/characters/alydar/anthro.svg",
  22098. extra: 432/421,
  22099. bottom: 7.18/440
  22100. }
  22101. },
  22102. maw: {
  22103. height: math.unit(11.693, "feet"),
  22104. name: "Maw",
  22105. image: {
  22106. source: "./media/characters/alydar/maw.svg"
  22107. }
  22108. },
  22109. head: {
  22110. height: math.unit(11.693, "feet"),
  22111. name: "Head",
  22112. image: {
  22113. source: "./media/characters/alydar/head.svg"
  22114. }
  22115. },
  22116. headAlt: {
  22117. height: math.unit(12.861, "feet"),
  22118. name: "Head (Alt)",
  22119. image: {
  22120. source: "./media/characters/alydar/head-alt.svg"
  22121. }
  22122. },
  22123. wing: {
  22124. height: math.unit(20.712, "feet"),
  22125. name: "Wing",
  22126. image: {
  22127. source: "./media/characters/alydar/wing.svg"
  22128. }
  22129. },
  22130. wingFeather: {
  22131. height: math.unit(9.662, "feet"),
  22132. name: "Wing Feather",
  22133. image: {
  22134. source: "./media/characters/alydar/wing-feather.svg"
  22135. }
  22136. },
  22137. countourFeather: {
  22138. height: math.unit(4.154, "feet"),
  22139. name: "Contour Feather",
  22140. image: {
  22141. source: "./media/characters/alydar/contour-feather.svg"
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Diplomatic",
  22148. height: math.unit(13, "feet"),
  22149. default: true
  22150. },
  22151. {
  22152. name: "Small",
  22153. height: math.unit(30, "feet")
  22154. },
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(95, "feet"),
  22158. default: true
  22159. },
  22160. {
  22161. name: "Large",
  22162. height: math.unit(285, "feet")
  22163. },
  22164. {
  22165. name: "Incomprehensible",
  22166. height: math.unit(450, "megameters")
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22172. {
  22173. side: {
  22174. height: math.unit(11, "feet"),
  22175. weight: math.unit(1750, "kg"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/selicia/side.svg",
  22179. extra: 440/396,
  22180. bottom: 24.8/465.979
  22181. }
  22182. },
  22183. maw: {
  22184. height: math.unit(4.665, "feet"),
  22185. name: "Maw",
  22186. image: {
  22187. source: "./media/characters/selicia/maw.svg"
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(11, "feet"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22201. {
  22202. side: {
  22203. height: math.unit(2 + 6 /12, "feet"),
  22204. weight: math.unit(30, "lb"),
  22205. name: "Side",
  22206. image: {
  22207. source: "./media/characters/layla/side.svg",
  22208. extra: 244/188,
  22209. bottom: 18.2/262.1
  22210. }
  22211. },
  22212. back: {
  22213. height: math.unit(2 + 6 /12, "feet"),
  22214. weight: math.unit(30, "lb"),
  22215. name: "Back",
  22216. image: {
  22217. source: "./media/characters/layla/back.svg",
  22218. extra: 308/241.5,
  22219. bottom: 8.9/316.8
  22220. }
  22221. },
  22222. cumming: {
  22223. height: math.unit(2 + 6 /12, "feet"),
  22224. weight: math.unit(30, "lb"),
  22225. name: "Cumming",
  22226. image: {
  22227. source: "./media/characters/layla/cumming.svg",
  22228. extra: 342/279,
  22229. bottom: 595/938
  22230. }
  22231. },
  22232. dickFlaccid: {
  22233. height: math.unit(2.595, "feet"),
  22234. name: "Flaccid Genitals",
  22235. image: {
  22236. source: "./media/characters/layla/dick-flaccid.svg"
  22237. }
  22238. },
  22239. dickErect: {
  22240. height: math.unit(2.359, "feet"),
  22241. name: "Erect Genitals",
  22242. image: {
  22243. source: "./media/characters/layla/dick-erect.svg"
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Micro",
  22250. height: math.unit(1, "inch")
  22251. },
  22252. {
  22253. name: "Small",
  22254. height: math.unit(1, "foot")
  22255. },
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(2 + 6/12, "feet"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Macro",
  22263. height: math.unit(200, "feet")
  22264. },
  22265. {
  22266. name: "Megamacro",
  22267. height: math.unit(1000, "miles")
  22268. },
  22269. {
  22270. name: "Planetary",
  22271. height: math.unit(8000, "miles")
  22272. },
  22273. {
  22274. name: "True Layla",
  22275. height: math.unit(200000*7, "multiverses")
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22281. {
  22282. back: {
  22283. height: math.unit(10.5, "feet"),
  22284. weight: math.unit(800, "lb"),
  22285. name: "Back",
  22286. image: {
  22287. source: "./media/characters/knox/back.svg",
  22288. extra: 1486/1089,
  22289. bottom: 107/1601.4
  22290. }
  22291. },
  22292. side: {
  22293. height: math.unit(10.5, "feet"),
  22294. weight: math.unit(800, "lb"),
  22295. name: "Side",
  22296. image: {
  22297. source: "./media/characters/knox/side.svg",
  22298. extra: 244/218,
  22299. bottom: 14/260
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Compact",
  22306. height: math.unit(10.5, "feet"),
  22307. default: true
  22308. },
  22309. {
  22310. name: "Dynamax",
  22311. height: math.unit(210, "feet")
  22312. },
  22313. {
  22314. name: "Full Macro",
  22315. height: math.unit(850, "feet")
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22321. {
  22322. front: {
  22323. height: math.unit(6, "feet"),
  22324. weight: math.unit(152, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/shin-pikachu/front.svg",
  22328. extra: 1574/1480,
  22329. bottom: 53.3/1626
  22330. }
  22331. },
  22332. hand: {
  22333. height: math.unit(1.055, "feet"),
  22334. name: "Hand",
  22335. image: {
  22336. source: "./media/characters/shin-pikachu/hand.svg"
  22337. }
  22338. },
  22339. foot: {
  22340. height: math.unit(1.1, "feet"),
  22341. name: "Foot",
  22342. image: {
  22343. source: "./media/characters/shin-pikachu/foot.svg"
  22344. }
  22345. },
  22346. collar: {
  22347. height: math.unit(0.386, "feet"),
  22348. name: "Collar",
  22349. image: {
  22350. source: "./media/characters/shin-pikachu/collar.svg"
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Smallest",
  22357. height: math.unit(0.5, "inches")
  22358. },
  22359. {
  22360. name: "Micro",
  22361. height: math.unit(6, "inches")
  22362. },
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(6, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro",
  22370. height: math.unit(150, "feet")
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22376. {
  22377. front: {
  22378. height: math.unit(28, "feet"),
  22379. weight: math.unit(10500, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/kayda/front.svg",
  22383. extra: 1536/1428,
  22384. bottom: 68.7/1603
  22385. }
  22386. },
  22387. back: {
  22388. height: math.unit(28, "feet"),
  22389. weight: math.unit(10500, "lb"),
  22390. name: "Back",
  22391. image: {
  22392. source: "./media/characters/kayda/back.svg",
  22393. extra: 1557/1464,
  22394. bottom: 39.5/1597.49
  22395. }
  22396. },
  22397. dick: {
  22398. height: math.unit(3.858, "feet"),
  22399. name: "Dick",
  22400. image: {
  22401. source: "./media/characters/kayda/dick.svg"
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Macro",
  22408. height: math.unit(28, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(10 + 11/12, "feet"),
  22418. weight: math.unit(1400, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/brian/front.svg",
  22422. extra: 737/692,
  22423. bottom: 55.4/785
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(10 + 11/12, "feet"),
  22431. default: true
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22437. {
  22438. front: {
  22439. height: math.unit(5 + 8/12, "feet"),
  22440. weight: math.unit(140, "lb"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/khemri/front.svg",
  22444. extra: 4780/4059,
  22445. bottom: 80.1/4859.25
  22446. }
  22447. },
  22448. },
  22449. [
  22450. {
  22451. name: "Micro",
  22452. height: math.unit(6, "inches")
  22453. },
  22454. {
  22455. name: "Normal",
  22456. height: math.unit(5 + 8/12, "feet"),
  22457. default: true
  22458. },
  22459. ]
  22460. ))
  22461. characterMakers.push(() => makeCharacter(
  22462. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22463. {
  22464. front: {
  22465. height: math.unit(13, "feet"),
  22466. weight: math.unit(1700, "lb"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/felix-braveheart/front.svg",
  22470. extra: 1222/1157,
  22471. bottom: 53.2/1280
  22472. }
  22473. },
  22474. back: {
  22475. height: math.unit(13, "feet"),
  22476. weight: math.unit(1700, "lb"),
  22477. name: "Back",
  22478. image: {
  22479. source: "./media/characters/felix-braveheart/back.svg",
  22480. extra: 1277/1203,
  22481. bottom: 50.2/1327
  22482. }
  22483. },
  22484. feral: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(400, "lb"),
  22487. name: "Feral",
  22488. image: {
  22489. source: "./media/characters/felix-braveheart/feral.svg",
  22490. extra: 682/625,
  22491. bottom: 6.9/688
  22492. }
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(13, "feet"),
  22499. default: true
  22500. },
  22501. ]
  22502. ))
  22503. characterMakers.push(() => makeCharacter(
  22504. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22505. {
  22506. side: {
  22507. height: math.unit(5 + 11/12, "feet"),
  22508. weight: math.unit(1400, "lb"),
  22509. name: "Side",
  22510. image: {
  22511. source: "./media/characters/shadow-blade/side.svg",
  22512. extra: 1726/1267,
  22513. bottom: 58.4/1785
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(5 + 11/12, "feet"),
  22521. default: true
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(1 + 6/12, "feet"),
  22530. weight: math.unit(25, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/karla-halldor/front.svg",
  22534. extra: 1459/1383,
  22535. bottom: 12/1472
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(1 + 6/12, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(6 + 2/12, "feet"),
  22552. weight: math.unit(160, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/ariam/front.svg",
  22556. extra: 714/617,
  22557. bottom: 23.4/737,
  22558. }
  22559. },
  22560. squatting: {
  22561. height: math.unit(4.1, "feet"),
  22562. weight: math.unit(160, "lb"),
  22563. name: "Squatting",
  22564. image: {
  22565. source: "./media/characters/ariam/squatting.svg",
  22566. extra: 2617/2112,
  22567. bottom: 61.2/2681,
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(6 + 2/12, "feet"),
  22575. default: true
  22576. },
  22577. {
  22578. name: "Normal+",
  22579. height: math.unit(4, "meters")
  22580. },
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(50, "meters")
  22584. },
  22585. {
  22586. name: "Macro+",
  22587. height: math.unit(100, "meters")
  22588. },
  22589. {
  22590. name: "Megamacro",
  22591. height: math.unit(20, "km")
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(1.67, "meters"),
  22600. weight: math.unit(140, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22604. extra: 438/410,
  22605. bottom: 0.75/439
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Shrunken",
  22612. height: math.unit(7.6, "cm")
  22613. },
  22614. {
  22615. name: "Human Scale",
  22616. height: math.unit(1.67, "meters")
  22617. },
  22618. {
  22619. name: "Wolxi Scale",
  22620. height: math.unit(36.7, "meters"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(1.73, "meters"),
  22630. weight: math.unit(240, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/izue-two-mothers/front.svg",
  22634. extra: 469/437,
  22635. bottom: 1.24/470.6
  22636. }
  22637. },
  22638. },
  22639. [
  22640. {
  22641. name: "Shrunken",
  22642. height: math.unit(7.86, "cm")
  22643. },
  22644. {
  22645. name: "Human Scale",
  22646. height: math.unit(1.73, "meters")
  22647. },
  22648. {
  22649. name: "Wolxi Scale",
  22650. height: math.unit(38, "meters"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22657. {
  22658. front: {
  22659. height: math.unit(1.55, "meters"),
  22660. weight: math.unit(120, "lb"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/teeku-love-shack/front.svg",
  22664. extra: 387/362,
  22665. bottom: 1.51/388
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Shrunken",
  22672. height: math.unit(7, "cm")
  22673. },
  22674. {
  22675. name: "Human Scale",
  22676. height: math.unit(1.55, "meters")
  22677. },
  22678. {
  22679. name: "Wolxi Scale",
  22680. height: math.unit(34.1, "meters"),
  22681. default: true
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22687. {
  22688. front: {
  22689. height: math.unit(1.83, "meters"),
  22690. weight: math.unit(135, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/dejma-the-red/front.svg",
  22694. extra: 480/458,
  22695. bottom: 1.8/482
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Shrunken",
  22702. height: math.unit(8.3, "cm")
  22703. },
  22704. {
  22705. name: "Human Scale",
  22706. height: math.unit(1.83, "meters")
  22707. },
  22708. {
  22709. name: "Wolxi Scale",
  22710. height: math.unit(40, "meters"),
  22711. default: true
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(1.78, "meters"),
  22720. weight: math.unit(65, "kg"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/aki/front.svg",
  22724. extra: 452/415
  22725. }
  22726. },
  22727. frontNsfw: {
  22728. height: math.unit(1.78, "meters"),
  22729. weight: math.unit(65, "kg"),
  22730. name: "Front (NSFW)",
  22731. image: {
  22732. source: "./media/characters/aki/front-nsfw.svg",
  22733. extra: 452/415
  22734. }
  22735. },
  22736. back: {
  22737. height: math.unit(1.78, "meters"),
  22738. weight: math.unit(65, "kg"),
  22739. name: "Back",
  22740. image: {
  22741. source: "./media/characters/aki/back.svg",
  22742. extra: 452/415
  22743. }
  22744. },
  22745. rump: {
  22746. height: math.unit(2.05, "feet"),
  22747. name: "Rump",
  22748. image: {
  22749. source: "./media/characters/aki/rump.svg"
  22750. }
  22751. },
  22752. dick: {
  22753. height: math.unit(0.95, "feet"),
  22754. name: "Dick",
  22755. image: {
  22756. source: "./media/characters/aki/dick.svg"
  22757. }
  22758. },
  22759. },
  22760. [
  22761. {
  22762. name: "Micro",
  22763. height: math.unit(15, "cm")
  22764. },
  22765. {
  22766. name: "Normal",
  22767. height: math.unit(178, "cm"),
  22768. default: true
  22769. },
  22770. {
  22771. name: "Macro",
  22772. height: math.unit(214, "m")
  22773. },
  22774. {
  22775. name: "Macro+",
  22776. height: math.unit(534, "m")
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22782. {
  22783. front: {
  22784. height: math.unit(5 + 5/12, "feet"),
  22785. weight: math.unit(120, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/ari/front.svg",
  22789. extra: 714.5/682,
  22790. bottom: 8/722.5
  22791. }
  22792. },
  22793. },
  22794. [
  22795. {
  22796. name: "Normal",
  22797. height: math.unit(5 + 5/12, "feet")
  22798. },
  22799. {
  22800. name: "Macro",
  22801. height: math.unit(100, "feet"),
  22802. default: true
  22803. },
  22804. {
  22805. name: "Megamacro",
  22806. height: math.unit(100, "miles")
  22807. },
  22808. {
  22809. name: "Gigamacro",
  22810. height: math.unit(80000, "miles")
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22816. {
  22817. side: {
  22818. height: math.unit(9, "feet"),
  22819. weight: math.unit(400, "kg"),
  22820. name: "Side",
  22821. image: {
  22822. source: "./media/characters/bolt/side.svg",
  22823. extra: 1126/896,
  22824. bottom: 60/1187.3,
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Micro",
  22831. height: math.unit(5, "inches")
  22832. },
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(9, "feet"),
  22836. default: true
  22837. },
  22838. {
  22839. name: "Macro",
  22840. height: math.unit(700, "feet")
  22841. },
  22842. {
  22843. name: "Max Size",
  22844. height: math.unit(1.52e22, "yottameters")
  22845. },
  22846. ]
  22847. ))
  22848. characterMakers.push(() => makeCharacter(
  22849. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22850. {
  22851. front: {
  22852. height: math.unit(4.53, "meters"),
  22853. weight: math.unit(3, "tons"),
  22854. name: "Front",
  22855. image: {
  22856. source: "./media/characters/draekon-sylviar/front.svg",
  22857. extra: 1228/1068,
  22858. bottom: 41/1270
  22859. }
  22860. },
  22861. tail: {
  22862. height: math.unit(1.772, "meter"),
  22863. name: "Tail",
  22864. image: {
  22865. source: "./media/characters/draekon-sylviar/tail.svg"
  22866. }
  22867. },
  22868. head: {
  22869. height: math.unit(1.331, "meter"),
  22870. name: "Head",
  22871. image: {
  22872. source: "./media/characters/draekon-sylviar/head.svg"
  22873. }
  22874. },
  22875. hand: {
  22876. height: math.unit(0.564, "meter"),
  22877. name: "Hand",
  22878. image: {
  22879. source: "./media/characters/draekon-sylviar/hand.svg"
  22880. }
  22881. },
  22882. foot: {
  22883. height: math.unit(0.621, "meter"),
  22884. name: "Foot",
  22885. image: {
  22886. source: "./media/characters/draekon-sylviar/foot.svg",
  22887. bottom: 32/324
  22888. }
  22889. },
  22890. dick: {
  22891. height: math.unit(61, "cm"),
  22892. name: "Dick",
  22893. image: {
  22894. source: "./media/characters/draekon-sylviar/dick.svg"
  22895. }
  22896. },
  22897. dickseparated: {
  22898. height: math.unit(61, "cm"),
  22899. name: "Dick-separated",
  22900. image: {
  22901. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Small",
  22908. height: math.unit(4.53/2, "meters"),
  22909. default: true
  22910. },
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(4.53, "meters"),
  22914. default: true
  22915. },
  22916. {
  22917. name: "Large",
  22918. height: math.unit(4.53*2, "meters"),
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(6 + 2/12, "feet"),
  22927. weight: math.unit(180, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/brawler/front.svg",
  22931. extra: 3301/3027,
  22932. bottom: 138/3439
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Normal",
  22939. height: math.unit(6 + 2/12, "feet"),
  22940. default: true
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(11, "feet"),
  22949. weight: math.unit(1000, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/alex/front.svg",
  22953. bottom: 44.5/620
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Micro",
  22960. height: math.unit(5, "inches")
  22961. },
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(11, "feet"),
  22965. default: true
  22966. },
  22967. {
  22968. name: "Macro",
  22969. height: math.unit(9.5e9, "feet")
  22970. },
  22971. {
  22972. name: "Max Size",
  22973. height: math.unit(1.4e283, "yottameters")
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  22979. {
  22980. female: {
  22981. height: math.unit(29.9, "m"),
  22982. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22983. name: "Female",
  22984. image: {
  22985. source: "./media/characters/zenari/female.svg",
  22986. extra: 3281.6/3217,
  22987. bottom: 72.2/3353
  22988. }
  22989. },
  22990. male: {
  22991. height: math.unit(27.7, "m"),
  22992. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22993. name: "Male",
  22994. image: {
  22995. source: "./media/characters/zenari/male.svg",
  22996. extra: 3008/2991,
  22997. bottom: 54.6/3069
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Macro",
  23004. height: math.unit(29.7, "meters"),
  23005. default: true
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23011. {
  23012. female: {
  23013. height: math.unit(23.8, "m"),
  23014. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23015. name: "Female",
  23016. image: {
  23017. source: "./media/characters/mactarian/female.svg",
  23018. extra: 2662/2569,
  23019. bottom: 73/2736
  23020. }
  23021. },
  23022. male: {
  23023. height: math.unit(23.8, "m"),
  23024. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23025. name: "Male",
  23026. image: {
  23027. source: "./media/characters/mactarian/male.svg",
  23028. extra: 2673/2600,
  23029. bottom: 76/2750
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Macro",
  23036. height: math.unit(23.8, "meters"),
  23037. default: true
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23043. {
  23044. female: {
  23045. height: math.unit(19.3, "m"),
  23046. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  23047. name: "Female",
  23048. image: {
  23049. source: "./media/characters/umok/female.svg",
  23050. extra: 2186/2078,
  23051. bottom: 87/2277
  23052. }
  23053. },
  23054. male: {
  23055. height: math.unit(19.5, "m"),
  23056. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  23057. name: "Male",
  23058. image: {
  23059. source: "./media/characters/umok/male.svg",
  23060. extra: 2233/2140,
  23061. bottom: 24.4/2258
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Macro",
  23068. height: math.unit(19.3, "meters"),
  23069. default: true
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23075. {
  23076. female: {
  23077. height: math.unit(26.15, "m"),
  23078. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  23079. name: "Female",
  23080. image: {
  23081. source: "./media/characters/joraxian/female.svg",
  23082. extra: 2943/2831,
  23083. bottom: 27/2972
  23084. }
  23085. },
  23086. male: {
  23087. height: math.unit(25.4, "m"),
  23088. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23089. name: "Male",
  23090. image: {
  23091. source: "./media/characters/joraxian/male.svg",
  23092. extra: 2835/2741,
  23093. bottom: 27/2862
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Macro",
  23100. height: math.unit(26.15, "meters"),
  23101. default: true
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23107. {
  23108. female: {
  23109. height: math.unit(21.6, "m"),
  23110. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23111. name: "Female",
  23112. image: {
  23113. source: "./media/characters/sthara/female.svg",
  23114. extra: 2516/2347,
  23115. bottom: 21.5/2537
  23116. }
  23117. },
  23118. male: {
  23119. height: math.unit(24, "m"),
  23120. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23121. name: "Male",
  23122. image: {
  23123. source: "./media/characters/sthara/male.svg",
  23124. extra: 2732/2607,
  23125. bottom: 23/2732
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(21.6, "meters"),
  23133. default: true
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(6 + 4/12, "feet"),
  23142. weight: math.unit(175, "lb"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/luka-bryzant/front.svg",
  23146. extra: 311/289,
  23147. bottom: 4/315
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(6 + 4/12, "feet"),
  23152. weight: math.unit(175, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/luka-bryzant/back.svg",
  23156. extra: 311/289,
  23157. bottom: 3.8/313.7
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Micro",
  23164. height: math.unit(10, "inches")
  23165. },
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(6 + 4/12, "feet"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Large",
  23173. height: math.unit(12, "feet")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(5 + 7/12, "feet"),
  23182. weight: math.unit(185, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/aman-aquila/front.svg",
  23186. extra: 1013/976,
  23187. bottom: 45.6/1057
  23188. }
  23189. },
  23190. side: {
  23191. height: math.unit(5 + 7/12, "feet"),
  23192. weight: math.unit(185, "lb"),
  23193. name: "Side",
  23194. image: {
  23195. source: "./media/characters/aman-aquila/side.svg",
  23196. extra: 1054/1011,
  23197. bottom: 15/1070
  23198. }
  23199. },
  23200. back: {
  23201. height: math.unit(5 + 7/12, "feet"),
  23202. weight: math.unit(185, "lb"),
  23203. name: "Back",
  23204. image: {
  23205. source: "./media/characters/aman-aquila/back.svg",
  23206. extra: 1026/970,
  23207. bottom: 12/1039
  23208. }
  23209. },
  23210. head: {
  23211. height: math.unit(1.211, "feet"),
  23212. name: "Head",
  23213. image: {
  23214. source: "./media/characters/aman-aquila/head.svg",
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Minimicro",
  23221. height: math.unit(0.057, "inches")
  23222. },
  23223. {
  23224. name: "Micro",
  23225. height: math.unit(7, "inches")
  23226. },
  23227. {
  23228. name: "Mini",
  23229. height: math.unit(3 + 7/12, "feet")
  23230. },
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(5 + 7/12, "feet"),
  23234. default: true
  23235. },
  23236. {
  23237. name: "Macro",
  23238. height: math.unit(157 + 7/12, "feet")
  23239. },
  23240. {
  23241. name: "Megamacro",
  23242. height: math.unit(1557 + 7/12, "feet")
  23243. },
  23244. {
  23245. name: "Gigamacro",
  23246. height: math.unit(15557 + 7/12, "feet")
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(3 + 2/12, "inches"),
  23255. weight: math.unit(0.3, "ounces"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/hiphae/front.svg",
  23259. extra: 1931/1683,
  23260. bottom: 24/1955
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(3 + 1/2, "inches"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(5 + 10/12, "feet"),
  23277. weight: math.unit(165, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/nicky/front.svg",
  23281. extra: 3144/2886,
  23282. bottom: 45.6/3192
  23283. }
  23284. },
  23285. back: {
  23286. height: math.unit(5 + 10/12, "feet"),
  23287. weight: math.unit(165, "lb"),
  23288. name: "Back",
  23289. image: {
  23290. source: "./media/characters/nicky/back.svg",
  23291. extra: 3055/2804,
  23292. bottom: 28.4/3087
  23293. }
  23294. },
  23295. frontclothed: {
  23296. height: math.unit(5 + 10/12, "feet"),
  23297. weight: math.unit(165, "lb"),
  23298. name: "Front-clothed",
  23299. image: {
  23300. source: "./media/characters/nicky/front-clothed.svg",
  23301. extra: 3184.9/2926.9,
  23302. bottom: 86.5/3239.9
  23303. }
  23304. },
  23305. foot: {
  23306. height: math.unit(1.16, "feet"),
  23307. name: "Foot",
  23308. image: {
  23309. source: "./media/characters/nicky/foot.svg"
  23310. }
  23311. },
  23312. feet: {
  23313. height: math.unit(1.34, "feet"),
  23314. name: "Feet",
  23315. image: {
  23316. source: "./media/characters/nicky/feet.svg"
  23317. }
  23318. },
  23319. maw: {
  23320. height: math.unit(0.9, "feet"),
  23321. name: "Maw",
  23322. image: {
  23323. source: "./media/characters/nicky/maw.svg"
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Normal",
  23330. height: math.unit(5 + 10/12, "feet"),
  23331. default: true
  23332. },
  23333. {
  23334. name: "Macro",
  23335. height: math.unit(60, "feet")
  23336. },
  23337. {
  23338. name: "Megamacro",
  23339. height: math.unit(1, "mile")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23345. {
  23346. side: {
  23347. height: math.unit(10, "feet"),
  23348. weight: math.unit(600, "lb"),
  23349. name: "Side",
  23350. image: {
  23351. source: "./media/characters/blair/side.svg",
  23352. bottom: 16.6/475,
  23353. extra: 458/431
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Micro",
  23360. height: math.unit(8, "inches")
  23361. },
  23362. {
  23363. name: "Normal",
  23364. height: math.unit(10, "feet"),
  23365. default: true
  23366. },
  23367. {
  23368. name: "Macro",
  23369. height: math.unit(180, "feet")
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(5 + 4/12, "feet"),
  23378. weight: math.unit(125, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/fisher/front.svg",
  23382. extra: 444/390,
  23383. bottom: 2/444.8
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Micro",
  23390. height: math.unit(4, "inches")
  23391. },
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(5 + 4/12, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Macro",
  23399. height: math.unit(100, "feet")
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(6.71, "feet"),
  23408. weight: math.unit(200, "lb"),
  23409. capacity: math.unit(1000000, "people"),
  23410. name: "Front",
  23411. image: {
  23412. source: "./media/characters/gliss/front.svg",
  23413. extra: 2347/2231,
  23414. bottom: 113/2462
  23415. }
  23416. },
  23417. hammerspaceSize: {
  23418. height: math.unit(6.71*717, "feet"),
  23419. weight: math.unit(200, "lb"),
  23420. capacity: math.unit(1000000, "people"),
  23421. name: "Hammerspace Size",
  23422. image: {
  23423. source: "./media/characters/gliss/front.svg",
  23424. extra: 2347/2231,
  23425. bottom: 113/2462
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Normal",
  23432. height: math.unit(6.71, "feet"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23439. {
  23440. side: {
  23441. height: math.unit(1.44, "m"),
  23442. weight: math.unit(80, "kg"),
  23443. name: "Side",
  23444. image: {
  23445. source: "./media/characters/dune-anderson/side.svg",
  23446. bottom: 49/1426
  23447. }
  23448. },
  23449. },
  23450. [
  23451. {
  23452. name: "Wolf-sized",
  23453. height: math.unit(1.44, "meters")
  23454. },
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(5.05, "meters"),
  23458. default: true
  23459. },
  23460. {
  23461. name: "Big",
  23462. height: math.unit(14.4, "meters")
  23463. },
  23464. {
  23465. name: "Huge",
  23466. height: math.unit(144, "meters")
  23467. },
  23468. ]
  23469. ))
  23470. characterMakers.push(() => makeCharacter(
  23471. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23472. {
  23473. front: {
  23474. height: math.unit(7, "feet"),
  23475. weight: math.unit(425, "lb"),
  23476. name: "Front",
  23477. image: {
  23478. source: "./media/characters/hind/front.svg",
  23479. extra: 2091/1860,
  23480. bottom: 129/2220
  23481. }
  23482. },
  23483. back: {
  23484. height: math.unit(7, "feet"),
  23485. weight: math.unit(425, "lb"),
  23486. name: "Back",
  23487. image: {
  23488. source: "./media/characters/hind/back.svg",
  23489. extra: 2091/1860,
  23490. bottom: 24.6/2309
  23491. }
  23492. },
  23493. tail: {
  23494. height: math.unit(2.8, "feet"),
  23495. name: "Tail",
  23496. image: {
  23497. source: "./media/characters/hind/tail.svg"
  23498. }
  23499. },
  23500. head: {
  23501. height: math.unit(2.55, "feet"),
  23502. name: "Head",
  23503. image: {
  23504. source: "./media/characters/hind/head.svg"
  23505. }
  23506. },
  23507. },
  23508. [
  23509. {
  23510. name: "XS",
  23511. height: math.unit(0.7, "feet")
  23512. },
  23513. {
  23514. name: "Normal",
  23515. height: math.unit(7, "feet"),
  23516. default: true
  23517. },
  23518. {
  23519. name: "XL",
  23520. height: math.unit(70, "feet")
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(6, "feet"),
  23529. weight: math.unit(150, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/dylan-skaven/front.svg",
  23533. extra: 2318/2063,
  23534. bottom: 93.4/2410
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Nano",
  23541. height: math.unit(1, "mm")
  23542. },
  23543. {
  23544. name: "Micro",
  23545. height: math.unit(1, "cm")
  23546. },
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(2.1, "meters"),
  23550. default: true
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(7 + 5/12, "feet"),
  23559. weight: math.unit(357, "lb"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/solex-draconov/front.svg",
  23563. extra: 1993/1865,
  23564. bottom: 117/2111
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Natural Height",
  23571. height: math.unit(7 + 5/12, "feet"),
  23572. default: true
  23573. },
  23574. {
  23575. name: "Macro",
  23576. height: math.unit(350, "feet")
  23577. },
  23578. {
  23579. name: "Macro+",
  23580. height: math.unit(1000, "feet")
  23581. },
  23582. {
  23583. name: "Megamacro",
  23584. height: math.unit(20, "km")
  23585. },
  23586. {
  23587. name: "Megamacro+",
  23588. height: math.unit(1000, "km")
  23589. },
  23590. {
  23591. name: "Gigamacro",
  23592. height: math.unit(2.5, "Gm")
  23593. },
  23594. {
  23595. name: "Teramacro",
  23596. height: math.unit(15, "Tm")
  23597. },
  23598. {
  23599. name: "Galactic",
  23600. height: math.unit(30, "Zm")
  23601. },
  23602. {
  23603. name: "Universal",
  23604. height: math.unit(21000, "Ym")
  23605. },
  23606. {
  23607. name: "Omniversal",
  23608. height: math.unit(9.861e50, "Ym")
  23609. },
  23610. {
  23611. name: "Existential",
  23612. height: math.unit(1e300, "meters")
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23618. {
  23619. side: {
  23620. height: math.unit(25, "feet"),
  23621. weight: math.unit(90000, "lb"),
  23622. name: "Side",
  23623. image: {
  23624. source: "./media/characters/mandarax/side.svg",
  23625. extra: 614/332,
  23626. bottom: 55/630
  23627. }
  23628. },
  23629. head: {
  23630. height: math.unit(11.4, "feet"),
  23631. name: "Head",
  23632. image: {
  23633. source: "./media/characters/mandarax/head.svg"
  23634. }
  23635. },
  23636. belly: {
  23637. height: math.unit(33, "feet"),
  23638. name: "Belly",
  23639. capacity: math.unit(500, "people"),
  23640. image: {
  23641. source: "./media/characters/mandarax/belly.svg"
  23642. }
  23643. },
  23644. dick: {
  23645. height: math.unit(8.46, "feet"),
  23646. name: "Dick",
  23647. image: {
  23648. source: "./media/characters/mandarax/dick.svg"
  23649. }
  23650. },
  23651. top: {
  23652. height: math.unit(28, "meters"),
  23653. name: "Top",
  23654. image: {
  23655. source: "./media/characters/mandarax/top.svg"
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(25, "feet"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(5, "feet"),
  23672. weight: math.unit(90, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/pixil/front.svg",
  23676. extra: 2000/1618,
  23677. bottom: 12.3/2011
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(5, "feet"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Megamacro",
  23689. height: math.unit(10, "miles"),
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(7 + 2/12, "feet"),
  23698. weight: math.unit(200, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/angel/front.svg",
  23702. extra: 1830/1737,
  23703. bottom: 22.6/1854,
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(7 + 2/12, "feet"),
  23711. default: true
  23712. },
  23713. {
  23714. name: "Macro",
  23715. height: math.unit(1000, "feet")
  23716. },
  23717. {
  23718. name: "Megamacro",
  23719. height: math.unit(2, "miles")
  23720. },
  23721. {
  23722. name: "Gigamacro",
  23723. height: math.unit(20, "earths")
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23729. {
  23730. front: {
  23731. height: math.unit(5, "feet"),
  23732. weight: math.unit(180, "lb"),
  23733. name: "Front",
  23734. image: {
  23735. source: "./media/characters/mekana/front.svg",
  23736. extra: 1671/1605,
  23737. bottom: 3.5/1691
  23738. }
  23739. },
  23740. side: {
  23741. height: math.unit(5, "feet"),
  23742. weight: math.unit(180, "lb"),
  23743. name: "Side",
  23744. image: {
  23745. source: "./media/characters/mekana/side.svg",
  23746. extra: 1671/1605,
  23747. bottom: 3.5/1691
  23748. }
  23749. },
  23750. back: {
  23751. height: math.unit(5, "feet"),
  23752. weight: math.unit(180, "lb"),
  23753. name: "Back",
  23754. image: {
  23755. source: "./media/characters/mekana/back.svg",
  23756. extra: 1671/1605,
  23757. bottom: 3.5/1691
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Normal",
  23764. height: math.unit(5, "feet"),
  23765. default: true
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23771. {
  23772. front: {
  23773. height: math.unit(4 + 6/12, "feet"),
  23774. weight: math.unit(80, "lb"),
  23775. name: "Front",
  23776. image: {
  23777. source: "./media/characters/pixie/front.svg",
  23778. extra: 1924/1825,
  23779. bottom: 22.4/1946
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Normal",
  23786. height: math.unit(4 + 6/12, "feet"),
  23787. default: true
  23788. },
  23789. {
  23790. name: "Macro",
  23791. height: math.unit(40, "feet")
  23792. },
  23793. ]
  23794. ))
  23795. //characters
  23796. function makeCharacters() {
  23797. const results = [];
  23798. characterMakers.forEach(character => {
  23799. results.push(character());
  23800. });
  23801. return results;
  23802. }