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

25163 строки
624 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. }
  1256. //species
  1257. function getSpeciesInfo(speciesList) {
  1258. let result = new Set();
  1259. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1260. result.add(entry)
  1261. });
  1262. return Array.from(result);
  1263. };
  1264. function getSpeciesInfoHelper(species) {
  1265. if (!speciesData[species]) {
  1266. console.warn(species + " doesn't exist");
  1267. return [];
  1268. }
  1269. if (speciesData[species].parents) {
  1270. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1271. } else {
  1272. return [species];
  1273. }
  1274. }
  1275. characterMakers.push(() => makeCharacter(
  1276. {
  1277. name: "Fen",
  1278. species: ["crux"],
  1279. description: {
  1280. title: "Bio",
  1281. text: "Very furry. Sheds on everything."
  1282. },
  1283. tags: [
  1284. "anthro",
  1285. "goo"
  1286. ]
  1287. },
  1288. {
  1289. back: {
  1290. height: math.unit(2.2428, "meter"),
  1291. weight: math.unit(124.738, "kg"),
  1292. name: "Back",
  1293. image: {
  1294. source: "./media/characters/fen/back.svg",
  1295. extra: 1025 / 935,
  1296. bottom: 0.01
  1297. },
  1298. info: {
  1299. description: {
  1300. mode: "append",
  1301. text: "\n\nHe is not currently looking at you."
  1302. }
  1303. }
  1304. },
  1305. full: {
  1306. height: math.unit(1.34, "meter"),
  1307. weight: math.unit(225, "kg"),
  1308. name: "Full",
  1309. image: {
  1310. source: "./media/characters/fen/full.svg"
  1311. },
  1312. info: {
  1313. description: {
  1314. mode: "append",
  1315. text: "\n\nMunch."
  1316. }
  1317. }
  1318. },
  1319. kneeling: {
  1320. height: math.unit(5.4, "feet"),
  1321. weight: math.unit(124.738, "kg"),
  1322. name: "Kneeling",
  1323. image: {
  1324. source: "./media/characters/fen/kneeling.svg",
  1325. extra: 563 / 507
  1326. }
  1327. },
  1328. goo: {
  1329. height: math.unit(2.8, "feet"),
  1330. weight: math.unit(125, "kg"),
  1331. capacity: math.unit(1, "people"),
  1332. name: "Goo",
  1333. image: {
  1334. source: "./media/characters/fen/goo.svg",
  1335. bottom: 116 / 613
  1336. }
  1337. },
  1338. lounging: {
  1339. height: math.unit(6.5, "feet"),
  1340. weight: math.unit(125, "kg"),
  1341. name: "Lounging",
  1342. image: {
  1343. source: "./media/characters/fen/lounging.svg"
  1344. }
  1345. },
  1346. },
  1347. [
  1348. {
  1349. name: "Normal",
  1350. height: math.unit(2.2428, "meter")
  1351. },
  1352. {
  1353. name: "Big",
  1354. height: math.unit(12, "feet")
  1355. },
  1356. {
  1357. name: "Minimacro",
  1358. height: math.unit(40, "feet"),
  1359. default: true,
  1360. info: {
  1361. description: {
  1362. mode: "append",
  1363. text: "\n\nTOO DAMN BIG"
  1364. }
  1365. }
  1366. },
  1367. {
  1368. name: "Macro",
  1369. height: math.unit(100, "feet"),
  1370. info: {
  1371. description: {
  1372. mode: "append",
  1373. text: "\n\nTOO DAMN BIG"
  1374. }
  1375. }
  1376. },
  1377. {
  1378. name: "Macro+",
  1379. height: math.unit(300, "feet")
  1380. },
  1381. {
  1382. name: "Megamacro",
  1383. height: math.unit(2, "miles")
  1384. }
  1385. ]
  1386. ))
  1387. characterMakers.push(() => makeCharacter(
  1388. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1389. {
  1390. front: {
  1391. height: math.unit(183, "cm"),
  1392. weight: math.unit(80, "kg"),
  1393. name: "Front",
  1394. image: {
  1395. source: "./media/characters/sofia-fluttertail/front.svg",
  1396. bottom: 0.01,
  1397. extra: 2154 / 2081
  1398. }
  1399. },
  1400. frontAlt: {
  1401. height: math.unit(183, "cm"),
  1402. weight: math.unit(80, "kg"),
  1403. name: "Front (alt)",
  1404. image: {
  1405. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1406. }
  1407. },
  1408. back: {
  1409. height: math.unit(183, "cm"),
  1410. weight: math.unit(80, "kg"),
  1411. name: "Back",
  1412. image: {
  1413. source: "./media/characters/sofia-fluttertail/back.svg"
  1414. }
  1415. },
  1416. kneeling: {
  1417. height: math.unit(125, "cm"),
  1418. weight: math.unit(80, "kg"),
  1419. name: "Kneeling",
  1420. image: {
  1421. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1422. extra: 1033 / 977,
  1423. bottom: 23.7 / 1057
  1424. }
  1425. },
  1426. maw: {
  1427. height: math.unit(183 / 5, "cm"),
  1428. name: "Maw",
  1429. image: {
  1430. source: "./media/characters/sofia-fluttertail/maw.svg"
  1431. }
  1432. },
  1433. mawcloseup: {
  1434. height: math.unit(183 / 5 * 0.41, "cm"),
  1435. name: "Maw (Closeup)",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1438. }
  1439. },
  1440. },
  1441. [
  1442. {
  1443. name: "Normal",
  1444. height: math.unit(1.83, "meter")
  1445. },
  1446. {
  1447. name: "Size Thief",
  1448. height: math.unit(18, "feet")
  1449. },
  1450. {
  1451. name: "50 Foot Collie",
  1452. height: math.unit(50, "feet")
  1453. },
  1454. {
  1455. name: "Macro",
  1456. height: math.unit(96, "feet"),
  1457. default: true
  1458. },
  1459. {
  1460. name: "Megamerger",
  1461. height: math.unit(650, "feet")
  1462. },
  1463. ]
  1464. ))
  1465. characterMakers.push(() => makeCharacter(
  1466. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1467. {
  1468. front: {
  1469. height: math.unit(7, "feet"),
  1470. weight: math.unit(100, "kg"),
  1471. name: "Front",
  1472. image: {
  1473. source: "./media/characters/march/front.svg",
  1474. extra: 1,
  1475. bottom: 0.015
  1476. }
  1477. },
  1478. foot: {
  1479. height: math.unit(0.9, "feet"),
  1480. name: "Foot",
  1481. image: {
  1482. source: "./media/characters/march/foot.svg"
  1483. }
  1484. },
  1485. },
  1486. [
  1487. {
  1488. name: "Normal",
  1489. height: math.unit(7.9, "feet")
  1490. },
  1491. {
  1492. name: "Macro",
  1493. height: math.unit(220, "meters")
  1494. },
  1495. {
  1496. name: "Megamacro",
  1497. height: math.unit(2.98, "km"),
  1498. default: true
  1499. },
  1500. {
  1501. name: "Gigamacro",
  1502. height: math.unit(15963, "km")
  1503. },
  1504. {
  1505. name: "Teramacro",
  1506. height: math.unit(2980000000, "km")
  1507. },
  1508. {
  1509. name: "Examacro",
  1510. height: math.unit(250, "parsecs")
  1511. },
  1512. ]
  1513. ))
  1514. characterMakers.push(() => makeCharacter(
  1515. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1516. {
  1517. front: {
  1518. height: math.unit(6, "feet"),
  1519. weight: math.unit(60, "kg"),
  1520. name: "Front",
  1521. image: {
  1522. source: "./media/characters/noir/front.svg",
  1523. extra: 1,
  1524. bottom: 0.032
  1525. }
  1526. },
  1527. },
  1528. [
  1529. {
  1530. name: "Normal",
  1531. height: math.unit(6.6, "feet")
  1532. },
  1533. {
  1534. name: "Macro",
  1535. height: math.unit(500, "feet")
  1536. },
  1537. {
  1538. name: "Megamacro",
  1539. height: math.unit(2.5, "km"),
  1540. default: true
  1541. },
  1542. {
  1543. name: "Gigamacro",
  1544. height: math.unit(22500, "km")
  1545. },
  1546. {
  1547. name: "Teramacro",
  1548. height: math.unit(2500000000, "km")
  1549. },
  1550. {
  1551. name: "Examacro",
  1552. height: math.unit(200, "parsecs")
  1553. },
  1554. ]
  1555. ))
  1556. characterMakers.push(() => makeCharacter(
  1557. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1558. {
  1559. front: {
  1560. height: math.unit(7, "feet"),
  1561. weight: math.unit(100, "kg"),
  1562. name: "Front",
  1563. image: {
  1564. source: "./media/characters/okuri/front.svg",
  1565. extra: 1,
  1566. bottom: 0.037
  1567. }
  1568. },
  1569. back: {
  1570. height: math.unit(7, "feet"),
  1571. weight: math.unit(100, "kg"),
  1572. name: "Back",
  1573. image: {
  1574. source: "./media/characters/okuri/back.svg",
  1575. extra: 1,
  1576. bottom: 0.007
  1577. }
  1578. },
  1579. },
  1580. [
  1581. {
  1582. name: "Megamacro",
  1583. height: math.unit(100, "miles"),
  1584. default: true
  1585. },
  1586. ]
  1587. ))
  1588. characterMakers.push(() => makeCharacter(
  1589. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1590. {
  1591. front: {
  1592. height: math.unit(7, "feet"),
  1593. weight: math.unit(100, "kg"),
  1594. name: "Front",
  1595. image: {
  1596. source: "./media/characters/manny/front.svg",
  1597. extra: 1,
  1598. bottom: 0.06
  1599. }
  1600. },
  1601. back: {
  1602. height: math.unit(7, "feet"),
  1603. weight: math.unit(100, "kg"),
  1604. name: "Back",
  1605. image: {
  1606. source: "./media/characters/manny/back.svg",
  1607. extra: 1,
  1608. bottom: 0.014
  1609. }
  1610. },
  1611. },
  1612. [
  1613. {
  1614. name: "Normal",
  1615. height: math.unit(7, "feet"),
  1616. },
  1617. {
  1618. name: "Macro",
  1619. height: math.unit(78, "feet"),
  1620. default: true
  1621. },
  1622. {
  1623. name: "Macro+",
  1624. height: math.unit(300, "meters")
  1625. },
  1626. {
  1627. name: "Macro++",
  1628. height: math.unit(2400, "meters")
  1629. },
  1630. {
  1631. name: "Megamacro",
  1632. height: math.unit(5167, "meters")
  1633. },
  1634. {
  1635. name: "Gigamacro",
  1636. height: math.unit(41769, "miles")
  1637. },
  1638. ]
  1639. ))
  1640. characterMakers.push(() => makeCharacter(
  1641. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1642. {
  1643. front: {
  1644. height: math.unit(7, "feet"),
  1645. weight: math.unit(100, "kg"),
  1646. name: "Front",
  1647. image: {
  1648. source: "./media/characters/adake/front-1.svg"
  1649. }
  1650. },
  1651. frontAlt: {
  1652. height: math.unit(7, "feet"),
  1653. weight: math.unit(100, "kg"),
  1654. name: "Front (Alt)",
  1655. image: {
  1656. source: "./media/characters/adake/front-2.svg",
  1657. extra: 1,
  1658. bottom: 0.01
  1659. }
  1660. },
  1661. back: {
  1662. height: math.unit(7, "feet"),
  1663. weight: math.unit(100, "kg"),
  1664. name: "Back",
  1665. image: {
  1666. source: "./media/characters/adake/back.svg",
  1667. }
  1668. },
  1669. kneel: {
  1670. height: math.unit(5.385, "feet"),
  1671. weight: math.unit(100, "kg"),
  1672. name: "Kneeling",
  1673. image: {
  1674. source: "./media/characters/adake/kneel.svg",
  1675. bottom: 0.052
  1676. }
  1677. },
  1678. },
  1679. [
  1680. {
  1681. name: "Normal",
  1682. height: math.unit(7, "feet"),
  1683. },
  1684. {
  1685. name: "Macro",
  1686. height: math.unit(78, "feet"),
  1687. default: true
  1688. },
  1689. {
  1690. name: "Macro+",
  1691. height: math.unit(300, "meters")
  1692. },
  1693. {
  1694. name: "Macro++",
  1695. height: math.unit(2400, "meters")
  1696. },
  1697. {
  1698. name: "Megamacro",
  1699. height: math.unit(5167, "meters")
  1700. },
  1701. {
  1702. name: "Gigamacro",
  1703. height: math.unit(41769, "miles")
  1704. },
  1705. ]
  1706. ))
  1707. characterMakers.push(() => makeCharacter(
  1708. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1709. {
  1710. front: {
  1711. height: math.unit(1.65, "meters"),
  1712. weight: math.unit(50, "kg"),
  1713. name: "Front",
  1714. image: {
  1715. source: "./media/characters/elijah/front.svg",
  1716. extra: 858 / 830,
  1717. bottom: 95.5 / 953.8559
  1718. }
  1719. },
  1720. back: {
  1721. height: math.unit(1.65, "meters"),
  1722. weight: math.unit(50, "kg"),
  1723. name: "Back",
  1724. image: {
  1725. source: "./media/characters/elijah/back.svg",
  1726. extra: 895 / 850,
  1727. bottom: 5.3 / 897.956
  1728. }
  1729. },
  1730. frontNsfw: {
  1731. height: math.unit(1.65, "meters"),
  1732. weight: math.unit(50, "kg"),
  1733. name: "Front (NSFW)",
  1734. image: {
  1735. source: "./media/characters/elijah/front-nsfw.svg",
  1736. extra: 858 / 830,
  1737. bottom: 95.5 / 953.8559
  1738. }
  1739. },
  1740. backNsfw: {
  1741. height: math.unit(1.65, "meters"),
  1742. weight: math.unit(50, "kg"),
  1743. name: "Back (NSFW)",
  1744. image: {
  1745. source: "./media/characters/elijah/back-nsfw.svg",
  1746. extra: 895 / 850,
  1747. bottom: 5.3 / 897.956
  1748. }
  1749. },
  1750. dick: {
  1751. height: math.unit(1, "feet"),
  1752. name: "Dick",
  1753. image: {
  1754. source: "./media/characters/elijah/dick.svg"
  1755. }
  1756. },
  1757. beakOpen: {
  1758. height: math.unit(1.25, "feet"),
  1759. name: "Beak (Open)",
  1760. image: {
  1761. source: "./media/characters/elijah/beak-open.svg"
  1762. }
  1763. },
  1764. beakShut: {
  1765. height: math.unit(1.25, "feet"),
  1766. name: "Beak (Shut)",
  1767. image: {
  1768. source: "./media/characters/elijah/beak-shut.svg"
  1769. }
  1770. },
  1771. footFlexing: {
  1772. height: math.unit(1.61, "feet"),
  1773. name: "Foot (Flexing)",
  1774. image: {
  1775. source: "./media/characters/elijah/foot-flexing.svg"
  1776. }
  1777. },
  1778. footStepping: {
  1779. height: math.unit(1.44, "feet"),
  1780. name: "Foot (Stepping)",
  1781. image: {
  1782. source: "./media/characters/elijah/foot-stepping.svg"
  1783. }
  1784. },
  1785. plantigradeLeg: {
  1786. height: math.unit(2.34, "feet"),
  1787. name: "Plantigrade Leg",
  1788. image: {
  1789. source: "./media/characters/elijah/plantigrade-leg.svg"
  1790. }
  1791. },
  1792. plantigradeFootLeft: {
  1793. height: math.unit(0.9, "feet"),
  1794. name: "Plantigrade Foot (Left)",
  1795. image: {
  1796. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1797. }
  1798. },
  1799. plantigradeFootRight: {
  1800. height: math.unit(0.9, "feet"),
  1801. name: "Plantigrade Foot (Right)",
  1802. image: {
  1803. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1804. }
  1805. },
  1806. },
  1807. [
  1808. {
  1809. name: "Normal",
  1810. height: math.unit(1.65, "meters")
  1811. },
  1812. {
  1813. name: "Macro",
  1814. height: math.unit(55, "meters"),
  1815. default: true
  1816. },
  1817. {
  1818. name: "Macro+",
  1819. height: math.unit(105, "meters")
  1820. },
  1821. ]
  1822. ))
  1823. characterMakers.push(() => makeCharacter(
  1824. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1825. {
  1826. front: {
  1827. height: math.unit(11, "feet"),
  1828. weight: math.unit(80, "kg"),
  1829. name: "Front",
  1830. image: {
  1831. source: "./media/characters/rai/front.svg",
  1832. extra: 1,
  1833. bottom: 0.03
  1834. }
  1835. },
  1836. side: {
  1837. height: math.unit(11, "feet"),
  1838. weight: math.unit(80, "kg"),
  1839. name: "Side",
  1840. image: {
  1841. source: "./media/characters/rai/side.svg"
  1842. }
  1843. },
  1844. back: {
  1845. height: math.unit(11, "feet"),
  1846. weight: math.unit(80, "lb"),
  1847. name: "Back",
  1848. image: {
  1849. source: "./media/characters/rai/back.svg",
  1850. extra: 1,
  1851. bottom: 0.01
  1852. }
  1853. },
  1854. feral: {
  1855. height: math.unit(11, "feet"),
  1856. weight: math.unit(800, "lb"),
  1857. name: "Feral",
  1858. image: {
  1859. source: "./media/characters/rai/feral.svg",
  1860. extra: 1050 / 659,
  1861. bottom: 0.07
  1862. }
  1863. },
  1864. dragon: {
  1865. height: math.unit(23, "feet"),
  1866. weight: math.unit(50000, "lb"),
  1867. name: "Dragon",
  1868. image: {
  1869. source: "./media/characters/rai/dragon.svg",
  1870. extra: 2498 / 2030,
  1871. bottom: 85.2 / 2584
  1872. }
  1873. },
  1874. maw: {
  1875. height: math.unit(6 / 3.81416, "feet"),
  1876. name: "Maw",
  1877. image: {
  1878. source: "./media/characters/rai/maw.svg"
  1879. }
  1880. },
  1881. },
  1882. [
  1883. {
  1884. name: "Normal",
  1885. height: math.unit(11, "feet")
  1886. },
  1887. {
  1888. name: "Macro",
  1889. height: math.unit(302, "feet"),
  1890. default: true
  1891. },
  1892. ]
  1893. ))
  1894. characterMakers.push(() => makeCharacter(
  1895. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1896. {
  1897. frontDressed: {
  1898. height: math.unit(216, "feet"),
  1899. weight: math.unit(7000000, "lb"),
  1900. name: "Front (Dressed)",
  1901. image: {
  1902. source: "./media/characters/jazzy/front-dressed.svg",
  1903. extra: 2738 / 2651,
  1904. bottom: 41.8 / 2786
  1905. }
  1906. },
  1907. backDressed: {
  1908. height: math.unit(216, "feet"),
  1909. weight: math.unit(7000000, "lb"),
  1910. name: "Back (Dressed)",
  1911. image: {
  1912. source: "./media/characters/jazzy/back-dressed.svg",
  1913. extra: 2775 / 2673,
  1914. bottom: 36.8 / 2817
  1915. }
  1916. },
  1917. front: {
  1918. height: math.unit(216, "feet"),
  1919. weight: math.unit(7000000, "lb"),
  1920. name: "Front",
  1921. image: {
  1922. source: "./media/characters/jazzy/front.svg",
  1923. extra: 2738 / 2651,
  1924. bottom: 41.8 / 2786
  1925. }
  1926. },
  1927. back: {
  1928. height: math.unit(216, "feet"),
  1929. weight: math.unit(7000000, "lb"),
  1930. name: "Back",
  1931. image: {
  1932. source: "./media/characters/jazzy/back.svg",
  1933. extra: 2775 / 2673,
  1934. bottom: 36.8 / 2817
  1935. }
  1936. },
  1937. maw: {
  1938. height: math.unit(20, "feet"),
  1939. name: "Maw",
  1940. image: {
  1941. source: "./media/characters/jazzy/maw.svg"
  1942. }
  1943. },
  1944. paws: {
  1945. height: math.unit(27.5, "feet"),
  1946. name: "Paws",
  1947. image: {
  1948. source: "./media/characters/jazzy/paws.svg"
  1949. }
  1950. },
  1951. eye: {
  1952. height: math.unit(4.4, "feet"),
  1953. name: "Eye",
  1954. image: {
  1955. source: "./media/characters/jazzy/eye.svg"
  1956. }
  1957. },
  1958. droneOffense: {
  1959. height: math.unit(9.5, "inches"),
  1960. name: "Drone (Offense)",
  1961. image: {
  1962. source: "./media/characters/jazzy/drone-offense.svg"
  1963. }
  1964. },
  1965. droneRecon: {
  1966. height: math.unit(9.5, "inches"),
  1967. name: "Drone (Recon)",
  1968. image: {
  1969. source: "./media/characters/jazzy/drone-recon.svg"
  1970. }
  1971. },
  1972. droneDefense: {
  1973. height: math.unit(9.5, "inches"),
  1974. name: "Drone (Defense)",
  1975. image: {
  1976. source: "./media/characters/jazzy/drone-defense.svg"
  1977. }
  1978. },
  1979. },
  1980. [
  1981. {
  1982. name: "Macro",
  1983. height: math.unit(216, "feet"),
  1984. default: true
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(7, "feet"),
  1993. weight: math.unit(80, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/flamm/front.svg",
  1997. extra: 1794 / 1677,
  1998. bottom: 31.7 / 1828.5
  1999. }
  2000. },
  2001. },
  2002. [
  2003. {
  2004. name: "Normal",
  2005. height: math.unit(9.5, "feet")
  2006. },
  2007. {
  2008. name: "Macro",
  2009. height: math.unit(200, "feet"),
  2010. default: true
  2011. },
  2012. ]
  2013. ))
  2014. characterMakers.push(() => makeCharacter(
  2015. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2016. {
  2017. front: {
  2018. height: math.unit(7, "feet"),
  2019. weight: math.unit(80, "kg"),
  2020. name: "Front",
  2021. image: {
  2022. source: "./media/characters/zephiro/front.svg",
  2023. extra: 2309 / 2162,
  2024. bottom: 0.069
  2025. }
  2026. },
  2027. side: {
  2028. height: math.unit(7, "feet"),
  2029. weight: math.unit(80, "kg"),
  2030. name: "Side",
  2031. image: {
  2032. source: "./media/characters/zephiro/side.svg",
  2033. extra: 2403 / 2279,
  2034. bottom: 0.015
  2035. }
  2036. },
  2037. back: {
  2038. height: math.unit(7, "feet"),
  2039. weight: math.unit(80, "kg"),
  2040. name: "Back",
  2041. image: {
  2042. source: "./media/characters/zephiro/back.svg",
  2043. extra: 2373 / 2244,
  2044. bottom: 0.013
  2045. }
  2046. },
  2047. },
  2048. [
  2049. {
  2050. name: "Micro",
  2051. height: math.unit(3, "inches")
  2052. },
  2053. {
  2054. name: "Normal",
  2055. height: math.unit(5 + 3 / 12, "feet"),
  2056. default: true
  2057. },
  2058. {
  2059. name: "Macro",
  2060. height: math.unit(118, "feet")
  2061. },
  2062. ]
  2063. ))
  2064. characterMakers.push(() => makeCharacter(
  2065. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2066. {
  2067. front: {
  2068. height: math.unit(5, "feet"),
  2069. weight: math.unit(90, "kg"),
  2070. name: "Front",
  2071. image: {
  2072. source: "./media/characters/fory/front.svg",
  2073. extra: 2862 / 2674,
  2074. bottom: 180 / 3043.8
  2075. }
  2076. },
  2077. back: {
  2078. height: math.unit(5, "feet"),
  2079. weight: math.unit(90, "kg"),
  2080. name: "Back",
  2081. image: {
  2082. source: "./media/characters/fory/back.svg",
  2083. extra: 2962 / 2791,
  2084. bottom: 106 / 3071.8
  2085. }
  2086. },
  2087. foot: {
  2088. height: math.unit(2.14, "feet"),
  2089. name: "Foot",
  2090. image: {
  2091. source: "./media/characters/fory/foot.svg"
  2092. }
  2093. },
  2094. },
  2095. [
  2096. {
  2097. name: "Normal",
  2098. height: math.unit(5, "feet")
  2099. },
  2100. {
  2101. name: "Macro",
  2102. height: math.unit(50, "feet"),
  2103. default: true
  2104. },
  2105. {
  2106. name: "Megamacro",
  2107. height: math.unit(10, "miles")
  2108. },
  2109. {
  2110. name: "Gigamacro",
  2111. height: math.unit(5, "earths")
  2112. },
  2113. ]
  2114. ))
  2115. characterMakers.push(() => makeCharacter(
  2116. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2117. {
  2118. front: {
  2119. height: math.unit(7, "feet"),
  2120. weight: math.unit(90, "kg"),
  2121. name: "Front",
  2122. image: {
  2123. source: "./media/characters/kurrikage/front.svg",
  2124. extra: 1,
  2125. bottom: 0.035
  2126. }
  2127. },
  2128. back: {
  2129. height: math.unit(7, "feet"),
  2130. weight: math.unit(90, "lb"),
  2131. name: "Back",
  2132. image: {
  2133. source: "./media/characters/kurrikage/back.svg"
  2134. }
  2135. },
  2136. paw: {
  2137. height: math.unit(1.5, "feet"),
  2138. name: "Paw",
  2139. image: {
  2140. source: "./media/characters/kurrikage/paw.svg"
  2141. }
  2142. },
  2143. staff: {
  2144. height: math.unit(6.7, "feet"),
  2145. name: "Staff",
  2146. image: {
  2147. source: "./media/characters/kurrikage/staff.svg"
  2148. }
  2149. },
  2150. peek: {
  2151. height: math.unit(1.05, "feet"),
  2152. name: "Peeking",
  2153. image: {
  2154. source: "./media/characters/kurrikage/peek.svg",
  2155. bottom: 0.08
  2156. }
  2157. },
  2158. },
  2159. [
  2160. {
  2161. name: "Normal",
  2162. height: math.unit(12, "feet"),
  2163. default: true
  2164. },
  2165. {
  2166. name: "Big",
  2167. height: math.unit(20, "feet")
  2168. },
  2169. {
  2170. name: "Macro",
  2171. height: math.unit(500, "feet")
  2172. },
  2173. {
  2174. name: "Megamacro",
  2175. height: math.unit(20, "miles")
  2176. },
  2177. ]
  2178. ))
  2179. characterMakers.push(() => makeCharacter(
  2180. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2181. {
  2182. front: {
  2183. height: math.unit(6, "feet"),
  2184. weight: math.unit(75, "kg"),
  2185. name: "Front",
  2186. image: {
  2187. source: "./media/characters/shingo/front.svg",
  2188. extra: 3511 / 3338,
  2189. bottom: 0.005
  2190. }
  2191. },
  2192. },
  2193. [
  2194. {
  2195. name: "Micro",
  2196. height: math.unit(4, "inches")
  2197. },
  2198. {
  2199. name: "Normal",
  2200. height: math.unit(6, "feet"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Macro",
  2205. height: math.unit(108, "feet")
  2206. }
  2207. ]
  2208. ))
  2209. characterMakers.push(() => makeCharacter(
  2210. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2211. {
  2212. side: {
  2213. height: math.unit(6, "feet"),
  2214. weight: math.unit(75, "kg"),
  2215. name: "Side",
  2216. image: {
  2217. source: "./media/characters/aigey/side.svg"
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Macro",
  2224. height: math.unit(200, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Megamacro",
  2229. height: math.unit(100, "miles")
  2230. },
  2231. ]
  2232. )
  2233. )
  2234. characterMakers.push(() => makeCharacter(
  2235. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2236. {
  2237. front: {
  2238. height: math.unit(5 + 5 / 12, "feet"),
  2239. weight: math.unit(75, "kg"),
  2240. name: "Front",
  2241. image: {
  2242. source: "./media/characters/natasha/front.svg",
  2243. extra: 859 / 824,
  2244. bottom: 23 / 879.6
  2245. }
  2246. },
  2247. frontNsfw: {
  2248. height: math.unit(5 + 5 / 12, "feet"),
  2249. weight: math.unit(75, "kg"),
  2250. name: "Front (NSFW)",
  2251. image: {
  2252. source: "./media/characters/natasha/front-nsfw.svg",
  2253. extra: 859 / 824,
  2254. bottom: 23 / 879.6
  2255. }
  2256. },
  2257. frontErect: {
  2258. height: math.unit(5 + 5 / 12, "feet"),
  2259. weight: math.unit(75, "kg"),
  2260. name: "Front (Erect)",
  2261. image: {
  2262. source: "./media/characters/natasha/front-erect.svg",
  2263. extra: 859 / 824,
  2264. bottom: 23 / 879.6
  2265. }
  2266. },
  2267. back: {
  2268. height: math.unit(5 + 5 / 12, "feet"),
  2269. weight: math.unit(75, "kg"),
  2270. name: "Back",
  2271. image: {
  2272. source: "./media/characters/natasha/back.svg",
  2273. extra: 887.9 / 852.6,
  2274. bottom: 9.7 / 896.4
  2275. }
  2276. },
  2277. backAlt: {
  2278. height: math.unit(5 + 5 / 12, "feet"),
  2279. weight: math.unit(75, "kg"),
  2280. name: "Back (Alt)",
  2281. image: {
  2282. source: "./media/characters/natasha/back-alt.svg",
  2283. extra: 1236.7 / 1192,
  2284. bottom: 22.3 / 1258.2
  2285. }
  2286. },
  2287. dick: {
  2288. height: math.unit(1.772, "feet"),
  2289. name: "Dick",
  2290. image: {
  2291. source: "./media/characters/natasha/dick.svg"
  2292. }
  2293. },
  2294. },
  2295. [
  2296. {
  2297. name: "Normal",
  2298. height: math.unit(5 + 5 / 12, "feet")
  2299. },
  2300. {
  2301. name: "Large",
  2302. height: math.unit(12, "feet")
  2303. },
  2304. {
  2305. name: "Macro",
  2306. height: math.unit(100, "feet"),
  2307. default: true
  2308. },
  2309. {
  2310. name: "Macro+",
  2311. height: math.unit(260, "feet")
  2312. },
  2313. {
  2314. name: "Macro++",
  2315. height: math.unit(1, "mile")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(6, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/malik/front.svg"
  2328. }
  2329. },
  2330. side: {
  2331. height: math.unit(6, "feet"),
  2332. weight: math.unit(75, "kg"),
  2333. name: "Side",
  2334. image: {
  2335. source: "./media/characters/malik/side.svg",
  2336. extra: 1.1539
  2337. }
  2338. },
  2339. back: {
  2340. height: math.unit(6, "feet"),
  2341. weight: math.unit(75, "kg"),
  2342. name: "Back",
  2343. image: {
  2344. source: "./media/characters/malik/back.svg"
  2345. }
  2346. },
  2347. },
  2348. [
  2349. {
  2350. name: "Macro",
  2351. height: math.unit(156, "feet"),
  2352. default: true
  2353. },
  2354. {
  2355. name: "Macro+",
  2356. height: math.unit(1188, "feet")
  2357. },
  2358. ]
  2359. ))
  2360. characterMakers.push(() => makeCharacter(
  2361. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2362. {
  2363. front: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Front",
  2367. image: {
  2368. source: "./media/characters/sefer/front.svg",
  2369. extra: 848 / 659,
  2370. bottom: 28.3 / 876.442
  2371. }
  2372. },
  2373. back: {
  2374. height: math.unit(6, "feet"),
  2375. weight: math.unit(75, "kg"),
  2376. name: "Back",
  2377. image: {
  2378. source: "./media/characters/sefer/back.svg",
  2379. extra: 864 / 695,
  2380. bottom: 10 / 871
  2381. }
  2382. },
  2383. frontDressed: {
  2384. height: math.unit(6, "feet"),
  2385. weight: math.unit(75, "kg"),
  2386. name: "Front (Dressed)",
  2387. image: {
  2388. source: "./media/characters/sefer/front-dressed.svg",
  2389. extra: 839 / 653,
  2390. bottom: 37.6 / 878
  2391. }
  2392. },
  2393. },
  2394. [
  2395. {
  2396. name: "Normal",
  2397. height: math.unit(6, "feet"),
  2398. default: true
  2399. },
  2400. ]
  2401. ))
  2402. characterMakers.push(() => makeCharacter(
  2403. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2404. {
  2405. body: {
  2406. height: math.unit(2.2428, "meter"),
  2407. weight: math.unit(124.738, "kg"),
  2408. name: "Body",
  2409. image: {
  2410. extra: 1225 / 1050,
  2411. source: "./media/characters/north/front.svg"
  2412. }
  2413. }
  2414. },
  2415. [
  2416. {
  2417. name: "Micro",
  2418. height: math.unit(4, "inches")
  2419. },
  2420. {
  2421. name: "Macro",
  2422. height: math.unit(63, "meters")
  2423. },
  2424. {
  2425. name: "Megamacro",
  2426. height: math.unit(101, "miles"),
  2427. default: true
  2428. }
  2429. ]
  2430. ))
  2431. characterMakers.push(() => makeCharacter(
  2432. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2433. {
  2434. angled: {
  2435. height: math.unit(4, "meter"),
  2436. weight: math.unit(150, "kg"),
  2437. name: "Angled",
  2438. image: {
  2439. source: "./media/characters/talan/angled-sfw.svg",
  2440. bottom: 29 / 3734
  2441. }
  2442. },
  2443. angledNsfw: {
  2444. height: math.unit(4, "meter"),
  2445. weight: math.unit(150, "kg"),
  2446. name: "Angled (NSFW)",
  2447. image: {
  2448. source: "./media/characters/talan/angled-nsfw.svg",
  2449. bottom: 29 / 3734
  2450. }
  2451. },
  2452. frontNsfw: {
  2453. height: math.unit(4, "meter"),
  2454. weight: math.unit(150, "kg"),
  2455. name: "Front (NSFW)",
  2456. image: {
  2457. source: "./media/characters/talan/front-nsfw.svg",
  2458. bottom: 29 / 3734
  2459. }
  2460. },
  2461. sideNsfw: {
  2462. height: math.unit(4, "meter"),
  2463. weight: math.unit(150, "kg"),
  2464. name: "Side (NSFW)",
  2465. image: {
  2466. source: "./media/characters/talan/side-nsfw.svg",
  2467. bottom: 29 / 3734
  2468. }
  2469. },
  2470. back: {
  2471. height: math.unit(4, "meter"),
  2472. weight: math.unit(150, "kg"),
  2473. name: "Back",
  2474. image: {
  2475. source: "./media/characters/talan/back.svg"
  2476. }
  2477. },
  2478. dickBottom: {
  2479. height: math.unit(0.621, "meter"),
  2480. name: "Dick (Bottom)",
  2481. image: {
  2482. source: "./media/characters/talan/dick-bottom.svg"
  2483. }
  2484. },
  2485. dickTop: {
  2486. height: math.unit(0.621, "meter"),
  2487. name: "Dick (Top)",
  2488. image: {
  2489. source: "./media/characters/talan/dick-top.svg"
  2490. }
  2491. },
  2492. dickSide: {
  2493. height: math.unit(0.305, "meter"),
  2494. name: "Dick (Side)",
  2495. image: {
  2496. source: "./media/characters/talan/dick-side.svg"
  2497. }
  2498. },
  2499. dickFront: {
  2500. height: math.unit(0.305, "meter"),
  2501. name: "Dick (Front)",
  2502. image: {
  2503. source: "./media/characters/talan/dick-front.svg"
  2504. }
  2505. },
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(4, "meters")
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(100, "meters")
  2515. },
  2516. {
  2517. name: "Megamacro",
  2518. height: math.unit(2, "miles"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Gigamacro",
  2523. height: math.unit(5000, "miles")
  2524. },
  2525. {
  2526. name: "Teramacro",
  2527. height: math.unit(100, "parsecs")
  2528. }
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(2, "meter"),
  2536. weight: math.unit(90, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/gael'rathus/front.svg"
  2540. }
  2541. },
  2542. frontAlt: {
  2543. height: math.unit(2, "meter"),
  2544. weight: math.unit(90, "kg"),
  2545. name: "Front (alt)",
  2546. image: {
  2547. source: "./media/characters/gael'rathus/front-alt.svg"
  2548. }
  2549. },
  2550. frontAlt2: {
  2551. height: math.unit(2, "meter"),
  2552. weight: math.unit(90, "kg"),
  2553. name: "Front (alt 2)",
  2554. image: {
  2555. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2556. }
  2557. }
  2558. },
  2559. [
  2560. {
  2561. name: "Normal",
  2562. height: math.unit(9, "feet"),
  2563. default: true
  2564. },
  2565. {
  2566. name: "Large",
  2567. height: math.unit(25, "feet")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(0.25, "miles")
  2572. },
  2573. {
  2574. name: "Megamacro",
  2575. height: math.unit(10, "miles")
  2576. }
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2581. {
  2582. side: {
  2583. height: math.unit(2, "meter"),
  2584. weight: math.unit(140, "kg"),
  2585. name: "Side",
  2586. image: {
  2587. source: "./media/characters/sosha/side.svg",
  2588. bottom: 0.042
  2589. }
  2590. },
  2591. },
  2592. [
  2593. {
  2594. name: "Normal",
  2595. height: math.unit(12, "feet"),
  2596. default: true
  2597. }
  2598. ]
  2599. ))
  2600. characterMakers.push(() => makeCharacter(
  2601. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2602. {
  2603. side: {
  2604. height: math.unit(5 + 5 / 12, "feet"),
  2605. weight: math.unit(170, "kg"),
  2606. name: "Side",
  2607. image: {
  2608. source: "./media/characters/runnola/side.svg",
  2609. extra: 741 / 448,
  2610. bottom: 0.05
  2611. }
  2612. },
  2613. },
  2614. [
  2615. {
  2616. name: "Small",
  2617. height: math.unit(3, "feet")
  2618. },
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(5 + 5 / 12, "feet"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Big",
  2626. height: math.unit(10, "feet")
  2627. },
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2632. {
  2633. front: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(50, "kg"),
  2636. name: "Front",
  2637. image: {
  2638. source: "./media/characters/kurribird/front.svg",
  2639. bottom: 0.015
  2640. }
  2641. },
  2642. frontAlt: {
  2643. height: math.unit(1.5, "meter"),
  2644. weight: math.unit(50, "kg"),
  2645. name: "Front (Alt)",
  2646. image: {
  2647. source: "./media/characters/kurribird/front-alt.svg",
  2648. extra: 1.45
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(7, "feet")
  2656. },
  2657. {
  2658. name: "Big",
  2659. height: math.unit(12, "feet"),
  2660. default: true
  2661. },
  2662. {
  2663. name: "Macro",
  2664. height: math.unit(1500, "feet")
  2665. },
  2666. {
  2667. name: "Megamacro",
  2668. height: math.unit(2, "miles")
  2669. }
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(2, "meter"),
  2677. weight: math.unit(80, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/elbial/front.svg",
  2681. extra: 1643 / 1556,
  2682. bottom: 60.2 / 1696
  2683. }
  2684. },
  2685. side: {
  2686. height: math.unit(2, "meter"),
  2687. weight: math.unit(80, "kg"),
  2688. name: "Side",
  2689. image: {
  2690. source: "./media/characters/elbial/side.svg",
  2691. extra: 1630 / 1565,
  2692. bottom: 71.5 / 1697
  2693. }
  2694. },
  2695. back: {
  2696. height: math.unit(2, "meter"),
  2697. weight: math.unit(80, "kg"),
  2698. name: "Back",
  2699. image: {
  2700. source: "./media/characters/elbial/back.svg",
  2701. extra: 1668 / 1595,
  2702. bottom: 5.6 / 1672
  2703. }
  2704. },
  2705. frontDressed: {
  2706. height: math.unit(2, "meter"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Front (Dressed)",
  2709. image: {
  2710. source: "./media/characters/elbial/front-dressed.svg",
  2711. extra: 1653 / 1584,
  2712. bottom: 57 / 1708
  2713. }
  2714. },
  2715. genitals: {
  2716. height: math.unit(2 / 3.367, "meter"),
  2717. name: "Genitals",
  2718. image: {
  2719. source: "./media/characters/elbial/genitals.svg"
  2720. }
  2721. },
  2722. },
  2723. [
  2724. {
  2725. name: "Large",
  2726. height: math.unit(100, "feet")
  2727. },
  2728. {
  2729. name: "Macro",
  2730. height: math.unit(500, "feet"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(10, "miles")
  2736. },
  2737. {
  2738. name: "Gigamacro",
  2739. height: math.unit(25000, "miles")
  2740. },
  2741. {
  2742. name: "Full-Size",
  2743. height: math.unit(8000000, "gigaparsecs")
  2744. }
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(60, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/noah/front.svg"
  2756. }
  2757. },
  2758. talons: {
  2759. height: math.unit(0.315, "meter"),
  2760. name: "Talons",
  2761. image: {
  2762. source: "./media/characters/noah/talons.svg"
  2763. }
  2764. }
  2765. },
  2766. [
  2767. {
  2768. name: "Large",
  2769. height: math.unit(50, "feet")
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(750, "feet"),
  2774. default: true
  2775. },
  2776. {
  2777. name: "Megamacro",
  2778. height: math.unit(50, "miles")
  2779. },
  2780. {
  2781. name: "Gigamacro",
  2782. height: math.unit(100000, "miles")
  2783. },
  2784. {
  2785. name: "Full-Size",
  2786. height: math.unit(3000000000, "miles")
  2787. }
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(2, "meter"),
  2795. weight: math.unit(80, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/natalya/front.svg"
  2799. }
  2800. },
  2801. back: {
  2802. height: math.unit(2, "meter"),
  2803. weight: math.unit(80, "kg"),
  2804. name: "Back",
  2805. image: {
  2806. source: "./media/characters/natalya/back.svg"
  2807. }
  2808. }
  2809. },
  2810. [
  2811. {
  2812. name: "Normal",
  2813. height: math.unit(150, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(5, "miles")
  2819. },
  2820. {
  2821. name: "Full-Size",
  2822. height: math.unit(600, "kiloparsecs")
  2823. }
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(50, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/erestrebah/front.svg",
  2835. extra: 208 / 193,
  2836. bottom: 0.055
  2837. }
  2838. },
  2839. back: {
  2840. height: math.unit(2, "meter"),
  2841. weight: math.unit(50, "kg"),
  2842. name: "Back",
  2843. image: {
  2844. source: "./media/characters/erestrebah/back.svg",
  2845. extra: 1.3
  2846. }
  2847. }
  2848. },
  2849. [
  2850. {
  2851. name: "Normal",
  2852. height: math.unit(10, "feet")
  2853. },
  2854. {
  2855. name: "Large",
  2856. height: math.unit(50, "feet"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Macro",
  2861. height: math.unit(300, "feet")
  2862. },
  2863. {
  2864. name: "Macro+",
  2865. height: math.unit(750, "feet")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(3, "miles")
  2870. }
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2875. {
  2876. front: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(80, "kg"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/jennifer/front.svg",
  2882. bottom: 0.11,
  2883. extra: 1.16
  2884. }
  2885. },
  2886. frontAlt: {
  2887. height: math.unit(2, "meter"),
  2888. weight: math.unit(80, "kg"),
  2889. name: "Front (Alt)",
  2890. image: {
  2891. source: "./media/characters/jennifer/front-alt.svg"
  2892. }
  2893. }
  2894. },
  2895. [
  2896. {
  2897. name: "Canon Height",
  2898. height: math.unit(120, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Macro+",
  2903. height: math.unit(300, "feet")
  2904. },
  2905. {
  2906. name: "Megamacro",
  2907. height: math.unit(20000, "feet")
  2908. }
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(2, "meter"),
  2916. weight: math.unit(50, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kalista/front.svg",
  2920. extra: 1947 / 1700,
  2921. bottom: 76.6 / 1412.98
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(2, "meter"),
  2926. weight: math.unit(50, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kalista/back.svg",
  2930. extra: 1366 / 1156,
  2931. bottom: 33.9 / 1362.78
  2932. }
  2933. }
  2934. },
  2935. [
  2936. {
  2937. name: "Uncomfortably Small",
  2938. height: math.unit(10, "feet")
  2939. },
  2940. {
  2941. name: "Small",
  2942. height: math.unit(30, "feet")
  2943. },
  2944. {
  2945. name: "Macro",
  2946. height: math.unit(100, "feet"),
  2947. default: true
  2948. },
  2949. {
  2950. name: "Macro+",
  2951. height: math.unit(2000, "feet")
  2952. },
  2953. {
  2954. name: "True Form",
  2955. height: math.unit(8924, "miles")
  2956. }
  2957. ]
  2958. ))
  2959. characterMakers.push(() => makeCharacter(
  2960. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2961. {
  2962. front: {
  2963. height: math.unit(2, "meter"),
  2964. weight: math.unit(120, "kg"),
  2965. name: "Front",
  2966. image: {
  2967. source: "./media/characters/ggv/front.svg"
  2968. }
  2969. },
  2970. side: {
  2971. height: math.unit(2, "meter"),
  2972. weight: math.unit(120, "kg"),
  2973. name: "Side",
  2974. image: {
  2975. source: "./media/characters/ggv/side.svg"
  2976. }
  2977. }
  2978. },
  2979. [
  2980. {
  2981. name: "Extremely Puny",
  2982. height: math.unit(9 + 5 / 12, "feet")
  2983. },
  2984. {
  2985. name: "Horribly Small",
  2986. height: math.unit(47.7, "miles"),
  2987. default: true
  2988. },
  2989. {
  2990. name: "Reasonably Sized",
  2991. height: math.unit(25000, "parsecs")
  2992. },
  2993. {
  2994. name: "Slightly Uncompressed",
  2995. height: math.unit(7.77e31, "parsecs")
  2996. },
  2997. {
  2998. name: "Omniversal",
  2999. height: math.unit(1e300, "meters")
  3000. },
  3001. ]
  3002. ))
  3003. characterMakers.push(() => makeCharacter(
  3004. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3005. {
  3006. front: {
  3007. height: math.unit(2, "meter"),
  3008. weight: math.unit(75, "lb"),
  3009. name: "Front",
  3010. image: {
  3011. source: "./media/characters/napalm/front.svg"
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(2, "meter"),
  3016. weight: math.unit(75, "lb"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/napalm/back.svg"
  3020. }
  3021. }
  3022. },
  3023. [
  3024. {
  3025. name: "Standard",
  3026. height: math.unit(55, "feet"),
  3027. default: true
  3028. }
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(7 + 5 / 6, "feet"),
  3036. weight: math.unit(325, "lb"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/asana/front.svg",
  3040. extra: 1128 / 1068
  3041. }
  3042. },
  3043. back: {
  3044. height: math.unit(7 + 5 / 6, "feet"),
  3045. weight: math.unit(325, "lb"),
  3046. name: "Back",
  3047. image: {
  3048. source: "./media/characters/asana/back.svg",
  3049. extra: 1128 / 1068
  3050. }
  3051. },
  3052. },
  3053. [
  3054. {
  3055. name: "Standard",
  3056. height: math.unit(7 + 5 / 6, "feet"),
  3057. default: true
  3058. },
  3059. {
  3060. name: "Large",
  3061. height: math.unit(10, "meters")
  3062. },
  3063. {
  3064. name: "Macro",
  3065. height: math.unit(2500, "meters")
  3066. },
  3067. {
  3068. name: "Megamacro",
  3069. height: math.unit(5e6, "meters")
  3070. },
  3071. {
  3072. name: "Examacro",
  3073. height: math.unit(5e12, "lightyears")
  3074. },
  3075. {
  3076. name: "Max Size",
  3077. height: math.unit(1e31, "lightyears")
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3083. {
  3084. front: {
  3085. height: math.unit(2, "meter"),
  3086. weight: math.unit(60, "kg"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/ebony/front.svg",
  3090. bottom: 0.03,
  3091. extra: 1045 / 810 + 0.03
  3092. }
  3093. },
  3094. side: {
  3095. height: math.unit(2, "meter"),
  3096. weight: math.unit(60, "kg"),
  3097. name: "Side",
  3098. image: {
  3099. source: "./media/characters/ebony/side.svg",
  3100. bottom: 0.03,
  3101. extra: 1045 / 810 + 0.03
  3102. }
  3103. },
  3104. back: {
  3105. height: math.unit(2, "meter"),
  3106. weight: math.unit(60, "kg"),
  3107. name: "Back",
  3108. image: {
  3109. source: "./media/characters/ebony/back.svg",
  3110. bottom: 0.01,
  3111. extra: 1045 / 810 + 0.01
  3112. }
  3113. },
  3114. },
  3115. [
  3116. // TODO check why I did this lol
  3117. {
  3118. name: "Standard",
  3119. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3120. default: true
  3121. },
  3122. {
  3123. name: "Macro",
  3124. height: math.unit(200, "feet")
  3125. },
  3126. {
  3127. name: "Gigamacro",
  3128. height: math.unit(13000, "km")
  3129. }
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3134. {
  3135. front: {
  3136. height: math.unit(6, "feet"),
  3137. weight: math.unit(175, "lb"),
  3138. name: "Front",
  3139. image: {
  3140. source: "./media/characters/mountain/front.svg"
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(6, "feet"),
  3145. weight: math.unit(175, "lb"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/mountain/back.svg"
  3149. }
  3150. },
  3151. },
  3152. [
  3153. {
  3154. name: "Large",
  3155. height: math.unit(20, "meters")
  3156. },
  3157. {
  3158. name: "Macro",
  3159. height: math.unit(300, "meters")
  3160. },
  3161. {
  3162. name: "Gigamacro",
  3163. height: math.unit(10000, "km"),
  3164. default: true
  3165. },
  3166. {
  3167. name: "Examacro",
  3168. height: math.unit(10e9, "lightyears")
  3169. }
  3170. ]
  3171. ))
  3172. characterMakers.push(() => makeCharacter(
  3173. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3174. {
  3175. front: {
  3176. height: math.unit(8, "feet"),
  3177. weight: math.unit(500, "lb"),
  3178. name: "Front",
  3179. image: {
  3180. source: "./media/characters/rick/front.svg"
  3181. }
  3182. }
  3183. },
  3184. [
  3185. {
  3186. name: "Normal",
  3187. height: math.unit(8, "feet"),
  3188. default: true
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(5, "km")
  3193. }
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(8, "feet"),
  3201. weight: math.unit(120, "lb"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/ona/front.svg"
  3205. }
  3206. },
  3207. frontAlt: {
  3208. height: math.unit(8, "feet"),
  3209. weight: math.unit(120, "lb"),
  3210. name: "Front (Alt)",
  3211. image: {
  3212. source: "./media/characters/ona/front-alt.svg"
  3213. }
  3214. },
  3215. back: {
  3216. height: math.unit(8, "feet"),
  3217. weight: math.unit(120, "lb"),
  3218. name: "Back",
  3219. image: {
  3220. source: "./media/characters/ona/back.svg"
  3221. }
  3222. },
  3223. foot: {
  3224. height: math.unit(1.1, "feet"),
  3225. name: "Foot",
  3226. image: {
  3227. source: "./media/characters/ona/foot.svg"
  3228. }
  3229. }
  3230. },
  3231. [
  3232. {
  3233. name: "Megamacro",
  3234. height: math.unit(70, "km"),
  3235. default: true
  3236. },
  3237. {
  3238. name: "Gigamacro",
  3239. height: math.unit(681818, "miles")
  3240. },
  3241. {
  3242. name: "Examacro",
  3243. height: math.unit(3800000, "lightyears")
  3244. },
  3245. ]
  3246. ))
  3247. characterMakers.push(() => makeCharacter(
  3248. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3249. {
  3250. front: {
  3251. height: math.unit(12, "feet"),
  3252. weight: math.unit(3000, "lb"),
  3253. name: "Front",
  3254. image: {
  3255. source: "./media/characters/mech/front.svg",
  3256. bottom: 0.025,
  3257. }
  3258. },
  3259. back: {
  3260. height: math.unit(12, "feet"),
  3261. weight: math.unit(3000, "lb"),
  3262. name: "Back",
  3263. image: {
  3264. source: "./media/characters/mech/back.svg",
  3265. bottom: 0.03,
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(12, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(300, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Macro+",
  3281. height: math.unit(1500, "feet")
  3282. },
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(1.3, "meter"),
  3290. weight: math.unit(30, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/gregory/front.svg",
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Normal",
  3300. height: math.unit(1.3, "meter"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(20, "meter")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2.8, "meter"),
  3314. weight: math.unit(200, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/elory/front.svg",
  3318. }
  3319. }
  3320. },
  3321. [
  3322. {
  3323. name: "Normal",
  3324. height: math.unit(2.8, "meter"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(38, "meter")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(470, "feet"),
  3338. weight: math.unit(924, "tons"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/angelpatamon/front.svg",
  3342. }
  3343. }
  3344. },
  3345. [
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(470, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Deity Size I",
  3353. height: math.unit(28651.2, "km")
  3354. },
  3355. {
  3356. name: "Deity Size II",
  3357. height: math.unit(171907.2, "km")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3363. {
  3364. side: {
  3365. height: math.unit(7.2, "meter"),
  3366. weight: math.unit(8.2, "tons"),
  3367. name: "Side",
  3368. image: {
  3369. source: "./media/characters/cryae/side.svg",
  3370. extra: 3500 / 1500
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(7.2, "meter"),
  3378. default: true
  3379. }
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3384. {
  3385. front: {
  3386. height: math.unit(6, "feet"),
  3387. weight: math.unit(175, "lb"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/xera/front.svg",
  3391. extra: 2300 / 2061
  3392. }
  3393. },
  3394. side: {
  3395. height: math.unit(6, "feet"),
  3396. weight: math.unit(175, "lb"),
  3397. name: "Side",
  3398. image: {
  3399. source: "./media/characters/xera/side.svg",
  3400. extra: 2300 / 2061
  3401. }
  3402. },
  3403. back: {
  3404. height: math.unit(6, "feet"),
  3405. weight: math.unit(175, "lb"),
  3406. name: "Back",
  3407. image: {
  3408. source: "./media/characters/xera/back.svg"
  3409. }
  3410. },
  3411. },
  3412. [
  3413. {
  3414. name: "Small",
  3415. height: math.unit(10, "feet")
  3416. },
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(500, "meters"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Macro+",
  3424. height: math.unit(10, "km")
  3425. },
  3426. {
  3427. name: "Gigamacro",
  3428. height: math.unit(25000, "km")
  3429. },
  3430. {
  3431. name: "Teramacro",
  3432. height: math.unit(3e6, "km")
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(6, "feet"),
  3441. weight: math.unit(175, "lb"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/nebula/front.svg",
  3445. extra: 2600 / 2450
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Small",
  3452. height: math.unit(4.5, "meters")
  3453. },
  3454. {
  3455. name: "Macro",
  3456. height: math.unit(1500, "meters"),
  3457. default: true
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(150, "km")
  3462. },
  3463. {
  3464. name: "Gigamacro",
  3465. height: math.unit(27000, "km")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3471. {
  3472. front: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(225, "lb"),
  3475. name: "Front",
  3476. image: {
  3477. source: "./media/characters/abysgar/front.svg"
  3478. }
  3479. }
  3480. },
  3481. [
  3482. {
  3483. name: "Small",
  3484. height: math.unit(4.5, "meters")
  3485. },
  3486. {
  3487. name: "Macro",
  3488. height: math.unit(1250, "meters"),
  3489. default: true
  3490. },
  3491. {
  3492. name: "Megamacro",
  3493. height: math.unit(125, "km")
  3494. },
  3495. {
  3496. name: "Gigamacro",
  3497. height: math.unit(26000, "km")
  3498. }
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3503. {
  3504. front: {
  3505. height: math.unit(6, "feet"),
  3506. weight: math.unit(180, "lb"),
  3507. name: "Front",
  3508. image: {
  3509. source: "./media/characters/yakuz/front.svg"
  3510. }
  3511. }
  3512. },
  3513. [
  3514. {
  3515. name: "Small",
  3516. height: math.unit(5, "meters")
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(1500, "meters"),
  3521. default: true
  3522. },
  3523. {
  3524. name: "Megamacro",
  3525. height: math.unit(200, "km")
  3526. },
  3527. {
  3528. name: "Gigamacro",
  3529. height: math.unit(100000, "km")
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(175, "lb"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/mirova/front.svg"
  3542. }
  3543. }
  3544. },
  3545. [
  3546. {
  3547. name: "Small",
  3548. height: math.unit(5, "meters")
  3549. },
  3550. {
  3551. name: "Macro",
  3552. height: math.unit(900, "meters"),
  3553. default: true
  3554. },
  3555. {
  3556. name: "Megamacro",
  3557. height: math.unit(135, "km")
  3558. },
  3559. {
  3560. name: "Gigamacro",
  3561. height: math.unit(20000, "km")
  3562. }
  3563. ]
  3564. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3567. {
  3568. side: {
  3569. height: math.unit(28.35, "feet"),
  3570. weight: math.unit(99.75, "tons"),
  3571. name: "Side",
  3572. image: {
  3573. source: "./media/characters/asana-mech/side.svg"
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(28.35, "feet"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(2500, "feet")
  3586. },
  3587. {
  3588. name: "Megamacro",
  3589. height: math.unit(25, "miles")
  3590. },
  3591. {
  3592. name: "Examacro",
  3593. height: math.unit(6e8, "lightyears")
  3594. },
  3595. ]
  3596. ))
  3597. characterMakers.push(() => makeCharacter(
  3598. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3599. {
  3600. front: {
  3601. height: math.unit(2, "meters"),
  3602. weight: math.unit(70, "kg"),
  3603. name: "Front",
  3604. image: {
  3605. source: "./media/characters/ashtrek/front.svg",
  3606. extra: 560 / 524,
  3607. bottom: 0.01
  3608. }
  3609. },
  3610. frontArmor: {
  3611. height: math.unit(2, "meters"),
  3612. weight: math.unit(76, "kg"),
  3613. name: "Front (Armor)",
  3614. image: {
  3615. source: "./media/characters/ashtrek/front-armor.svg",
  3616. extra: 561 / 527,
  3617. bottom: 0.01
  3618. }
  3619. },
  3620. side: {
  3621. height: math.unit(2, "meters"),
  3622. weight: math.unit(70, "kg"),
  3623. name: "Side",
  3624. image: {
  3625. source: "./media/characters/ashtrek/side.svg",
  3626. extra: 1717 / 1609,
  3627. bottom: 0.005
  3628. }
  3629. },
  3630. back: {
  3631. height: math.unit(2, "meters"),
  3632. weight: math.unit(70, "kg"),
  3633. name: "Back",
  3634. image: {
  3635. source: "./media/characters/ashtrek/back.svg",
  3636. extra: 1570 / 1501
  3637. }
  3638. },
  3639. },
  3640. [
  3641. {
  3642. name: "DEFCON 5",
  3643. height: math.unit(5, "meters")
  3644. },
  3645. {
  3646. name: "DEFCON 4",
  3647. height: math.unit(500, "meters"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "DEFCON 3",
  3652. height: math.unit(5, "km")
  3653. },
  3654. {
  3655. name: "DEFCON 2",
  3656. height: math.unit(500, "km")
  3657. },
  3658. {
  3659. name: "DEFCON 1",
  3660. height: math.unit(500000, "km")
  3661. },
  3662. {
  3663. name: "DEFCON 0",
  3664. height: math.unit(3, "gigaparsecs")
  3665. },
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3670. {
  3671. front: {
  3672. height: math.unit(2, "meters"),
  3673. weight: math.unit(76, "kg"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/gale/front.svg"
  3677. }
  3678. },
  3679. frontAlt1: {
  3680. height: math.unit(2, "meters"),
  3681. weight: math.unit(76, "kg"),
  3682. name: "Front (Alt 1)",
  3683. image: {
  3684. source: "./media/characters/gale/front-alt-1.svg"
  3685. }
  3686. },
  3687. frontAlt2: {
  3688. height: math.unit(2, "meters"),
  3689. weight: math.unit(76, "kg"),
  3690. name: "Front (Alt 2)",
  3691. image: {
  3692. source: "./media/characters/gale/front-alt-2.svg"
  3693. }
  3694. },
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(7, "feet")
  3700. },
  3701. {
  3702. name: "Macro",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Macro+",
  3708. height: math.unit(300, "feet")
  3709. },
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(2, "meters"),
  3717. weight: math.unit(76, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/draylen/front.svg"
  3721. }
  3722. }
  3723. },
  3724. [
  3725. {
  3726. name: "Macro",
  3727. height: math.unit(150, "feet"),
  3728. default: true
  3729. }
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3734. {
  3735. front: {
  3736. height: math.unit(7 + 9 / 12, "feet"),
  3737. weight: math.unit(379, "lbs"),
  3738. name: "Front",
  3739. image: {
  3740. source: "./media/characters/chez/front.svg"
  3741. }
  3742. },
  3743. side: {
  3744. height: math.unit(7 + 9 / 12, "feet"),
  3745. weight: math.unit(379, "lbs"),
  3746. name: "Side",
  3747. image: {
  3748. source: "./media/characters/chez/side.svg"
  3749. }
  3750. }
  3751. },
  3752. [
  3753. {
  3754. name: "Normal",
  3755. height: math.unit(7 + 9 / 12, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "God King",
  3760. height: math.unit(9750000, "meters")
  3761. }
  3762. ]
  3763. ))
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(275, "lbs"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/kaylum/front.svg",
  3773. bottom: 0.01,
  3774. extra: 1166 / 1031
  3775. }
  3776. },
  3777. frontWingless: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(275, "lbs"),
  3780. name: "Front (Wingless)",
  3781. image: {
  3782. source: "./media/characters/kaylum/front-wingless.svg",
  3783. bottom: 0.01,
  3784. extra: 1117 / 1031
  3785. }
  3786. }
  3787. },
  3788. [
  3789. {
  3790. name: "Normal",
  3791. height: math.unit(3.05, "meters")
  3792. },
  3793. {
  3794. name: "Master",
  3795. height: math.unit(5.5, "meters")
  3796. },
  3797. {
  3798. name: "Rampage",
  3799. height: math.unit(19, "meters")
  3800. },
  3801. {
  3802. name: "Macro Lite",
  3803. height: math.unit(37, "meters")
  3804. },
  3805. {
  3806. name: "Hyper Predator",
  3807. height: math.unit(61, "meters")
  3808. },
  3809. {
  3810. name: "Macro",
  3811. height: math.unit(138, "meters"),
  3812. default: true
  3813. }
  3814. ]
  3815. ))
  3816. characterMakers.push(() => makeCharacter(
  3817. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3818. {
  3819. front: {
  3820. height: math.unit(6, "feet"),
  3821. weight: math.unit(150, "lbs"),
  3822. name: "Front",
  3823. image: {
  3824. source: "./media/characters/geta/front.svg"
  3825. }
  3826. }
  3827. },
  3828. [
  3829. {
  3830. name: "Micro",
  3831. height: math.unit(3, "inches"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "Normal",
  3836. height: math.unit(5 + 5 / 12, "feet")
  3837. }
  3838. ]
  3839. ))
  3840. characterMakers.push(() => makeCharacter(
  3841. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3842. {
  3843. front: {
  3844. height: math.unit(6, "feet"),
  3845. weight: math.unit(300, "lbs"),
  3846. name: "Front",
  3847. image: {
  3848. source: "./media/characters/tyrnn/front.svg"
  3849. }
  3850. }
  3851. },
  3852. [
  3853. {
  3854. name: "Main Height",
  3855. height: math.unit(355, "feet"),
  3856. default: true
  3857. },
  3858. {
  3859. name: "Fave. Height",
  3860. height: math.unit(2400, "feet")
  3861. }
  3862. ]
  3863. ))
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3866. {
  3867. front: {
  3868. height: math.unit(6, "feet"),
  3869. weight: math.unit(300, "lbs"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/appledectomy/front.svg"
  3873. }
  3874. }
  3875. },
  3876. [
  3877. {
  3878. name: "Macro",
  3879. height: math.unit(2500, "feet")
  3880. },
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(50, "miles"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Gigamacro",
  3888. height: math.unit(5000, "miles")
  3889. },
  3890. {
  3891. name: "Teramacro",
  3892. height: math.unit(250000, "miles")
  3893. },
  3894. ]
  3895. ))
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(200, "lbs"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/vulpes/front.svg",
  3905. extra: 573 / 543,
  3906. bottom: 0.033
  3907. }
  3908. },
  3909. side: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(200, "lbs"),
  3912. name: "Side",
  3913. image: {
  3914. source: "./media/characters/vulpes/side.svg",
  3915. extra: 573 / 543,
  3916. bottom: 0.01
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(200, "lbs"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/vulpes/back.svg",
  3925. extra: 573 / 543,
  3926. }
  3927. },
  3928. feet: {
  3929. height: math.unit(1.276, "feet"),
  3930. name: "Feet",
  3931. image: {
  3932. source: "./media/characters/vulpes/feet.svg"
  3933. }
  3934. },
  3935. maw: {
  3936. height: math.unit(1.18, "feet"),
  3937. name: "Maw",
  3938. image: {
  3939. source: "./media/characters/vulpes/maw.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Micro",
  3946. height: math.unit(2, "inches")
  3947. },
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(6.3, "feet")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(850, "feet")
  3955. },
  3956. {
  3957. name: "Megamacro",
  3958. height: math.unit(7500, "feet"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Gigamacro",
  3963. height: math.unit(570000, "miles")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3969. {
  3970. front: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(210, "lbs"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/rain-fallen/front.svg"
  3976. }
  3977. },
  3978. side: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(210, "lbs"),
  3981. name: "Side",
  3982. image: {
  3983. source: "./media/characters/rain-fallen/side.svg"
  3984. }
  3985. },
  3986. back: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(210, "lbs"),
  3989. name: "Back",
  3990. image: {
  3991. source: "./media/characters/rain-fallen/back.svg"
  3992. }
  3993. },
  3994. feral: {
  3995. height: math.unit(9, "feet"),
  3996. weight: math.unit(700, "lbs"),
  3997. name: "Feral",
  3998. image: {
  3999. source: "./media/characters/rain-fallen/feral.svg"
  4000. }
  4001. },
  4002. },
  4003. [
  4004. {
  4005. name: "Normal",
  4006. height: math.unit(5, "meter")
  4007. },
  4008. {
  4009. name: "Macro",
  4010. height: math.unit(150, "meter"),
  4011. default: true
  4012. },
  4013. {
  4014. name: "Megamacro",
  4015. height: math.unit(278e6, "meter")
  4016. },
  4017. {
  4018. name: "Gigamacro",
  4019. height: math.unit(2e9, "meter")
  4020. },
  4021. {
  4022. name: "Teramacro",
  4023. height: math.unit(8e12, "meter")
  4024. },
  4025. {
  4026. name: "Devourer",
  4027. height: math.unit(14, "zettameters")
  4028. },
  4029. {
  4030. name: "Scarlet King",
  4031. height: math.unit(18, "yottameters")
  4032. },
  4033. {
  4034. name: "Void",
  4035. height: math.unit(6.66e66, "yottameters")
  4036. }
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4041. {
  4042. standing: {
  4043. height: math.unit(6, "feet"),
  4044. weight: math.unit(180, "lbs"),
  4045. name: "Standing",
  4046. image: {
  4047. source: "./media/characters/zaakira/standing.svg"
  4048. }
  4049. },
  4050. laying: {
  4051. height: math.unit(3, "feet"),
  4052. weight: math.unit(180, "lbs"),
  4053. name: "Laying",
  4054. image: {
  4055. source: "./media/characters/zaakira/laying.svg"
  4056. }
  4057. },
  4058. },
  4059. [
  4060. {
  4061. name: "Normal",
  4062. height: math.unit(12, "feet")
  4063. },
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(279, "feet"),
  4067. default: true
  4068. }
  4069. ]
  4070. ))
  4071. characterMakers.push(() => makeCharacter(
  4072. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4073. {
  4074. front: {
  4075. height: math.unit(6, "feet"),
  4076. weight: math.unit(250, "lbs"),
  4077. name: "Front",
  4078. image: {
  4079. source: "./media/characters/sigvald/front.svg",
  4080. extra: 1000 / 850
  4081. }
  4082. },
  4083. back: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(250, "lbs"),
  4086. name: "Back",
  4087. image: {
  4088. source: "./media/characters/sigvald/back.svg"
  4089. }
  4090. },
  4091. },
  4092. [
  4093. {
  4094. name: "Normal",
  4095. height: math.unit(8, "feet")
  4096. },
  4097. {
  4098. name: "Large",
  4099. height: math.unit(12, "feet")
  4100. },
  4101. {
  4102. name: "Larger",
  4103. height: math.unit(20, "feet")
  4104. },
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(150, "feet")
  4108. },
  4109. {
  4110. name: "Macro+",
  4111. height: math.unit(200, "feet"),
  4112. default: true
  4113. },
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4118. {
  4119. side: {
  4120. height: math.unit(12, "feet"),
  4121. weight: math.unit(2000, "kg"),
  4122. name: "Side",
  4123. image: {
  4124. source: "./media/characters/scott/side.svg",
  4125. extra: 754 / 724,
  4126. bottom: 0.069
  4127. }
  4128. },
  4129. upright: {
  4130. height: math.unit(12, "feet"),
  4131. weight: math.unit(2000, "kg"),
  4132. name: "Upright",
  4133. image: {
  4134. source: "./media/characters/scott/upright.svg",
  4135. extra: 3881 / 3722,
  4136. bottom: 0.05
  4137. }
  4138. },
  4139. },
  4140. [
  4141. {
  4142. name: "Normal",
  4143. height: math.unit(12, "feet"),
  4144. default: true
  4145. },
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4150. {
  4151. side: {
  4152. height: math.unit(8, "meters"),
  4153. weight: math.unit(84755, "lbs"),
  4154. name: "Side",
  4155. image: {
  4156. source: "./media/characters/tobias/side.svg",
  4157. extra: 1474 / 1096,
  4158. bottom: 38.9 / 1513.1235
  4159. }
  4160. },
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(8, "meters"),
  4166. default: true
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4172. {
  4173. front: {
  4174. height: math.unit(5.5, "feet"),
  4175. weight: math.unit(400, "lbs"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/kieran/front.svg",
  4179. extra: 2694 / 2364,
  4180. bottom: 217 / 2908
  4181. }
  4182. },
  4183. side: {
  4184. height: math.unit(5.5, "feet"),
  4185. weight: math.unit(400, "lbs"),
  4186. name: "Side",
  4187. image: {
  4188. source: "./media/characters/kieran/side.svg",
  4189. extra: 875 / 777,
  4190. bottom: 84.6 / 959
  4191. }
  4192. },
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(5.5, "feet"),
  4198. default: true
  4199. },
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4204. {
  4205. side: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(70, "kg"),
  4208. name: "Side",
  4209. image: {
  4210. source: "./media/characters/sanya/side.svg",
  4211. bottom: 0.02,
  4212. extra: 1.02
  4213. }
  4214. },
  4215. },
  4216. [
  4217. {
  4218. name: "Small",
  4219. height: math.unit(2, "meters")
  4220. },
  4221. {
  4222. name: "Normal",
  4223. height: math.unit(3, "meters")
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(16, "meters"),
  4228. default: true
  4229. },
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4234. {
  4235. side: {
  4236. height: math.unit(2, "meters"),
  4237. weight: math.unit(120, "kg"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/miranda/front.svg",
  4241. extra: 10.6 / 10
  4242. }
  4243. },
  4244. },
  4245. [
  4246. {
  4247. name: "Normal",
  4248. height: math.unit(10, "feet"),
  4249. default: true
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "James", species: ["deer"], tags: ["anthro"] },
  4255. {
  4256. side: {
  4257. height: math.unit(2, "meters"),
  4258. weight: math.unit(100, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/james/front.svg",
  4262. extra: 10 / 8.5
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(8.5, "feet"),
  4270. default: true
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4276. {
  4277. side: {
  4278. height: math.unit(9.5, "feet"),
  4279. weight: math.unit(2500, "lbs"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/heather/side.svg"
  4283. }
  4284. },
  4285. },
  4286. [
  4287. {
  4288. name: "Normal",
  4289. height: math.unit(9.5, "feet"),
  4290. default: true
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4296. {
  4297. side: {
  4298. height: math.unit(6.5, "feet"),
  4299. weight: math.unit(400, "lbs"),
  4300. name: "Side",
  4301. image: {
  4302. source: "./media/characters/lukas/side.svg",
  4303. extra: 7.25 / 6.5
  4304. }
  4305. },
  4306. },
  4307. [
  4308. {
  4309. name: "Normal",
  4310. height: math.unit(6.5, "feet"),
  4311. default: true
  4312. }
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4317. {
  4318. side: {
  4319. height: math.unit(5, "feet"),
  4320. weight: math.unit(3000, "lbs"),
  4321. name: "Side",
  4322. image: {
  4323. source: "./media/characters/louise/side.svg"
  4324. }
  4325. },
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(5, "feet"),
  4331. default: true
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4337. {
  4338. side: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(150, "lbs"),
  4341. name: "Side",
  4342. image: {
  4343. source: "./media/characters/ramona/side.svg"
  4344. }
  4345. },
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(5.3, "meters"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Macro",
  4355. height: math.unit(20, "stories")
  4356. },
  4357. {
  4358. name: "Macro+",
  4359. height: math.unit(50, "stories")
  4360. },
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4365. {
  4366. standing: {
  4367. height: math.unit(5.75, "feet"),
  4368. weight: math.unit(160, "lbs"),
  4369. name: "Standing",
  4370. image: {
  4371. source: "./media/characters/deerpuff/standing.svg",
  4372. extra: 682 / 624
  4373. }
  4374. },
  4375. sitting: {
  4376. height: math.unit(5.75 / 1.79, "feet"),
  4377. weight: math.unit(160, "lbs"),
  4378. name: "Sitting",
  4379. image: {
  4380. source: "./media/characters/deerpuff/sitting.svg",
  4381. bottom: 44 / 400,
  4382. extra: 1
  4383. }
  4384. },
  4385. taurLaying: {
  4386. height: math.unit(6, "feet"),
  4387. weight: math.unit(400, "lbs"),
  4388. name: "Taur (Laying)",
  4389. image: {
  4390. source: "./media/characters/deerpuff/taur-laying.svg"
  4391. }
  4392. },
  4393. },
  4394. [
  4395. {
  4396. name: "Puffball",
  4397. height: math.unit(6, "inches")
  4398. },
  4399. {
  4400. name: "Normalpuff",
  4401. height: math.unit(5.75, "feet")
  4402. },
  4403. {
  4404. name: "Macropuff",
  4405. height: math.unit(1500, "feet"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Megapuff",
  4410. height: math.unit(500, "miles")
  4411. },
  4412. {
  4413. name: "Gigapuff",
  4414. height: math.unit(250000, "miles")
  4415. },
  4416. {
  4417. name: "Omegapuff",
  4418. height: math.unit(1000, "lightyears")
  4419. },
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4424. {
  4425. stomping: {
  4426. height: math.unit(6, "feet"),
  4427. weight: math.unit(170, "lbs"),
  4428. name: "Stomping",
  4429. image: {
  4430. source: "./media/characters/vivian/stomping.svg"
  4431. }
  4432. },
  4433. sitting: {
  4434. height: math.unit(6 / 1.75, "feet"),
  4435. weight: math.unit(170, "lbs"),
  4436. name: "Sitting",
  4437. image: {
  4438. source: "./media/characters/vivian/sitting.svg",
  4439. bottom: 1 / 6.4,
  4440. extra: 1,
  4441. }
  4442. },
  4443. },
  4444. [
  4445. {
  4446. name: "Normal",
  4447. height: math.unit(7, "feet"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(10, "stories")
  4453. },
  4454. {
  4455. name: "Macro+",
  4456. height: math.unit(30, "stories")
  4457. },
  4458. {
  4459. name: "Megamacro",
  4460. height: math.unit(10, "miles")
  4461. },
  4462. {
  4463. name: "Megamacro+",
  4464. height: math.unit(2750000, "meters")
  4465. },
  4466. ]
  4467. ))
  4468. characterMakers.push(() => makeCharacter(
  4469. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4470. {
  4471. front: {
  4472. height: math.unit(6, "feet"),
  4473. weight: math.unit(160, "lbs"),
  4474. name: "Front",
  4475. image: {
  4476. source: "./media/characters/prince/front.svg",
  4477. extra: 3400 / 3000
  4478. }
  4479. },
  4480. jumping: {
  4481. height: math.unit(6, "feet"),
  4482. weight: math.unit(160, "lbs"),
  4483. name: "Jumping",
  4484. image: {
  4485. source: "./media/characters/prince/jump.svg",
  4486. extra: 2555 / 2134
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(7.75, "feet"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Not cute",
  4498. height: math.unit(17, "feet")
  4499. },
  4500. {
  4501. name: "I said NOT",
  4502. height: math.unit(91, "feet")
  4503. },
  4504. {
  4505. name: "Please stop",
  4506. height: math.unit(560, "feet")
  4507. },
  4508. {
  4509. name: "What have you done",
  4510. height: math.unit(2200, "feet")
  4511. },
  4512. {
  4513. name: "Deer God",
  4514. height: math.unit(3.6, "miles")
  4515. },
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4520. {
  4521. standing: {
  4522. height: math.unit(6, "feet"),
  4523. weight: math.unit(300, "lbs"),
  4524. name: "Standing",
  4525. image: {
  4526. source: "./media/characters/psymon/standing.svg",
  4527. extra: 1888 / 1810,
  4528. bottom: 0.05
  4529. }
  4530. },
  4531. slithering: {
  4532. height: math.unit(6, "feet"),
  4533. weight: math.unit(300, "lbs"),
  4534. name: "Slithering",
  4535. image: {
  4536. source: "./media/characters/psymon/slithering.svg",
  4537. extra: 1330 / 1224
  4538. }
  4539. },
  4540. slitheringAlt: {
  4541. height: math.unit(6, "feet"),
  4542. weight: math.unit(300, "lbs"),
  4543. name: "Slithering (Alt)",
  4544. image: {
  4545. source: "./media/characters/psymon/slithering-alt.svg",
  4546. extra: 1330 / 1224
  4547. }
  4548. },
  4549. },
  4550. [
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(11.25, "feet"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "Large",
  4558. height: math.unit(27, "feet")
  4559. },
  4560. {
  4561. name: "Giant",
  4562. height: math.unit(87, "feet")
  4563. },
  4564. {
  4565. name: "Macro",
  4566. height: math.unit(365, "feet")
  4567. },
  4568. {
  4569. name: "Megamacro",
  4570. height: math.unit(3, "miles")
  4571. },
  4572. {
  4573. name: "World Serpent",
  4574. height: math.unit(8000, "miles")
  4575. },
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4580. {
  4581. front: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(180, "lbs"),
  4584. name: "Front",
  4585. image: {
  4586. source: "./media/characters/daimos/front.svg",
  4587. extra: 4160 / 3897,
  4588. bottom: 0.021
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(8, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Big Dog",
  4600. height: math.unit(22, "feet")
  4601. },
  4602. {
  4603. name: "Macro",
  4604. height: math.unit(127, "feet")
  4605. },
  4606. {
  4607. name: "Megamacro",
  4608. height: math.unit(3600, "feet")
  4609. },
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4614. {
  4615. side: {
  4616. height: math.unit(6, "feet"),
  4617. weight: math.unit(180, "lbs"),
  4618. name: "Side",
  4619. image: {
  4620. source: "./media/characters/blake/side.svg",
  4621. extra: 1212 / 1120,
  4622. bottom: 0.05
  4623. }
  4624. },
  4625. crouched: {
  4626. height: math.unit(6 * 0.57, "feet"),
  4627. weight: math.unit(180, "lbs"),
  4628. name: "Crouched",
  4629. image: {
  4630. source: "./media/characters/blake/crouched.svg",
  4631. extra: 840 / 587,
  4632. bottom: 0.04
  4633. }
  4634. },
  4635. bent: {
  4636. height: math.unit(6 * 0.75, "feet"),
  4637. weight: math.unit(180, "lbs"),
  4638. name: "Bent",
  4639. image: {
  4640. source: "./media/characters/blake/bent.svg",
  4641. extra: 592 / 544,
  4642. bottom: 0.035
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(8 + 1 / 6, "feet"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Big Backside",
  4654. height: math.unit(37, "feet")
  4655. },
  4656. {
  4657. name: "Subway Shredder",
  4658. height: math.unit(72, "feet")
  4659. },
  4660. {
  4661. name: "City Carver",
  4662. height: math.unit(1675, "feet")
  4663. },
  4664. {
  4665. name: "Tectonic Tweaker",
  4666. height: math.unit(2300, "miles")
  4667. },
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4672. {
  4673. front: {
  4674. height: math.unit(6, "feet"),
  4675. weight: math.unit(180, "lbs"),
  4676. name: "Front",
  4677. image: {
  4678. source: "./media/characters/guisetto/front.svg",
  4679. extra: 856 / 817,
  4680. bottom: 0.06
  4681. }
  4682. },
  4683. airborne: {
  4684. height: math.unit(6, "feet"),
  4685. weight: math.unit(180, "lbs"),
  4686. name: "Airborne",
  4687. image: {
  4688. source: "./media/characters/guisetto/airborne.svg",
  4689. extra: 584 / 525
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(10 + 11 / 12, "feet"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Large",
  4701. height: math.unit(35, "feet")
  4702. },
  4703. {
  4704. name: "Macro",
  4705. height: math.unit(475, "feet")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(180, "lbs"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/luxor/front.svg",
  4718. extra: 2940 / 2152
  4719. }
  4720. },
  4721. back: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(180, "lbs"),
  4724. name: "Back",
  4725. image: {
  4726. source: "./media/characters/luxor/back.svg",
  4727. extra: 1083 / 960
  4728. }
  4729. },
  4730. },
  4731. [
  4732. {
  4733. name: "Normal",
  4734. height: math.unit(5 + 5 / 6, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Lamp",
  4739. height: math.unit(50, "feet")
  4740. },
  4741. {
  4742. name: "Lämp",
  4743. height: math.unit(300, "feet")
  4744. },
  4745. {
  4746. name: "The sun is a lamp",
  4747. height: math.unit(250000, "miles")
  4748. },
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4753. {
  4754. front: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(50, "lbs"),
  4757. name: "Front",
  4758. image: {
  4759. source: "./media/characters/huoyan/front.svg"
  4760. }
  4761. },
  4762. side: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(180, "lbs"),
  4765. name: "Side",
  4766. image: {
  4767. source: "./media/characters/huoyan/side.svg"
  4768. }
  4769. },
  4770. },
  4771. [
  4772. {
  4773. name: "Chef",
  4774. height: math.unit(9, "feet")
  4775. },
  4776. {
  4777. name: "Normal",
  4778. height: math.unit(65, "feet"),
  4779. default: true
  4780. },
  4781. {
  4782. name: "Macro",
  4783. height: math.unit(780, "feet")
  4784. },
  4785. {
  4786. name: "Flaming Mountain",
  4787. height: math.unit(4.8, "miles")
  4788. },
  4789. {
  4790. name: "Celestial",
  4791. height: math.unit(765000, "miles")
  4792. },
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4797. {
  4798. front: {
  4799. height: math.unit(5 + 3 / 4, "feet"),
  4800. weight: math.unit(120, "lbs"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/tails/front.svg"
  4804. }
  4805. }
  4806. },
  4807. [
  4808. {
  4809. name: "Normal",
  4810. height: math.unit(5 + 3 / 4, "feet"),
  4811. default: true
  4812. }
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4817. {
  4818. front: {
  4819. height: math.unit(4, "feet"),
  4820. weight: math.unit(50, "lbs"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/rainy/front.svg"
  4824. }
  4825. }
  4826. },
  4827. [
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(800, "feet"),
  4831. default: true
  4832. }
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4837. {
  4838. front: {
  4839. height: math.unit(6, "feet"),
  4840. weight: math.unit(150, "lbs"),
  4841. name: "Front",
  4842. image: {
  4843. source: "./media/characters/rainier/front.svg"
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Micro",
  4850. height: math.unit(2, "mm"),
  4851. default: true
  4852. }
  4853. ]
  4854. ))
  4855. characterMakers.push(() => makeCharacter(
  4856. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4857. {
  4858. front: {
  4859. height: math.unit(6, "feet"),
  4860. weight: math.unit(180, "lbs"),
  4861. name: "Front",
  4862. image: {
  4863. source: "./media/characters/andy/front.svg"
  4864. }
  4865. }
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(8, "feet"),
  4871. default: true
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(1000, "feet")
  4876. },
  4877. {
  4878. name: "Megamacro",
  4879. height: math.unit(5, "miles")
  4880. },
  4881. {
  4882. name: "Gigamacro",
  4883. height: math.unit(5000, "miles")
  4884. },
  4885. ]
  4886. ))
  4887. characterMakers.push(() => makeCharacter(
  4888. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4889. {
  4890. front: {
  4891. height: math.unit(6, "feet"),
  4892. weight: math.unit(210, "lbs"),
  4893. name: "Front",
  4894. image: {
  4895. source: "./media/characters/cimmaron/front-sfw.svg",
  4896. extra: 701 / 676,
  4897. bottom: 0.046
  4898. }
  4899. },
  4900. back: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(210, "lbs"),
  4903. name: "Back",
  4904. image: {
  4905. source: "./media/characters/cimmaron/back-sfw.svg",
  4906. extra: 701 / 676,
  4907. bottom: 0.046
  4908. }
  4909. },
  4910. frontNsfw: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(210, "lbs"),
  4913. name: "Front (NSFW)",
  4914. image: {
  4915. source: "./media/characters/cimmaron/front-nsfw.svg",
  4916. extra: 701 / 676,
  4917. bottom: 0.046
  4918. }
  4919. },
  4920. backNsfw: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(210, "lbs"),
  4923. name: "Back (NSFW)",
  4924. image: {
  4925. source: "./media/characters/cimmaron/back-nsfw.svg",
  4926. extra: 701 / 676,
  4927. bottom: 0.046
  4928. }
  4929. },
  4930. dick: {
  4931. height: math.unit(1.714, "feet"),
  4932. name: "Dick",
  4933. image: {
  4934. source: "./media/characters/cimmaron/dick.svg"
  4935. }
  4936. },
  4937. },
  4938. [
  4939. {
  4940. name: "Normal",
  4941. height: math.unit(6, "feet"),
  4942. default: true
  4943. },
  4944. {
  4945. name: "Macro Mayor",
  4946. height: math.unit(350, "meters")
  4947. },
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4952. {
  4953. front: {
  4954. height: math.unit(6, "feet"),
  4955. weight: math.unit(200, "lbs"),
  4956. name: "Front",
  4957. image: {
  4958. source: "./media/characters/akari/front.svg",
  4959. extra: 962 / 901,
  4960. bottom: 0.04
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Micro",
  4967. height: math.unit(5, "inches"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(7, "feet")
  4973. },
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(140, "lbs"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/cynosura/front.svg",
  4985. extra: 896 / 847
  4986. }
  4987. },
  4988. back: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(140, "lbs"),
  4991. name: "Back",
  4992. image: {
  4993. source: "./media/characters/cynosura/back.svg",
  4994. extra: 1365 / 1250
  4995. }
  4996. },
  4997. },
  4998. [
  4999. {
  5000. name: "Micro",
  5001. height: math.unit(4, "inches")
  5002. },
  5003. {
  5004. name: "Normal",
  5005. height: math.unit(5.75, "feet"),
  5006. default: true
  5007. },
  5008. {
  5009. name: "Tall",
  5010. height: math.unit(10, "feet")
  5011. },
  5012. {
  5013. name: "Big",
  5014. height: math.unit(20, "feet")
  5015. },
  5016. {
  5017. name: "Macro",
  5018. height: math.unit(50, "feet")
  5019. },
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5024. {
  5025. front: {
  5026. height: math.unit(6, "feet"),
  5027. weight: math.unit(170, "lbs"),
  5028. name: "Front",
  5029. image: {
  5030. source: "./media/characters/gin/front.svg",
  5031. extra: 1.053,
  5032. bottom: 0.025
  5033. }
  5034. },
  5035. foot: {
  5036. height: math.unit(6 / 4.25, "feet"),
  5037. name: "Foot",
  5038. image: {
  5039. source: "./media/characters/gin/foot.svg"
  5040. }
  5041. },
  5042. sole: {
  5043. height: math.unit(6 / 4.40, "feet"),
  5044. name: "Sole",
  5045. image: {
  5046. source: "./media/characters/gin/sole.svg"
  5047. }
  5048. },
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(13 + 2 / 12, "feet")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(1500, "feet")
  5058. },
  5059. {
  5060. name: "Megamacro",
  5061. height: math.unit(200, "miles"),
  5062. default: true
  5063. },
  5064. {
  5065. name: "Gigamacro",
  5066. height: math.unit(500, "megameters")
  5067. },
  5068. {
  5069. name: "Teramacro",
  5070. height: math.unit(15, "lightyears")
  5071. }
  5072. ]
  5073. ))
  5074. characterMakers.push(() => makeCharacter(
  5075. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5076. {
  5077. front: {
  5078. height: math.unit(6 + 1 / 6, "feet"),
  5079. weight: math.unit(178, "lbs"),
  5080. name: "Front",
  5081. image: {
  5082. source: "./media/characters/guy/front.svg"
  5083. }
  5084. }
  5085. },
  5086. [
  5087. {
  5088. name: "Normal",
  5089. height: math.unit(6 + 1 / 6, "feet"),
  5090. default: true
  5091. },
  5092. {
  5093. name: "Large",
  5094. height: math.unit(25 + 7 / 12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(60 + 9 / 12, "feet")
  5099. },
  5100. {
  5101. name: "Macro+",
  5102. height: math.unit(246, "feet")
  5103. },
  5104. {
  5105. name: "Macro++",
  5106. height: math.unit(878, "feet")
  5107. }
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5112. {
  5113. front: {
  5114. height: math.unit(9, "feet"),
  5115. weight: math.unit(800, "lbs"),
  5116. name: "Front",
  5117. image: {
  5118. source: "./media/characters/tiberius/front.svg",
  5119. extra: 2295 / 2071
  5120. }
  5121. },
  5122. back: {
  5123. height: math.unit(9, "feet"),
  5124. weight: math.unit(800, "lbs"),
  5125. name: "Back",
  5126. image: {
  5127. source: "./media/characters/tiberius/back.svg",
  5128. extra: 2373 / 2160
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(9, "feet"),
  5136. default: true
  5137. }
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5142. {
  5143. front: {
  5144. height: math.unit(6, "feet"),
  5145. weight: math.unit(600, "lbs"),
  5146. name: "Front",
  5147. image: {
  5148. source: "./media/characters/surgo/front.svg",
  5149. extra: 3591 / 2227
  5150. }
  5151. },
  5152. back: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(600, "lbs"),
  5155. name: "Back",
  5156. image: {
  5157. source: "./media/characters/surgo/back.svg",
  5158. extra: 3557 / 2228
  5159. }
  5160. },
  5161. laying: {
  5162. height: math.unit(6 * 0.85, "feet"),
  5163. weight: math.unit(600, "lbs"),
  5164. name: "Laying",
  5165. image: {
  5166. source: "./media/characters/surgo/laying.svg"
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(6, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5180. {
  5181. side: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(150, "lbs"),
  5184. name: "Side",
  5185. image: {
  5186. source: "./media/characters/cibus/side.svg",
  5187. extra: 800 / 400
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(6, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(240, "lbs"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/nibbles/front.svg"
  5208. }
  5209. },
  5210. side: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(240, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/nibbles/side.svg"
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(9, "feet"),
  5223. default: true
  5224. }
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5229. {
  5230. side: {
  5231. height: math.unit(5 + 1 / 6, "feet"),
  5232. weight: math.unit(130, "lbs"),
  5233. name: "Side",
  5234. image: {
  5235. source: "./media/characters/rikky/side.svg"
  5236. }
  5237. },
  5238. },
  5239. [
  5240. {
  5241. name: "Normal",
  5242. height: math.unit(5 + 1 / 6, "feet")
  5243. },
  5244. {
  5245. name: "Macro",
  5246. height: math.unit(152, "feet"),
  5247. default: true
  5248. },
  5249. {
  5250. name: "Megamacro",
  5251. height: math.unit(7, "miles")
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5257. {
  5258. side: {
  5259. height: math.unit(370, "cm"),
  5260. weight: math.unit(350, "lbs"),
  5261. name: "Side",
  5262. image: {
  5263. source: "./media/characters/malfressa/side.svg"
  5264. }
  5265. },
  5266. walking: {
  5267. height: math.unit(370, "cm"),
  5268. weight: math.unit(350, "lbs"),
  5269. name: "Walking",
  5270. image: {
  5271. source: "./media/characters/malfressa/walking.svg"
  5272. }
  5273. },
  5274. feral: {
  5275. height: math.unit(2500, "cm"),
  5276. weight: math.unit(100000, "lbs"),
  5277. name: "Feral",
  5278. image: {
  5279. source: "./media/characters/malfressa/feral.svg",
  5280. extra: 2108 / 837,
  5281. bottom: 0.02
  5282. }
  5283. },
  5284. },
  5285. [
  5286. {
  5287. name: "Normal",
  5288. height: math.unit(370, "cm")
  5289. },
  5290. {
  5291. name: "Macro",
  5292. height: math.unit(300, "meters"),
  5293. default: true
  5294. }
  5295. ]
  5296. ))
  5297. characterMakers.push(() => makeCharacter(
  5298. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5299. {
  5300. front: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(60, "kg"),
  5303. name: "Front",
  5304. image: {
  5305. source: "./media/characters/jaro/front.svg"
  5306. }
  5307. },
  5308. back: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(60, "kg"),
  5311. name: "Back",
  5312. image: {
  5313. source: "./media/characters/jaro/back.svg"
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Micro",
  5320. height: math.unit(7, "inches")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(5.5, "feet"),
  5325. default: true
  5326. },
  5327. {
  5328. name: "Minimacro",
  5329. height: math.unit(20, "feet")
  5330. },
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(200, "meters")
  5334. }
  5335. ]
  5336. ))
  5337. characterMakers.push(() => makeCharacter(
  5338. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5339. {
  5340. front: {
  5341. height: math.unit(6, "feet"),
  5342. weight: math.unit(195, "lb"),
  5343. name: "Front",
  5344. image: {
  5345. source: "./media/characters/rogue/front.svg"
  5346. }
  5347. },
  5348. },
  5349. [
  5350. {
  5351. name: "Macro",
  5352. height: math.unit(90, "feet"),
  5353. default: true
  5354. },
  5355. ]
  5356. ))
  5357. characterMakers.push(() => makeCharacter(
  5358. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5359. {
  5360. front: {
  5361. height: math.unit(5 + 8 / 12, "feet"),
  5362. weight: math.unit(140, "lb"),
  5363. name: "Front",
  5364. image: {
  5365. source: "./media/characters/piper/front.svg",
  5366. extra: 3928 / 3681
  5367. }
  5368. },
  5369. },
  5370. [
  5371. {
  5372. name: "Micro",
  5373. height: math.unit(2, "inches")
  5374. },
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(5 + 8 / 12, "feet")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(250, "feet"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Megamacro",
  5386. height: math.unit(7, "miles")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(220, "lb"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/gemini/front.svg"
  5399. }
  5400. },
  5401. back: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(220, "lb"),
  5404. name: "Back",
  5405. image: {
  5406. source: "./media/characters/gemini/back.svg"
  5407. }
  5408. },
  5409. kneeling: {
  5410. height: math.unit(6 / 1.5, "feet"),
  5411. weight: math.unit(220, "lb"),
  5412. name: "Kneeling",
  5413. image: {
  5414. source: "./media/characters/gemini/kneeling.svg",
  5415. bottom: 0.02
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(300, "meters"),
  5423. default: true
  5424. },
  5425. {
  5426. name: "Megamacro",
  5427. height: math.unit(6900, "meters")
  5428. },
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5433. {
  5434. anthro: {
  5435. height: math.unit(2.35, "meters"),
  5436. weight: math.unit(73, "kg"),
  5437. name: "Anthro",
  5438. image: {
  5439. source: "./media/characters/alicia/anthro.svg",
  5440. extra: 2571 / 2385,
  5441. bottom: 75 / 2648
  5442. }
  5443. },
  5444. paw: {
  5445. height: math.unit(1.32, "feet"),
  5446. name: "Paw",
  5447. image: {
  5448. source: "./media/characters/alicia/paw.svg"
  5449. }
  5450. },
  5451. feral: {
  5452. height: math.unit(1.69, "meters"),
  5453. weight: math.unit(73, "kg"),
  5454. name: "Feral",
  5455. image: {
  5456. source: "./media/characters/alicia/feral.svg",
  5457. extra: 2123 / 1715,
  5458. bottom: 222 / 2349
  5459. }
  5460. },
  5461. },
  5462. [
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(2.35, "meters")
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(60, "meters"),
  5470. default: true
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(10000, "kilometers")
  5475. },
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5480. {
  5481. front: {
  5482. height: math.unit(7, "feet"),
  5483. weight: math.unit(250, "lbs"),
  5484. name: "Front",
  5485. image: {
  5486. source: "./media/characters/archy/front.svg"
  5487. }
  5488. }
  5489. },
  5490. [
  5491. {
  5492. name: "Micro",
  5493. height: math.unit(1, "inch")
  5494. },
  5495. {
  5496. name: "Shorty",
  5497. height: math.unit(5, "feet")
  5498. },
  5499. {
  5500. name: "Normal",
  5501. height: math.unit(7, "feet")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(600, "meters"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(1, "mile")
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(1.65, "meters"),
  5519. weight: math.unit(74, "kg"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/berri/front.svg",
  5523. extra: 857 / 837,
  5524. bottom: 18 / 877
  5525. }
  5526. },
  5527. bum: {
  5528. height: math.unit(1.46, "feet"),
  5529. name: "Bum",
  5530. image: {
  5531. source: "./media/characters/berri/bum.svg"
  5532. }
  5533. },
  5534. mouth: {
  5535. height: math.unit(0.44, "feet"),
  5536. name: "Mouth",
  5537. image: {
  5538. source: "./media/characters/berri/mouth.svg"
  5539. }
  5540. },
  5541. paw: {
  5542. height: math.unit(0.826, "feet"),
  5543. name: "Paw",
  5544. image: {
  5545. source: "./media/characters/berri/paw.svg"
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(1.65, "meters")
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(60, "m"),
  5557. default: true
  5558. },
  5559. {
  5560. name: "Megamacro",
  5561. height: math.unit(9.213, "km")
  5562. },
  5563. {
  5564. name: "Planet Eater",
  5565. height: math.unit(489, "megameters")
  5566. },
  5567. {
  5568. name: "Teramacro",
  5569. height: math.unit(2471635000000, "meters")
  5570. },
  5571. {
  5572. name: "Examacro",
  5573. height: math.unit(8.0624e+26, "meters")
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(1.72, "meters"),
  5582. weight: math.unit(68, "kg"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/lexi/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Very Smol",
  5592. height: math.unit(10, "mm")
  5593. },
  5594. {
  5595. name: "Micro",
  5596. height: math.unit(6.8, "cm"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Normal",
  5601. height: math.unit(1.72, "m")
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(1.69, "meters"),
  5610. weight: math.unit(68, "kg"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/martin/front.svg",
  5614. extra: 596 / 581
  5615. }
  5616. }
  5617. },
  5618. [
  5619. {
  5620. name: "Micro",
  5621. height: math.unit(6.85, "cm"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(1.69, "m")
  5627. }
  5628. ]
  5629. ))
  5630. characterMakers.push(() => makeCharacter(
  5631. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5632. {
  5633. front: {
  5634. height: math.unit(1.69, "meters"),
  5635. weight: math.unit(68, "kg"),
  5636. name: "Front",
  5637. image: {
  5638. source: "./media/characters/juno/front.svg"
  5639. }
  5640. }
  5641. },
  5642. [
  5643. {
  5644. name: "Micro",
  5645. height: math.unit(7, "cm")
  5646. },
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(1.89, "m")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(353, "meters"),
  5654. default: true
  5655. }
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5660. {
  5661. front: {
  5662. height: math.unit(1.93, "meters"),
  5663. weight: math.unit(83, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/samantha/front.svg"
  5667. }
  5668. },
  5669. frontClothed: {
  5670. height: math.unit(1.93, "meters"),
  5671. weight: math.unit(83, "kg"),
  5672. name: "Front (Clothed)",
  5673. image: {
  5674. source: "./media/characters/samantha/front-clothed.svg"
  5675. }
  5676. },
  5677. back: {
  5678. height: math.unit(1.93, "meters"),
  5679. weight: math.unit(83, "kg"),
  5680. name: "Back",
  5681. image: {
  5682. source: "./media/characters/samantha/back.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(1.93, "m")
  5690. },
  5691. {
  5692. name: "Macro",
  5693. height: math.unit(74, "meters"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Macro+",
  5698. height: math.unit(223, "meters"),
  5699. },
  5700. {
  5701. name: "Megamacro",
  5702. height: math.unit(8381, "meters"),
  5703. },
  5704. {
  5705. name: "Megamacro+",
  5706. height: math.unit(12000, "kilometers")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(1.92, "meters"),
  5715. weight: math.unit(80, "kg"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/dr-clay/front.svg"
  5719. }
  5720. },
  5721. frontClothed: {
  5722. height: math.unit(1.92, "meters"),
  5723. weight: math.unit(80, "kg"),
  5724. name: "Front (Clothed)",
  5725. image: {
  5726. source: "./media/characters/dr-clay/front-clothed.svg"
  5727. }
  5728. }
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(1.92, "m")
  5734. },
  5735. {
  5736. name: "Macro",
  5737. height: math.unit(214, "meters"),
  5738. default: true
  5739. },
  5740. {
  5741. name: "Macro+",
  5742. height: math.unit(12.237, "meters"),
  5743. },
  5744. {
  5745. name: "Megamacro",
  5746. height: math.unit(557, "megameters"),
  5747. },
  5748. {
  5749. name: "Unimaginable",
  5750. height: math.unit(120e9, "lightyears")
  5751. },
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(2, "meters"),
  5759. weight: math.unit(80, "kg"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5763. }
  5764. }
  5765. },
  5766. [
  5767. {
  5768. name: "Teramacro",
  5769. height: math.unit(500000, "lightyears"),
  5770. default: true
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(2, "meters"),
  5779. weight: math.unit(150, "kg"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/vemus/front.svg",
  5783. extra: 2384 / 2084,
  5784. bottom: 0.0123
  5785. }
  5786. }
  5787. },
  5788. [
  5789. {
  5790. name: "Normal",
  5791. height: math.unit(3.75, "meters"),
  5792. default: true
  5793. },
  5794. {
  5795. name: "Big",
  5796. height: math.unit(8, "meters")
  5797. },
  5798. {
  5799. name: "Macro",
  5800. height: math.unit(100, "meters")
  5801. },
  5802. {
  5803. name: "Macro+",
  5804. height: math.unit(1500, "meters")
  5805. },
  5806. {
  5807. name: "Stellar",
  5808. height: math.unit(14e8, "meters")
  5809. },
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(2, "meters"),
  5817. weight: math.unit(70, "kg"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/beherit/front.svg",
  5821. extra: 1408 / 1242
  5822. }
  5823. }
  5824. },
  5825. [
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(6, "feet")
  5829. },
  5830. {
  5831. name: "Lorg",
  5832. height: math.unit(25, "feet"),
  5833. default: true
  5834. },
  5835. {
  5836. name: "Lorger",
  5837. height: math.unit(75, "feet")
  5838. },
  5839. {
  5840. name: "Macro",
  5841. height: math.unit(200, "meters")
  5842. },
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(2, "meters"),
  5850. weight: math.unit(150, "kg"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/everett/front.svg",
  5854. extra: 2038 / 1737,
  5855. bottom: 0.03
  5856. }
  5857. },
  5858. paw: {
  5859. height: math.unit(2 / 3.6, "meters"),
  5860. name: "Paw",
  5861. image: {
  5862. source: "./media/characters/everett/paw.svg"
  5863. }
  5864. },
  5865. },
  5866. [
  5867. {
  5868. name: "Normal",
  5869. height: math.unit(15, "feet"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Lorg",
  5874. height: math.unit(70, "feet"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Lorger",
  5879. height: math.unit(250, "feet")
  5880. },
  5881. {
  5882. name: "Macro",
  5883. height: math.unit(500, "meters")
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5889. {
  5890. front: {
  5891. height: math.unit(2, "meters"),
  5892. weight: math.unit(86, "kg"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/rose-lion/front.svg"
  5896. }
  5897. },
  5898. bent: {
  5899. height: math.unit(2 / 1.4288, "meters"),
  5900. weight: math.unit(86, "kg"),
  5901. name: "Bent",
  5902. image: {
  5903. source: "./media/characters/rose-lion/bent.svg"
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Mini-Micro",
  5910. height: math.unit(1, "cm")
  5911. },
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(3.5, "inches"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Normal",
  5919. height: math.unit(6 + 1 / 6, "feet")
  5920. },
  5921. {
  5922. name: "Mini-Macro",
  5923. height: math.unit(9 + 10 / 12, "feet")
  5924. },
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(2, "meters"),
  5932. weight: math.unit(350, "lbs"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/regal/front.svg"
  5936. }
  5937. },
  5938. back: {
  5939. height: math.unit(2, "meters"),
  5940. weight: math.unit(350, "lbs"),
  5941. name: "Back",
  5942. image: {
  5943. source: "./media/characters/regal/back.svg"
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(350, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(4 + 11 / 12, "feet"),
  5960. weight: math.unit(100, "lbs"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/opal/front.svg"
  5964. }
  5965. },
  5966. frontAlt: {
  5967. height: math.unit(4 + 11 / 12, "feet"),
  5968. weight: math.unit(100, "lbs"),
  5969. name: "Front (Alt)",
  5970. image: {
  5971. source: "./media/characters/opal/front-alt.svg"
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Small",
  5978. height: math.unit(4 + 11 / 12, "feet")
  5979. },
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(20, "feet"),
  5983. default: true
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(120, "feet")
  5988. },
  5989. {
  5990. name: "Megamacro",
  5991. height: math.unit(80, "miles")
  5992. },
  5993. {
  5994. name: "True Size",
  5995. height: math.unit(100000, "lightyears")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(200, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/vector-wuff/front.svg"
  6008. }
  6009. }
  6010. },
  6011. [
  6012. {
  6013. name: "Normal",
  6014. height: math.unit(2.8, "meters")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(450, "meters"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Megamacro",
  6023. height: math.unit(15, "kilometers")
  6024. }
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(256, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/dannik/front.svg"
  6036. }
  6037. }
  6038. },
  6039. [
  6040. {
  6041. name: "Macro",
  6042. height: math.unit(69.57, "meters"),
  6043. default: true
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(120, "lbs"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/azura-saharah/front.svg"
  6056. }
  6057. },
  6058. back: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(120, "lbs"),
  6061. name: "Back",
  6062. image: {
  6063. source: "./media/characters/azura-saharah/back.svg"
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(100, "feet"),
  6071. default: true
  6072. },
  6073. ]
  6074. ))
  6075. characterMakers.push(() => makeCharacter(
  6076. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6077. {
  6078. side: {
  6079. height: math.unit(5 + 4 / 12, "feet"),
  6080. weight: math.unit(163, "lbs"),
  6081. name: "Side",
  6082. image: {
  6083. source: "./media/characters/kennedy/side.svg"
  6084. }
  6085. }
  6086. },
  6087. [
  6088. {
  6089. name: "Standard Doggo",
  6090. height: math.unit(5 + 4 / 12, "feet")
  6091. },
  6092. {
  6093. name: "Big Doggo",
  6094. height: math.unit(25 + 3 / 12, "feet"),
  6095. default: true
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(90, "lbs"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/odi-lunar/front.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Micro",
  6114. height: math.unit(3, "inches"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(5.5, "feet")
  6120. }
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6125. {
  6126. back: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(220, "lbs"),
  6129. name: "Back",
  6130. image: {
  6131. source: "./media/characters/mandake/back.svg"
  6132. }
  6133. }
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(7, "feet"),
  6139. default: true
  6140. },
  6141. {
  6142. name: "Macro",
  6143. height: math.unit(78, "feet")
  6144. },
  6145. {
  6146. name: "Macro+",
  6147. height: math.unit(300, "meters")
  6148. },
  6149. {
  6150. name: "Macro++",
  6151. height: math.unit(2400, "feet")
  6152. },
  6153. {
  6154. name: "Megamacro",
  6155. height: math.unit(5167, "meters")
  6156. },
  6157. {
  6158. name: "Gigamacro",
  6159. height: math.unit(41769, "miles")
  6160. },
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6165. {
  6166. front: {
  6167. height: math.unit(6, "feet"),
  6168. weight: math.unit(120, "lbs"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/yozey/front.svg"
  6172. }
  6173. },
  6174. frontAlt: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(120, "lbs"),
  6177. name: "Front (Alt)",
  6178. image: {
  6179. source: "./media/characters/yozey/front-alt.svg"
  6180. }
  6181. },
  6182. side: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(120, "lbs"),
  6185. name: "Side",
  6186. image: {
  6187. source: "./media/characters/yozey/side.svg"
  6188. }
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Micro",
  6194. height: math.unit(3, "inches"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(6, "feet")
  6200. }
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6205. {
  6206. front: {
  6207. height: math.unit(6, "feet"),
  6208. weight: math.unit(103, "lbs"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/valeska-voss/front.svg"
  6212. }
  6213. }
  6214. },
  6215. [
  6216. {
  6217. name: "Mini-Sized Sub",
  6218. height: math.unit(3.1, "inches")
  6219. },
  6220. {
  6221. name: "Mid-Sized Sub",
  6222. height: math.unit(6.2, "inches")
  6223. },
  6224. {
  6225. name: "Full-Sized Sub",
  6226. height: math.unit(9.3, "inches")
  6227. },
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(5 + 2 / 12, "foot"),
  6231. default: true
  6232. },
  6233. ]
  6234. ))
  6235. characterMakers.push(() => makeCharacter(
  6236. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6237. {
  6238. front: {
  6239. height: math.unit(6, "feet"),
  6240. weight: math.unit(160, "lbs"),
  6241. name: "Front",
  6242. image: {
  6243. source: "./media/characters/gene-zeta/front.svg",
  6244. bottom: 0.03,
  6245. extra: 1
  6246. }
  6247. }
  6248. },
  6249. [
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(6.25, "foot"),
  6253. default: true
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(350, "lbs"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/razinox/front.svg",
  6266. extra: 1686 / 1548,
  6267. bottom: 28.2 / 1868
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(350, "lbs"),
  6273. name: "Back",
  6274. image: {
  6275. source: "./media/characters/razinox/back.svg",
  6276. extra: 1660 / 1590,
  6277. bottom: 15 / 1665
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(10 + 8 / 12, "foot")
  6285. },
  6286. {
  6287. name: "Minimacro",
  6288. height: math.unit(15, "foot")
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(60, "foot"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Megamacro",
  6297. height: math.unit(5, "miles")
  6298. },
  6299. {
  6300. name: "Gigamacro",
  6301. height: math.unit(6000, "miles")
  6302. },
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(150, "lbs"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/cobalt/front.svg"
  6314. }
  6315. }
  6316. },
  6317. [
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(8 + 1 / 12, "foot")
  6321. },
  6322. {
  6323. name: "Macro",
  6324. height: math.unit(111, "foot"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Supracosmic",
  6329. height: math.unit(1e42, "feet")
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(140, "lbs"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/amanda/front.svg"
  6342. }
  6343. }
  6344. },
  6345. [
  6346. {
  6347. name: "Micro",
  6348. height: math.unit(5, "inches"),
  6349. default: true
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(5.59, "feet"),
  6358. weight: math.unit(250, "lbs"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/teal/front.svg"
  6362. }
  6363. },
  6364. frontAlt: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(250, "lbs"),
  6367. name: "Front (Alt)",
  6368. image: {
  6369. source: "./media/characters/teal/front-alt.svg",
  6370. bottom: 0.04,
  6371. extra: 1
  6372. }
  6373. },
  6374. },
  6375. [
  6376. {
  6377. name: "Normal",
  6378. height: math.unit(12, "feet"),
  6379. default: true
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(300, "feet")
  6384. },
  6385. ]
  6386. ))
  6387. characterMakers.push(() => makeCharacter(
  6388. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6389. {
  6390. frontCat: {
  6391. height: math.unit(6, "feet"),
  6392. weight: math.unit(180, "lbs"),
  6393. name: "Front (Cat)",
  6394. image: {
  6395. source: "./media/characters/ravin-amulet/front-cat.svg"
  6396. }
  6397. },
  6398. frontCatAlt: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(180, "lbs"),
  6401. name: "Front (Alt, Cat)",
  6402. image: {
  6403. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6404. }
  6405. },
  6406. frontWerewolf: {
  6407. height: math.unit(6 * 1.2, "feet"),
  6408. weight: math.unit(225, "lbs"),
  6409. name: "Front (Werewolf)",
  6410. image: {
  6411. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6412. }
  6413. },
  6414. backWerewolf: {
  6415. height: math.unit(6 * 1.2, "feet"),
  6416. weight: math.unit(225, "lbs"),
  6417. name: "Back (Werewolf)",
  6418. image: {
  6419. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Nano",
  6426. height: math.unit(1, "micrometer")
  6427. },
  6428. {
  6429. name: "Micro",
  6430. height: math.unit(1, "inch")
  6431. },
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(6, "feet"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Macro",
  6439. height: math.unit(60, "feet")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(165, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/fluoresce/front.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Micro",
  6458. height: math.unit(6, "cm")
  6459. },
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(5 + 7 / 12, "feet"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(56, "feet")
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(1.9, "miles")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(9 + 6 / 12, "feet"),
  6480. weight: math.unit(523, "lbs"),
  6481. name: "Side",
  6482. image: {
  6483. source: "./media/characters/aurora/side.svg"
  6484. }
  6485. }
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(9 + 6 / 12, "feet")
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(96, "feet"),
  6495. default: true
  6496. },
  6497. {
  6498. name: "Macro+",
  6499. height: math.unit(243, "feet")
  6500. },
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(194, "cm"),
  6508. weight: math.unit(90, "kg"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/ranek/front.svg"
  6512. }
  6513. },
  6514. side: {
  6515. height: math.unit(194, "cm"),
  6516. weight: math.unit(90, "kg"),
  6517. name: "Side",
  6518. image: {
  6519. source: "./media/characters/ranek/side.svg"
  6520. }
  6521. },
  6522. back: {
  6523. height: math.unit(194, "cm"),
  6524. weight: math.unit(90, "kg"),
  6525. name: "Back",
  6526. image: {
  6527. source: "./media/characters/ranek/back.svg"
  6528. }
  6529. },
  6530. feral: {
  6531. height: math.unit(30, "cm"),
  6532. weight: math.unit(1.6, "lbs"),
  6533. name: "Feral",
  6534. image: {
  6535. source: "./media/characters/ranek/feral.svg"
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(194, "cm"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(100, "meters")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(5 + 6 / 12, "feet"),
  6556. weight: math.unit(153, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/andrew-cooper/front.svg"
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Nano",
  6566. height: math.unit(1, "mm")
  6567. },
  6568. {
  6569. name: "Micro",
  6570. height: math.unit(2, "inches")
  6571. },
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(5 + 6 / 12, "feet"),
  6575. default: true
  6576. }
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(180, "lbs"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/akane-sato/front.svg",
  6588. extra: 1219 / 1140
  6589. }
  6590. },
  6591. back: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(180, "lbs"),
  6594. name: "Back",
  6595. image: {
  6596. source: "./media/characters/akane-sato/back.svg",
  6597. extra: 1219 / 1170
  6598. }
  6599. },
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(2.5, "meters")
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(250, "meters"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(25, "km")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6619. {
  6620. front: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(65, "kg"),
  6623. name: "Front",
  6624. image: {
  6625. source: "./media/characters/rook/front.svg",
  6626. extra: 960 / 950
  6627. }
  6628. }
  6629. },
  6630. [
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(8.8, "feet")
  6634. },
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(88, "feet"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Megamacro",
  6642. height: math.unit(8, "miles")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(12 + 2 / 12, "feet"),
  6651. weight: math.unit(808, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/prodigy/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(12 + 2 / 12, "feet"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(143, "feet")
  6667. },
  6668. {
  6669. name: "Macro+",
  6670. height: math.unit(400, "feet")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(225, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/daniel/front.svg"
  6683. }
  6684. },
  6685. leaning: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(225, "lbs"),
  6688. name: "Leaning",
  6689. image: {
  6690. source: "./media/characters/daniel/leaning.svg"
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Macro",
  6697. height: math.unit(1000, "feet"),
  6698. default: true
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(88, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/chiros/front.svg",
  6711. extra: 306 / 226
  6712. }
  6713. },
  6714. side: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(88, "lbs"),
  6717. name: "Side",
  6718. image: {
  6719. source: "./media/characters/chiros/side.svg",
  6720. extra: 306 / 226
  6721. }
  6722. },
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(6, "cm"),
  6728. default: true
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6734. {
  6735. front: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(100, "lbs"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/selka/front.svg",
  6741. extra: 947 / 887
  6742. }
  6743. }
  6744. },
  6745. [
  6746. {
  6747. name: "Normal",
  6748. height: math.unit(5, "cm"),
  6749. default: true
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(8 + 3 / 12, "feet"),
  6758. weight: math.unit(424, "lbs"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/verin/front.svg",
  6762. extra: 1845 / 1550
  6763. }
  6764. },
  6765. frontArmored: {
  6766. height: math.unit(8 + 3 / 12, "feet"),
  6767. weight: math.unit(424, "lbs"),
  6768. name: "Front (Armored)",
  6769. image: {
  6770. source: "./media/characters/verin/front-armor.svg",
  6771. extra: 1845 / 1550,
  6772. bottom: 0.01
  6773. }
  6774. },
  6775. back: {
  6776. height: math.unit(8 + 3 / 12, "feet"),
  6777. weight: math.unit(424, "lbs"),
  6778. name: "Back",
  6779. image: {
  6780. source: "./media/characters/verin/back.svg",
  6781. bottom: 0.1,
  6782. extra: 1
  6783. }
  6784. },
  6785. foot: {
  6786. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6787. name: "Foot",
  6788. image: {
  6789. source: "./media/characters/verin/foot.svg"
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(8 + 3 / 12, "feet")
  6797. },
  6798. {
  6799. name: "Minimacro",
  6800. height: math.unit(21, "feet"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(626, "feet")
  6806. },
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(2.718, "meters"),
  6814. weight: math.unit(150, "lbs"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/sovrim-terraquian/front.svg"
  6818. }
  6819. },
  6820. back: {
  6821. height: math.unit(2.718, "meters"),
  6822. weight: math.unit(150, "lbs"),
  6823. name: "Back",
  6824. image: {
  6825. source: "./media/characters/sovrim-terraquian/back.svg"
  6826. }
  6827. }
  6828. },
  6829. [
  6830. {
  6831. name: "Micro",
  6832. height: math.unit(2, "inches")
  6833. },
  6834. {
  6835. name: "Small",
  6836. height: math.unit(1, "meter")
  6837. },
  6838. {
  6839. name: "Normal",
  6840. height: math.unit(Math.E, "meters"),
  6841. default: true
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(20, "meters")
  6846. },
  6847. {
  6848. name: "Macro+",
  6849. height: math.unit(400, "meters")
  6850. },
  6851. ]
  6852. ))
  6853. characterMakers.push(() => makeCharacter(
  6854. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6855. {
  6856. front: {
  6857. height: math.unit(7, "feet"),
  6858. weight: math.unit(489, "lbs"),
  6859. name: "Front",
  6860. image: {
  6861. source: "./media/characters/reece-silvermane/front.svg",
  6862. bottom: 0.02,
  6863. extra: 1
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(1.5, "miles"),
  6871. default: true
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(78, "kg"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/kane/front.svg",
  6884. extra: 978 / 899
  6885. }
  6886. },
  6887. },
  6888. [
  6889. {
  6890. name: "Normal",
  6891. height: math.unit(2.1, "m"),
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(1, "km"),
  6896. default: true
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(200, "kg"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/tegon/front.svg",
  6909. bottom: 0.01,
  6910. extra: 1
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(1, "inch")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(6 + 3 / 12, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(300, "feet")
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(69, "miles")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6936. {
  6937. side: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(2304, "lbs"),
  6940. name: "Side",
  6941. image: {
  6942. source: "./media/characters/arcturax/side.svg",
  6943. extra: 790 / 376,
  6944. bottom: 0.01
  6945. }
  6946. },
  6947. },
  6948. [
  6949. {
  6950. name: "Micro",
  6951. height: math.unit(2, "inch")
  6952. },
  6953. {
  6954. name: "Normal",
  6955. height: math.unit(6, "feet")
  6956. },
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(39, "feet"),
  6960. default: true
  6961. },
  6962. {
  6963. name: "Megamacro",
  6964. height: math.unit(7, "miles")
  6965. },
  6966. ]
  6967. ))
  6968. characterMakers.push(() => makeCharacter(
  6969. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6970. {
  6971. front: {
  6972. height: math.unit(6, "feet"),
  6973. weight: math.unit(50, "lbs"),
  6974. name: "Front",
  6975. image: {
  6976. source: "./media/characters/sentri/front.svg",
  6977. extra: 1750 / 1570,
  6978. bottom: 0.025
  6979. }
  6980. },
  6981. frontAlt: {
  6982. height: math.unit(6, "feet"),
  6983. weight: math.unit(50, "lbs"),
  6984. name: "Front (Alt)",
  6985. image: {
  6986. source: "./media/characters/sentri/front-alt.svg",
  6987. extra: 1750 / 1570,
  6988. bottom: 0.025
  6989. }
  6990. },
  6991. },
  6992. [
  6993. {
  6994. name: "Normal",
  6995. height: math.unit(15, "feet"),
  6996. default: true
  6997. },
  6998. {
  6999. name: "Macro",
  7000. height: math.unit(2500, "feet")
  7001. }
  7002. ]
  7003. ))
  7004. characterMakers.push(() => makeCharacter(
  7005. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7006. {
  7007. front: {
  7008. height: math.unit(5 + 8 / 12, "feet"),
  7009. weight: math.unit(130, "lbs"),
  7010. name: "Front",
  7011. image: {
  7012. source: "./media/characters/corvin/front.svg",
  7013. extra: 1803 / 1629
  7014. }
  7015. },
  7016. frontShirt: {
  7017. height: math.unit(5 + 8 / 12, "feet"),
  7018. weight: math.unit(130, "lbs"),
  7019. name: "Front (Shirt)",
  7020. image: {
  7021. source: "./media/characters/corvin/front-shirt.svg",
  7022. extra: 1803 / 1629
  7023. }
  7024. },
  7025. frontPoncho: {
  7026. height: math.unit(5 + 8 / 12, "feet"),
  7027. weight: math.unit(130, "lbs"),
  7028. name: "Front (Poncho)",
  7029. image: {
  7030. source: "./media/characters/corvin/front-poncho.svg",
  7031. extra: 1803 / 1629
  7032. }
  7033. },
  7034. side: {
  7035. height: math.unit(5 + 8 / 12, "feet"),
  7036. weight: math.unit(130, "lbs"),
  7037. name: "Side",
  7038. image: {
  7039. source: "./media/characters/corvin/side.svg",
  7040. extra: 1012 / 945
  7041. }
  7042. },
  7043. back: {
  7044. height: math.unit(5 + 8 / 12, "feet"),
  7045. weight: math.unit(130, "lbs"),
  7046. name: "Back",
  7047. image: {
  7048. source: "./media/characters/corvin/back.svg",
  7049. extra: 1803 / 1629
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Micro",
  7056. height: math.unit(3, "inches")
  7057. },
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(5 + 8 / 12, "feet")
  7061. },
  7062. {
  7063. name: "Macro",
  7064. height: math.unit(300, "feet"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Megamacro",
  7069. height: math.unit(500, "miles")
  7070. }
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(135, "lbs"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/q/front.svg",
  7082. extra: 854 / 752,
  7083. bottom: 0.005
  7084. }
  7085. },
  7086. back: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(130, "lbs"),
  7089. name: "Back",
  7090. image: {
  7091. source: "./media/characters/q/back.svg",
  7092. extra: 854 / 752
  7093. }
  7094. },
  7095. },
  7096. [
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(90, "feet"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Extra Macro",
  7104. height: math.unit(300, "feet"),
  7105. },
  7106. {
  7107. name: "BIG WALF",
  7108. height: math.unit(750, "feet"),
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(6, "feet"),
  7117. weight: math.unit(150, "lbs"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/carley/front.svg",
  7121. extra: 3927 / 3540,
  7122. bottom: 0.03
  7123. }
  7124. }
  7125. },
  7126. [
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(6 + 3 / 12, "feet")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(185, "feet"),
  7134. default: true
  7135. },
  7136. {
  7137. name: "Megamacro",
  7138. height: math.unit(8, "miles"),
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7144. {
  7145. front: {
  7146. height: math.unit(3, "feet"),
  7147. weight: math.unit(28, "lbs"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/citrine/front.svg"
  7151. }
  7152. }
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(3, "feet"),
  7158. default: true
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7164. {
  7165. front: {
  7166. height: math.unit(14, "feet"),
  7167. weight: math.unit(1450, "kg"),
  7168. capacity: math.unit(15, "people"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/aura-starwind/front.svg",
  7172. extra: 1455 / 1335
  7173. }
  7174. },
  7175. side: {
  7176. height: math.unit(14, "feet"),
  7177. weight: math.unit(1450, "kg"),
  7178. capacity: math.unit(15, "people"),
  7179. name: "Side",
  7180. image: {
  7181. source: "./media/characters/aura-starwind/side.svg",
  7182. extra: 1654 / 1497
  7183. }
  7184. },
  7185. taur: {
  7186. height: math.unit(18, "feet"),
  7187. weight: math.unit(5500, "kg"),
  7188. capacity: math.unit(50, "people"),
  7189. name: "Taur",
  7190. image: {
  7191. source: "./media/characters/aura-starwind/taur.svg",
  7192. extra: 1760 / 1650
  7193. }
  7194. },
  7195. feral: {
  7196. height: math.unit(46, "feet"),
  7197. weight: math.unit(25000, "kg"),
  7198. capacity: math.unit(120, "people"),
  7199. name: "Feral",
  7200. image: {
  7201. source: "./media/characters/aura-starwind/feral.svg"
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(14, "feet"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(50, "meters")
  7214. },
  7215. {
  7216. name: "Megamacro",
  7217. height: math.unit(5000, "meters")
  7218. },
  7219. {
  7220. name: "Gigamacro",
  7221. height: math.unit(100000, "kilometers")
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(2 + 7 / 12, "feet"),
  7230. weight: math.unit(32, "lbs"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/rivet/front.svg",
  7234. extra: 1716 / 1658,
  7235. bottom: 0.03
  7236. }
  7237. },
  7238. foot: {
  7239. height: math.unit(0.551, "feet"),
  7240. name: "Rivet's Foot",
  7241. image: {
  7242. source: "./media/characters/rivet/foot.svg"
  7243. },
  7244. rename: true
  7245. }
  7246. },
  7247. [
  7248. {
  7249. name: "Micro",
  7250. height: math.unit(1.5, "inches"),
  7251. },
  7252. {
  7253. name: "Normal",
  7254. height: math.unit(2 + 7 / 12, "feet"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Macro",
  7259. height: math.unit(85, "feet")
  7260. },
  7261. {
  7262. name: "Megamacro",
  7263. height: math.unit(2.2, "km")
  7264. }
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(5 + 9 / 12, "feet"),
  7272. weight: math.unit(150, "lbs"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/coffee/front.svg",
  7276. extra: 3666 / 3032,
  7277. bottom: 0.04
  7278. }
  7279. },
  7280. foot: {
  7281. height: math.unit(1.29, "feet"),
  7282. name: "Foot",
  7283. image: {
  7284. source: "./media/characters/coffee/foot.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Micro",
  7291. height: math.unit(2, "inches"),
  7292. },
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(5 + 9 / 12, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(800, "feet")
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(25, "miles")
  7305. }
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(200, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/chari-gal/front.svg",
  7317. extra: 1568 / 1385,
  7318. bottom: 0.047
  7319. }
  7320. },
  7321. gigantamax: {
  7322. height: math.unit(6 * 16, "feet"),
  7323. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7324. name: "Gigantamax",
  7325. image: {
  7326. source: "./media/characters/chari-gal/gigantamax.svg",
  7327. extra: 1124 / 888,
  7328. bottom: 0.03
  7329. }
  7330. },
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(5 + 7 / 12, "feet")
  7336. },
  7337. {
  7338. name: "Macro",
  7339. height: math.unit(200, "feet"),
  7340. default: true
  7341. }
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7346. {
  7347. front: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(150, "lbs"),
  7350. name: "Front",
  7351. image: {
  7352. source: "./media/characters/nova/front.svg",
  7353. extra: 5000 / 4722,
  7354. bottom: 0.02
  7355. }
  7356. }
  7357. },
  7358. [
  7359. {
  7360. name: "Micro-",
  7361. height: math.unit(0.8, "inches")
  7362. },
  7363. {
  7364. name: "Micro",
  7365. height: math.unit(2, "inches"),
  7366. default: true
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(3 + 1 / 12, "feet"),
  7375. weight: math.unit(21.7, "lbs"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/argent/front.svg",
  7379. extra: 1471 / 1331,
  7380. bottom: 100.8 / 1575.5
  7381. }
  7382. }
  7383. },
  7384. [
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(2, "inches")
  7388. },
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(3 + 1 / 12, "feet"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(120, "feet")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7402. {
  7403. lamp: {
  7404. height: math.unit(7 * 1559 / 989, "feet"),
  7405. name: "Magic Lamp",
  7406. image: {
  7407. source: "./media/characters/mira-al-cul/lamp.svg",
  7408. extra: 1617 / 1559
  7409. }
  7410. },
  7411. front: {
  7412. height: math.unit(7, "feet"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/mira-al-cul/front.svg",
  7416. extra: 1044 / 990
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Heavily Restricted",
  7423. height: math.unit(7 * 1559 / 989, "feet")
  7424. },
  7425. {
  7426. name: "Freshly Freed",
  7427. height: math.unit(50 * 1559 / 989, "feet")
  7428. },
  7429. {
  7430. name: "World Encompassing",
  7431. height: math.unit(10000 * 1559 / 989, "miles")
  7432. },
  7433. {
  7434. name: "Galactic",
  7435. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7436. },
  7437. {
  7438. name: "Palmed Universe",
  7439. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Multiversal Matriarch",
  7444. height: math.unit(8.87e10, "yottameters")
  7445. },
  7446. {
  7447. name: "Void Mother",
  7448. height: math.unit(3.14e110, "yottaparsecs")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7454. {
  7455. front: {
  7456. height: math.unit(17 + 1 / 12, "feet"),
  7457. weight: math.unit(476.2 * 5, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/kuro-shi-uchū/front.svg",
  7461. extra: 2329 / 1835,
  7462. bottom: 0.02
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Micro",
  7469. height: math.unit(2, "inches")
  7470. },
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(12, "meters")
  7474. },
  7475. {
  7476. name: "Planetary",
  7477. height: math.unit(0.00929, "AU"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Universal",
  7482. height: math.unit(20, "gigaparsecs")
  7483. },
  7484. ]
  7485. ))
  7486. characterMakers.push(() => makeCharacter(
  7487. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7488. {
  7489. front: {
  7490. height: math.unit(5 + 2 / 12, "feet"),
  7491. weight: math.unit(120, "lbs"),
  7492. name: "Front",
  7493. image: {
  7494. source: "./media/characters/katherine/front.svg",
  7495. extra: 2075 / 1969
  7496. }
  7497. },
  7498. dress: {
  7499. height: math.unit(5 + 2 / 12, "feet"),
  7500. weight: math.unit(120, "lbs"),
  7501. name: "Dress",
  7502. image: {
  7503. source: "./media/characters/katherine/dress.svg",
  7504. extra: 2258 / 2064
  7505. }
  7506. },
  7507. },
  7508. [
  7509. {
  7510. name: "Micro",
  7511. height: math.unit(1, "inches"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(5 + 2 / 12, "feet")
  7517. },
  7518. {
  7519. name: "Macro",
  7520. height: math.unit(100, "meters")
  7521. },
  7522. {
  7523. name: "Megamacro",
  7524. height: math.unit(80, "miles")
  7525. },
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7530. {
  7531. front: {
  7532. height: math.unit(7 + 8 / 12, "feet"),
  7533. weight: math.unit(250, "lbs"),
  7534. name: "Front",
  7535. image: {
  7536. source: "./media/characters/yevis/front.svg",
  7537. extra: 1938 / 1755
  7538. }
  7539. }
  7540. },
  7541. [
  7542. {
  7543. name: "Mortal",
  7544. height: math.unit(7 + 8 / 12, "feet")
  7545. },
  7546. {
  7547. name: "Battle",
  7548. height: math.unit(25 + 11 / 12, "feet")
  7549. },
  7550. {
  7551. name: "Wrath",
  7552. height: math.unit(1654 + 11 / 12, "feet")
  7553. },
  7554. {
  7555. name: "Planet Destroyer",
  7556. height: math.unit(12000, "miles")
  7557. },
  7558. {
  7559. name: "Galaxy Conqueror",
  7560. height: math.unit(1.45, "zettameters"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Universal War",
  7565. height: math.unit(184, "gigaparsecs")
  7566. },
  7567. {
  7568. name: "Eternity War",
  7569. height: math.unit(1.98e55, "yottaparsecs")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(5 + 8 / 12, "feet"),
  7578. weight: math.unit(63, "kg"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/xavier/front.svg",
  7582. extra: 944 / 883
  7583. }
  7584. },
  7585. frontStretch: {
  7586. height: math.unit(5 + 8 / 12, "feet"),
  7587. weight: math.unit(63, "kg"),
  7588. name: "Stretching",
  7589. image: {
  7590. source: "./media/characters/xavier/front-stretch.svg",
  7591. extra: 962 / 820
  7592. }
  7593. },
  7594. },
  7595. [
  7596. {
  7597. name: "Normal",
  7598. height: math.unit(5 + 8 / 12, "feet")
  7599. },
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(100, "meters"),
  7603. default: true
  7604. },
  7605. {
  7606. name: "McLargeHuge",
  7607. height: math.unit(10, "miles")
  7608. },
  7609. ]
  7610. ))
  7611. characterMakers.push(() => makeCharacter(
  7612. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7613. {
  7614. front: {
  7615. height: math.unit(5 + 5 / 12, "feet"),
  7616. weight: math.unit(150, "lb"),
  7617. name: "Front",
  7618. image: {
  7619. source: "./media/characters/joshii/front.svg"
  7620. }
  7621. },
  7622. foot: {
  7623. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7624. name: "Foot",
  7625. image: {
  7626. source: "./media/characters/joshii/foot.svg"
  7627. }
  7628. },
  7629. },
  7630. [
  7631. {
  7632. name: "Micro",
  7633. height: math.unit(2, "inches")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(5 + 5 / 12, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(785, "feet")
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(24.5, "miles")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(150, "lb"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/goddess-elizabeth/front.svg",
  7659. extra: 1800 / 1525,
  7660. bottom: 0.005
  7661. }
  7662. },
  7663. foot: {
  7664. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7665. name: "Foot",
  7666. image: {
  7667. source: "./media/characters/goddess-elizabeth/foot.svg"
  7668. }
  7669. },
  7670. mouth: {
  7671. height: math.unit(6, "feet"),
  7672. name: "Mouth",
  7673. image: {
  7674. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7675. }
  7676. },
  7677. },
  7678. [
  7679. {
  7680. name: "Micro",
  7681. height: math.unit(12, "feet")
  7682. },
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(80, "miles"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Macro",
  7690. height: math.unit(15000, "parsecs")
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(5 + 9 / 12, "feet"),
  7699. weight: math.unit(144, "lb"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/kara/front.svg"
  7703. }
  7704. },
  7705. feet: {
  7706. height: math.unit(6 / 6.765, "feet"),
  7707. name: "Kara's Feet",
  7708. rename: true,
  7709. image: {
  7710. source: "./media/characters/kara/feet.svg"
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Normal",
  7717. height: math.unit(5 + 9 / 12, "feet")
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(174, "feet"),
  7722. default: true
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(18, "feet"),
  7731. weight: math.unit(4050, "lb"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/tyrone/front.svg",
  7735. extra: 2520 / 2402,
  7736. bottom: 0.025
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(18, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(300, "feet")
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(7 + 8 / 12, "feet"),
  7757. weight: math.unit(120, "lb"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/danny/front.svg",
  7761. extra: 1490 / 1350
  7762. }
  7763. },
  7764. back: {
  7765. height: math.unit(7 + 8 / 12, "feet"),
  7766. weight: math.unit(120, "lb"),
  7767. name: "Back",
  7768. image: {
  7769. source: "./media/characters/danny/back.svg",
  7770. extra: 1490 / 1350
  7771. }
  7772. },
  7773. },
  7774. [
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(7 + 8 / 12, "feet"),
  7778. default: true
  7779. },
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7784. {
  7785. front: {
  7786. height: math.unit(3.5, "inches"),
  7787. weight: math.unit(19, "grams"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/mallow/front.svg",
  7791. extra: 471 / 431
  7792. }
  7793. },
  7794. back: {
  7795. height: math.unit(3.5, "inches"),
  7796. weight: math.unit(19, "grams"),
  7797. name: "Back",
  7798. image: {
  7799. source: "./media/characters/mallow/back.svg",
  7800. extra: 471 / 431
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(3.5, "inches"),
  7808. default: true
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(9, "feet"),
  7817. weight: math.unit(230, "kg"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/starry-aqua/front.svg"
  7821. }
  7822. },
  7823. back: {
  7824. height: math.unit(9, "feet"),
  7825. weight: math.unit(230, "kg"),
  7826. name: "Back",
  7827. image: {
  7828. source: "./media/characters/starry-aqua/back.svg"
  7829. }
  7830. },
  7831. hand: {
  7832. height: math.unit(9 * 0.1168, "feet"),
  7833. name: "Hand",
  7834. image: {
  7835. source: "./media/characters/starry-aqua/hand.svg"
  7836. }
  7837. },
  7838. foot: {
  7839. height: math.unit(9 * 0.18, "feet"),
  7840. name: "Foot",
  7841. image: {
  7842. source: "./media/characters/starry-aqua/foot.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(3, "inches")
  7850. },
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(9, "feet")
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(300, "feet"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(3200, "feet")
  7863. }
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(230, "lb"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/luka/front.svg",
  7875. extra: 1,
  7876. bottom: 0.025
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(12 + 8 / 12, "feet"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Minimacro",
  7888. height: math.unit(20, "feet")
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(250, "feet")
  7893. },
  7894. {
  7895. name: "Megamacro",
  7896. height: math.unit(5, "miles")
  7897. },
  7898. {
  7899. name: "Gigamacro",
  7900. height: math.unit(8000, "miles")
  7901. },
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7906. {
  7907. front: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(150, "lb"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/natalie-nightring/front.svg",
  7913. extra: 1,
  7914. bottom: 0.06
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Uh Oh",
  7921. height: math.unit(0.1, "mm")
  7922. },
  7923. {
  7924. name: "Small",
  7925. height: math.unit(3, "inches")
  7926. },
  7927. {
  7928. name: "Human Scale",
  7929. height: math.unit(6, "feet")
  7930. },
  7931. {
  7932. name: "Librarian",
  7933. height: math.unit(50, "feet"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Immense",
  7938. height: math.unit(200, "miles")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(180, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/danni-rosie/front.svg",
  7951. extra: 1260 / 1128,
  7952. bottom: 0.022
  7953. }
  7954. },
  7955. },
  7956. [
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(2, "inches"),
  7960. default: true
  7961. },
  7962. ]
  7963. ))
  7964. characterMakers.push(() => makeCharacter(
  7965. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7966. {
  7967. front: {
  7968. height: math.unit(5 + 9 / 12, "feet"),
  7969. weight: math.unit(220, "lb"),
  7970. name: "Front",
  7971. image: {
  7972. source: "./media/characters/samantha-kruse/front.svg",
  7973. extra: (985 / 935),
  7974. bottom: 0.03
  7975. }
  7976. },
  7977. frontUndressed: {
  7978. height: math.unit(5 + 9 / 12, "feet"),
  7979. weight: math.unit(220, "lb"),
  7980. name: "Front (Undressed)",
  7981. image: {
  7982. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7983. extra: (973 / 923),
  7984. bottom: 0.025
  7985. }
  7986. },
  7987. fat: {
  7988. height: math.unit(5 + 9 / 12, "feet"),
  7989. weight: math.unit(900, "lb"),
  7990. name: "Front (Fat)",
  7991. image: {
  7992. source: "./media/characters/samantha-kruse/fat.svg",
  7993. extra: 2688 / 2561
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(5 + 9 / 12, "feet"),
  8001. default: true
  8002. }
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8007. {
  8008. back: {
  8009. height: math.unit(5 + 4 / 12, "feet"),
  8010. weight: math.unit(4963, "lb"),
  8011. name: "Back",
  8012. image: {
  8013. source: "./media/characters/amelia-rosie/back.svg",
  8014. extra: 1113 / 963,
  8015. bottom: 0.01
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Level 0",
  8022. height: math.unit(5 + 4 / 12, "feet")
  8023. },
  8024. {
  8025. name: "Level 1",
  8026. height: math.unit(164597, "feet"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Level 2",
  8031. height: math.unit(956243, "miles")
  8032. },
  8033. {
  8034. name: "Level 3",
  8035. height: math.unit(29421709423, "miles")
  8036. },
  8037. {
  8038. name: "Level 4",
  8039. height: math.unit(154, "lightyears")
  8040. },
  8041. {
  8042. name: "Level 5",
  8043. height: math.unit(4738272, "lightyears")
  8044. },
  8045. {
  8046. name: "Level 6",
  8047. height: math.unit(145787152896, "lightyears")
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(5 + 11 / 12, "feet"),
  8056. weight: math.unit(65, "kg"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/rook-kitara/front.svg",
  8060. extra: 1347 / 1274,
  8061. bottom: 0.005
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Totally Unfair",
  8068. height: math.unit(1.8, "mm")
  8069. },
  8070. {
  8071. name: "Lap Rookie",
  8072. height: math.unit(1.4, "feet")
  8073. },
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(5 + 11 / 12, "feet"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "How Did This Happen",
  8081. height: math.unit(80, "miles")
  8082. }
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(7, "feet"),
  8090. weight: math.unit(300, "lb"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/pisces/front.svg",
  8094. extra: 2255 / 2115,
  8095. bottom: 0.03
  8096. }
  8097. },
  8098. back: {
  8099. height: math.unit(7, "feet"),
  8100. weight: math.unit(300, "lb"),
  8101. name: "Back",
  8102. image: {
  8103. source: "./media/characters/pisces/back.svg",
  8104. extra: 2146 / 2055,
  8105. bottom: 0.04
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(7, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Swimming Pool",
  8117. height: math.unit(12.2, "meters")
  8118. },
  8119. {
  8120. name: "Olympic Swimming Pool",
  8121. height: math.unit(56.3, "meters")
  8122. },
  8123. {
  8124. name: "Lake Superior",
  8125. height: math.unit(93900, "meters")
  8126. },
  8127. {
  8128. name: "Mediterranean Sea",
  8129. height: math.unit(644457, "meters")
  8130. },
  8131. {
  8132. name: "World's Oceans",
  8133. height: math.unit(4567491, "meters")
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8139. {
  8140. front: {
  8141. height: math.unit(2.3, "meters"),
  8142. weight: math.unit(120, "kg"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/zelas/front.svg"
  8146. }
  8147. },
  8148. side: {
  8149. height: math.unit(2.3, "meters"),
  8150. weight: math.unit(120, "kg"),
  8151. name: "Side",
  8152. image: {
  8153. source: "./media/characters/zelas/side.svg"
  8154. }
  8155. },
  8156. back: {
  8157. height: math.unit(2.3, "meters"),
  8158. weight: math.unit(120, "kg"),
  8159. name: "Back",
  8160. image: {
  8161. source: "./media/characters/zelas/back.svg"
  8162. }
  8163. },
  8164. foot: {
  8165. height: math.unit(1.116, "feet"),
  8166. name: "Foot",
  8167. image: {
  8168. source: "./media/characters/zelas/foot.svg"
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(2.3, "meters")
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(30, "meters"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(1, "inch"),
  8189. weight: math.unit(0.21, "grams"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/talbot/front.svg",
  8193. extra: 594 / 544
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Micro",
  8200. height: math.unit(1, "inch"),
  8201. default: true
  8202. },
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8207. {
  8208. front: {
  8209. height: math.unit(3 + 3 / 12, "feet"),
  8210. weight: math.unit(51.8, "lb"),
  8211. name: "Front",
  8212. image: {
  8213. source: "./media/characters/fliss/front.svg",
  8214. extra: 840 / 640
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Teeny Tiny",
  8221. height: math.unit(1, "mm")
  8222. },
  8223. {
  8224. name: "Small",
  8225. height: math.unit(1, "inch"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Standard Sylveon",
  8230. height: math.unit(3 + 3 / 12, "feet")
  8231. },
  8232. {
  8233. name: "Large Nuisance",
  8234. height: math.unit(33, "feet")
  8235. },
  8236. {
  8237. name: "City Filler",
  8238. height: math.unit(3000, "feet")
  8239. },
  8240. {
  8241. name: "New Horizon",
  8242. height: math.unit(6000, "miles")
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(5, "cm"),
  8251. weight: math.unit(1.94, "g"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/fleta/front.svg",
  8255. extra: 835 / 803
  8256. }
  8257. },
  8258. back: {
  8259. height: math.unit(5, "cm"),
  8260. weight: math.unit(1.94, "g"),
  8261. name: "Back",
  8262. image: {
  8263. source: "./media/characters/fleta/back.svg",
  8264. extra: 835 / 803
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Micro",
  8271. height: math.unit(5, "cm"),
  8272. default: true
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(225, "lb"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/dominic/front.svg",
  8285. extra: 1770 / 1620,
  8286. bottom: 0.025
  8287. }
  8288. },
  8289. back: {
  8290. height: math.unit(6, "feet"),
  8291. weight: math.unit(225, "lb"),
  8292. name: "Back",
  8293. image: {
  8294. source: "./media/characters/dominic/back.svg",
  8295. extra: 1745 / 1620,
  8296. bottom: 0.065
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Nano",
  8303. height: math.unit(0.1, "mm")
  8304. },
  8305. {
  8306. name: "Micro-",
  8307. height: math.unit(1, "mm")
  8308. },
  8309. {
  8310. name: "Micro",
  8311. height: math.unit(4, "inches")
  8312. },
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(6 + 4 / 12, "feet"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(115, "feet")
  8321. },
  8322. {
  8323. name: "Macro+",
  8324. height: math.unit(955, "feet")
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(8990, "feet")
  8329. },
  8330. {
  8331. name: "Gigmacro",
  8332. height: math.unit(9310, "miles")
  8333. },
  8334. {
  8335. name: "Teramacro",
  8336. height: math.unit(1567005010, "miles")
  8337. },
  8338. {
  8339. name: "Examacro",
  8340. height: math.unit(1425, "parsecs")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(400, "feet"),
  8349. weight: math.unit(44444444, "lb"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/major-colonel/front.svg"
  8353. }
  8354. },
  8355. back: {
  8356. height: math.unit(400, "feet"),
  8357. weight: math.unit(44444444, "lb"),
  8358. name: "Back",
  8359. image: {
  8360. source: "./media/characters/major-colonel/back.svg"
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(400, "feet"),
  8368. default: true
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8374. {
  8375. catFront: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(120, "lb"),
  8378. name: "Front (Cat Side)",
  8379. image: {
  8380. source: "./media/characters/axel-lycan/cat-front.svg",
  8381. extra: 430 / 402,
  8382. bottom: 43 / 472.35
  8383. }
  8384. },
  8385. catBack: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(120, "lb"),
  8388. name: "Back (Cat Side)",
  8389. image: {
  8390. source: "./media/characters/axel-lycan/cat-back.svg",
  8391. extra: 447 / 419,
  8392. bottom: 23.3 / 469
  8393. }
  8394. },
  8395. wolfFront: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(120, "lb"),
  8398. name: "Front (Wolf Side)",
  8399. image: {
  8400. source: "./media/characters/axel-lycan/wolf-front.svg",
  8401. extra: 485 / 456,
  8402. bottom: 19 / 504
  8403. }
  8404. },
  8405. wolfBack: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(120, "lb"),
  8408. name: "Back (Wolf Side)",
  8409. image: {
  8410. source: "./media/characters/axel-lycan/wolf-back.svg",
  8411. extra: 475 / 438,
  8412. bottom: 39.2 / 514
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Macro",
  8419. height: math.unit(1, "km"),
  8420. default: true
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(5 + 9 / 12, "feet"),
  8429. weight: math.unit(175, "lb"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/vanrel-hyena/front.svg",
  8433. extra: 1086 / 1010,
  8434. bottom: 0.04
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(5 + 9 / 12, "feet"),
  8442. default: true
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(6, "feet"),
  8451. weight: math.unit(103, "lb"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/abbott-absol/front.svg",
  8455. extra: 2010 / 1842
  8456. }
  8457. },
  8458. },
  8459. [
  8460. {
  8461. name: "Megamicro",
  8462. height: math.unit(0.1, "mm")
  8463. },
  8464. {
  8465. name: "Micro",
  8466. height: math.unit(1, "inch")
  8467. },
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(6, "feet"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(264, "lb"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/hector/front.svg",
  8484. extra: 2280 / 2130,
  8485. bottom: 0.07
  8486. }
  8487. },
  8488. },
  8489. [
  8490. {
  8491. name: "Normal",
  8492. height: math.unit(12.25, "foot"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(160, "feet")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(150, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/sal/front.svg",
  8510. extra: 1846 / 1699,
  8511. bottom: 0.04
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Megamacro",
  8518. height: math.unit(10, "miles"),
  8519. default: true
  8520. },
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8525. {
  8526. front: {
  8527. height: math.unit(3, "meters"),
  8528. weight: math.unit(450, "kg"),
  8529. name: "front",
  8530. image: {
  8531. source: "./media/characters/ranger/front.svg",
  8532. extra: 2401 / 2243,
  8533. bottom: 0.05
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(3, "meters"),
  8541. default: true
  8542. },
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(14, "feet"),
  8550. weight: math.unit(800, "kg"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/theresa/front.svg",
  8554. extra: 3575 / 3346,
  8555. bottom: 0.03
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Normal",
  8562. height: math.unit(14, "feet"),
  8563. default: true
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8569. {
  8570. front: {
  8571. height: math.unit(6, "feet"),
  8572. weight: math.unit(3, "kg"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/ine/front.svg",
  8576. extra: 678 / 539,
  8577. bottom: 0.023
  8578. }
  8579. },
  8580. },
  8581. [
  8582. {
  8583. name: "Normal",
  8584. height: math.unit(2.265, "feet"),
  8585. default: true
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(5, "feet"),
  8594. weight: math.unit(30, "kg"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/vial/front.svg",
  8598. extra: 1365 / 1277,
  8599. bottom: 0.04
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(5, "feet"),
  8607. default: true
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8613. {
  8614. side: {
  8615. height: math.unit(3.4, "meters"),
  8616. weight: math.unit(1000, "lb"),
  8617. name: "Side",
  8618. image: {
  8619. source: "./media/characters/rovoska/side.svg",
  8620. extra: 4403 / 1515
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Normal",
  8627. height: math.unit(3.4, "meters"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(8, "feet"),
  8637. weight: math.unit(315, "lb"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/gunner-rotthbauer/front.svg"
  8641. }
  8642. },
  8643. back: {
  8644. height: math.unit(8, "feet"),
  8645. weight: math.unit(315, "lb"),
  8646. name: "Back",
  8647. image: {
  8648. source: "./media/characters/gunner-rotthbauer/back.svg"
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Micro",
  8655. height: math.unit(3.5, "inches")
  8656. },
  8657. {
  8658. name: "Normal",
  8659. height: math.unit(8, "feet"),
  8660. default: true
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(250, "feet")
  8665. },
  8666. {
  8667. name: "Megamacro",
  8668. height: math.unit(1, "AU")
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5 + 5 / 12, "feet"),
  8677. weight: math.unit(140, "lb"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/allatia/front.svg",
  8681. extra: 1227 / 1180,
  8682. bottom: 0.027
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(5 + 5 / 12, "feet")
  8690. },
  8691. {
  8692. name: "Macro",
  8693. height: math.unit(250, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Megamacro",
  8698. height: math.unit(8, "miles")
  8699. }
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(6, "feet"),
  8707. weight: math.unit(120, "lb"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/tene/front.svg",
  8711. extra: 1728 / 1578,
  8712. bottom: 0.022
  8713. }
  8714. },
  8715. stomping: {
  8716. height: math.unit(2.025, "meters"),
  8717. weight: math.unit(120, "lb"),
  8718. name: "Stomping",
  8719. image: {
  8720. source: "./media/characters/tene/stomping.svg",
  8721. extra: 938 / 873,
  8722. bottom: 0.01
  8723. }
  8724. },
  8725. sitting: {
  8726. height: math.unit(1, "meter"),
  8727. weight: math.unit(120, "lb"),
  8728. name: "Sitting",
  8729. image: {
  8730. source: "./media/characters/tene/sitting.svg",
  8731. extra: 437 / 415,
  8732. bottom: 0.1
  8733. }
  8734. },
  8735. feral: {
  8736. height: math.unit(3.9, "feet"),
  8737. weight: math.unit(250, "lb"),
  8738. name: "Feral",
  8739. image: {
  8740. source: "./media/characters/tene/feral.svg",
  8741. extra: 717 / 458,
  8742. bottom: 0.179
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(6, "feet")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(300, "feet"),
  8754. default: true
  8755. },
  8756. {
  8757. name: "Megamacro",
  8758. height: math.unit(5, "miles")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8764. {
  8765. side: {
  8766. height: math.unit(6, "feet"),
  8767. name: "Side",
  8768. image: {
  8769. source: "./media/characters/evander/side.svg",
  8770. extra: 877 / 477
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(0.83, "meters"),
  8778. default: true
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(12, "feet"),
  8787. weight: math.unit(1000, "lb"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8791. extra: 1762 / 1611
  8792. }
  8793. },
  8794. back: {
  8795. height: math.unit(12, "feet"),
  8796. weight: math.unit(1000, "lb"),
  8797. name: "Back",
  8798. image: {
  8799. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8800. extra: 1762 / 1611
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(12, "feet"),
  8808. default: true
  8809. },
  8810. {
  8811. name: "Kaiju",
  8812. height: math.unit(150, "feet")
  8813. },
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8818. {
  8819. front: {
  8820. height: math.unit(6, "feet"),
  8821. weight: math.unit(150, "lb"),
  8822. name: "Front",
  8823. image: {
  8824. source: "./media/characters/zero-alurus/front.svg"
  8825. }
  8826. },
  8827. back: {
  8828. height: math.unit(6, "feet"),
  8829. weight: math.unit(150, "lb"),
  8830. name: "Back",
  8831. image: {
  8832. source: "./media/characters/zero-alurus/back.svg"
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(5 + 10 / 12, "feet")
  8840. },
  8841. {
  8842. name: "Macro",
  8843. height: math.unit(60, "feet"),
  8844. default: true
  8845. },
  8846. {
  8847. name: "Macro+",
  8848. height: math.unit(450, "feet")
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(200, "lb"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/mega-shi/front.svg",
  8861. extra: 1279 / 1250,
  8862. bottom: 0.02
  8863. }
  8864. },
  8865. back: {
  8866. height: math.unit(6, "feet"),
  8867. weight: math.unit(200, "lb"),
  8868. name: "Back",
  8869. image: {
  8870. source: "./media/characters/mega-shi/back.svg",
  8871. extra: 1279 / 1250,
  8872. bottom: 0.02
  8873. }
  8874. },
  8875. },
  8876. [
  8877. {
  8878. name: "Micro",
  8879. height: math.unit(16 + 6 / 12, "feet")
  8880. },
  8881. {
  8882. name: "Third Dimension",
  8883. height: math.unit(40, "meters")
  8884. },
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(660, "feet"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Megamacro",
  8892. height: math.unit(10, "miles")
  8893. },
  8894. {
  8895. name: "Planetary Launch",
  8896. height: math.unit(500, "miles")
  8897. },
  8898. {
  8899. name: "Interstellar",
  8900. height: math.unit(1e9, "miles")
  8901. },
  8902. {
  8903. name: "Leaving the Universe",
  8904. height: math.unit(1, "gigaparsec")
  8905. },
  8906. {
  8907. name: "Travelling Universes",
  8908. height: math.unit(30e15, "parsecs")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(150, "lb"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/odyssey/front.svg",
  8921. extra: 1782 / 1582,
  8922. bottom: 0.01
  8923. }
  8924. },
  8925. side: {
  8926. height: math.unit(5.7, "feet"),
  8927. weight: math.unit(140, "lb"),
  8928. name: "Side",
  8929. image: {
  8930. source: "./media/characters/odyssey/side.svg",
  8931. extra: 6462 / 5700
  8932. }
  8933. },
  8934. },
  8935. [
  8936. {
  8937. name: "Normal",
  8938. height: math.unit(5 + 4 / 12, "feet")
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(1, "km")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(3000, "km")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(1, "AU"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Omniversal",
  8955. height: math.unit(100e14, "lightyears")
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(6, "feet"),
  8964. weight: math.unit(300, "lb"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/mekuto/front.svg",
  8968. extra: 921 / 832,
  8969. bottom: 0.03
  8970. }
  8971. },
  8972. hand: {
  8973. height: math.unit(6 / 10.24, "feet"),
  8974. name: "Hand",
  8975. image: {
  8976. source: "./media/characters/mekuto/hand.svg"
  8977. }
  8978. },
  8979. foot: {
  8980. height: math.unit(6 / 5.05, "feet"),
  8981. name: "Foot",
  8982. image: {
  8983. source: "./media/characters/mekuto/foot.svg"
  8984. }
  8985. },
  8986. },
  8987. [
  8988. {
  8989. name: "Minimicro",
  8990. height: math.unit(0.2, "inches")
  8991. },
  8992. {
  8993. name: "Micro",
  8994. height: math.unit(1.5, "inches")
  8995. },
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(5 + 11 / 12, "feet"),
  8999. default: true
  9000. },
  9001. {
  9002. name: "Minimacro",
  9003. height: math.unit(17 + 9 / 12, "feet")
  9004. },
  9005. {
  9006. name: "Macro",
  9007. height: math.unit(177.5, "feet")
  9008. },
  9009. {
  9010. name: "Megamacro",
  9011. height: math.unit(152, "miles")
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(6.5, "inches"),
  9020. weight: math.unit(13, "oz"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/dafydd-tomos/front.svg",
  9024. extra: 2990 / 2603,
  9025. bottom: 0.03
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Micro",
  9032. height: math.unit(6.5, "inches"),
  9033. default: true
  9034. },
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(150, "lb"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/splinter/front.svg",
  9046. extra: 2990 / 2882,
  9047. bottom: 0.04
  9048. }
  9049. },
  9050. back: {
  9051. height: math.unit(6, "feet"),
  9052. weight: math.unit(150, "lb"),
  9053. name: "Back",
  9054. image: {
  9055. source: "./media/characters/splinter/back.svg",
  9056. extra: 2990 / 2882,
  9057. bottom: 0.04
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(6, "feet")
  9065. },
  9066. {
  9067. name: "Macro",
  9068. height: math.unit(230, "meters"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(4 + 10 / 12, "feet"),
  9078. weight: math.unit(480, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/snow-gabumon/front.svg",
  9082. extra: 1140 / 963,
  9083. bottom: 0.058
  9084. }
  9085. },
  9086. back: {
  9087. height: math.unit(4 + 10 / 12, "feet"),
  9088. weight: math.unit(480, "lb"),
  9089. name: "Back",
  9090. image: {
  9091. source: "./media/characters/snow-gabumon/back.svg",
  9092. extra: 1115 / 962,
  9093. bottom: 0.041
  9094. }
  9095. },
  9096. frontUndresed: {
  9097. height: math.unit(4 + 10 / 12, "feet"),
  9098. weight: math.unit(480, "lb"),
  9099. name: "Front (Undressed)",
  9100. image: {
  9101. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9102. extra: 1061 / 960,
  9103. bottom: 0.045
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(1, "inch")
  9111. },
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(4 + 10 / 12, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(200, "feet")
  9120. },
  9121. {
  9122. name: "Megamacro",
  9123. height: math.unit(120, "miles")
  9124. },
  9125. {
  9126. name: "Gigamacro",
  9127. height: math.unit(9800, "miles")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(1.7, "meters"),
  9136. weight: math.unit(140, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/moody/front.svg",
  9140. extra: 3226 / 3007,
  9141. bottom: 0.087
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(1, "mm")
  9149. },
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(1.7, "meters"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Macro",
  9157. height: math.unit(80, "meters")
  9158. },
  9159. {
  9160. name: "Macro+",
  9161. height: math.unit(500, "meters")
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(150, "lb"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/zyas/front.svg",
  9174. extra: 1180 / 1120,
  9175. bottom: 0.045
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(10, "feet"),
  9183. default: true
  9184. },
  9185. {
  9186. name: "Macro",
  9187. height: math.unit(500, "feet")
  9188. },
  9189. {
  9190. name: "Megamacro",
  9191. height: math.unit(5, "miles")
  9192. },
  9193. {
  9194. name: "Teramacro",
  9195. height: math.unit(150000, "miles")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(150, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/cuon/front.svg",
  9208. extra: 1390 / 1320,
  9209. bottom: 0.008
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Micro",
  9216. height: math.unit(3, "inches")
  9217. },
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(18 + 9 / 12, "feet"),
  9221. default: true
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(360, "feet")
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(360, "miles")
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(2.4, "meters"),
  9238. weight: math.unit(70, "kg"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/nyanuxk/front.svg",
  9242. extra: 1172 / 1084,
  9243. bottom: 0.065
  9244. }
  9245. },
  9246. side: {
  9247. height: math.unit(2.4, "meters"),
  9248. weight: math.unit(70, "kg"),
  9249. name: "Side",
  9250. image: {
  9251. source: "./media/characters/nyanuxk/side.svg",
  9252. extra: 1190 / 1132,
  9253. bottom: 0.007
  9254. }
  9255. },
  9256. back: {
  9257. height: math.unit(2.4, "meters"),
  9258. weight: math.unit(70, "kg"),
  9259. name: "Back",
  9260. image: {
  9261. source: "./media/characters/nyanuxk/back.svg",
  9262. extra: 1200 / 1141,
  9263. bottom: 0.015
  9264. }
  9265. },
  9266. foot: {
  9267. height: math.unit(0.52, "meters"),
  9268. name: "Foot",
  9269. image: {
  9270. source: "./media/characters/nyanuxk/foot.svg"
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Micro",
  9277. height: math.unit(2, "cm")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(2.4, "meters"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Smaller Macro",
  9286. height: math.unit(120, "meters")
  9287. },
  9288. {
  9289. name: "Bigger Macro",
  9290. height: math.unit(1.2, "km")
  9291. },
  9292. {
  9293. name: "Megamacro",
  9294. height: math.unit(15, "kilometers")
  9295. },
  9296. {
  9297. name: "Gigamacro",
  9298. height: math.unit(2000, "km")
  9299. },
  9300. {
  9301. name: "Teramacro",
  9302. height: math.unit(500000, "km")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9308. {
  9309. side: {
  9310. height: math.unit(6, "feet"),
  9311. name: "Side",
  9312. image: {
  9313. source: "./media/characters/ailbhe/side.svg",
  9314. extra: 757 / 464,
  9315. bottom: 0.041
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Normal",
  9322. height: math.unit(1.07, "meters"),
  9323. default: true
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(6, "feet"),
  9332. weight: math.unit(120, "kg"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/zevulfius/front.svg",
  9336. extra: 965 / 903
  9337. }
  9338. },
  9339. side: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(120, "kg"),
  9342. name: "Side",
  9343. image: {
  9344. source: "./media/characters/zevulfius/side.svg",
  9345. extra: 939 / 900
  9346. }
  9347. },
  9348. back: {
  9349. height: math.unit(6, "feet"),
  9350. weight: math.unit(120, "kg"),
  9351. name: "Back",
  9352. image: {
  9353. source: "./media/characters/zevulfius/back.svg",
  9354. extra: 918 / 854,
  9355. bottom: 0.005
  9356. }
  9357. },
  9358. foot: {
  9359. height: math.unit(6 / 3.72, "feet"),
  9360. name: "Foot",
  9361. image: {
  9362. source: "./media/characters/zevulfius/foot.svg"
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(750, "meters")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(20, "km"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Gigamacro",
  9378. height: math.unit(2000, "km")
  9379. },
  9380. {
  9381. name: "Teramacro",
  9382. height: math.unit(250000, "km")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(100, "feet"),
  9391. weight: math.unit(350, "kg"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/rikes/front.svg",
  9395. extra: 1565 / 1483,
  9396. bottom: 0.017
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(100, "feet"),
  9404. default: true
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9410. {
  9411. anthro: {
  9412. height: math.unit(8, "feet"),
  9413. weight: math.unit(120, "kg"),
  9414. name: "Anthro",
  9415. image: {
  9416. source: "./media/characters/adam-silver-mane/anthro.svg",
  9417. extra: 5743 / 5339,
  9418. bottom: 0.07
  9419. }
  9420. },
  9421. taur: {
  9422. height: math.unit(16, "feet"),
  9423. weight: math.unit(1500, "kg"),
  9424. name: "Taur",
  9425. image: {
  9426. source: "./media/characters/adam-silver-mane/taur.svg",
  9427. extra: 1713 / 1571,
  9428. bottom: 0.01
  9429. }
  9430. },
  9431. },
  9432. [
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(8, "feet")
  9436. },
  9437. {
  9438. name: "Minimacro",
  9439. height: math.unit(80, "feet")
  9440. },
  9441. {
  9442. name: "Macro",
  9443. height: math.unit(800, "feet"),
  9444. default: true
  9445. },
  9446. {
  9447. name: "Megamacro",
  9448. height: math.unit(8000, "feet")
  9449. },
  9450. {
  9451. name: "Gigamacro",
  9452. height: math.unit(800, "miles")
  9453. },
  9454. {
  9455. name: "Teramacro",
  9456. height: math.unit(80000, "miles")
  9457. },
  9458. {
  9459. name: "Celestial",
  9460. height: math.unit(8e6, "miles")
  9461. },
  9462. {
  9463. name: "Star Dragon",
  9464. height: math.unit(800000, "parsecs")
  9465. },
  9466. {
  9467. name: "Godly",
  9468. height: math.unit(800, "teraparsecs")
  9469. },
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9474. {
  9475. front: {
  9476. height: math.unit(6, "feet"),
  9477. weight: math.unit(150, "lb"),
  9478. name: "Front",
  9479. image: {
  9480. source: "./media/characters/ky'owin/front.svg",
  9481. extra: 3888 / 3068,
  9482. bottom: 0.015
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(6 + 8 / 12, "feet")
  9490. },
  9491. {
  9492. name: "Large",
  9493. height: math.unit(68, "feet")
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(132, "feet")
  9498. },
  9499. {
  9500. name: "Macro+",
  9501. height: math.unit(340, "feet")
  9502. },
  9503. {
  9504. name: "Macro++",
  9505. height: math.unit(680, "feet"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Megamacro",
  9510. height: math.unit(1, "mile")
  9511. },
  9512. {
  9513. name: "Megamacro+",
  9514. height: math.unit(10, "miles")
  9515. },
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(4, "feet"),
  9523. weight: math.unit(50, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/mal/front.svg",
  9527. extra: 785 / 724,
  9528. bottom: 0.07
  9529. }
  9530. },
  9531. },
  9532. [
  9533. {
  9534. name: "Micro",
  9535. height: math.unit(4, "inches")
  9536. },
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(4, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(200, "feet")
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(150, "lb"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/jordan-deware/front.svg",
  9557. extra: 1191 / 1012
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Nano",
  9564. height: math.unit(0.01, "mm")
  9565. },
  9566. {
  9567. name: "Minimicro",
  9568. height: math.unit(1, "mm")
  9569. },
  9570. {
  9571. name: "Micro",
  9572. height: math.unit(0.5, "inches")
  9573. },
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(4, "feet"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Minimacro",
  9581. height: math.unit(40, "meters")
  9582. },
  9583. {
  9584. name: "Small Macro",
  9585. height: math.unit(400, "meters")
  9586. },
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(4, "miles")
  9590. },
  9591. {
  9592. name: "Megamacro",
  9593. height: math.unit(40, "miles")
  9594. },
  9595. {
  9596. name: "Megamacro+",
  9597. height: math.unit(400, "miles")
  9598. },
  9599. {
  9600. name: "Gigamacro",
  9601. height: math.unit(400000, "miles")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9607. {
  9608. side: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(150, "lb"),
  9611. name: "Side",
  9612. image: {
  9613. source: "./media/characters/kimiko/side.svg",
  9614. extra: 600 / 358
  9615. }
  9616. },
  9617. },
  9618. [
  9619. {
  9620. name: "Normal",
  9621. height: math.unit(15, "feet"),
  9622. default: true
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(220, "feet")
  9627. },
  9628. {
  9629. name: "Macro+",
  9630. height: math.unit(1450, "feet")
  9631. },
  9632. {
  9633. name: "Megamacro",
  9634. height: math.unit(11500, "feet")
  9635. },
  9636. {
  9637. name: "Gigamacro",
  9638. height: math.unit(9500, "miles")
  9639. },
  9640. {
  9641. name: "Teramacro",
  9642. height: math.unit(2208005005, "miles")
  9643. },
  9644. {
  9645. name: "Examacro",
  9646. height: math.unit(2750, "parsecs")
  9647. },
  9648. {
  9649. name: "Zettamacro",
  9650. height: math.unit(101500, "parsecs")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(6, "feet"),
  9659. weight: math.unit(70, "kg"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/andrew-sleepy/front.svg"
  9663. }
  9664. },
  9665. side: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(70, "kg"),
  9668. name: "Side",
  9669. image: {
  9670. source: "./media/characters/andrew-sleepy/side.svg"
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Micro",
  9677. height: math.unit(1, "mm"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(6, "feet"),
  9687. weight: math.unit(150, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/judio/front.svg",
  9691. extra: 1258 / 1110
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(5 + 6 / 12, "feet")
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(1000, "feet"),
  9703. default: true
  9704. },
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(10, "miles")
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(6, "feet"),
  9716. weight: math.unit(68, "kg"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/nomaxice/front.svg",
  9720. extra: 1498 / 1073,
  9721. bottom: 0.075
  9722. }
  9723. },
  9724. foot: {
  9725. height: math.unit(1.1, "feet"),
  9726. name: "Foot",
  9727. image: {
  9728. source: "./media/characters/nomaxice/foot.svg"
  9729. }
  9730. },
  9731. },
  9732. [
  9733. {
  9734. name: "Micro",
  9735. height: math.unit(8, "cm")
  9736. },
  9737. {
  9738. name: "Norm",
  9739. height: math.unit(1.82, "m")
  9740. },
  9741. {
  9742. name: "Norm+",
  9743. height: math.unit(8.8, "feet")
  9744. },
  9745. {
  9746. name: "Big",
  9747. height: math.unit(8, "meters"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Macro",
  9752. height: math.unit(18, "meters")
  9753. },
  9754. {
  9755. name: "Macro+",
  9756. height: math.unit(88, "meters")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9762. {
  9763. front: {
  9764. height: math.unit(12, "feet"),
  9765. weight: math.unit(1.5, "tons"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/dydros/front.svg",
  9769. extra: 863 / 800,
  9770. bottom: 0.015
  9771. }
  9772. },
  9773. back: {
  9774. height: math.unit(12, "feet"),
  9775. weight: math.unit(1.5, "tons"),
  9776. name: "Back",
  9777. image: {
  9778. source: "./media/characters/dydros/back.svg",
  9779. extra: 900 / 843,
  9780. bottom: 0.005
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(12, "feet"),
  9788. default: true
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9794. {
  9795. front: {
  9796. height: math.unit(6, "feet"),
  9797. weight: math.unit(100, "kg"),
  9798. name: "Front",
  9799. image: {
  9800. source: "./media/characters/riggi/front.svg",
  9801. extra: 5787 / 5303
  9802. }
  9803. },
  9804. hyper: {
  9805. height: math.unit(6 * 5 / 3, "feet"),
  9806. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9807. name: "Hyper",
  9808. image: {
  9809. source: "./media/characters/riggi/hyper.svg",
  9810. extra: 3595 / 3485
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Small Macro",
  9817. height: math.unit(50, "feet")
  9818. },
  9819. {
  9820. name: "Default",
  9821. height: math.unit(200, "feet"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Loom",
  9826. height: math.unit(10000, "feet")
  9827. },
  9828. {
  9829. name: "Cruising Altitude",
  9830. height: math.unit(30000, "feet")
  9831. },
  9832. {
  9833. name: "Megamacro",
  9834. height: math.unit(100, "miles")
  9835. },
  9836. {
  9837. name: "Continent Sized",
  9838. height: math.unit(2800, "miles")
  9839. },
  9840. {
  9841. name: "Earth Sized",
  9842. height: math.unit(8000, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(250, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/alexi/front.svg",
  9855. extra: 3483 / 3291,
  9856. bottom: 0.04
  9857. }
  9858. },
  9859. back: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(250, "lb"),
  9862. name: "Back",
  9863. image: {
  9864. source: "./media/characters/alexi/back.svg",
  9865. extra: 3533 / 3356,
  9866. bottom: 0.021
  9867. }
  9868. },
  9869. frontTransforming: {
  9870. height: math.unit(8.58, "feet"),
  9871. weight: math.unit(1300, "lb"),
  9872. name: "Transforming",
  9873. image: {
  9874. source: "./media/characters/alexi/front-transforming.svg",
  9875. extra: 437 / 409,
  9876. bottom: 19 / 458.66
  9877. }
  9878. },
  9879. frontTransformed: {
  9880. height: math.unit(12.5, "feet"),
  9881. weight: math.unit(4000, "lb"),
  9882. name: "Transformed",
  9883. image: {
  9884. source: "./media/characters/alexi/front-transformed.svg",
  9885. extra: 639 / 614,
  9886. bottom: 30.55 / 671
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Normal",
  9893. height: math.unit(3, "meters"),
  9894. default: true
  9895. },
  9896. {
  9897. name: "Minimacro",
  9898. height: math.unit(30, "meters")
  9899. },
  9900. {
  9901. name: "Macro",
  9902. height: math.unit(500, "meters")
  9903. },
  9904. {
  9905. name: "Megamacro",
  9906. height: math.unit(9000, "km")
  9907. },
  9908. {
  9909. name: "Teramacro",
  9910. height: math.unit(384000, "km")
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(150, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/kayroo/front.svg",
  9923. extra: 1153 / 1038,
  9924. bottom: 0.06
  9925. }
  9926. },
  9927. foot: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(150, "lb"),
  9930. name: "Foot",
  9931. image: {
  9932. source: "./media/characters/kayroo/foot.svg"
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(8, "feet"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Minimacro",
  9944. height: math.unit(250, "feet")
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(2800, "feet")
  9949. },
  9950. {
  9951. name: "Megamacro",
  9952. height: math.unit(5200, "feet")
  9953. },
  9954. {
  9955. name: "Gigamacro",
  9956. height: math.unit(27000, "feet")
  9957. },
  9958. {
  9959. name: "Omega",
  9960. height: math.unit(45000, "feet")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(18, "feet"),
  9969. weight: math.unit(5800, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/rhys/front.svg",
  9973. extra: 3386 / 3090,
  9974. bottom: 0.07
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Normal",
  9981. height: math.unit(18, "feet"),
  9982. default: true
  9983. },
  9984. {
  9985. name: "Working Size",
  9986. height: math.unit(200, "feet")
  9987. },
  9988. {
  9989. name: "Demolition Size",
  9990. height: math.unit(2000, "feet")
  9991. },
  9992. {
  9993. name: "Maximum Licensed Size",
  9994. height: math.unit(5, "miles")
  9995. },
  9996. {
  9997. name: "Maximum Observed Size",
  9998. height: math.unit(10, "yottameters")
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10004. {
  10005. front: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(250, "lb"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/toto/front.svg",
  10011. extra: 527 / 479,
  10012. bottom: 0.05
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Micro",
  10019. height: math.unit(3, "feet")
  10020. },
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(10, "feet")
  10024. },
  10025. {
  10026. name: "Macro",
  10027. height: math.unit(150, "feet"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(1200, "feet")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "King", species: ["lion"], tags: ["anthro"] },
  10038. {
  10039. back: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(150, "lb"),
  10042. name: "Back",
  10043. image: {
  10044. source: "./media/characters/king/back.svg"
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(2, "inches")
  10052. },
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(8, "feet")
  10056. },
  10057. {
  10058. name: "Macro",
  10059. height: math.unit(200, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Megamacro",
  10064. height: math.unit(50, "miles")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10070. {
  10071. anthro: {
  10072. height: math.unit(6 + 5 / 12, "feet"),
  10073. weight: math.unit(280, "lb"),
  10074. name: "Anthro",
  10075. image: {
  10076. source: "./media/characters/cordite/anthro.svg",
  10077. extra: 1986 / 1905,
  10078. bottom: 0.025
  10079. }
  10080. },
  10081. feral: {
  10082. height: math.unit(2, "feet"),
  10083. weight: math.unit(90, "lb"),
  10084. name: "Feral",
  10085. image: {
  10086. source: "./media/characters/cordite/feral.svg",
  10087. extra: 1260 / 755,
  10088. bottom: 0.05
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(6 + 5 / 12, "feet"),
  10096. default: true
  10097. },
  10098. ]
  10099. ))
  10100. characterMakers.push(() => makeCharacter(
  10101. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10102. {
  10103. front: {
  10104. height: math.unit(6, "feet"),
  10105. weight: math.unit(150, "lb"),
  10106. name: "Front",
  10107. image: {
  10108. source: "./media/characters/pianostrong/front.svg",
  10109. extra: 6577 / 6254,
  10110. bottom: 0.02
  10111. }
  10112. },
  10113. side: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(150, "lb"),
  10116. name: "Side",
  10117. image: {
  10118. source: "./media/characters/pianostrong/side.svg",
  10119. extra: 6106 / 5730
  10120. }
  10121. },
  10122. back: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(150, "lb"),
  10125. name: "Back",
  10126. image: {
  10127. source: "./media/characters/pianostrong/back.svg",
  10128. extra: 6085 / 5733,
  10129. bottom: 0.01
  10130. }
  10131. },
  10132. },
  10133. [
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(100, "feet")
  10137. },
  10138. {
  10139. name: "Macro+",
  10140. height: math.unit(300, "feet"),
  10141. default: true
  10142. },
  10143. {
  10144. name: "Macro++",
  10145. height: math.unit(1000, "feet")
  10146. },
  10147. ]
  10148. ))
  10149. characterMakers.push(() => makeCharacter(
  10150. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10151. {
  10152. front: {
  10153. height: math.unit(6, "feet"),
  10154. weight: math.unit(150, "lb"),
  10155. name: "Front",
  10156. image: {
  10157. source: "./media/characters/kona/front.svg",
  10158. extra: 2960 / 2629,
  10159. bottom: 0.005
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Normal",
  10166. height: math.unit(11 + 8 / 12, "feet")
  10167. },
  10168. {
  10169. name: "Macro",
  10170. height: math.unit(850, "feet"),
  10171. default: true
  10172. },
  10173. {
  10174. name: "Macro+",
  10175. height: math.unit(1.5, "km"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(80, "miles")
  10181. },
  10182. {
  10183. name: "Gigamacro",
  10184. height: math.unit(3500, "miles")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10190. {
  10191. side: {
  10192. height: math.unit(1.9, "meters"),
  10193. weight: math.unit(326, "kg"),
  10194. name: "Side",
  10195. image: {
  10196. source: "./media/characters/levi/side.svg",
  10197. extra: 1704 / 1334,
  10198. bottom: 0.02
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(1.9, "meters"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(20, "meters")
  10211. },
  10212. {
  10213. name: "Macro+",
  10214. height: math.unit(200, "meters")
  10215. },
  10216. {
  10217. name: "Megamacro",
  10218. height: math.unit(2, "km")
  10219. },
  10220. {
  10221. name: "Megamacro+",
  10222. height: math.unit(20, "km")
  10223. },
  10224. {
  10225. name: "Gigamacro",
  10226. height: math.unit(2500, "km")
  10227. },
  10228. {
  10229. name: "Gigamacro+",
  10230. height: math.unit(120000, "km")
  10231. },
  10232. {
  10233. name: "Teramacro",
  10234. height: math.unit(7.77e6, "km")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10240. {
  10241. front: {
  10242. height: math.unit(6 + 4 / 12, "feet"),
  10243. weight: math.unit(188, "lb"),
  10244. name: "Front",
  10245. image: {
  10246. source: "./media/characters/bmc/front.svg",
  10247. extra: 1067 / 1022,
  10248. bottom: 0.047
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Human-sized",
  10255. height: math.unit(6 + 4 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Small",
  10259. height: math.unit(250, "feet")
  10260. },
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(1250, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Good Day",
  10268. height: math.unit(88, "miles")
  10269. },
  10270. {
  10271. name: "Largest Measured Size",
  10272. height: math.unit(11.2e6, "lightyears")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(20, "feet"),
  10281. weight: math.unit(2016, "kg"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/sven-the-kaiju/front.svg",
  10285. extra: 1479 / 1449,
  10286. bottom: 0.05
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Fairy",
  10293. height: math.unit(6, "inches")
  10294. },
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(20, "feet"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "Rampage",
  10302. height: math.unit(200, "feet")
  10303. },
  10304. {
  10305. name: "Archfey Forest Guardian",
  10306. height: math.unit(1, "mile")
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(4, "meters"),
  10315. weight: math.unit(2, "tons"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/marik/front.svg",
  10319. extra: 1057 / 1003,
  10320. bottom: 0.08
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(4, "meters"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(20, "meters")
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(50, "km")
  10337. },
  10338. {
  10339. name: "Gigamacro",
  10340. height: math.unit(100, "km")
  10341. },
  10342. {
  10343. name: "Alpha Macro",
  10344. height: math.unit(7.88e7, "yottameters")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(110, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/mel/front.svg",
  10357. extra: 736 / 617,
  10358. bottom: 0.017
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Pico",
  10365. height: math.unit(3, "pm")
  10366. },
  10367. {
  10368. name: "Nano",
  10369. height: math.unit(3, "nm")
  10370. },
  10371. {
  10372. name: "Micro",
  10373. height: math.unit(0.3, "mm"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Micro+",
  10378. height: math.unit(3, "mm")
  10379. },
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(5 + 10.5 / 12, "feet")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10388. {
  10389. kaiju: {
  10390. height: math.unit(1.75, "meters"),
  10391. weight: math.unit(55, "kg"),
  10392. name: "Kaiju",
  10393. image: {
  10394. source: "./media/characters/lykonous/kaiju.svg",
  10395. extra: 1055 / 946,
  10396. bottom: 0.135
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(2.5, "meters"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Kaiju Dragon",
  10408. height: math.unit(60, "meters")
  10409. },
  10410. {
  10411. name: "Mega Kaiju",
  10412. height: math.unit(120, "km")
  10413. },
  10414. {
  10415. name: "Giga Kaiju",
  10416. height: math.unit(200, "megameters")
  10417. },
  10418. {
  10419. name: "Terra Kaiju",
  10420. height: math.unit(400, "gigameters")
  10421. },
  10422. {
  10423. name: "Kaiju Dragon God",
  10424. height: math.unit(13000, "exaparsecs")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(150, "lb"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/blü/front.svg",
  10437. extra: 1883 / 1564,
  10438. bottom: 0.031
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(13, "feet"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Big Boi",
  10450. height: math.unit(150, "meters")
  10451. },
  10452. {
  10453. name: "Mini Stomper",
  10454. height: math.unit(300, "meters")
  10455. },
  10456. {
  10457. name: "Macro",
  10458. height: math.unit(1000, "meters")
  10459. },
  10460. {
  10461. name: "Megamacro",
  10462. height: math.unit(11000, "meters")
  10463. },
  10464. {
  10465. name: "Gigamacro",
  10466. height: math.unit(11000, "km")
  10467. },
  10468. {
  10469. name: "Teramacro",
  10470. height: math.unit(420000, "km")
  10471. },
  10472. {
  10473. name: "Examacro",
  10474. height: math.unit(120, "parsecs")
  10475. },
  10476. {
  10477. name: "God Tho",
  10478. height: math.unit(98000000000, "parsecs")
  10479. },
  10480. ]
  10481. ))
  10482. characterMakers.push(() => makeCharacter(
  10483. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10484. {
  10485. taurFront: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(200, "lb"),
  10488. name: "Taur (Front)",
  10489. image: {
  10490. source: "./media/characters/scales/taur-front.svg",
  10491. extra: 1,
  10492. bottom: 0.05
  10493. }
  10494. },
  10495. taurBack: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(200, "lb"),
  10498. name: "Taur (Back)",
  10499. image: {
  10500. source: "./media/characters/scales/taur-back.svg",
  10501. extra: 1,
  10502. bottom: 0.08
  10503. }
  10504. },
  10505. anthro: {
  10506. height: math.unit(6 * 7 / 12, "feet"),
  10507. weight: math.unit(100, "lb"),
  10508. name: "Anthro",
  10509. image: {
  10510. source: "./media/characters/scales/anthro.svg",
  10511. extra: 1,
  10512. bottom: 0.06
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(12, "feet"),
  10520. default: true
  10521. },
  10522. ]
  10523. ))
  10524. characterMakers.push(() => makeCharacter(
  10525. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10526. {
  10527. front: {
  10528. height: math.unit(6, "feet"),
  10529. weight: math.unit(150, "lb"),
  10530. name: "Front",
  10531. image: {
  10532. source: "./media/characters/koragos/front.svg",
  10533. extra: 841 / 794,
  10534. bottom: 0.035
  10535. }
  10536. },
  10537. back: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Back",
  10541. image: {
  10542. source: "./media/characters/koragos/back.svg",
  10543. extra: 841 / 810,
  10544. bottom: 0.022
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Normal",
  10551. height: math.unit(6 + 11 / 12, "feet"),
  10552. default: true
  10553. },
  10554. {
  10555. name: "Macro",
  10556. height: math.unit(490, "feet")
  10557. },
  10558. {
  10559. name: "Megamacro",
  10560. height: math.unit(10, "miles")
  10561. },
  10562. {
  10563. name: "Gigamacro",
  10564. height: math.unit(50, "miles")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(6, "feet"),
  10573. weight: math.unit(250, "lb"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/xylrem/front.svg",
  10577. extra: 3323 / 3050,
  10578. bottom: 0.065
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(4, "feet")
  10586. },
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(16, "feet"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Macro",
  10594. height: math.unit(2720, "feet")
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(25000, "miles")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(8, "feet"),
  10607. weight: math.unit(250, "kg"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/ikideru/front.svg",
  10611. extra: 930 / 870,
  10612. bottom: 0.087
  10613. }
  10614. },
  10615. back: {
  10616. height: math.unit(8, "feet"),
  10617. weight: math.unit(250, "kg"),
  10618. name: "Back",
  10619. image: {
  10620. source: "./media/characters/ikideru/back.svg",
  10621. extra: 919 / 852,
  10622. bottom: 0.055
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Rare",
  10629. height: math.unit(8, "feet"),
  10630. default: true
  10631. },
  10632. {
  10633. name: "Playful Loom",
  10634. height: math.unit(80, "feet")
  10635. },
  10636. {
  10637. name: "City Leaner",
  10638. height: math.unit(230, "feet")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(2500, "feet")
  10643. },
  10644. {
  10645. name: "Gigamacro",
  10646. height: math.unit(26400, "feet")
  10647. },
  10648. {
  10649. name: "Tectonic Shifter",
  10650. height: math.unit(1.7, "megameters")
  10651. },
  10652. {
  10653. name: "Planet Carer",
  10654. height: math.unit(21, "megameters")
  10655. },
  10656. {
  10657. name: "God",
  10658. height: math.unit(11157.22, "parsecs")
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10664. {
  10665. front: {
  10666. height: math.unit(6, "feet"),
  10667. weight: math.unit(120, "lb"),
  10668. name: "Front",
  10669. image: {
  10670. source: "./media/characters/neo/front.svg"
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(2, "inches"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Human Size",
  10682. height: math.unit(5 + 8 / 12, "feet")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(13 + 10 / 12, "feet"),
  10691. weight: math.unit(5320, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/chauncey-chantz/front.svg",
  10695. extra: 1587 / 1435,
  10696. bottom: 0.02
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(13 + 10 / 12, "feet"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Macro",
  10708. height: math.unit(45, "feet")
  10709. },
  10710. {
  10711. name: "Megamacro",
  10712. height: math.unit(250, "miles")
  10713. },
  10714. {
  10715. name: "Planetary",
  10716. height: math.unit(10000, "miles")
  10717. },
  10718. {
  10719. name: "Galactic",
  10720. height: math.unit(40000, "parsecs")
  10721. },
  10722. {
  10723. name: "Universal",
  10724. height: math.unit(1, "yottameter")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10730. {
  10731. front: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(150, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/epifox/front.svg",
  10737. extra: 1,
  10738. bottom: 0.075
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(6, "inches")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(12, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(3810, "feet")
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(500, "miles")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(1.8796, "m"),
  10767. weight: math.unit(230, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/colin-t/front.svg",
  10771. extra: 1272 / 1193,
  10772. bottom: 0.07
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Micro",
  10779. height: math.unit(0.571, "meters")
  10780. },
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(1.8796, "meters"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Tall",
  10788. height: math.unit(4, "meters")
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(67.241, "meters")
  10793. },
  10794. {
  10795. name: "Megamacro",
  10796. height: math.unit(371.856, "meters")
  10797. },
  10798. {
  10799. name: "Planetary",
  10800. height: math.unit(12631.5689, "km")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(1.85, "meters"),
  10809. weight: math.unit(80, "kg"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/matvei/front.svg",
  10813. extra: 614 / 594,
  10814. bottom: 0.01
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(1.85, "meters"),
  10822. default: true
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(5 + 9 / 12, "feet"),
  10831. weight: math.unit(70, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/quincy/front.svg",
  10835. extra: 3041 / 2751
  10836. }
  10837. },
  10838. back: {
  10839. height: math.unit(5 + 9 / 12, "feet"),
  10840. weight: math.unit(70, "lb"),
  10841. name: "Back",
  10842. image: {
  10843. source: "./media/characters/quincy/back.svg",
  10844. extra: 3041 / 2751
  10845. }
  10846. },
  10847. flying: {
  10848. height: math.unit(5 + 4 / 12, "feet"),
  10849. weight: math.unit(70, "lb"),
  10850. name: "Flying",
  10851. image: {
  10852. source: "./media/characters/quincy/flying.svg",
  10853. extra: 1044 / 930
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Micro",
  10860. height: math.unit(3, "cm")
  10861. },
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(5 + 9 / 12, "feet")
  10865. },
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(200, "meters"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(1000, "meters")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(4 + 7 / 12, "feet"),
  10882. weight: math.unit(150, "lb"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/vanrel/front.svg",
  10886. extra: 1,
  10887. bottom: 0.02
  10888. }
  10889. },
  10890. elemental: {
  10891. height: math.unit(3, "feet"),
  10892. weight: math.unit(150, "lb"),
  10893. name: "Elemental",
  10894. image: {
  10895. source: "./media/characters/vanrel/elemental.svg",
  10896. extra: 192.3 / 162.8,
  10897. bottom: 1.79 / 194.17
  10898. }
  10899. },
  10900. side: {
  10901. height: math.unit(4 + 7 / 12, "feet"),
  10902. weight: math.unit(150, "lb"),
  10903. name: "Side",
  10904. image: {
  10905. source: "./media/characters/vanrel/side.svg",
  10906. extra: 1,
  10907. bottom: 0.025
  10908. }
  10909. },
  10910. tome: {
  10911. height: math.unit(1.35, "feet"),
  10912. weight: math.unit(10, "lb"),
  10913. name: "Vanrel's Tome",
  10914. rename: true,
  10915. image: {
  10916. source: "./media/characters/vanrel/tome.svg"
  10917. }
  10918. },
  10919. beans: {
  10920. height: math.unit(0.89, "feet"),
  10921. name: "Beans",
  10922. image: {
  10923. source: "./media/characters/vanrel/beans.svg"
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Normal",
  10930. height: math.unit(4 + 7 / 12, "feet"),
  10931. default: true
  10932. },
  10933. ]
  10934. ))
  10935. characterMakers.push(() => makeCharacter(
  10936. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10937. {
  10938. front: {
  10939. height: math.unit(7 + 5 / 12, "feet"),
  10940. weight: math.unit(150, "lb"),
  10941. name: "Front",
  10942. image: {
  10943. source: "./media/characters/kuiper-vanrel/front.svg",
  10944. extra: 1118 / 1068,
  10945. bottom: 0.09
  10946. }
  10947. },
  10948. foot: {
  10949. height: math.unit(0.55, "meters"),
  10950. name: "Foot",
  10951. image: {
  10952. source: "./media/characters/kuiper-vanrel/foot.svg",
  10953. }
  10954. },
  10955. battle: {
  10956. height: math.unit(6.824, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Battle",
  10959. image: {
  10960. source: "./media/characters/kuiper-vanrel/battle.svg",
  10961. extra: 1466 / 1327,
  10962. bottom: 29 / 1492.5
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(7 + 5 / 12, "feet"),
  10970. default: true
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(8 + 5 / 12, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/keset-vanrel/front.svg",
  10983. extra: 1150 / 1084,
  10984. bottom: 0.05
  10985. }
  10986. },
  10987. hand: {
  10988. height: math.unit(0.6, "meters"),
  10989. name: "Hand",
  10990. image: {
  10991. source: "./media/characters/keset-vanrel/hand.svg"
  10992. }
  10993. },
  10994. foot: {
  10995. height: math.unit(0.94978, "meters"),
  10996. name: "Foot",
  10997. image: {
  10998. source: "./media/characters/keset-vanrel/foot.svg"
  10999. }
  11000. },
  11001. battle: {
  11002. height: math.unit(7.408, "feet"),
  11003. weight: math.unit(150, "lb"),
  11004. name: "Battle",
  11005. image: {
  11006. source: "./media/characters/keset-vanrel/battle.svg",
  11007. extra: 1890 / 1386,
  11008. bottom: 73.28 / 1970
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Normal",
  11015. height: math.unit(8 + 5 / 12, "feet"),
  11016. default: true
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(150, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/neos/front.svg",
  11029. extra: 1696 / 992,
  11030. bottom: 0.14
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(54, "cm"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(100, "m")
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(10, "km")
  11047. },
  11048. {
  11049. name: "Megamacro+",
  11050. height: math.unit(100, "km")
  11051. },
  11052. {
  11053. name: "Gigamacro",
  11054. height: math.unit(100, "Mm")
  11055. },
  11056. {
  11057. name: "Teramacro",
  11058. height: math.unit(100, "Gm")
  11059. },
  11060. {
  11061. name: "Examacro",
  11062. height: math.unit(100, "Em")
  11063. },
  11064. {
  11065. name: "Godly",
  11066. height: math.unit(10000, "Ym")
  11067. },
  11068. {
  11069. name: "Beyond Godly",
  11070. height: math.unit(10000000, "Ym")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11076. {
  11077. feminine: {
  11078. height: math.unit(5, "feet"),
  11079. weight: math.unit(100, "lb"),
  11080. name: "Feminine",
  11081. image: {
  11082. source: "./media/characters/sammy-mouse/feminine.svg",
  11083. extra: 2526 / 2425,
  11084. bottom: 0.123
  11085. }
  11086. },
  11087. masculine: {
  11088. height: math.unit(5, "feet"),
  11089. weight: math.unit(100, "lb"),
  11090. name: "Masculine",
  11091. image: {
  11092. source: "./media/characters/sammy-mouse/masculine.svg",
  11093. extra: 2526 / 2425,
  11094. bottom: 0.123
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Micro",
  11101. height: math.unit(5, "inches")
  11102. },
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(5, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Macro",
  11110. height: math.unit(60, "feet")
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(4, "feet"),
  11119. weight: math.unit(50, "lb"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/kole/front.svg",
  11123. extra: 1423 / 1303,
  11124. bottom: 0.025
  11125. }
  11126. },
  11127. back: {
  11128. height: math.unit(4, "feet"),
  11129. weight: math.unit(50, "lb"),
  11130. name: "Back",
  11131. image: {
  11132. source: "./media/characters/kole/back.svg",
  11133. extra: 1426 / 1280,
  11134. bottom: 0.02
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(4, "feet"),
  11142. default: true
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(2 + 6 / 12, "feet"),
  11151. weight: math.unit(20, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/rufran/front.svg",
  11155. extra: 2041 / 1839,
  11156. bottom: 0.055
  11157. }
  11158. },
  11159. back: {
  11160. height: math.unit(2 + 6 / 12, "feet"),
  11161. weight: math.unit(20, "lb"),
  11162. name: "Back",
  11163. image: {
  11164. source: "./media/characters/rufran/back.svg",
  11165. extra: 2054 / 1839,
  11166. bottom: 0.01
  11167. }
  11168. },
  11169. hand: {
  11170. height: math.unit(0.2166, "meters"),
  11171. name: "Hand",
  11172. image: {
  11173. source: "./media/characters/rufran/hand.svg"
  11174. }
  11175. },
  11176. foot: {
  11177. height: math.unit(0.185, "meters"),
  11178. name: "Foot",
  11179. image: {
  11180. source: "./media/characters/rufran/foot.svg"
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Micro",
  11187. height: math.unit(1, "inch")
  11188. },
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(2 + 6 / 12, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Big",
  11196. height: math.unit(60, "feet")
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(325, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(0.3, "meters"),
  11209. weight: math.unit(3.5, "kg"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/chip/front.svg",
  11213. extra: 748 / 674
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Micro",
  11220. height: math.unit(1, "inch"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11227. {
  11228. side: {
  11229. height: math.unit(2.3, "meters"),
  11230. weight: math.unit(3500, "lb"),
  11231. name: "Side",
  11232. image: {
  11233. source: "./media/characters/torvid/side.svg",
  11234. extra: 1972 / 722,
  11235. bottom: 0.035
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(2.3, "meters"),
  11243. default: true
  11244. },
  11245. ]
  11246. ))
  11247. characterMakers.push(() => makeCharacter(
  11248. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11249. {
  11250. front: {
  11251. height: math.unit(2, "meters"),
  11252. weight: math.unit(150.5, "kg"),
  11253. name: "Front",
  11254. image: {
  11255. source: "./media/characters/susan/front.svg",
  11256. extra: 693 / 635,
  11257. bottom: 0.05
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Megamacro",
  11264. height: math.unit(505, "miles"),
  11265. default: true
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11271. {
  11272. front: {
  11273. height: math.unit(6, "feet"),
  11274. weight: math.unit(150, "lb"),
  11275. name: "Front",
  11276. image: {
  11277. source: "./media/characters/raindrops/front.svg",
  11278. extra: 2655 / 2461,
  11279. bottom: 0.02
  11280. }
  11281. },
  11282. back: {
  11283. height: math.unit(6, "feet"),
  11284. weight: math.unit(150, "lb"),
  11285. name: "Back",
  11286. image: {
  11287. source: "./media/characters/raindrops/back.svg",
  11288. extra: 2574 / 2400,
  11289. bottom: 0.03
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Micro",
  11296. height: math.unit(6, "inches")
  11297. },
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(6 + 2 / 12, "feet")
  11301. },
  11302. {
  11303. name: "Macro",
  11304. height: math.unit(131, "feet"),
  11305. default: true
  11306. },
  11307. {
  11308. name: "Megamacro",
  11309. height: math.unit(15, "miles")
  11310. },
  11311. {
  11312. name: "Gigamacro",
  11313. height: math.unit(4000, "miles")
  11314. },
  11315. {
  11316. name: "Teramacro",
  11317. height: math.unit(315000, "miles")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(2.794, "meters"),
  11326. weight: math.unit(325, "kg"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/tezwa/front.svg",
  11330. extra: 2083 / 1906,
  11331. bottom: 0.031
  11332. }
  11333. },
  11334. foot: {
  11335. height: math.unit(0.687, "meters"),
  11336. name: "Foot",
  11337. image: {
  11338. source: "./media/characters/tezwa/foot.svg"
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(9 + 2 / 12, "feet"),
  11346. default: true
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(58, "feet"),
  11355. weight: math.unit(89000, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/typhus/front.svg",
  11359. extra: 816 / 800,
  11360. bottom: 0.065
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Macro",
  11367. height: math.unit(58, "feet"),
  11368. default: true
  11369. },
  11370. ]
  11371. ))
  11372. characterMakers.push(() => makeCharacter(
  11373. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11374. {
  11375. front: {
  11376. height: math.unit(12, "feet"),
  11377. weight: math.unit(6, "tonnes"),
  11378. name: "Front",
  11379. image: {
  11380. source: "./media/characters/lyra-von-wulf/front.svg",
  11381. extra: 1,
  11382. bottom: 0.10
  11383. }
  11384. },
  11385. frontMecha: {
  11386. height: math.unit(12, "feet"),
  11387. weight: math.unit(12, "tonnes"),
  11388. name: "Front (Mecha)",
  11389. image: {
  11390. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11391. extra: 1,
  11392. bottom: 0.042
  11393. }
  11394. },
  11395. maw: {
  11396. height: math.unit(2.2, "feet"),
  11397. name: "Maw",
  11398. image: {
  11399. source: "./media/characters/lyra-von-wulf/maw.svg"
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(12, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Classic",
  11411. height: math.unit(50, "feet")
  11412. },
  11413. {
  11414. name: "Macro",
  11415. height: math.unit(500, "feet")
  11416. },
  11417. {
  11418. name: "Megamacro",
  11419. height: math.unit(1, "mile")
  11420. },
  11421. {
  11422. name: "Gigamacro",
  11423. height: math.unit(400, "miles")
  11424. },
  11425. {
  11426. name: "Teramacro",
  11427. height: math.unit(22000, "miles")
  11428. },
  11429. {
  11430. name: "Solarmacro",
  11431. height: math.unit(8600000, "miles")
  11432. },
  11433. {
  11434. name: "Galactic",
  11435. height: math.unit(1057000, "lightyears")
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(6 + 10 / 12, "feet"),
  11444. weight: math.unit(150, "lb"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/dixon/front.svg",
  11448. extra: 3361 / 3209,
  11449. bottom: 0.01
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(6 + 10 / 12, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Big",
  11461. height: math.unit(12, "meters")
  11462. },
  11463. {
  11464. name: "Macro",
  11465. height: math.unit(500, "meters")
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(2, "km")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(185, "cm"),
  11478. weight: math.unit(68, "kg"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/kauko/front.svg",
  11482. extra: 1455 / 1421,
  11483. bottom: 0.03
  11484. }
  11485. },
  11486. back: {
  11487. height: math.unit(185, "cm"),
  11488. weight: math.unit(68, "kg"),
  11489. name: "Back",
  11490. image: {
  11491. source: "./media/characters/kauko/back.svg",
  11492. extra: 1455 / 1421,
  11493. bottom: 0.004
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(185, "cm"),
  11501. default: true
  11502. },
  11503. ]
  11504. ))
  11505. characterMakers.push(() => makeCharacter(
  11506. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11507. {
  11508. front: {
  11509. height: math.unit(6, "feet"),
  11510. weight: math.unit(150, "kg"),
  11511. name: "Front",
  11512. image: {
  11513. source: "./media/characters/varg/front.svg",
  11514. extra: 1108 / 1018,
  11515. bottom: 0.0375
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Normal",
  11522. height: math.unit(5, "meters")
  11523. },
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(200, "meters")
  11527. },
  11528. {
  11529. name: "Megamacro",
  11530. height: math.unit(20, "kilometers")
  11531. },
  11532. {
  11533. name: "True Size",
  11534. height: math.unit(211, "km"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Gigamacro",
  11539. height: math.unit(1000, "km")
  11540. },
  11541. {
  11542. name: "Gigamacro+",
  11543. height: math.unit(8000, "km")
  11544. },
  11545. {
  11546. name: "Teramacro",
  11547. height: math.unit(1000000, "km")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(7 + 7 / 12, "feet"),
  11556. weight: math.unit(267, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/dayza/front.svg",
  11560. extra: 1262 / 1200,
  11561. bottom: 0.035
  11562. }
  11563. },
  11564. side: {
  11565. height: math.unit(7 + 7 / 12, "feet"),
  11566. weight: math.unit(267, "lb"),
  11567. name: "Side",
  11568. image: {
  11569. source: "./media/characters/dayza/side.svg",
  11570. extra: 1295 / 1245,
  11571. bottom: 0.05
  11572. }
  11573. },
  11574. back: {
  11575. height: math.unit(7 + 7 / 12, "feet"),
  11576. weight: math.unit(267, "lb"),
  11577. name: "Back",
  11578. image: {
  11579. source: "./media/characters/dayza/back.svg",
  11580. extra: 1241 / 1170
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(7 + 7 / 12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(155, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(6 + 5 / 12, "feet"),
  11601. weight: math.unit(160, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/xanthos/front.svg",
  11605. extra: 1,
  11606. bottom: 0.04
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(6 + 5 / 12, "feet"),
  11611. weight: math.unit(160, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/xanthos/back.svg",
  11615. extra: 1,
  11616. bottom: 0.03
  11617. }
  11618. },
  11619. hand: {
  11620. height: math.unit(0.928, "feet"),
  11621. name: "Hand",
  11622. image: {
  11623. source: "./media/characters/xanthos/hand.svg"
  11624. }
  11625. },
  11626. foot: {
  11627. height: math.unit(1.286, "feet"),
  11628. name: "Foot",
  11629. image: {
  11630. source: "./media/characters/xanthos/foot.svg"
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(6 + 5 / 12, "feet"),
  11638. default: true
  11639. },
  11640. {
  11641. name: "Normal+",
  11642. height: math.unit(6, "meters")
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(40, "feet")
  11647. },
  11648. {
  11649. name: "Macro+",
  11650. height: math.unit(200, "meters")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(20, "km")
  11655. },
  11656. {
  11657. name: "Megamacro+",
  11658. height: math.unit(100, "km")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6 + 3 / 12, "feet"),
  11667. weight: math.unit(215, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/grynn/front.svg",
  11671. extra: 4627 / 4209,
  11672. bottom: 0.047
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Micro",
  11679. height: math.unit(6, "inches")
  11680. },
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(6 + 3 / 12, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Big",
  11688. height: math.unit(104, "feet")
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(944, "feet")
  11693. },
  11694. {
  11695. name: "Macro+",
  11696. height: math.unit(9480, "feet")
  11697. },
  11698. {
  11699. name: "Megamacro",
  11700. height: math.unit(78752, "feet")
  11701. },
  11702. {
  11703. name: "Megamacro+",
  11704. height: math.unit(630128, "feet")
  11705. },
  11706. {
  11707. name: "Megamacro++",
  11708. height: math.unit(3150695, "feet")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11714. {
  11715. front: {
  11716. height: math.unit(7 + 5 / 12, "feet"),
  11717. weight: math.unit(450, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/mocha-aura/front.svg",
  11721. extra: 1907 / 1817,
  11722. bottom: 0.04
  11723. }
  11724. },
  11725. back: {
  11726. height: math.unit(7 + 5 / 12, "feet"),
  11727. weight: math.unit(450, "lb"),
  11728. name: "Back",
  11729. image: {
  11730. source: "./media/characters/mocha-aura/back.svg",
  11731. extra: 1900 / 1825,
  11732. bottom: 0.045
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Nano",
  11739. height: math.unit(1, "nm")
  11740. },
  11741. {
  11742. name: "Megamicro",
  11743. height: math.unit(1, "mm")
  11744. },
  11745. {
  11746. name: "Micro",
  11747. height: math.unit(3, "inches")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(7 + 5 / 12, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(30, "feet")
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(3500, "feet")
  11761. },
  11762. {
  11763. name: "Teramacro",
  11764. height: math.unit(500000, "miles")
  11765. },
  11766. {
  11767. name: "Petamacro",
  11768. height: math.unit(50000000000000000, "parsecs")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/ilisha-devya/front.svg",
  11781. extra: 1,
  11782. bottom: 0.175
  11783. }
  11784. },
  11785. back: {
  11786. height: math.unit(6, "feet"),
  11787. weight: math.unit(150, "lb"),
  11788. name: "Back",
  11789. image: {
  11790. source: "./media/characters/ilisha-devya/back.svg",
  11791. extra: 1,
  11792. bottom: 0.015
  11793. }
  11794. },
  11795. },
  11796. [
  11797. {
  11798. name: "Macro",
  11799. height: math.unit(500, "feet"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Megamacro",
  11804. height: math.unit(10, "miles")
  11805. },
  11806. {
  11807. name: "Gigamacro",
  11808. height: math.unit(100000, "miles")
  11809. },
  11810. {
  11811. name: "Examacro",
  11812. height: math.unit(1e9, "lightyears")
  11813. },
  11814. {
  11815. name: "Omniversal",
  11816. height: math.unit(1e33, "lightyears")
  11817. },
  11818. {
  11819. name: "Beyond Infinite",
  11820. height: math.unit(1e100, "lightyears")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11826. {
  11827. Side: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Side",
  11831. image: {
  11832. source: "./media/characters/mira/side.svg",
  11833. extra: 900 / 799,
  11834. bottom: 0.02
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Human Size",
  11841. height: math.unit(6, "feet")
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(100, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(10, "miles")
  11851. },
  11852. {
  11853. name: "Gigamacro",
  11854. height: math.unit(25000, "miles")
  11855. },
  11856. {
  11857. name: "Teramacro",
  11858. height: math.unit(300, "AU")
  11859. },
  11860. {
  11861. name: "Full Size",
  11862. height: math.unit(4.5e10, "lightyears")
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(6, "feet"),
  11871. weight: math.unit(150, "lb"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/holly/front.svg",
  11875. extra: 639 / 606
  11876. }
  11877. },
  11878. back: {
  11879. height: math.unit(6, "feet"),
  11880. weight: math.unit(150, "lb"),
  11881. name: "Back",
  11882. image: {
  11883. source: "./media/characters/holly/back.svg",
  11884. extra: 623 / 598
  11885. }
  11886. },
  11887. frontWorking: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Front (Working)",
  11891. image: {
  11892. source: "./media/characters/holly/front-working.svg",
  11893. extra: 607 / 577,
  11894. bottom: 0.048
  11895. }
  11896. },
  11897. },
  11898. [
  11899. {
  11900. name: "Normal",
  11901. height: math.unit(12 + 3 / 12, "feet"),
  11902. default: true
  11903. },
  11904. ]
  11905. ))
  11906. characterMakers.push(() => makeCharacter(
  11907. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11908. {
  11909. front: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(150, "lb"),
  11912. name: "Front",
  11913. image: {
  11914. source: "./media/characters/porter/front.svg",
  11915. extra: 1,
  11916. bottom: 0.01
  11917. }
  11918. },
  11919. frontRobes: {
  11920. height: math.unit(6, "feet"),
  11921. weight: math.unit(150, "lb"),
  11922. name: "Front (Robes)",
  11923. image: {
  11924. source: "./media/characters/porter/front-robes.svg",
  11925. extra: 1.01,
  11926. bottom: 0.01
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(11 + 9 / 12, "feet"),
  11934. default: true
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11940. {
  11941. legendary: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(150, "lb"),
  11944. name: "Legendary",
  11945. image: {
  11946. source: "./media/characters/lucy/legendary.svg",
  11947. extra: 1355 / 1100,
  11948. bottom: 0.045
  11949. }
  11950. },
  11951. },
  11952. [
  11953. {
  11954. name: "Legendary",
  11955. height: math.unit(86882 * 2, "miles"),
  11956. default: true
  11957. },
  11958. ]
  11959. ))
  11960. characterMakers.push(() => makeCharacter(
  11961. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11962. {
  11963. front: {
  11964. height: math.unit(6, "feet"),
  11965. weight: math.unit(150, "lb"),
  11966. name: "Front",
  11967. image: {
  11968. source: "./media/characters/drusilla/front.svg",
  11969. extra: 678 / 635,
  11970. bottom: 0.03
  11971. }
  11972. },
  11973. back: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(150, "lb"),
  11976. name: "Back",
  11977. image: {
  11978. source: "./media/characters/drusilla/back.svg",
  11979. extra: 678 / 635,
  11980. bottom: 0.005
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Macro",
  11987. height: math.unit(100, "feet")
  11988. },
  11989. {
  11990. name: "Canon Height",
  11991. height: math.unit(2000, "feet"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(180, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/renard-thatch/front.svg",
  12005. extra: 2411 / 2275,
  12006. bottom: 0.01
  12007. }
  12008. },
  12009. frontPosing: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(180, "lb"),
  12012. name: "Front (Posing)",
  12013. image: {
  12014. source: "./media/characters/renard-thatch/front-posing.svg",
  12015. extra: 2381 / 2261,
  12016. bottom: 0.01
  12017. }
  12018. },
  12019. back: {
  12020. height: math.unit(6, "feet"),
  12021. weight: math.unit(180, "lb"),
  12022. name: "Back",
  12023. image: {
  12024. source: "./media/characters/renard-thatch/back.svg",
  12025. extra: 2428 / 2288
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Micro",
  12032. height: math.unit(3, "inches")
  12033. },
  12034. {
  12035. name: "Default",
  12036. height: math.unit(6, "feet"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Macro",
  12041. height: math.unit(75, "feet")
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(1450, "feet"),
  12050. weight: math.unit(1.21e6, "tons"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/sekvra/front.svg",
  12054. extra: 1,
  12055. bottom: 0.03
  12056. }
  12057. },
  12058. frontClothed: {
  12059. height: math.unit(1450, "feet"),
  12060. weight: math.unit(1.21e6, "tons"),
  12061. name: "Front (Clothed)",
  12062. image: {
  12063. source: "./media/characters/sekvra/front-clothed.svg",
  12064. extra: 1,
  12065. bottom: 0.03
  12066. }
  12067. },
  12068. side: {
  12069. height: math.unit(1450, "feet"),
  12070. weight: math.unit(1.21e6, "tons"),
  12071. name: "Side",
  12072. image: {
  12073. source: "./media/characters/sekvra/side.svg",
  12074. extra: 1,
  12075. bottom: 0.025
  12076. }
  12077. },
  12078. back: {
  12079. height: math.unit(1450, "feet"),
  12080. weight: math.unit(1.21e6, "tons"),
  12081. name: "Back",
  12082. image: {
  12083. source: "./media/characters/sekvra/back.svg",
  12084. extra: 1,
  12085. bottom: 0.005
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Macro",
  12092. height: math.unit(1450, "feet"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Megamacro",
  12097. height: math.unit(15000, "feet")
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/carmine/front.svg",
  12110. extra: 1,
  12111. bottom: 0.035
  12112. }
  12113. },
  12114. frontArmor: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(150, "lb"),
  12117. name: "Front (Armor)",
  12118. image: {
  12119. source: "./media/characters/carmine/front-armor.svg",
  12120. extra: 1,
  12121. bottom: 0.035
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Large",
  12128. height: math.unit(1, "mile")
  12129. },
  12130. {
  12131. name: "Huge",
  12132. height: math.unit(40, "miles"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Colossal",
  12137. height: math.unit(2500, "miles")
  12138. },
  12139. ]
  12140. ))
  12141. characterMakers.push(() => makeCharacter(
  12142. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12143. {
  12144. front: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(150, "lb"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/elyssia/front.svg",
  12150. extra: 2201 / 2035,
  12151. bottom: 0.05
  12152. }
  12153. },
  12154. frontClothed: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Front (Clothed)",
  12158. image: {
  12159. source: "./media/characters/elyssia/front-clothed.svg",
  12160. extra: 2201 / 2035,
  12161. bottom: 0.05
  12162. }
  12163. },
  12164. back: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Back",
  12168. image: {
  12169. source: "./media/characters/elyssia/back.svg",
  12170. extra: 2201 / 2035,
  12171. bottom: 0.013
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Smaller",
  12178. height: math.unit(150, "feet")
  12179. },
  12180. {
  12181. name: "Standard",
  12182. height: math.unit(1400, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Distracted",
  12187. height: math.unit(15000, "feet")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(7 + 4 / 12, "feet"),
  12196. weight: math.unit(500, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/geno-maxwell/front.svg",
  12200. extra: 2207 / 2040,
  12201. bottom: 0.015
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Micro",
  12208. height: math.unit(3, "inches")
  12209. },
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(7 + 4 / 12, "feet"),
  12213. default: true
  12214. },
  12215. {
  12216. name: "Macro",
  12217. height: math.unit(220, "feet")
  12218. },
  12219. {
  12220. name: "Megamacro",
  12221. height: math.unit(11, "miles")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(7 + 4 / 12, "feet"),
  12230. weight: math.unit(500, "lb"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/regena-maxwell/front.svg",
  12234. extra: 3115 / 2770,
  12235. bottom: 0.02
  12236. }
  12237. },
  12238. },
  12239. [
  12240. {
  12241. name: "Normal",
  12242. height: math.unit(7 + 4 / 12, "feet"),
  12243. default: true
  12244. },
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(220, "feet")
  12248. },
  12249. {
  12250. name: "Megamacro",
  12251. height: math.unit(11, "miles")
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12257. {
  12258. front: {
  12259. height: math.unit(6, "feet"),
  12260. weight: math.unit(150, "lb"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12264. extra: 860 / 690,
  12265. bottom: 0.03
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(1.7, "meters"),
  12273. default: true
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(6, "feet"),
  12282. weight: math.unit(150, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/quilly/front.svg",
  12286. extra: 890 / 776
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Gigamacro",
  12293. height: math.unit(404090, "miles"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(7 + 8 / 12, "feet"),
  12303. weight: math.unit(350, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/tempest/front.svg",
  12307. extra: 1175 / 1086,
  12308. bottom: 0.02
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(7 + 8 / 12, "feet"),
  12316. default: true
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12322. {
  12323. side: {
  12324. height: math.unit(4 + 5 / 12, "feet"),
  12325. weight: math.unit(80, "lb"),
  12326. name: "Side",
  12327. image: {
  12328. source: "./media/characters/rodger/side.svg",
  12329. extra: 1235 / 1118
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(1, "inch")
  12337. },
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(4 + 5 / 12, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(120, "feet")
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(6, "feet"),
  12354. weight: math.unit(150, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/danyel/front.svg",
  12358. extra: 1185 / 1123,
  12359. bottom: 0.05
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Shrunken",
  12366. height: math.unit(0.5, "mm")
  12367. },
  12368. {
  12369. name: "Micro",
  12370. height: math.unit(1, "mm"),
  12371. default: true
  12372. },
  12373. {
  12374. name: "Upsized",
  12375. height: math.unit(5 + 5 / 12, "feet")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(5 + 6 / 12, "feet"),
  12384. weight: math.unit(200, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/vivian-bijoux/front.svg",
  12388. extra: 1,
  12389. bottom: 0.072
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(5 + 6 / 12, "feet"),
  12397. default: true
  12398. },
  12399. {
  12400. name: "Bad Dream",
  12401. height: math.unit(500, "feet")
  12402. },
  12403. {
  12404. name: "Nightmare",
  12405. height: math.unit(500, "miles")
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(6 + 1 / 12, "feet"),
  12414. weight: math.unit(260, "lb"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/zeta/front.svg",
  12418. extra: 1968 / 1889,
  12419. bottom: 0.06
  12420. }
  12421. },
  12422. back: {
  12423. height: math.unit(6 + 1 / 12, "feet"),
  12424. weight: math.unit(260, "lb"),
  12425. name: "Back",
  12426. image: {
  12427. source: "./media/characters/zeta/back.svg",
  12428. extra: 1944 / 1858,
  12429. bottom: 0.03
  12430. }
  12431. },
  12432. hand: {
  12433. height: math.unit(1.112, "feet"),
  12434. name: "Hand",
  12435. image: {
  12436. source: "./media/characters/zeta/hand.svg"
  12437. }
  12438. },
  12439. foot: {
  12440. height: math.unit(1.48, "feet"),
  12441. name: "Foot",
  12442. image: {
  12443. source: "./media/characters/zeta/foot.svg"
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Micro",
  12450. height: math.unit(6, "inches")
  12451. },
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(6 + 1 / 12, "feet"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(20, "feet")
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12465. {
  12466. front: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(150, "lb"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/jamie-larsen/front.svg",
  12472. extra: 962 / 933,
  12473. bottom: 0.02
  12474. }
  12475. },
  12476. back: {
  12477. height: math.unit(6, "feet"),
  12478. weight: math.unit(150, "lb"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/jamie-larsen/back.svg",
  12482. extra: 997 / 946
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(28 + 7 / 12, "feet"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Macro+",
  12494. height: math.unit(180, "feet")
  12495. },
  12496. {
  12497. name: "Megamacro",
  12498. height: math.unit(10, "miles")
  12499. },
  12500. {
  12501. name: "Gigamacro",
  12502. height: math.unit(200000, "miles")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12508. {
  12509. front: {
  12510. height: math.unit(6, "feet"),
  12511. weight: math.unit(120, "lb"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/vance/front.svg",
  12515. extra: 1980 / 1890,
  12516. bottom: 0.09
  12517. }
  12518. },
  12519. back: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(120, "lb"),
  12522. name: "Back",
  12523. image: {
  12524. source: "./media/characters/vance/back.svg",
  12525. extra: 2081 / 1994,
  12526. bottom: 0.014
  12527. }
  12528. },
  12529. hand: {
  12530. height: math.unit(0.88, "feet"),
  12531. name: "Hand",
  12532. image: {
  12533. source: "./media/characters/vance/hand.svg"
  12534. }
  12535. },
  12536. foot: {
  12537. height: math.unit(0.64, "feet"),
  12538. name: "Foot",
  12539. image: {
  12540. source: "./media/characters/vance/foot.svg"
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Small",
  12547. height: math.unit(90, "feet"),
  12548. default: true
  12549. },
  12550. {
  12551. name: "Macro",
  12552. height: math.unit(100, "meters")
  12553. },
  12554. {
  12555. name: "Megamacro",
  12556. height: math.unit(15, "miles")
  12557. },
  12558. ]
  12559. ))
  12560. characterMakers.push(() => makeCharacter(
  12561. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12562. {
  12563. front: {
  12564. height: math.unit(6, "feet"),
  12565. weight: math.unit(180, "lb"),
  12566. name: "Front",
  12567. image: {
  12568. source: "./media/characters/xochitl/front.svg",
  12569. extra: 2297 / 2261,
  12570. bottom: 0.065
  12571. }
  12572. },
  12573. back: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(180, "lb"),
  12576. name: "Back",
  12577. image: {
  12578. source: "./media/characters/xochitl/back.svg",
  12579. extra: 2386 / 2354,
  12580. bottom: 0.01
  12581. }
  12582. },
  12583. foot: {
  12584. height: math.unit(6 / 5 * 1.15, "feet"),
  12585. weight: math.unit(150, "lb"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/xochitl/foot.svg"
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Macro",
  12595. height: math.unit(80, "feet")
  12596. },
  12597. {
  12598. name: "Macro+",
  12599. height: math.unit(400, "feet"),
  12600. default: true
  12601. },
  12602. {
  12603. name: "Gigamacro",
  12604. height: math.unit(80000, "miles")
  12605. },
  12606. {
  12607. name: "Gigamacro+",
  12608. height: math.unit(400000, "miles")
  12609. },
  12610. {
  12611. name: "Teramacro",
  12612. height: math.unit(300, "AU")
  12613. },
  12614. ]
  12615. ))
  12616. characterMakers.push(() => makeCharacter(
  12617. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12618. {
  12619. front: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(150, "lb"),
  12622. name: "Front",
  12623. image: {
  12624. source: "./media/characters/vincent/front.svg",
  12625. extra: 1130 / 1080,
  12626. bottom: 0.055
  12627. }
  12628. },
  12629. beak: {
  12630. height: math.unit(6 * 0.1, "feet"),
  12631. name: "Beak",
  12632. image: {
  12633. source: "./media/characters/vincent/beak.svg"
  12634. }
  12635. },
  12636. hand: {
  12637. height: math.unit(6 * 0.85, "feet"),
  12638. weight: math.unit(150, "lb"),
  12639. name: "Hand",
  12640. image: {
  12641. source: "./media/characters/vincent/hand.svg"
  12642. }
  12643. },
  12644. foot: {
  12645. height: math.unit(6 * 0.19, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Foot",
  12648. image: {
  12649. source: "./media/characters/vincent/foot.svg"
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Base",
  12656. height: math.unit(6 + 5 / 12, "feet"),
  12657. default: true
  12658. },
  12659. {
  12660. name: "Macro",
  12661. height: math.unit(300, "feet")
  12662. },
  12663. {
  12664. name: "Megamacro",
  12665. height: math.unit(2, "miles")
  12666. },
  12667. {
  12668. name: "Gigamacro",
  12669. height: math.unit(1000, "miles")
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12675. {
  12676. front: {
  12677. height: math.unit(6 + 2 / 12, "feet"),
  12678. weight: math.unit(265, "lb"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/jay/front.svg",
  12682. extra: 1510 / 1430,
  12683. bottom: 0.042
  12684. }
  12685. },
  12686. back: {
  12687. height: math.unit(6 + 2 / 12, "feet"),
  12688. weight: math.unit(265, "lb"),
  12689. name: "Back",
  12690. image: {
  12691. source: "./media/characters/jay/back.svg",
  12692. extra: 1510 / 1430,
  12693. bottom: 0.025
  12694. }
  12695. },
  12696. clothed: {
  12697. height: math.unit(6 + 2 / 12, "feet"),
  12698. weight: math.unit(265, "lb"),
  12699. name: "Front (Clothed)",
  12700. image: {
  12701. source: "./media/characters/jay/clothed.svg",
  12702. extra: 744 / 699,
  12703. bottom: 0.043
  12704. }
  12705. },
  12706. head: {
  12707. height: math.unit(1.772, "feet"),
  12708. name: "Head",
  12709. image: {
  12710. source: "./media/characters/jay/head.svg"
  12711. }
  12712. },
  12713. sizeRay: {
  12714. height: math.unit(1.331, "feet"),
  12715. name: "Size Ray",
  12716. image: {
  12717. source: "./media/characters/jay/size-ray.svg"
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Micro",
  12724. height: math.unit(1, "inch")
  12725. },
  12726. {
  12727. name: "Normal",
  12728. height: math.unit(6 + 2 / 12, "feet"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(1, "mile")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(100, "miles")
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(2, "meters"),
  12746. weight: math.unit(500, "kg"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/coatl/front.svg",
  12750. extra: 3948 / 3500,
  12751. bottom: 0.082
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Normal",
  12758. height: math.unit(4, "meters")
  12759. },
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(100, "meters"),
  12763. default: true
  12764. },
  12765. {
  12766. name: "Macro+",
  12767. height: math.unit(300, "meters")
  12768. },
  12769. {
  12770. name: "Megamacro",
  12771. height: math.unit(3, "gigameters")
  12772. },
  12773. {
  12774. name: "Megamacro+",
  12775. height: math.unit(300, "terameters")
  12776. },
  12777. {
  12778. name: "Megamacro++",
  12779. height: math.unit(3, "lightyears")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(50, "kg"),
  12789. name: "front",
  12790. image: {
  12791. source: "./media/characters/shiroryu/front.svg",
  12792. extra: 1990 / 1935
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Mortal Mingling",
  12799. height: math.unit(3, "meters")
  12800. },
  12801. {
  12802. name: "Kaiju-ish",
  12803. height: math.unit(250, "meters")
  12804. },
  12805. {
  12806. name: "Somewhat Godly",
  12807. height: math.unit(400, "km"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Planetary",
  12812. height: math.unit(300, "megameters")
  12813. },
  12814. {
  12815. name: "Galaxy-dwarfing",
  12816. height: math.unit(450, "kiloparsecs")
  12817. },
  12818. {
  12819. name: "Universe Eater",
  12820. height: math.unit(150, "gigaparsecs")
  12821. },
  12822. {
  12823. name: "Almost Immeasurable",
  12824. height: math.unit(1.3e266, "yottaparsecs")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12830. {
  12831. front: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Front",
  12835. image: {
  12836. source: "./media/characters/umeko/front.svg",
  12837. extra: 1,
  12838. bottom: 0.019
  12839. }
  12840. },
  12841. frontArmored: {
  12842. height: math.unit(6, "feet"),
  12843. weight: math.unit(150, "lb"),
  12844. name: "Front (Armored)",
  12845. image: {
  12846. source: "./media/characters/umeko/front-armored.svg",
  12847. extra: 1,
  12848. bottom: 0.021
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Macro",
  12855. height: math.unit(220, "feet"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Guardian Dragon",
  12860. height: math.unit(50, "miles")
  12861. },
  12862. {
  12863. name: "Cosmic",
  12864. height: math.unit(800000, "miles")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(150, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/cassidy/front.svg",
  12877. extra: 1,
  12878. bottom: 0.043
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Canon Height",
  12885. height: math.unit(120, "feet"),
  12886. default: true
  12887. },
  12888. {
  12889. name: "Macro+",
  12890. height: math.unit(400, "feet")
  12891. },
  12892. {
  12893. name: "Macro++",
  12894. height: math.unit(4000, "feet")
  12895. },
  12896. {
  12897. name: "Megamacro",
  12898. height: math.unit(3, "miles")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(150, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/isaac/front.svg",
  12911. extra: 896 / 815,
  12912. bottom: 0.11
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Human Size",
  12919. height: math.unit(8, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Macro",
  12924. height: math.unit(400, "feet")
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(50, "miles")
  12929. },
  12930. {
  12931. name: "Canon Height",
  12932. height: math.unit(200, "AU")
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12938. {
  12939. front: {
  12940. height: math.unit(6, "feet"),
  12941. weight: math.unit(72, "kg"),
  12942. name: "Front",
  12943. image: {
  12944. source: "./media/characters/sleekit/front.svg",
  12945. extra: 4693 / 4487,
  12946. bottom: 0.012
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Minimum Height",
  12953. height: math.unit(10, "meters")
  12954. },
  12955. {
  12956. name: "Smaller",
  12957. height: math.unit(25, "meters")
  12958. },
  12959. {
  12960. name: "Larger",
  12961. height: math.unit(38, "meters"),
  12962. default: true
  12963. },
  12964. {
  12965. name: "Maximum height",
  12966. height: math.unit(100, "meters")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(150, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/nillia/front.svg",
  12979. extra: 2195 / 2037,
  12980. bottom: 0.005
  12981. }
  12982. },
  12983. back: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(150, "lb"),
  12986. name: "Back",
  12987. image: {
  12988. source: "./media/characters/nillia/back.svg",
  12989. extra: 2195 / 2037,
  12990. bottom: 0.005
  12991. }
  12992. },
  12993. },
  12994. [
  12995. {
  12996. name: "Canon Height",
  12997. height: math.unit(489, "feet"),
  12998. default: true
  12999. }
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(6, "feet"),
  13007. weight: math.unit(150, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/mesmyriza/front.svg",
  13011. extra: 2067 / 1784,
  13012. bottom: 0.035
  13013. }
  13014. },
  13015. foot: {
  13016. height: math.unit(6 / (250 / 35), "feet"),
  13017. name: "Foot",
  13018. image: {
  13019. source: "./media/characters/mesmyriza/foot.svg"
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(457, "meters"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Megamacro",
  13031. height: math.unit(8, "megameters")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(250, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/saudade/front.svg",
  13044. extra: 1172 / 1139,
  13045. bottom: 0.035
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(3, "inches")
  13053. },
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(6, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Macro",
  13061. height: math.unit(50, "feet")
  13062. },
  13063. {
  13064. name: "Megamacro",
  13065. height: math.unit(2800, "feet")
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(5 + 4 / 12, "feet"),
  13074. weight: math.unit(100, "lb"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/keireer/front.svg",
  13078. extra: 716 / 666,
  13079. bottom: 0.05
  13080. }
  13081. },
  13082. },
  13083. [
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(5 + 4 / 12, "feet"),
  13087. default: true
  13088. },
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13093. {
  13094. front: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(90, "kg"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/mirja/front.svg",
  13100. extra: 1789 / 1683,
  13101. bottom: 0.05
  13102. }
  13103. },
  13104. frontDressed: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(90, "lb"),
  13107. name: "Front (Dressed)",
  13108. image: {
  13109. source: "./media/characters/mirja/front-dressed.svg",
  13110. extra: 1789 / 1683,
  13111. bottom: 0.05
  13112. }
  13113. },
  13114. back: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(90, "lb"),
  13117. name: "Back",
  13118. image: {
  13119. source: "./media/characters/mirja/back.svg",
  13120. extra: 953 / 917,
  13121. bottom: 0.017
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "\"Incognito\"",
  13128. height: math.unit(3, "meters")
  13129. },
  13130. {
  13131. name: "Strolling Size",
  13132. height: math.unit(15, "km")
  13133. },
  13134. {
  13135. name: "Larger Strolling Size",
  13136. height: math.unit(400, "km")
  13137. },
  13138. {
  13139. name: "Preferred Size",
  13140. height: math.unit(5000, "km")
  13141. },
  13142. {
  13143. name: "True Size",
  13144. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13145. default: true
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(15, "feet"),
  13154. weight: math.unit(880, "kg"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/nightraver/front.svg",
  13158. extra: 2444 / 2160,
  13159. bottom: 0.027
  13160. }
  13161. },
  13162. back: {
  13163. height: math.unit(15, "feet"),
  13164. weight: math.unit(880, "kg"),
  13165. name: "Back",
  13166. image: {
  13167. source: "./media/characters/nightraver/back.svg",
  13168. extra: 2309 / 2180,
  13169. bottom: 0.005
  13170. }
  13171. },
  13172. sole: {
  13173. height: math.unit(2.878, "feet"),
  13174. name: "Sole",
  13175. image: {
  13176. source: "./media/characters/nightraver/sole.svg"
  13177. }
  13178. },
  13179. foot: {
  13180. height: math.unit(2.285, "feet"),
  13181. name: "Foot",
  13182. image: {
  13183. source: "./media/characters/nightraver/foot.svg"
  13184. }
  13185. },
  13186. maw: {
  13187. height: math.unit(2.67, "feet"),
  13188. name: "Maw",
  13189. image: {
  13190. source: "./media/characters/nightraver/maw.svg"
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Micro",
  13197. height: math.unit(1, "cm")
  13198. },
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(15, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Macro",
  13206. height: math.unit(300, "feet")
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(300, "miles")
  13211. },
  13212. {
  13213. name: "Gigamacro",
  13214. height: math.unit(10000, "miles")
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13220. {
  13221. side: {
  13222. height: math.unit(2, "inches"),
  13223. weight: math.unit(5, "grams"),
  13224. name: "Side",
  13225. image: {
  13226. source: "./media/characters/arc/side.svg"
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Micro",
  13233. height: math.unit(2, "inches"),
  13234. default: true
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(1.1938, "meters"),
  13243. weight: math.unit(54, "kg"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/nebula-shahar/front.svg",
  13247. extra: 1642 / 1436,
  13248. bottom: 0.06
  13249. }
  13250. },
  13251. },
  13252. [
  13253. {
  13254. name: "Megamicro",
  13255. height: math.unit(0.3, "mm")
  13256. },
  13257. {
  13258. name: "Micro",
  13259. height: math.unit(3, "cm")
  13260. },
  13261. {
  13262. name: "Normal",
  13263. height: math.unit(138, "cm"),
  13264. default: true
  13265. },
  13266. {
  13267. name: "Macro",
  13268. height: math.unit(30, "m")
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13274. {
  13275. front: {
  13276. height: math.unit(5.24, "feet"),
  13277. weight: math.unit(150, "lb"),
  13278. name: "Front",
  13279. image: {
  13280. source: "./media/characters/shayla/front.svg",
  13281. extra: 1512 / 1414,
  13282. bottom: 0.01
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(5.24, "feet"),
  13287. weight: math.unit(150, "lb"),
  13288. name: "Back",
  13289. image: {
  13290. source: "./media/characters/shayla/back.svg",
  13291. extra: 1512 / 1414
  13292. }
  13293. },
  13294. hand: {
  13295. height: math.unit(0.7781496062992126, "feet"),
  13296. name: "Hand",
  13297. image: {
  13298. source: "./media/characters/shayla/hand.svg"
  13299. }
  13300. },
  13301. foot: {
  13302. height: math.unit(1.4206036745406823, "feet"),
  13303. name: "Foot",
  13304. image: {
  13305. source: "./media/characters/shayla/foot.svg"
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Micro",
  13312. height: math.unit(0.32, "feet")
  13313. },
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(5.24, "feet"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(492.12, "feet")
  13322. },
  13323. {
  13324. name: "Megamacro",
  13325. height: math.unit(186.41, "miles")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(2.2, "m"),
  13334. weight: math.unit(120, "kg"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/pia-jr/front.svg",
  13338. extra: 1000 / 970,
  13339. bottom: 0.035
  13340. }
  13341. },
  13342. hand: {
  13343. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13344. name: "Hand",
  13345. image: {
  13346. source: "./media/characters/pia-jr/hand.svg"
  13347. }
  13348. },
  13349. paw: {
  13350. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13351. name: "Paw",
  13352. image: {
  13353. source: "./media/characters/pia-jr/paw.svg"
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Micro",
  13360. height: math.unit(1.2, "cm")
  13361. },
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(2.2, "m"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(180, "m")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(420, "km")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(2, "m"),
  13382. weight: math.unit(115, "kg"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/pia-sr/front.svg",
  13386. extra: 760 / 730,
  13387. bottom: 0.015
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(2, "m"),
  13392. weight: math.unit(115, "kg"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/pia-sr/back.svg",
  13396. extra: 760 / 730,
  13397. bottom: 0.01
  13398. }
  13399. },
  13400. hand: {
  13401. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13402. name: "Hand",
  13403. image: {
  13404. source: "./media/characters/pia-sr/hand.svg"
  13405. }
  13406. },
  13407. foot: {
  13408. height: math.unit(1.83, "feet"),
  13409. name: "Foot",
  13410. image: {
  13411. source: "./media/characters/pia-sr/foot.svg"
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Micro",
  13418. height: math.unit(88, "mm")
  13419. },
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(2, "m"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(200, "m")
  13428. },
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(420, "km")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(8 + 2 / 12, "feet"),
  13440. weight: math.unit(300, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/kibibyte/front.svg",
  13444. extra: 2221 / 2098,
  13445. bottom: 0.04
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(8 + 2 / 12, "feet"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Socialable Macro",
  13457. height: math.unit(50, "feet")
  13458. },
  13459. {
  13460. name: "Macro",
  13461. height: math.unit(300, "feet")
  13462. },
  13463. {
  13464. name: "Megamacro",
  13465. height: math.unit(500, "miles")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/felix/front.svg",
  13478. extra: 762 / 722,
  13479. bottom: 0.02
  13480. }
  13481. },
  13482. frontClothed: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Front (Clothed)",
  13486. image: {
  13487. source: "./media/characters/felix/front-clothed.svg",
  13488. extra: 762 / 722,
  13489. bottom: 0.02
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Normal",
  13496. height: math.unit(6 + 8 / 12, "feet"),
  13497. default: true
  13498. },
  13499. {
  13500. name: "Macro",
  13501. height: math.unit(2600, "feet")
  13502. },
  13503. {
  13504. name: "Megamacro",
  13505. height: math.unit(450, "miles")
  13506. },
  13507. ]
  13508. ))
  13509. characterMakers.push(() => makeCharacter(
  13510. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13511. {
  13512. front: {
  13513. height: math.unit(6 + 1 / 12, "feet"),
  13514. weight: math.unit(250, "lb"),
  13515. name: "Front",
  13516. image: {
  13517. source: "./media/characters/tobo/front.svg",
  13518. extra: 608 / 586,
  13519. bottom: 0.023
  13520. }
  13521. },
  13522. back: {
  13523. height: math.unit(6 + 1 / 12, "feet"),
  13524. weight: math.unit(250, "lb"),
  13525. name: "Back",
  13526. image: {
  13527. source: "./media/characters/tobo/back.svg",
  13528. extra: 608 / 586
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Nano",
  13535. height: math.unit(2, "nm")
  13536. },
  13537. {
  13538. name: "Megamicro",
  13539. height: math.unit(0.1, "mm")
  13540. },
  13541. {
  13542. name: "Micro",
  13543. height: math.unit(1, "inch"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Human-sized",
  13548. height: math.unit(6 + 1 / 12, "feet")
  13549. },
  13550. {
  13551. name: "Macro",
  13552. height: math.unit(250, "feet")
  13553. },
  13554. {
  13555. name: "Megamacro",
  13556. height: math.unit(75, "miles")
  13557. },
  13558. {
  13559. name: "Texas-sized",
  13560. height: math.unit(750, "miles")
  13561. },
  13562. {
  13563. name: "Teramacro",
  13564. height: math.unit(50000, "miles")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(269, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/danny-kapowsky/front.svg",
  13577. extra: 766 / 736,
  13578. bottom: 0.044
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(269, "lb"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/danny-kapowsky/back.svg",
  13587. extra: 797 / 760,
  13588. bottom: 0.025
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(150, "feet"),
  13596. default: true
  13597. },
  13598. {
  13599. name: "Macro+",
  13600. height: math.unit(200, "feet")
  13601. },
  13602. {
  13603. name: "Macro++",
  13604. height: math.unit(300, "feet")
  13605. },
  13606. {
  13607. name: "Macro+++",
  13608. height: math.unit(400, "feet")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13614. {
  13615. side: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(170, "lb"),
  13618. name: "Side",
  13619. image: {
  13620. source: "./media/characters/finn/side.svg",
  13621. extra: 1953 / 1807,
  13622. bottom: 0.057
  13623. }
  13624. },
  13625. },
  13626. [
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(14445, "feet"),
  13630. default: true
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(5 + 6 / 12, "feet"),
  13639. weight: math.unit(125, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/roy/front.svg",
  13643. extra: 1,
  13644. bottom: 0.11
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Micro",
  13651. height: math.unit(3, "inches"),
  13652. default: true
  13653. },
  13654. {
  13655. name: "Normal",
  13656. height: math.unit(5 + 6 / 12, "feet")
  13657. },
  13658. {
  13659. name: "Lesser Macro",
  13660. height: math.unit(60, "feet")
  13661. },
  13662. {
  13663. name: "Greater Macro",
  13664. height: math.unit(120, "feet")
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(100, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/aevsivs/front.svg",
  13677. extra: 1,
  13678. bottom: 0.03
  13679. }
  13680. },
  13681. back: {
  13682. height: math.unit(6, "feet"),
  13683. weight: math.unit(100, "lb"),
  13684. name: "Back",
  13685. image: {
  13686. source: "./media/characters/aevsivs/back.svg"
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Micro",
  13693. height: math.unit(2, "inches"),
  13694. default: true
  13695. },
  13696. {
  13697. name: "Normal",
  13698. height: math.unit(5, "feet")
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(5 + 7 / 12, "feet"),
  13707. weight: math.unit(159, "lb"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/hildegard/front.svg",
  13711. extra: 312 / 286,
  13712. bottom: 0.005
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(5 + 7 / 12, "feet"),
  13720. default: true
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13726. {
  13727. bernard: {
  13728. height: math.unit(2 + 7 / 12, "feet"),
  13729. weight: math.unit(66, "lb"),
  13730. name: "Bernard",
  13731. rename: true,
  13732. image: {
  13733. source: "./media/characters/bernard-wilder/bernard.svg",
  13734. extra: 192 / 128,
  13735. bottom: 0.05
  13736. }
  13737. },
  13738. wilder: {
  13739. height: math.unit(5 + 8 / 12, "feet"),
  13740. weight: math.unit(143, "lb"),
  13741. name: "Wilder",
  13742. rename: true,
  13743. image: {
  13744. source: "./media/characters/bernard-wilder/wilder.svg",
  13745. extra: 361 / 312,
  13746. bottom: 0.02
  13747. }
  13748. },
  13749. },
  13750. [
  13751. {
  13752. name: "Normal",
  13753. height: math.unit(2 + 7 / 12, "feet"),
  13754. default: true
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13760. {
  13761. anthro: {
  13762. height: math.unit(6 + 1 / 12, "feet"),
  13763. weight: math.unit(155, "lb"),
  13764. name: "Anthro",
  13765. image: {
  13766. source: "./media/characters/hearth/anthro.svg",
  13767. extra: 260 / 250,
  13768. bottom: 0.02
  13769. }
  13770. },
  13771. feral: {
  13772. height: math.unit(3.78, "feet"),
  13773. weight: math.unit(35, "kg"),
  13774. name: "Feral",
  13775. image: {
  13776. source: "./media/characters/hearth/feral.svg",
  13777. extra: 153 / 135,
  13778. bottom: 0.03
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(6 + 1 / 12, "feet"),
  13786. default: true
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13792. {
  13793. front: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(182, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/ingrid/front.svg",
  13799. extra: 294 / 268,
  13800. bottom: 0.027
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Normal",
  13807. height: math.unit(6, "feet"),
  13808. default: true
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13814. {
  13815. eevee: {
  13816. height: math.unit(2 + 10 / 12, "feet"),
  13817. weight: math.unit(86, "lb"),
  13818. name: "Malgam",
  13819. image: {
  13820. source: "./media/characters/malgam/eevee.svg",
  13821. extra: 218 / 180,
  13822. bottom: 0.2
  13823. }
  13824. },
  13825. sylveon: {
  13826. height: math.unit(4, "feet"),
  13827. weight: math.unit(101, "lb"),
  13828. name: "Future Malgam",
  13829. rename: true,
  13830. image: {
  13831. source: "./media/characters/malgam/sylveon.svg",
  13832. extra: 371 / 325,
  13833. bottom: 0.015
  13834. }
  13835. },
  13836. gigantamax: {
  13837. height: math.unit(50, "feet"),
  13838. name: "Gigantamax Malgam",
  13839. rename: true,
  13840. image: {
  13841. source: "./media/characters/malgam/gigantamax.svg"
  13842. }
  13843. },
  13844. },
  13845. [
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(2 + 10 / 12, "feet"),
  13849. default: true
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(5 + 11 / 12, "feet"),
  13858. weight: math.unit(188, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/fleur/front.svg",
  13862. extra: 309 / 283,
  13863. bottom: 0.007
  13864. }
  13865. },
  13866. },
  13867. [
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(5 + 11 / 12, "feet"),
  13871. default: true
  13872. },
  13873. ]
  13874. ))
  13875. characterMakers.push(() => makeCharacter(
  13876. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13877. {
  13878. front: {
  13879. height: math.unit(5 + 4 / 12, "feet"),
  13880. weight: math.unit(122, "lb"),
  13881. name: "Front",
  13882. image: {
  13883. source: "./media/characters/jude/front.svg",
  13884. extra: 288 / 273,
  13885. bottom: 0.03
  13886. }
  13887. },
  13888. },
  13889. [
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(5 + 4 / 12, "feet"),
  13893. default: true
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(5 + 11 / 12, "feet"),
  13902. weight: math.unit(190, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/seara/front.svg",
  13906. extra: 1,
  13907. bottom: 0.05
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Normal",
  13914. height: math.unit(5 + 11 / 12, "feet"),
  13915. default: true
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(16 + 5 / 12, "feet"),
  13924. weight: math.unit(524, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/caspian/front.svg",
  13928. extra: 1,
  13929. bottom: 0.04
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(16 + 5 / 12, "feet"),
  13937. default: true
  13938. },
  13939. ]
  13940. ))
  13941. characterMakers.push(() => makeCharacter(
  13942. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13943. {
  13944. front: {
  13945. height: math.unit(5 + 7 / 12, "feet"),
  13946. weight: math.unit(170, "lb"),
  13947. name: "Front",
  13948. image: {
  13949. source: "./media/characters/mika/front.svg",
  13950. extra: 1,
  13951. bottom: 0.016
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(5 + 7 / 12, "feet"),
  13959. default: true
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(6 + 2 / 12, "feet"),
  13968. weight: math.unit(268, "lb"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/sol/front.svg",
  13972. extra: 247 / 231,
  13973. bottom: 0.05
  13974. }
  13975. },
  13976. },
  13977. [
  13978. {
  13979. name: "Normal",
  13980. height: math.unit(6 + 2 / 12, "feet"),
  13981. default: true
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13987. {
  13988. buizel: {
  13989. height: math.unit(2 + 5 / 12, "feet"),
  13990. weight: math.unit(87, "lb"),
  13991. name: "Buizel",
  13992. image: {
  13993. source: "./media/characters/umiko/buizel.svg",
  13994. extra: 172 / 157,
  13995. bottom: 0.01
  13996. }
  13997. },
  13998. floatzel: {
  13999. height: math.unit(5 + 9 / 12, "feet"),
  14000. weight: math.unit(250, "lb"),
  14001. name: "Floatzel",
  14002. image: {
  14003. source: "./media/characters/umiko/floatzel.svg",
  14004. extra: 262 / 248
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Normal",
  14011. height: math.unit(2 + 5 / 12, "feet"),
  14012. default: true
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(6 + 2 / 12, "feet"),
  14021. weight: math.unit(146, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/iliac/front.svg",
  14025. extra: 389 / 365,
  14026. bottom: 0.035
  14027. }
  14028. },
  14029. },
  14030. [
  14031. {
  14032. name: "Normal",
  14033. height: math.unit(6 + 2 / 12, "feet"),
  14034. default: true
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(170, "lb"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/topaz/front.svg",
  14047. extra: 317 / 303,
  14048. bottom: 0.055
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(6, "feet"),
  14056. default: true
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14062. {
  14063. front: {
  14064. height: math.unit(5 + 11 / 12, "feet"),
  14065. weight: math.unit(144, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/gabriel/front.svg",
  14069. extra: 285 / 262,
  14070. bottom: 0.004
  14071. }
  14072. },
  14073. },
  14074. [
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(5 + 11 / 12, "feet"),
  14078. default: true
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14084. {
  14085. side: {
  14086. height: math.unit(6 + 5 / 12, "feet"),
  14087. weight: math.unit(300, "lb"),
  14088. name: "Side",
  14089. image: {
  14090. source: "./media/characters/tempest-suicune/side.svg",
  14091. extra: 195 / 154,
  14092. bottom: 0.04
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Normal",
  14099. height: math.unit(6 + 5 / 12, "feet"),
  14100. default: true
  14101. },
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(7 + 2 / 12, "feet"),
  14109. weight: math.unit(322, "lb"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/vulcan/front.svg",
  14113. extra: 154 / 147,
  14114. bottom: 0.04
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Normal",
  14121. height: math.unit(7 + 2 / 12, "feet"),
  14122. default: true
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(5 + 10 / 12, "feet"),
  14131. weight: math.unit(264, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/gault/front.svg",
  14135. extra: 161 / 140,
  14136. bottom: 0.028
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(5 + 10 / 12, "feet"),
  14144. default: true
  14145. },
  14146. ]
  14147. ))
  14148. characterMakers.push(() => makeCharacter(
  14149. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14150. {
  14151. front: {
  14152. height: math.unit(6, "feet"),
  14153. weight: math.unit(150, "lb"),
  14154. name: "Front",
  14155. image: {
  14156. source: "./media/characters/shard/front.svg",
  14157. extra: 273 / 238,
  14158. bottom: 0.02
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(3 + 6 / 12, "feet"),
  14166. default: true
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(5 + 11 / 12, "feet"),
  14175. weight: math.unit(146, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/ashe/front.svg",
  14179. extra: 400 / 373,
  14180. bottom: 0.01
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Normal",
  14187. height: math.unit(5 + 11 / 12, "feet"),
  14188. default: true
  14189. },
  14190. ]
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(5 + 5 / 12, "feet"),
  14197. weight: math.unit(135, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/beatrix/front.svg",
  14201. extra: 392 / 379,
  14202. bottom: 0.01
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Normal",
  14209. height: math.unit(6, "feet"),
  14210. default: true
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/ignatius/front.svg",
  14223. extra: 245 / 222,
  14224. bottom: 0.01
  14225. }
  14226. },
  14227. },
  14228. [
  14229. {
  14230. name: "Normal",
  14231. height: math.unit(5 + 5 / 12, "feet"),
  14232. default: true
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(6 + 2 / 12, "feet"),
  14241. weight: math.unit(138, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/mei-li/front.svg",
  14245. extra: 237 / 229,
  14246. bottom: 0.03
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Normal",
  14253. height: math.unit(6 + 2 / 12, "feet"),
  14254. default: true
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14260. {
  14261. front: {
  14262. height: math.unit(2 + 4 / 12, "feet"),
  14263. weight: math.unit(62, "lb"),
  14264. name: "Front",
  14265. image: {
  14266. source: "./media/characters/puru/front.svg",
  14267. extra: 206 / 149,
  14268. bottom: 0.06
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Normal",
  14275. height: math.unit(2 + 4 / 12, "feet"),
  14276. default: true
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14282. {
  14283. taur: {
  14284. height: math.unit(11, "feet"),
  14285. weight: math.unit(500, "lb"),
  14286. name: "Taur",
  14287. image: {
  14288. source: "./media/characters/kee/taur.svg",
  14289. extra: 1,
  14290. bottom: 0.04
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Normal",
  14297. height: math.unit(11, "feet"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14304. {
  14305. anthro: {
  14306. height: math.unit(7, "feet"),
  14307. weight: math.unit(190, "lb"),
  14308. name: "Anthro",
  14309. image: {
  14310. source: "./media/characters/cobalt-dracha/anthro.svg",
  14311. extra: 231 / 225,
  14312. bottom: 0.04
  14313. }
  14314. },
  14315. feral: {
  14316. height: math.unit(9 + 7 / 12, "feet"),
  14317. weight: math.unit(294, "lb"),
  14318. name: "Feral",
  14319. image: {
  14320. source: "./media/characters/cobalt-dracha/feral.svg",
  14321. extra: 692 / 633,
  14322. bottom: 0.05
  14323. }
  14324. },
  14325. },
  14326. [
  14327. {
  14328. name: "Normal",
  14329. height: math.unit(7, "feet"),
  14330. default: true
  14331. },
  14332. ]
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14336. {
  14337. fallen: {
  14338. height: math.unit(11 + 8 / 12, "feet"),
  14339. weight: math.unit(485, "lb"),
  14340. name: "Java (Fallen)",
  14341. rename: true,
  14342. image: {
  14343. source: "./media/characters/java/fallen.svg",
  14344. extra: 226 / 208,
  14345. bottom: 0.005
  14346. }
  14347. },
  14348. godkin: {
  14349. height: math.unit(10 + 6 / 12, "feet"),
  14350. weight: math.unit(328, "lb"),
  14351. name: "Java (Godkin)",
  14352. rename: true,
  14353. image: {
  14354. source: "./media/characters/java/godkin.svg",
  14355. extra: 270 / 262,
  14356. bottom: 0.02
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Normal",
  14363. height: math.unit(11 + 8 / 12, "feet"),
  14364. default: true
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14370. {
  14371. front: {
  14372. height: math.unit(7 + 8 / 12, "feet"),
  14373. weight: math.unit(320, "lb"),
  14374. name: "Front",
  14375. image: {
  14376. source: "./media/characters/skoll/front.svg",
  14377. extra: 232 / 220,
  14378. bottom: 0.02
  14379. }
  14380. },
  14381. },
  14382. [
  14383. {
  14384. name: "Normal",
  14385. height: math.unit(7 + 8 / 12, "feet"),
  14386. default: true
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(5 + 9 / 12, "feet"),
  14395. weight: math.unit(170, "lb"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/purna/front.svg",
  14399. extra: 239 / 229,
  14400. bottom: 0.01
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(5 + 9 / 12, "feet"),
  14408. default: true
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(5 + 9 / 12, "feet"),
  14417. weight: math.unit(142, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/kuva/front.svg",
  14421. extra: 281 / 271,
  14422. bottom: 0.006
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(5 + 9 / 12, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14436. {
  14437. anthro: {
  14438. height: math.unit(9 + 2 / 12, "feet"),
  14439. weight: math.unit(270, "lb"),
  14440. name: "Anthro",
  14441. image: {
  14442. source: "./media/characters/embra/anthro.svg",
  14443. extra: 200 / 187,
  14444. bottom: 0.02
  14445. }
  14446. },
  14447. feral: {
  14448. height: math.unit(18 + 8 / 12, "feet"),
  14449. weight: math.unit(576, "lb"),
  14450. name: "Feral",
  14451. image: {
  14452. source: "./media/characters/embra/feral.svg",
  14453. extra: 152 / 137,
  14454. bottom: 0.037
  14455. }
  14456. },
  14457. },
  14458. [
  14459. {
  14460. name: "Normal",
  14461. height: math.unit(9 + 2 / 12, "feet"),
  14462. default: true
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14468. {
  14469. anthro: {
  14470. height: math.unit(10 + 9 / 12, "feet"),
  14471. weight: math.unit(224, "lb"),
  14472. name: "Anthro",
  14473. image: {
  14474. source: "./media/characters/grottos/anthro.svg",
  14475. extra: 350 / 332,
  14476. bottom: 0.045
  14477. }
  14478. },
  14479. feral: {
  14480. height: math.unit(20 + 7 / 12, "feet"),
  14481. weight: math.unit(629, "lb"),
  14482. name: "Feral",
  14483. image: {
  14484. source: "./media/characters/grottos/feral.svg",
  14485. extra: 207 / 190,
  14486. bottom: 0.05
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Normal",
  14493. height: math.unit(10 + 9 / 12, "feet"),
  14494. default: true
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14500. {
  14501. anthro: {
  14502. height: math.unit(9 + 6 / 12, "feet"),
  14503. weight: math.unit(298, "lb"),
  14504. name: "Anthro",
  14505. image: {
  14506. source: "./media/characters/frifna/anthro.svg",
  14507. extra: 282 / 269,
  14508. bottom: 0.015
  14509. }
  14510. },
  14511. feral: {
  14512. height: math.unit(16 + 2 / 12, "feet"),
  14513. weight: math.unit(624, "lb"),
  14514. name: "Feral",
  14515. image: {
  14516. source: "./media/characters/frifna/feral.svg"
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(9 + 6 / 12, "feet"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(6 + 2 / 12, "feet"),
  14533. weight: math.unit(168, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/elise/front.svg",
  14537. extra: 276 / 271
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(6 + 2 / 12, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(5 + 10 / 12, "feet"),
  14554. weight: math.unit(210, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/glade/front.svg",
  14558. extra: 258 / 247,
  14559. bottom: 0.008
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(5 + 10 / 12, "feet"),
  14567. default: true
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(5 + 10 / 12, "feet"),
  14576. weight: math.unit(129, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/rina/front.svg",
  14580. extra: 266 / 255,
  14581. bottom: 0.005
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(5 + 10 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(6 + 1 / 12, "feet"),
  14598. weight: math.unit(192, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/veronica/front.svg",
  14602. extra: 319 / 309,
  14603. bottom: 0.005
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(6 + 1 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(9 + 3 / 12, "feet"),
  14620. weight: math.unit(1100, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/braxton/front.svg",
  14624. extra: 1057 / 984,
  14625. bottom: 0.05
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(9 + 3 / 12, "feet")
  14633. },
  14634. {
  14635. name: "Giant",
  14636. height: math.unit(300, "feet"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Macro",
  14641. height: math.unit(700, "feet")
  14642. },
  14643. {
  14644. name: "Megamacro",
  14645. height: math.unit(6000, "feet")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(6 + 7 / 12, "feet"),
  14654. weight: math.unit(150, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/blue-feyonics/front.svg",
  14658. extra: 1403 / 1306,
  14659. bottom: 0.047
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(6 + 7 / 12, "feet"),
  14667. default: true
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(1.8, "meters"),
  14676. weight: math.unit(60, "kg"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/maxwell/front.svg",
  14680. extra: 2060 / 1873
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Micro",
  14687. height: math.unit(1, "mm")
  14688. },
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(1.8, "meter"),
  14692. default: true
  14693. },
  14694. {
  14695. name: "Macro",
  14696. height: math.unit(30, "meters")
  14697. },
  14698. {
  14699. name: "Megamacro",
  14700. height: math.unit(10, "km")
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14706. {
  14707. front: {
  14708. height: math.unit(6, "feet"),
  14709. weight: math.unit(150, "lb"),
  14710. name: "Front",
  14711. image: {
  14712. source: "./media/characters/jack/front.svg",
  14713. extra: 1754 / 1640,
  14714. bottom: 0.01
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(80000, "feet"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "Max size",
  14726. height: math.unit(10, "lightyears")
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14732. {
  14733. upright: {
  14734. height: math.unit(7, "feet"),
  14735. weight: math.unit(170, "lb"),
  14736. name: "Upright",
  14737. image: {
  14738. source: "./media/characters/cafat/upright.svg",
  14739. bottom: 0.01
  14740. }
  14741. },
  14742. uprightFull: {
  14743. height: math.unit(7, "feet"),
  14744. weight: math.unit(170, "lb"),
  14745. name: "Upright (Full)",
  14746. image: {
  14747. source: "./media/characters/cafat/upright-full.svg",
  14748. bottom: 0.01
  14749. }
  14750. },
  14751. side: {
  14752. height: math.unit(5, "feet"),
  14753. weight: math.unit(150, "lb"),
  14754. name: "Side",
  14755. image: {
  14756. source: "./media/characters/cafat/side.svg"
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Small",
  14763. height: math.unit(7, "feet"),
  14764. default: true
  14765. },
  14766. {
  14767. name: "Large",
  14768. height: math.unit(15.5, "feet")
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14774. {
  14775. front: {
  14776. height: math.unit(6, "feet"),
  14777. weight: math.unit(150, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/verin-raharra/front.svg",
  14781. extra: 5019 / 4835,
  14782. bottom: 0.023
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(7 + 5 / 12, "feet"),
  14790. default: true
  14791. },
  14792. {
  14793. name: "Upsized",
  14794. height: math.unit(20, "feet")
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(7, "feet"),
  14803. weight: math.unit(230, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/nakata/front.svg",
  14807. extra: 1.005,
  14808. bottom: 0.01
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(7, "feet"),
  14816. default: true
  14817. },
  14818. {
  14819. name: "Big",
  14820. height: math.unit(14, "feet")
  14821. },
  14822. {
  14823. name: "Macro",
  14824. height: math.unit(400, "feet")
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(4.91, "feet"),
  14833. weight: math.unit(100, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/lily/front.svg",
  14837. extra: 1585 / 1415,
  14838. bottom: 0.02
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(4.91, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14852. {
  14853. laying: {
  14854. height: math.unit(4 + 4 / 12, "feet"),
  14855. weight: math.unit(600, "lb"),
  14856. name: "Laying",
  14857. image: {
  14858. source: "./media/characters/sheila/laying.svg",
  14859. extra: 1333 / 1265,
  14860. bottom: 0.16
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(4 + 4 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(190, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/sax/front.svg",
  14881. extra: 1187 / 973,
  14882. bottom: 0.042
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Micro",
  14889. height: math.unit(4, "inches"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(150, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/pandora/front.svg",
  14903. extra: 2720 / 2556,
  14904. bottom: 0.015
  14905. }
  14906. },
  14907. back: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(150, "lb"),
  14910. name: "Back",
  14911. image: {
  14912. source: "./media/characters/pandora/back.svg",
  14913. extra: 2720 / 2556,
  14914. bottom: 0.01
  14915. }
  14916. },
  14917. beans: {
  14918. height: math.unit(6 / 8, "feet"),
  14919. name: "Beans",
  14920. image: {
  14921. source: "./media/characters/pandora/beans.svg"
  14922. }
  14923. },
  14924. skirt: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Skirt",
  14928. image: {
  14929. source: "./media/characters/pandora/skirt.svg",
  14930. extra: 1622 / 1525,
  14931. bottom: 0.015
  14932. }
  14933. },
  14934. hoodie: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Hoodie",
  14938. image: {
  14939. source: "./media/characters/pandora/hoodie.svg",
  14940. extra: 1622 / 1525,
  14941. bottom: 0.015
  14942. }
  14943. },
  14944. casual: {
  14945. height: math.unit(6, "feet"),
  14946. weight: math.unit(150, "lb"),
  14947. name: "Casual",
  14948. image: {
  14949. source: "./media/characters/pandora/casual.svg",
  14950. extra: 1622 / 1525,
  14951. bottom: 0.015
  14952. }
  14953. },
  14954. },
  14955. [
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(6, "feet")
  14959. },
  14960. {
  14961. name: "Big Steppy",
  14962. height: math.unit(1, "km"),
  14963. default: true
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14969. {
  14970. side: {
  14971. height: math.unit(10, "feet"),
  14972. weight: math.unit(800, "kg"),
  14973. name: "Side",
  14974. image: {
  14975. source: "./media/characters/venio-darcony/side.svg",
  14976. extra: 1373 / 1003,
  14977. bottom: 0.037
  14978. }
  14979. },
  14980. front: {
  14981. height: math.unit(19, "feet"),
  14982. weight: math.unit(800, "kg"),
  14983. name: "Front",
  14984. image: {
  14985. source: "./media/characters/venio-darcony/front.svg"
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(19, "feet"),
  14990. weight: math.unit(800, "kg"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/venio-darcony/back.svg"
  14994. }
  14995. },
  14996. sideNsfw: {
  14997. height: math.unit(10, "feet"),
  14998. weight: math.unit(800, "kg"),
  14999. name: "Side (NSFW)",
  15000. image: {
  15001. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15002. extra: 1373 / 1003,
  15003. bottom: 0.037
  15004. }
  15005. },
  15006. frontNsfw: {
  15007. height: math.unit(19, "feet"),
  15008. weight: math.unit(800, "kg"),
  15009. name: "Front (NSFW)",
  15010. image: {
  15011. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15012. }
  15013. },
  15014. backNsfw: {
  15015. height: math.unit(19, "feet"),
  15016. weight: math.unit(800, "kg"),
  15017. name: "Back (NSFW)",
  15018. image: {
  15019. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15020. }
  15021. },
  15022. sideArmored: {
  15023. height: math.unit(10, "feet"),
  15024. weight: math.unit(800, "kg"),
  15025. name: "Side (Armored)",
  15026. image: {
  15027. source: "./media/characters/venio-darcony/side-armored.svg",
  15028. extra: 1373 / 1003,
  15029. bottom: 0.037
  15030. }
  15031. },
  15032. frontArmored: {
  15033. height: math.unit(19, "feet"),
  15034. weight: math.unit(900, "kg"),
  15035. name: "Front (Armored)",
  15036. image: {
  15037. source: "./media/characters/venio-darcony/front-armored.svg"
  15038. }
  15039. },
  15040. backArmored: {
  15041. height: math.unit(19, "feet"),
  15042. weight: math.unit(900, "kg"),
  15043. name: "Back (Armored)",
  15044. image: {
  15045. source: "./media/characters/venio-darcony/back-armored.svg"
  15046. }
  15047. },
  15048. sword: {
  15049. height: math.unit(10, "feet"),
  15050. weight: math.unit(50, "lb"),
  15051. name: "Sword",
  15052. image: {
  15053. source: "./media/characters/venio-darcony/sword.svg"
  15054. }
  15055. },
  15056. },
  15057. [
  15058. {
  15059. name: "Normal",
  15060. height: math.unit(10, "feet")
  15061. },
  15062. {
  15063. name: "Macro",
  15064. height: math.unit(130, "feet"),
  15065. default: true
  15066. },
  15067. {
  15068. name: "Macro+",
  15069. height: math.unit(240, "feet")
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15075. {
  15076. front: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Front",
  15080. image: {
  15081. source: "./media/characters/veski/front.svg",
  15082. extra: 1299 / 1225,
  15083. bottom: 0.04
  15084. }
  15085. },
  15086. back: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(150, "lb"),
  15089. name: "Back",
  15090. image: {
  15091. source: "./media/characters/veski/back.svg",
  15092. extra: 1299 / 1225,
  15093. bottom: 0.008
  15094. }
  15095. },
  15096. maw: {
  15097. height: math.unit(1.5 * 1.21, "feet"),
  15098. name: "Maw",
  15099. image: {
  15100. source: "./media/characters/veski/maw.svg"
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Macro",
  15107. height: math.unit(2, "km"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(5 + 7 / 12, "feet"),
  15117. name: "Front",
  15118. image: {
  15119. source: "./media/characters/isabelle/front.svg",
  15120. extra: 2130 / 1976,
  15121. bottom: 0.05
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Supermicro",
  15128. height: math.unit(10, "micrometers")
  15129. },
  15130. {
  15131. name: "Micro",
  15132. height: math.unit(1, "inch")
  15133. },
  15134. {
  15135. name: "Tiny",
  15136. height: math.unit(5, "inches")
  15137. },
  15138. {
  15139. name: "Standard",
  15140. height: math.unit(5 + 7 / 12, "inches")
  15141. },
  15142. {
  15143. name: "Macro",
  15144. height: math.unit(80, "meters"),
  15145. default: true
  15146. },
  15147. {
  15148. name: "Megamacro",
  15149. height: math.unit(250, "meters")
  15150. },
  15151. {
  15152. name: "Gigamacro",
  15153. height: math.unit(5, "km")
  15154. },
  15155. {
  15156. name: "Cosmic",
  15157. height: math.unit(2.5e6, "miles")
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(6, "feet"),
  15166. weight: math.unit(150, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/hanzo/front.svg",
  15170. extra: 374 / 344,
  15171. bottom: 0.02
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Normal",
  15178. height: math.unit(8, "feet"),
  15179. default: true
  15180. },
  15181. ]
  15182. ))
  15183. characterMakers.push(() => makeCharacter(
  15184. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15185. {
  15186. front: {
  15187. height: math.unit(7, "feet"),
  15188. weight: math.unit(130, "lb"),
  15189. name: "Front",
  15190. image: {
  15191. source: "./media/characters/anna/front.svg",
  15192. extra: 169 / 145,
  15193. bottom: 0.06
  15194. }
  15195. },
  15196. full: {
  15197. height: math.unit(4.96, "feet"),
  15198. weight: math.unit(220, "lb"),
  15199. name: "Full",
  15200. image: {
  15201. source: "./media/characters/anna/full.svg",
  15202. extra: 138 / 114,
  15203. bottom: 0.15
  15204. }
  15205. },
  15206. tongue: {
  15207. height: math.unit(2.53, "feet"),
  15208. name: "Tongue",
  15209. image: {
  15210. source: "./media/characters/anna/tongue.svg"
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(7, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(7, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/ian-corvid/front.svg",
  15231. extra: 150 / 142,
  15232. bottom: 0.02
  15233. }
  15234. },
  15235. back: {
  15236. height: math.unit(7, "feet"),
  15237. weight: math.unit(150, "lb"),
  15238. name: "Back",
  15239. image: {
  15240. source: "./media/characters/ian-corvid/back.svg",
  15241. extra: 150 / 143,
  15242. bottom: 0.01
  15243. }
  15244. },
  15245. stomping: {
  15246. height: math.unit(7, "feet"),
  15247. weight: math.unit(150, "lb"),
  15248. name: "Stomping",
  15249. image: {
  15250. source: "./media/characters/ian-corvid/stomping.svg",
  15251. extra: 76 / 72
  15252. }
  15253. },
  15254. sitting: {
  15255. height: math.unit(7 / 1.8, "feet"),
  15256. weight: math.unit(150, "lb"),
  15257. name: "Sitting",
  15258. image: {
  15259. source: "./media/characters/ian-corvid/sitting.svg",
  15260. extra: 1400 / 1269,
  15261. bottom: 0.15
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Tiny Microw",
  15268. height: math.unit(1, "inch")
  15269. },
  15270. {
  15271. name: "Microw",
  15272. height: math.unit(6, "inches")
  15273. },
  15274. {
  15275. name: "Crow",
  15276. height: math.unit(7 + 1 / 12, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Macrow",
  15281. height: math.unit(176, "feet")
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(5 + 7 / 12, "feet"),
  15290. weight: math.unit(147, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/natalie-kellon/front.svg",
  15294. extra: 1214 / 1141,
  15295. bottom: 0.02
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Micro",
  15302. height: math.unit(1 / 16, "inch")
  15303. },
  15304. {
  15305. name: "Tiny",
  15306. height: math.unit(4, "inches")
  15307. },
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(5 + 7 / 12, "feet"),
  15311. default: true
  15312. },
  15313. {
  15314. name: "Amazon",
  15315. height: math.unit(12, "feet")
  15316. },
  15317. {
  15318. name: "Giantess",
  15319. height: math.unit(160, "meters")
  15320. },
  15321. {
  15322. name: "Titaness",
  15323. height: math.unit(800, "meters")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(150, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/alluria/front.svg",
  15336. extra: 806 / 738,
  15337. bottom: 0.01
  15338. }
  15339. },
  15340. side: {
  15341. height: math.unit(6, "feet"),
  15342. weight: math.unit(150, "lb"),
  15343. name: "Side",
  15344. image: {
  15345. source: "./media/characters/alluria/side.svg",
  15346. extra: 800 / 750,
  15347. }
  15348. },
  15349. back: {
  15350. height: math.unit(6, "feet"),
  15351. weight: math.unit(150, "lb"),
  15352. name: "Back",
  15353. image: {
  15354. source: "./media/characters/alluria/back.svg",
  15355. extra: 806 / 738,
  15356. }
  15357. },
  15358. frontMaid: {
  15359. height: math.unit(6, "feet"),
  15360. weight: math.unit(150, "lb"),
  15361. name: "Front (Maid)",
  15362. image: {
  15363. source: "./media/characters/alluria/front-maid.svg",
  15364. extra: 806 / 738,
  15365. bottom: 0.01
  15366. }
  15367. },
  15368. sideMaid: {
  15369. height: math.unit(6, "feet"),
  15370. weight: math.unit(150, "lb"),
  15371. name: "Side (Maid)",
  15372. image: {
  15373. source: "./media/characters/alluria/side-maid.svg",
  15374. extra: 800 / 750,
  15375. bottom: 0.005
  15376. }
  15377. },
  15378. backMaid: {
  15379. height: math.unit(6, "feet"),
  15380. weight: math.unit(150, "lb"),
  15381. name: "Back (Maid)",
  15382. image: {
  15383. source: "./media/characters/alluria/back-maid.svg",
  15384. extra: 806 / 738,
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Micro",
  15391. height: math.unit(6, "inches"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/kyle/front.svg",
  15405. extra: 1069 / 962,
  15406. bottom: 77.228 / 1727.45
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Macro",
  15413. height: math.unit(150, "feet"),
  15414. default: true
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(300, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/duncan/front.svg",
  15427. extra: 1650 / 1482,
  15428. bottom: 0.05
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(100, "feet"),
  15436. default: true
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15442. {
  15443. front: {
  15444. height: math.unit(5 + 4 / 12, "feet"),
  15445. weight: math.unit(220, "lb"),
  15446. name: "Front",
  15447. image: {
  15448. source: "./media/characters/memory/front.svg",
  15449. extra: 3641 / 3545,
  15450. bottom: 0.03
  15451. }
  15452. },
  15453. back: {
  15454. height: math.unit(5 + 4 / 12, "feet"),
  15455. weight: math.unit(220, "lb"),
  15456. name: "Back",
  15457. image: {
  15458. source: "./media/characters/memory/back.svg",
  15459. extra: 3641 / 3545,
  15460. bottom: 0.025
  15461. }
  15462. },
  15463. frontSkirt: {
  15464. height: math.unit(5 + 4 / 12, "feet"),
  15465. weight: math.unit(220, "lb"),
  15466. name: "Front (Skirt)",
  15467. image: {
  15468. source: "./media/characters/memory/front-skirt.svg",
  15469. extra: 3641 / 3545,
  15470. bottom: 0.03
  15471. }
  15472. },
  15473. frontDress: {
  15474. height: math.unit(5 + 4 / 12, "feet"),
  15475. weight: math.unit(220, "lb"),
  15476. name: "Front (Dress)",
  15477. image: {
  15478. source: "./media/characters/memory/front-dress.svg",
  15479. extra: 3641 / 3545,
  15480. bottom: 0.03
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Micro",
  15487. height: math.unit(6, "inches"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Normal",
  15492. height: math.unit(5 + 4 / 12, "feet")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(4 + 11 / 12, "feet"),
  15501. weight: math.unit(100, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/luno/front.svg",
  15505. extra: 1535 / 1487,
  15506. bottom: 0.03
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(3, "inches")
  15514. },
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(4 + 11 / 12, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(300, "feet")
  15523. },
  15524. {
  15525. name: "Megamacro",
  15526. height: math.unit(700, "miles")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6 + 2 / 12, "feet"),
  15535. weight: math.unit(170, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/jamesy/front.svg",
  15539. extra: 440 / 382,
  15540. bottom: 0.005
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Micro",
  15547. height: math.unit(3, "inches")
  15548. },
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(6 + 2 / 12, "feet"),
  15552. default: true
  15553. },
  15554. {
  15555. name: "Macro",
  15556. height: math.unit(300, "feet")
  15557. },
  15558. {
  15559. name: "Megamacro",
  15560. height: math.unit(700, "miles")
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(6, "feet"),
  15569. weight: math.unit(160, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/mark/front.svg",
  15573. extra: 3300 / 3100,
  15574. bottom: 136.42 / 3440.47
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Macro",
  15581. height: math.unit(120, "meters")
  15582. },
  15583. {
  15584. name: "Bigger Macro",
  15585. height: math.unit(350, "meters")
  15586. },
  15587. {
  15588. name: "Megamacro",
  15589. height: math.unit(8, "km"),
  15590. default: true
  15591. },
  15592. {
  15593. name: "Continental",
  15594. height: math.unit(4550, "km")
  15595. },
  15596. {
  15597. name: "Planetary",
  15598. height: math.unit(65000, "km")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(400, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/mac/front.svg",
  15611. extra: 1048 / 987.7,
  15612. bottom: 60 / 1107.6,
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Macro",
  15619. height: math.unit(500, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(5 + 2 / 12, "feet"),
  15629. weight: math.unit(190, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/bari/front.svg",
  15633. extra: 3156 / 2880,
  15634. bottom: 0.03
  15635. }
  15636. },
  15637. back: {
  15638. height: math.unit(5 + 2 / 12, "feet"),
  15639. weight: math.unit(190, "lb"),
  15640. name: "Back",
  15641. image: {
  15642. source: "./media/characters/bari/back.svg",
  15643. extra: 3260 / 2834,
  15644. bottom: 0.025
  15645. }
  15646. },
  15647. frontPlush: {
  15648. height: math.unit(5 + 2 / 12, "feet"),
  15649. weight: math.unit(190, "lb"),
  15650. name: "Front (Plush)",
  15651. image: {
  15652. source: "./media/characters/bari/front-plush.svg",
  15653. extra: 1112 / 1061,
  15654. bottom: 0.002
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Micro",
  15661. height: math.unit(3, "inches")
  15662. },
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(5 + 2 / 12, "feet"),
  15666. default: true
  15667. },
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(20, "feet")
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(6 + 1 / 12, "feet"),
  15679. weight: math.unit(275, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/hunter-misha-raven/front.svg"
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Mortal",
  15689. height: math.unit(6 + 1 / 12, "feet")
  15690. },
  15691. {
  15692. name: "Divine",
  15693. height: math.unit(1.12134e34, "parsecs"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(6 + 3 / 12, "feet"),
  15703. weight: math.unit(220, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/max-calore/front.svg",
  15707. extra: 1700 / 1648,
  15708. bottom: 0.01
  15709. }
  15710. },
  15711. back: {
  15712. height: math.unit(6 + 3 / 12, "feet"),
  15713. weight: math.unit(220, "lb"),
  15714. name: "Back",
  15715. image: {
  15716. source: "./media/characters/max-calore/back.svg",
  15717. extra: 1700 / 1648,
  15718. bottom: 0.01
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(6 + 3 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15732. {
  15733. side: {
  15734. height: math.unit(2 + 8 / 12, "feet"),
  15735. weight: math.unit(99, "lb"),
  15736. name: "Side",
  15737. image: {
  15738. source: "./media/characters/aspen/side.svg",
  15739. extra: 152 / 138,
  15740. bottom: 0.032
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(2 + 8 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15754. {
  15755. side: {
  15756. height: math.unit(3 + 2 / 12, "feet"),
  15757. weight: math.unit(224, "lb"),
  15758. name: "Side",
  15759. image: {
  15760. source: "./media/characters/sheila-feral-wolf/side.svg",
  15761. extra: 179 / 166,
  15762. bottom: 0.03
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(3 + 2 / 12, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15776. {
  15777. side: {
  15778. height: math.unit(1 + 9 / 12, "feet"),
  15779. weight: math.unit(38, "lb"),
  15780. name: "Side",
  15781. image: {
  15782. source: "./media/characters/michelle/side.svg",
  15783. extra: 147 / 136.7,
  15784. bottom: 0.03
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(1 + 9 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(1 + 1 / 12, "feet"),
  15801. weight: math.unit(18, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/nino/front.svg"
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(1 + 1 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15818. {
  15819. front: {
  15820. height: math.unit(1, "feet"),
  15821. weight: math.unit(16, "lb"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/viola/front.svg"
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(1, "feet"),
  15832. default: true
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(6 + 5 / 12, "feet"),
  15841. weight: math.unit(580, "lb"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/atlas/front.svg",
  15845. extra: 298.5 / 290,
  15846. bottom: 0.015
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(6 + 5 / 12, "feet"),
  15854. default: true
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15860. {
  15861. side: {
  15862. height: math.unit(1 + 10 / 12, "feet"),
  15863. weight: math.unit(25, "lb"),
  15864. name: "Side",
  15865. image: {
  15866. source: "./media/characters/davy/side.svg",
  15867. extra: 200 / 170,
  15868. bottom: 0.01
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(1 + 10 / 12, "feet"),
  15876. default: true
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15882. {
  15883. side: {
  15884. height: math.unit(4 + 8 / 12, "feet"),
  15885. weight: math.unit(166, "lb"),
  15886. name: "Side",
  15887. image: {
  15888. source: "./media/characters/fiona/side.svg",
  15889. extra: 232 / 220,
  15890. bottom: 0.03
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(4 + 8 / 12, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15904. {
  15905. front: {
  15906. height: math.unit(2, "feet"),
  15907. weight: math.unit(62, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/lyla/front.svg",
  15911. bottom: 0.1
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(2, "feet"),
  15919. default: true
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15925. {
  15926. side: {
  15927. height: math.unit(1.8, "feet"),
  15928. weight: math.unit(44, "lb"),
  15929. name: "Side",
  15930. image: {
  15931. source: "./media/characters/perseus/side.svg",
  15932. bottom: 0.21
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(1.8, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15946. {
  15947. side: {
  15948. height: math.unit(4 + 2 / 12, "feet"),
  15949. weight: math.unit(20, "lb"),
  15950. name: "Side",
  15951. image: {
  15952. source: "./media/characters/remus/side.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(4 + 2 / 12, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15966. {
  15967. front: {
  15968. height: math.unit(4 + 11 / 12, "feet"),
  15969. weight: math.unit(114, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/raf/front.svg",
  15973. bottom: 0.01
  15974. }
  15975. },
  15976. side: {
  15977. height: math.unit(4 + 11 / 12, "feet"),
  15978. weight: math.unit(114, "lb"),
  15979. name: "Side",
  15980. image: {
  15981. source: "./media/characters/raf/side.svg",
  15982. bottom: 0.005
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Micro",
  15989. height: math.unit(2, "inches")
  15990. },
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(4 + 11 / 12, "feet"),
  15994. default: true
  15995. },
  15996. {
  15997. name: "Macro",
  15998. height: math.unit(70, "feet")
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16004. {
  16005. front: {
  16006. height: math.unit(1.5, "meters"),
  16007. weight: math.unit(68, "kg"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/liam-einarr/front.svg",
  16011. extra: 2822 / 2666
  16012. }
  16013. },
  16014. back: {
  16015. height: math.unit(1.5, "meters"),
  16016. weight: math.unit(68, "kg"),
  16017. name: "Back",
  16018. image: {
  16019. source: "./media/characters/liam-einarr/back.svg",
  16020. extra: 2822 / 2666,
  16021. bottom: 0.015
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(1.5, "meters"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Macro",
  16033. height: math.unit(150, "meters")
  16034. },
  16035. {
  16036. name: "Megamacro",
  16037. height: math.unit(35, "km")
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(6, "feet"),
  16046. weight: math.unit(75, "kg"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/linda/front.svg",
  16050. extra: 930 / 874,
  16051. bottom: 0.004
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(6, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6 + 8 / 12, "feet"),
  16068. weight: math.unit(220, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/caylex/front.svg",
  16072. extra: 821 / 772,
  16073. bottom: 0.07
  16074. }
  16075. },
  16076. back: {
  16077. height: math.unit(6 + 8 / 12, "feet"),
  16078. weight: math.unit(220, "lb"),
  16079. name: "Back",
  16080. image: {
  16081. source: "./media/characters/caylex/back.svg",
  16082. extra: 821 / 772,
  16083. bottom: 0.022
  16084. }
  16085. },
  16086. hand: {
  16087. height: math.unit(1.25, "feet"),
  16088. name: "Hand",
  16089. image: {
  16090. source: "./media/characters/caylex/hand.svg"
  16091. }
  16092. },
  16093. foot: {
  16094. height: math.unit(1.6, "feet"),
  16095. name: "Foot",
  16096. image: {
  16097. source: "./media/characters/caylex/foot.svg"
  16098. }
  16099. },
  16100. armored: {
  16101. height: math.unit(6 + 8 / 12, "feet"),
  16102. weight: math.unit(250, "lb"),
  16103. name: "Armored",
  16104. image: {
  16105. source: "./media/characters/caylex/armored.svg",
  16106. extra: 1420 / 1310,
  16107. bottom: 0.045
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(6 + 8 / 12, "feet"),
  16115. default: true
  16116. },
  16117. {
  16118. name: "Normal+",
  16119. height: math.unit(12, "feet")
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16125. {
  16126. front: {
  16127. height: math.unit(7 + 6 / 12, "feet"),
  16128. weight: math.unit(288, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/alana/front.svg",
  16132. extra: 679 / 653,
  16133. bottom: 22.5 / 701
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(7 + 6 / 12, "feet")
  16141. },
  16142. {
  16143. name: "Large",
  16144. height: math.unit(50, "feet")
  16145. },
  16146. {
  16147. name: "Macro",
  16148. height: math.unit(100, "feet"),
  16149. default: true
  16150. },
  16151. {
  16152. name: "Macro+",
  16153. height: math.unit(200, "feet")
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(6 + 1 / 12, "feet"),
  16162. weight: math.unit(210, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/hasani/front.svg",
  16166. extra: 244 / 232,
  16167. bottom: 0.01
  16168. }
  16169. },
  16170. back: {
  16171. height: math.unit(6 + 1 / 12, "feet"),
  16172. weight: math.unit(210, "lb"),
  16173. name: "Back",
  16174. image: {
  16175. source: "./media/characters/hasani/back.svg",
  16176. extra: 244 / 232,
  16177. bottom: 0.01
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(6 + 1 / 12, "feet")
  16185. },
  16186. {
  16187. name: "Macro",
  16188. height: math.unit(175, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(1.82, "meters"),
  16198. weight: math.unit(140, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/nita/front.svg",
  16202. extra: 2473 / 2363,
  16203. bottom: 0.01
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(1.82, "m")
  16211. },
  16212. {
  16213. name: "Macro",
  16214. height: math.unit(300, "m")
  16215. },
  16216. {
  16217. name: "Mistake Canon",
  16218. height: math.unit(0.5, "miles"),
  16219. default: true
  16220. },
  16221. {
  16222. name: "Big Mistake",
  16223. height: math.unit(13, "miles")
  16224. },
  16225. {
  16226. name: "Playing God",
  16227. height: math.unit(2450, "miles")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(4, "feet"),
  16236. weight: math.unit(120, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/shiriko/front.svg",
  16240. extra: 195 / 188
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(4, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. name: "front",
  16258. image: {
  16259. source: "./media/characters/deja/front.svg",
  16260. extra: 926 / 840,
  16261. bottom: 0.07
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Planck Length",
  16268. height: math.unit(1.6e-35, "meters")
  16269. },
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(30.48, "meters"),
  16273. default: true
  16274. },
  16275. {
  16276. name: "Universal",
  16277. height: math.unit(8.8e26, "meters")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16283. {
  16284. side: {
  16285. height: math.unit(8, "feet"),
  16286. weight: math.unit(6300, "lb"),
  16287. name: "Side",
  16288. image: {
  16289. source: "./media/characters/anima/side.svg",
  16290. bottom: 0.035
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(8, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(8, "feet"),
  16307. weight: math.unit(350, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/bianca/front.svg",
  16311. extra: 234 / 225,
  16312. bottom: 0.03
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(8, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(6, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Front",
  16331. image: {
  16332. source: "./media/characters/adinia/front.svg",
  16333. extra: 1845 / 1672,
  16334. bottom: 0.02
  16335. }
  16336. },
  16337. back: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Back",
  16341. image: {
  16342. source: "./media/characters/adinia/back.svg",
  16343. extra: 1845 / 1672,
  16344. bottom: 0.002
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(11 + 5 / 12, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(3, "meters"),
  16361. weight: math.unit(200, "kg"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/lykasa/front.svg",
  16365. extra: 1076 / 976,
  16366. bottom: 0.06
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Normal",
  16373. height: math.unit(3, "meters")
  16374. },
  16375. {
  16376. name: "Kaiju",
  16377. height: math.unit(120, "meters"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Mega Kaiju",
  16382. height: math.unit(240, "km")
  16383. },
  16384. {
  16385. name: "Giga Kaiju",
  16386. height: math.unit(400, "megameters")
  16387. },
  16388. {
  16389. name: "Tera Kaiju",
  16390. height: math.unit(800, "gigameters")
  16391. },
  16392. {
  16393. name: "Kaiju Dragon Goddess",
  16394. height: math.unit(26, "zettaparsecs")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16400. {
  16401. side: {
  16402. height: math.unit(283 / 124 * 6, "feet"),
  16403. weight: math.unit(35000, "lb"),
  16404. name: "Side",
  16405. image: {
  16406. source: "./media/characters/malfaren/side.svg",
  16407. extra: 2500 / 1010,
  16408. bottom: 0.01
  16409. }
  16410. },
  16411. front: {
  16412. height: math.unit(22.36, "feet"),
  16413. weight: math.unit(35000, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/malfaren/front.svg",
  16417. extra: 1631 / 1476,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. maw: {
  16422. height: math.unit(6.9, "feet"),
  16423. name: "Maw",
  16424. image: {
  16425. source: "./media/characters/malfaren/maw.svg"
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Big",
  16432. height: math.unit(283 / 162 * 6, "feet"),
  16433. },
  16434. {
  16435. name: "Bigger",
  16436. height: math.unit(283 / 124 * 6, "feet")
  16437. },
  16438. {
  16439. name: "Massive",
  16440. height: math.unit(283 / 92 * 6, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "👀💦",
  16445. height: math.unit(283 / 73 * 6, "feet"),
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(1.7, "m"),
  16454. weight: math.unit(70, "kg"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/kernel/front.svg",
  16458. extra: 222 / 210,
  16459. bottom: 0.007
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Nano",
  16466. height: math.unit(17, "micrometers")
  16467. },
  16468. {
  16469. name: "Micro",
  16470. height: math.unit(1.7, "mm")
  16471. },
  16472. {
  16473. name: "Small",
  16474. height: math.unit(1.7, "cm")
  16475. },
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(1.7, "m"),
  16479. default: true
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(1.75, "meters"),
  16488. weight: math.unit(65, "kg"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/jayne-folest/front.svg",
  16492. extra: 2115 / 2007,
  16493. bottom: 0.02
  16494. }
  16495. },
  16496. back: {
  16497. height: math.unit(1.75, "meters"),
  16498. weight: math.unit(65, "kg"),
  16499. name: "Back",
  16500. image: {
  16501. source: "./media/characters/jayne-folest/back.svg",
  16502. extra: 2115 / 2007,
  16503. bottom: 0.005
  16504. }
  16505. },
  16506. frontClothed: {
  16507. height: math.unit(1.75, "meters"),
  16508. weight: math.unit(65, "kg"),
  16509. name: "Front (Clothed)",
  16510. image: {
  16511. source: "./media/characters/jayne-folest/front-clothed.svg",
  16512. extra: 2115 / 2007,
  16513. bottom: 0.035
  16514. }
  16515. },
  16516. hand: {
  16517. height: math.unit(1 / 1.260, "feet"),
  16518. name: "Hand",
  16519. image: {
  16520. source: "./media/characters/jayne-folest/hand.svg"
  16521. }
  16522. },
  16523. foot: {
  16524. height: math.unit(1 / 0.918, "feet"),
  16525. name: "Foot",
  16526. image: {
  16527. source: "./media/characters/jayne-folest/foot.svg"
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Micro",
  16534. height: math.unit(4, "cm")
  16535. },
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(1.75, "meters")
  16539. },
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(47.5, "meters"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(180, "cm"),
  16552. weight: math.unit(70, "kg"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/algier/front.svg",
  16556. extra: 596 / 572,
  16557. bottom: 0.04
  16558. }
  16559. },
  16560. back: {
  16561. height: math.unit(180, "cm"),
  16562. weight: math.unit(70, "kg"),
  16563. name: "Back",
  16564. image: {
  16565. source: "./media/characters/algier/back.svg",
  16566. extra: 596 / 572,
  16567. bottom: 0.025
  16568. }
  16569. },
  16570. frontdressed: {
  16571. height: math.unit(180, "cm"),
  16572. weight: math.unit(150, "kg"),
  16573. name: "Front-dressed",
  16574. image: {
  16575. source: "./media/characters/algier/front-dressed.svg",
  16576. extra: 596 / 572,
  16577. bottom: 0.038
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Micro",
  16584. height: math.unit(5, "cm")
  16585. },
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(180, "cm"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Macro",
  16593. height: math.unit(64, "m")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16599. {
  16600. upright: {
  16601. height: math.unit(7, "feet"),
  16602. weight: math.unit(300, "lb"),
  16603. name: "Upright",
  16604. image: {
  16605. source: "./media/characters/pretzel/upright.svg",
  16606. extra: 534 / 522,
  16607. bottom: 0.065
  16608. }
  16609. },
  16610. sprawling: {
  16611. height: math.unit(3.75, "feet"),
  16612. weight: math.unit(300, "lb"),
  16613. name: "Sprawling",
  16614. image: {
  16615. source: "./media/characters/pretzel/sprawling.svg",
  16616. extra: 314 / 281,
  16617. bottom: 0.1
  16618. }
  16619. },
  16620. tongue: {
  16621. height: math.unit(2, "feet"),
  16622. name: "Tongue",
  16623. image: {
  16624. source: "./media/characters/pretzel/tongue.svg"
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(7, "feet"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Oversized",
  16636. height: math.unit(15, "feet")
  16637. },
  16638. {
  16639. name: "Huge",
  16640. height: math.unit(30, "feet")
  16641. },
  16642. {
  16643. name: "Macro",
  16644. height: math.unit(250, "feet")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16650. {
  16651. sideFront: {
  16652. height: math.unit(5 + 2 / 12, "feet"),
  16653. weight: math.unit(120, "lb"),
  16654. name: "Front Side",
  16655. image: {
  16656. source: "./media/characters/roxi/side-front.svg",
  16657. extra: 2924 / 2717,
  16658. bottom: 0.08
  16659. }
  16660. },
  16661. sideBack: {
  16662. height: math.unit(5 + 2 / 12, "feet"),
  16663. weight: math.unit(120, "lb"),
  16664. name: "Back Side",
  16665. image: {
  16666. source: "./media/characters/roxi/side-back.svg",
  16667. extra: 2904 / 2693,
  16668. bottom: 0.06
  16669. }
  16670. },
  16671. front: {
  16672. height: math.unit(5 + 2 / 12, "feet"),
  16673. weight: math.unit(120, "lb"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/roxi/front.svg",
  16677. extra: 2028 / 1907,
  16678. bottom: 0.01
  16679. }
  16680. },
  16681. frontAlt: {
  16682. height: math.unit(5 + 2 / 12, "feet"),
  16683. weight: math.unit(120, "lb"),
  16684. name: "Front (Alt)",
  16685. image: {
  16686. source: "./media/characters/roxi/front-alt.svg",
  16687. extra: 1828 / 1798,
  16688. bottom: 0.01
  16689. }
  16690. },
  16691. sitting: {
  16692. height: math.unit(2.8, "feet"),
  16693. weight: math.unit(120, "lb"),
  16694. name: "Sitting",
  16695. image: {
  16696. source: "./media/characters/roxi/sitting.svg",
  16697. extra: 2660 / 2462,
  16698. bottom: 0.1
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(5 + 2 / 12, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16712. {
  16713. side: {
  16714. height: math.unit(55, "feet"),
  16715. weight: math.unit(153, "tons"),
  16716. name: "Side",
  16717. image: {
  16718. source: "./media/characters/shadow/side.svg",
  16719. extra: 701 / 628,
  16720. bottom: 0.02
  16721. }
  16722. },
  16723. flying: {
  16724. height: math.unit(145, "feet"),
  16725. weight: math.unit(153, "tons"),
  16726. name: "Flying",
  16727. image: {
  16728. source: "./media/characters/shadow/flying.svg"
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(55, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(200, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/marcie/front.svg",
  16749. extra: 960 / 876,
  16750. bottom: 58 / 1017.87
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Macro",
  16757. height: math.unit(1, "mile"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(7, "feet"),
  16767. weight: math.unit(200, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/kachina/front.svg",
  16771. extra: 1290.68 / 1119,
  16772. bottom: 36.5 / 1327.18
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Normal",
  16779. height: math.unit(7, "feet"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16786. {
  16787. looking: {
  16788. height: math.unit(2, "meters"),
  16789. weight: math.unit(300, "kg"),
  16790. name: "Looking",
  16791. image: {
  16792. source: "./media/characters/kash/looking.svg",
  16793. extra: 474 / 344,
  16794. bottom: 0.03
  16795. }
  16796. },
  16797. side: {
  16798. height: math.unit(2, "meters"),
  16799. weight: math.unit(300, "kg"),
  16800. name: "Side",
  16801. image: {
  16802. source: "./media/characters/kash/side.svg",
  16803. extra: 302 / 251,
  16804. bottom: 0.03
  16805. }
  16806. },
  16807. front: {
  16808. height: math.unit(2, "meters"),
  16809. weight: math.unit(300, "kg"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/kash/front.svg",
  16813. extra: 495 / 360,
  16814. bottom: 0.015
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(2, "meters"),
  16822. default: true
  16823. },
  16824. {
  16825. name: "Big",
  16826. height: math.unit(3, "meters")
  16827. },
  16828. {
  16829. name: "Large",
  16830. height: math.unit(5, "meters")
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16836. {
  16837. feeding: {
  16838. height: math.unit(6.7, "feet"),
  16839. weight: math.unit(350, "lb"),
  16840. name: "Feeding",
  16841. image: {
  16842. source: "./media/characters/lalim/feeding.svg",
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(6.7, "feet"),
  16850. default: true
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16856. {
  16857. front: {
  16858. height: math.unit(9.5, "feet"),
  16859. weight: math.unit(600, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/de'vout/front.svg",
  16863. extra: 1443 / 1328,
  16864. bottom: 0.025
  16865. }
  16866. },
  16867. back: {
  16868. height: math.unit(9.5, "feet"),
  16869. weight: math.unit(600, "lb"),
  16870. name: "Back",
  16871. image: {
  16872. source: "./media/characters/de'vout/back.svg",
  16873. extra: 1443 / 1328
  16874. }
  16875. },
  16876. frontDressed: {
  16877. height: math.unit(9.5, "feet"),
  16878. weight: math.unit(600, "lb"),
  16879. name: "Front (Dressed",
  16880. image: {
  16881. source: "./media/characters/de'vout/front-dressed.svg",
  16882. extra: 1443 / 1328,
  16883. bottom: 0.025
  16884. }
  16885. },
  16886. backDressed: {
  16887. height: math.unit(9.5, "feet"),
  16888. weight: math.unit(600, "lb"),
  16889. name: "Back (Dressed",
  16890. image: {
  16891. source: "./media/characters/de'vout/back-dressed.svg",
  16892. extra: 1443 / 1328
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(9.5, "feet"),
  16900. default: true
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(8, "feet"),
  16909. weight: math.unit(225, "lb"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/talana/front.svg",
  16913. extra: 1410 / 1300,
  16914. bottom: 0.015
  16915. }
  16916. },
  16917. frontDressed: {
  16918. height: math.unit(8, "feet"),
  16919. weight: math.unit(225, "lb"),
  16920. name: "Front (Dressed",
  16921. image: {
  16922. source: "./media/characters/talana/front-dressed.svg",
  16923. extra: 1410 / 1300,
  16924. bottom: 0.015
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(8, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16938. {
  16939. side: {
  16940. height: math.unit(7.2, "feet"),
  16941. weight: math.unit(150, "lb"),
  16942. name: "Side",
  16943. image: {
  16944. source: "./media/characters/xeauvok/side.svg",
  16945. extra: 1975 / 1523,
  16946. bottom: 0.07
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(7.2, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16960. {
  16961. side: {
  16962. height: math.unit(10, "feet"),
  16963. weight: math.unit(900, "kg"),
  16964. name: "Side",
  16965. image: {
  16966. source: "./media/characters/zara/side.svg",
  16967. extra: 504 / 498
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(10, "feet"),
  16975. default: true
  16976. },
  16977. ]
  16978. ))
  16979. characterMakers.push(() => makeCharacter(
  16980. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16981. {
  16982. side: {
  16983. height: math.unit(6, "feet"),
  16984. weight: math.unit(150, "lb"),
  16985. name: "Side",
  16986. image: {
  16987. source: "./media/characters/richard-dragon/side.svg",
  16988. extra: 845 / 340,
  16989. bottom: 0.017
  16990. }
  16991. },
  16992. maw: {
  16993. height: math.unit(2.97, "feet"),
  16994. name: "Maw",
  16995. image: {
  16996. source: "./media/characters/richard-dragon/maw.svg"
  16997. }
  16998. },
  16999. },
  17000. [
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17005. {
  17006. front: {
  17007. height: math.unit(4, "feet"),
  17008. weight: math.unit(100, "lb"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/richard-smeargle/front.svg",
  17012. extra: 2952 / 2820,
  17013. bottom: 0.028
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(4, "feet"),
  17021. default: true
  17022. },
  17023. {
  17024. name: "Dynamax",
  17025. height: math.unit(20, "meters")
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17031. {
  17032. front: {
  17033. height: math.unit(6, "feet"),
  17034. weight: math.unit(110, "lb"),
  17035. name: "Front",
  17036. image: {
  17037. source: "./media/characters/klay/front.svg",
  17038. extra: 962 / 883,
  17039. bottom: 0.04
  17040. }
  17041. },
  17042. back: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(110, "lb"),
  17045. name: "Back",
  17046. image: {
  17047. source: "./media/characters/klay/back.svg",
  17048. extra: 962 / 883
  17049. }
  17050. },
  17051. beans: {
  17052. height: math.unit(1.15, "feet"),
  17053. name: "Beans",
  17054. image: {
  17055. source: "./media/characters/klay/beans.svg"
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Micro",
  17062. height: math.unit(6, "inches")
  17063. },
  17064. {
  17065. name: "Mini",
  17066. height: math.unit(3, "feet")
  17067. },
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(6, "feet"),
  17071. default: true
  17072. },
  17073. {
  17074. name: "Big",
  17075. height: math.unit(25, "feet")
  17076. },
  17077. {
  17078. name: "Macro",
  17079. height: math.unit(100, "feet")
  17080. },
  17081. {
  17082. name: "Megamacro",
  17083. height: math.unit(400, "feet")
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6, "feet"),
  17092. weight: math.unit(160, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/marcus/front.svg",
  17096. extra: 734 / 676,
  17097. bottom: 0.03
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Little",
  17104. height: math.unit(6, "feet")
  17105. },
  17106. {
  17107. name: "Normal",
  17108. height: math.unit(110, "feet"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Macro",
  17113. height: math.unit(250, "feet")
  17114. },
  17115. {
  17116. name: "Megamacro",
  17117. height: math.unit(1000, "feet")
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(7, "feet"),
  17126. weight: math.unit(275, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/claude-delroute/front.svg",
  17130. extra: 230 / 214,
  17131. bottom: 0.007
  17132. }
  17133. },
  17134. side: {
  17135. height: math.unit(7, "feet"),
  17136. weight: math.unit(275, "lb"),
  17137. name: "Side",
  17138. image: {
  17139. source: "./media/characters/claude-delroute/side.svg",
  17140. extra: 222 / 214,
  17141. bottom: 0.01
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(7, "feet"),
  17146. weight: math.unit(275, "lb"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/claude-delroute/back.svg",
  17150. extra: 230 / 214,
  17151. bottom: 0.015
  17152. }
  17153. },
  17154. maw: {
  17155. height: math.unit(0.6407, "meters"),
  17156. name: "Maw",
  17157. image: {
  17158. source: "./media/characters/claude-delroute/maw.svg"
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(7, "feet"),
  17166. default: true
  17167. },
  17168. {
  17169. name: "Lorge",
  17170. height: math.unit(20, "feet")
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(8 + 4 / 12, "feet"),
  17179. weight: math.unit(600, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/dragonien/front.svg",
  17183. extra: 100 / 94,
  17184. bottom: 3.3 / 103.3445
  17185. }
  17186. },
  17187. back: {
  17188. height: math.unit(8 + 4 / 12, "feet"),
  17189. weight: math.unit(600, "lb"),
  17190. name: "Back",
  17191. image: {
  17192. source: "./media/characters/dragonien/back.svg",
  17193. extra: 776 / 746,
  17194. bottom: 6.4 / 782.0616
  17195. }
  17196. },
  17197. foot: {
  17198. height: math.unit(1.54, "feet"),
  17199. name: "Foot",
  17200. image: {
  17201. source: "./media/characters/dragonien/foot.svg",
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(8 + 4 / 12, "feet"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(200, "feet")
  17214. },
  17215. {
  17216. name: "Megamacro",
  17217. height: math.unit(1, "mile")
  17218. },
  17219. {
  17220. name: "Gigamacro",
  17221. height: math.unit(1000, "miles")
  17222. },
  17223. ]
  17224. ))
  17225. characterMakers.push(() => makeCharacter(
  17226. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17227. {
  17228. front: {
  17229. height: math.unit(5 + 2 / 12, "feet"),
  17230. weight: math.unit(110, "lb"),
  17231. name: "Front",
  17232. image: {
  17233. source: "./media/characters/desta/front.svg",
  17234. extra: 1482 / 1417
  17235. }
  17236. },
  17237. side: {
  17238. height: math.unit(5 + 2 / 12, "feet"),
  17239. weight: math.unit(110, "lb"),
  17240. name: "Side",
  17241. image: {
  17242. source: "./media/characters/desta/side.svg",
  17243. extra: 2579 / 2491,
  17244. bottom: 0.053
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Micro",
  17251. height: math.unit(6, "inches")
  17252. },
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(5 + 2 / 12, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(62, "feet")
  17261. },
  17262. {
  17263. name: "Megamacro",
  17264. height: math.unit(1800, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(10, "feet"),
  17273. weight: math.unit(700, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/storm-alystar/front.svg",
  17277. extra: 2112 / 1898,
  17278. bottom: 0.034
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Micro",
  17285. height: math.unit(3.5, "inches")
  17286. },
  17287. {
  17288. name: "Normal",
  17289. height: math.unit(10, "feet"),
  17290. default: true
  17291. },
  17292. {
  17293. name: "Macro",
  17294. height: math.unit(400, "feet")
  17295. },
  17296. {
  17297. name: "Deific",
  17298. height: math.unit(60, "miles")
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(2.35, "meters"),
  17307. weight: math.unit(119, "kg"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/ilia/front.svg",
  17311. extra: 1285 / 1255,
  17312. bottom: 0.06
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(2.35, "meters")
  17320. },
  17321. {
  17322. name: "Macro",
  17323. height: math.unit(140, "meters"),
  17324. default: true
  17325. },
  17326. {
  17327. name: "Megamacro",
  17328. height: math.unit(100, "miles")
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(6 + 5 / 12, "feet"),
  17337. weight: math.unit(190, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/kingdead/front.svg",
  17341. extra: 1228 / 1177
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Micro",
  17348. height: math.unit(7, "inches")
  17349. },
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(6 + 5 / 12, "feet")
  17353. },
  17354. {
  17355. name: "Macro",
  17356. height: math.unit(150, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Megamacro",
  17361. height: math.unit(200, "miles")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(8, "feet"),
  17370. weight: math.unit(600, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/kyrehx/front.svg",
  17374. extra: 1195 / 1095,
  17375. bottom: 0.034
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Micro",
  17382. height: math.unit(2, "inches")
  17383. },
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(8, "feet"),
  17387. default: true
  17388. },
  17389. {
  17390. name: "Macro",
  17391. height: math.unit(255, "feet")
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17397. {
  17398. front: {
  17399. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17400. weight: math.unit(184, "lb"),
  17401. name: "Front",
  17402. image: {
  17403. source: "./media/characters/xang/front.svg",
  17404. extra: 845 / 755
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Macro",
  17416. height: math.unit(0.935 * 146, "feet")
  17417. },
  17418. {
  17419. name: "Megamacro",
  17420. height: math.unit(0.935 * 3, "miles")
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17426. {
  17427. frontDressed: {
  17428. height: math.unit(5 + 7 / 12, "feet"),
  17429. weight: math.unit(140, "lb"),
  17430. name: "Front (Dressed)",
  17431. image: {
  17432. source: "./media/characters/doc-weardno/front-dressed.svg",
  17433. extra: 263 / 234
  17434. }
  17435. },
  17436. backDressed: {
  17437. height: math.unit(5 + 7 / 12, "feet"),
  17438. weight: math.unit(140, "lb"),
  17439. name: "Back (Dressed)",
  17440. image: {
  17441. source: "./media/characters/doc-weardno/back-dressed.svg",
  17442. extra: 266 / 238
  17443. }
  17444. },
  17445. front: {
  17446. height: math.unit(5 + 7 / 12, "feet"),
  17447. weight: math.unit(140, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/doc-weardno/front.svg",
  17451. extra: 254 / 233
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Micro",
  17458. height: math.unit(3, "inches")
  17459. },
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(5 + 7 / 12, "feet"),
  17463. default: true
  17464. },
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(25, "feet")
  17468. },
  17469. {
  17470. name: "Megamacro",
  17471. height: math.unit(2, "miles")
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(6 + 2 / 12, "feet"),
  17480. weight: math.unit(153, "lb"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/seth-whilst/front.svg",
  17484. bottom: 0.07
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Micro",
  17491. height: math.unit(5, "inches")
  17492. },
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(6 + 2 / 12, "feet"),
  17496. default: true
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(3, "inches"),
  17505. weight: math.unit(8, "grams"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/pocket-jabari/front.svg",
  17509. extra: 1024 / 974,
  17510. bottom: 0.039
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Minimicro",
  17517. height: math.unit(8, "mm")
  17518. },
  17519. {
  17520. name: "Micro",
  17521. height: math.unit(3, "inches"),
  17522. default: true
  17523. },
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(3, "feet")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(15, "feet"),
  17535. weight: math.unit(3280, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/sapphy/front.svg",
  17539. extra: 671 / 577,
  17540. bottom: 0.085
  17541. }
  17542. },
  17543. back: {
  17544. height: math.unit(15, "feet"),
  17545. weight: math.unit(3280, "lb"),
  17546. name: "Back",
  17547. image: {
  17548. source: "./media/characters/sapphy/back.svg",
  17549. extra: 631 / 607,
  17550. bottom: 0.045
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(15, "feet")
  17558. },
  17559. {
  17560. name: "Casual Macro",
  17561. height: math.unit(120, "feet")
  17562. },
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(2150, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Megamacro",
  17570. height: math.unit(8, "miles")
  17571. },
  17572. {
  17573. name: "Galaxy Mom",
  17574. height: math.unit(6, "megalightyears")
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(6, "feet"),
  17583. weight: math.unit(170, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/kiro/front.svg",
  17587. extra: 1064 / 1012,
  17588. bottom: 0.052
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Micro",
  17595. height: math.unit(6, "inches")
  17596. },
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(6, "feet"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(72, "feet")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(5 + 9 / 12, "feet"),
  17613. weight: math.unit(175, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/irishfox/front.svg",
  17617. extra: 1912 / 1680,
  17618. bottom: 0.02
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Nano",
  17625. height: math.unit(1, "mm")
  17626. },
  17627. {
  17628. name: "Micro",
  17629. height: math.unit(2, "inches")
  17630. },
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(5 + 9 / 12, "feet"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Macro",
  17638. height: math.unit(45, "feet")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(6 + 1 / 12, "feet"),
  17647. weight: math.unit(150, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/aronai-sieyes/front.svg",
  17651. extra: 1556 / 1480,
  17652. bottom: 0.015
  17653. }
  17654. },
  17655. side: {
  17656. height: math.unit(6 + 1 / 12, "feet"),
  17657. weight: math.unit(150, "lb"),
  17658. name: "Side",
  17659. image: {
  17660. source: "./media/characters/aronai-sieyes/side.svg",
  17661. extra: 1433 / 1390,
  17662. bottom: 0.0393
  17663. }
  17664. },
  17665. back: {
  17666. height: math.unit(6 + 1 / 12, "feet"),
  17667. weight: math.unit(150, "lb"),
  17668. name: "Back",
  17669. image: {
  17670. source: "./media/characters/aronai-sieyes/back.svg",
  17671. extra: 1544 / 1494,
  17672. bottom: 0.02
  17673. }
  17674. },
  17675. frontClothed: {
  17676. height: math.unit(6 + 1 / 12, "feet"),
  17677. weight: math.unit(150, "lb"),
  17678. name: "Front (Clothed)",
  17679. image: {
  17680. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17681. extra: 1582 / 1527
  17682. }
  17683. },
  17684. feral: {
  17685. height: math.unit(18, "feet"),
  17686. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17687. name: "Feral",
  17688. image: {
  17689. source: "./media/characters/aronai-sieyes/feral.svg",
  17690. extra: 1530 / 1240,
  17691. bottom: 0.035
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Micro",
  17698. height: math.unit(2, "inches")
  17699. },
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(6 + 1 / 12, "feet"),
  17703. default: true
  17704. }
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17709. {
  17710. front: {
  17711. height: math.unit(12, "feet"),
  17712. weight: math.unit(410, "kg"),
  17713. name: "Front",
  17714. image: {
  17715. source: "./media/characters/xuna/front.svg",
  17716. extra: 2184 / 1980
  17717. }
  17718. },
  17719. side: {
  17720. height: math.unit(12, "feet"),
  17721. weight: math.unit(410, "kg"),
  17722. name: "Side",
  17723. image: {
  17724. source: "./media/characters/xuna/side.svg",
  17725. extra: 2184 / 1980
  17726. }
  17727. },
  17728. back: {
  17729. height: math.unit(12, "feet"),
  17730. weight: math.unit(410, "kg"),
  17731. name: "Back",
  17732. image: {
  17733. source: "./media/characters/xuna/back.svg",
  17734. extra: 2184 / 1980
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Nano glow",
  17741. height: math.unit(10, "nm")
  17742. },
  17743. {
  17744. name: "Micro floof",
  17745. height: math.unit(0.3, "m")
  17746. },
  17747. {
  17748. name: "Huggable softy boi",
  17749. height: math.unit(3.6576, "m"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Admirable floof",
  17754. height: math.unit(80, "meters")
  17755. },
  17756. {
  17757. name: "Gentle macro",
  17758. height: math.unit(300, "meters")
  17759. },
  17760. {
  17761. name: "Very careful floof",
  17762. height: math.unit(3200, "meters")
  17763. },
  17764. {
  17765. name: "The mega floof",
  17766. height: math.unit(36000, "meters")
  17767. },
  17768. {
  17769. name: "Giga-fur-Wicker",
  17770. height: math.unit(4800000, "meters")
  17771. },
  17772. {
  17773. name: "Licky world",
  17774. height: math.unit(20000000, "meters")
  17775. },
  17776. {
  17777. name: "Floofy cyan sun",
  17778. height: math.unit(1500000000, "meters")
  17779. },
  17780. {
  17781. name: "Milky Wicker",
  17782. height: math.unit(1000000000000000000000, "meters")
  17783. },
  17784. {
  17785. name: "The observing Wicker",
  17786. height: math.unit(999999999999999999999999999, "meters")
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(5 + 9 / 12, "feet"),
  17795. weight: math.unit(150, "lb"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/arokha-sieyes/front.svg",
  17799. extra: 1425 / 1284,
  17800. bottom: 0.05
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(5 + 9 / 12, "feet")
  17808. },
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(30, "meters"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(6, "feet"),
  17821. weight: math.unit(180, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/arokh-sieyes/front.svg",
  17825. extra: 1830 / 1769,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(6, "feet")
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(30, "meters"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17844. {
  17845. side: {
  17846. height: math.unit(13 + 1 / 12, "feet"),
  17847. weight: math.unit(8.5, "tonnes"),
  17848. name: "Side",
  17849. image: {
  17850. source: "./media/characters/goldeneye/side.svg",
  17851. extra: 1182 / 778,
  17852. bottom: 0.067
  17853. }
  17854. },
  17855. paw: {
  17856. height: math.unit(3.4, "feet"),
  17857. name: "Paw",
  17858. image: {
  17859. source: "./media/characters/goldeneye/paw.svg"
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(13 + 1 / 12, "feet"),
  17867. default: true
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17873. {
  17874. front: {
  17875. height: math.unit(6 + 1 / 12, "feet"),
  17876. weight: math.unit(210, "lb"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/leonardo-lycheborne/front.svg",
  17880. extra: 390 / 365,
  17881. bottom: 0.032
  17882. }
  17883. },
  17884. side: {
  17885. height: math.unit(6 + 1 / 12, "feet"),
  17886. weight: math.unit(210, "lb"),
  17887. name: "Side",
  17888. image: {
  17889. source: "./media/characters/leonardo-lycheborne/side.svg",
  17890. extra: 390 / 365,
  17891. bottom: 0.005
  17892. }
  17893. },
  17894. back: {
  17895. height: math.unit(6 + 1 / 12, "feet"),
  17896. weight: math.unit(210, "lb"),
  17897. name: "Back",
  17898. image: {
  17899. source: "./media/characters/leonardo-lycheborne/back.svg",
  17900. extra: 392 / 366,
  17901. bottom: 0.01
  17902. }
  17903. },
  17904. hand: {
  17905. height: math.unit(1.08, "feet"),
  17906. name: "Hand",
  17907. image: {
  17908. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17909. }
  17910. },
  17911. foot: {
  17912. height: math.unit(1.32, "feet"),
  17913. name: "Foot",
  17914. image: {
  17915. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17916. }
  17917. },
  17918. were: {
  17919. height: math.unit(20, "feet"),
  17920. weight: math.unit(7800, "lb"),
  17921. name: "Were",
  17922. image: {
  17923. source: "./media/characters/leonardo-lycheborne/were.svg",
  17924. extra: 308 / 294,
  17925. bottom: 0.048
  17926. }
  17927. },
  17928. feral: {
  17929. height: math.unit(7.5, "feet"),
  17930. weight: math.unit(600, "lb"),
  17931. name: "Feral",
  17932. image: {
  17933. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17934. extra: 210 / 186,
  17935. bottom: 0.108
  17936. }
  17937. },
  17938. taur: {
  17939. height: math.unit(11, "feet"),
  17940. weight: math.unit(3300, "lb"),
  17941. name: "Taur",
  17942. image: {
  17943. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17944. extra: 320 / 303,
  17945. bottom: 0.025
  17946. }
  17947. },
  17948. barghest: {
  17949. height: math.unit(11, "feet"),
  17950. weight: math.unit(1300, "lb"),
  17951. name: "Barghest",
  17952. image: {
  17953. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17954. extra: 323 / 302,
  17955. bottom: 0.027
  17956. }
  17957. },
  17958. dick: {
  17959. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17960. name: "Dick",
  17961. image: {
  17962. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17963. }
  17964. },
  17965. dickWere: {
  17966. height: math.unit((20) / 3.8, "feet"),
  17967. name: "Dick (Were)",
  17968. image: {
  17969. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(6 + 1 / 12, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(10, "feet"),
  17986. weight: math.unit(350, "lb"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/jet/front.svg",
  17990. extra: 2050 / 1980,
  17991. bottom: 0.013
  17992. }
  17993. },
  17994. back: {
  17995. height: math.unit(10, "feet"),
  17996. weight: math.unit(350, "lb"),
  17997. name: "Back",
  17998. image: {
  17999. source: "./media/characters/jet/back.svg",
  18000. extra: 2050 / 1980,
  18001. bottom: 0.013
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Micro",
  18008. height: math.unit(6, "inches")
  18009. },
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(10, "feet"),
  18013. default: true
  18014. },
  18015. {
  18016. name: "Macro",
  18017. height: math.unit(100, "feet")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(15, "feet"),
  18026. weight: math.unit(2800, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/tanarath/front.svg",
  18030. extra: 2392 / 2220,
  18031. bottom: 0.03
  18032. }
  18033. },
  18034. back: {
  18035. height: math.unit(15, "feet"),
  18036. weight: math.unit(2800, "lb"),
  18037. name: "Back",
  18038. image: {
  18039. source: "./media/characters/tanarath/back.svg",
  18040. extra: 2392 / 2220,
  18041. bottom: 0.03
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(15, "feet"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18055. {
  18056. front: {
  18057. height: math.unit(7 + 1 / 12, "feet"),
  18058. weight: math.unit(175, "lb"),
  18059. name: "Front",
  18060. image: {
  18061. source: "./media/characters/patty-cattybatty/front.svg",
  18062. extra: 908 / 874,
  18063. bottom: 0.025
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Micro",
  18070. height: math.unit(1, "inch")
  18071. },
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(7 + 1 / 12, "feet")
  18075. },
  18076. {
  18077. name: "Mini Macro",
  18078. height: math.unit(155, "feet")
  18079. },
  18080. {
  18081. name: "Macro",
  18082. height: math.unit(1077, "feet")
  18083. },
  18084. {
  18085. name: "Mega Macro",
  18086. height: math.unit(47650, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Giga Macro",
  18091. height: math.unit(440, "miles")
  18092. },
  18093. {
  18094. name: "Tera Macro",
  18095. height: math.unit(8700, "miles")
  18096. },
  18097. {
  18098. name: "Planetary Macro",
  18099. height: math.unit(32700, "miles")
  18100. },
  18101. {
  18102. name: "Solar Macro",
  18103. height: math.unit(550000, "miles")
  18104. },
  18105. {
  18106. name: "Celestial Macro",
  18107. height: math.unit(2.5, "AU")
  18108. },
  18109. ]
  18110. ))
  18111. characterMakers.push(() => makeCharacter(
  18112. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18113. {
  18114. front: {
  18115. height: math.unit(4 + 5 / 12, "feet"),
  18116. weight: math.unit(90, "lb"),
  18117. name: "Front",
  18118. image: {
  18119. source: "./media/characters/cappu/front.svg",
  18120. extra: 1247 / 1152,
  18121. bottom: 0.012
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Normal",
  18128. height: math.unit(4 + 5 / 12, "feet"),
  18129. default: true
  18130. },
  18131. ]
  18132. ))
  18133. characterMakers.push(() => makeCharacter(
  18134. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18135. {
  18136. frontDressed: {
  18137. height: math.unit(70, "cm"),
  18138. weight: math.unit(6, "kg"),
  18139. name: "Front (Dressed)",
  18140. image: {
  18141. source: "./media/characters/sebi/front-dressed.svg",
  18142. extra: 713.5 / 686.5,
  18143. bottom: 0.003
  18144. }
  18145. },
  18146. front: {
  18147. height: math.unit(70, "cm"),
  18148. weight: math.unit(5, "kg"),
  18149. name: "Front",
  18150. image: {
  18151. source: "./media/characters/sebi/front.svg",
  18152. extra: 713.5 / 686.5,
  18153. bottom: 0.003
  18154. }
  18155. }
  18156. },
  18157. [
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(70, "cm"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(8, "meters")
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18171. {
  18172. front: {
  18173. height: math.unit(6, "feet"),
  18174. weight: math.unit(150, "lb"),
  18175. name: "Front",
  18176. image: {
  18177. source: "./media/characters/typhek/front.svg",
  18178. extra: 1948 / 1929,
  18179. bottom: 0.025
  18180. }
  18181. },
  18182. side: {
  18183. height: math.unit(6, "feet"),
  18184. weight: math.unit(150, "lb"),
  18185. name: "Side",
  18186. image: {
  18187. source: "./media/characters/typhek/side.svg",
  18188. extra: 2034 / 2010,
  18189. bottom: 0.003
  18190. }
  18191. },
  18192. back: {
  18193. height: math.unit(6, "feet"),
  18194. weight: math.unit(150, "lb"),
  18195. name: "Back",
  18196. image: {
  18197. source: "./media/characters/typhek/back.svg",
  18198. extra: 2005 / 1978,
  18199. bottom: 0.004
  18200. }
  18201. },
  18202. palm: {
  18203. height: math.unit(1.2, "feet"),
  18204. name: "Palm",
  18205. image: {
  18206. source: "./media/characters/typhek/palm.svg"
  18207. }
  18208. },
  18209. fist: {
  18210. height: math.unit(1.1, "feet"),
  18211. name: "Fist",
  18212. image: {
  18213. source: "./media/characters/typhek/fist.svg"
  18214. }
  18215. },
  18216. foot: {
  18217. height: math.unit(1.57, "feet"),
  18218. name: "Foot",
  18219. image: {
  18220. source: "./media/characters/typhek/foot.svg"
  18221. }
  18222. },
  18223. sole: {
  18224. height: math.unit(2.05, "feet"),
  18225. name: "Sole",
  18226. image: {
  18227. source: "./media/characters/typhek/sole.svg"
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Macro",
  18234. height: math.unit(40, "stories"),
  18235. default: true
  18236. },
  18237. {
  18238. name: "Megamacro",
  18239. height: math.unit(1, "mile")
  18240. },
  18241. {
  18242. name: "Gigamacro",
  18243. height: math.unit(4000, "solarradii")
  18244. },
  18245. {
  18246. name: "Universal",
  18247. height: math.unit(1.1, "universes")
  18248. }
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18253. {
  18254. side: {
  18255. height: math.unit(5 + 7 / 12, "feet"),
  18256. weight: math.unit(150, "lb"),
  18257. name: "Side",
  18258. image: {
  18259. source: "./media/characters/kassy/side.svg",
  18260. extra: 1280 / 1225,
  18261. bottom: 0.002
  18262. }
  18263. },
  18264. front: {
  18265. height: math.unit(5 + 7 / 12, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/kassy/front.svg",
  18270. extra: 1280 / 1225,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. back: {
  18275. height: math.unit(5 + 7 / 12, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Back",
  18278. image: {
  18279. source: "./media/characters/kassy/back.svg",
  18280. extra: 1280 / 1225,
  18281. bottom: 0.002
  18282. }
  18283. },
  18284. foot: {
  18285. height: math.unit(1.266, "feet"),
  18286. name: "Foot",
  18287. image: {
  18288. source: "./media/characters/kassy/foot.svg"
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(5 + 7 / 12, "feet")
  18296. },
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(137, "feet"),
  18300. default: true
  18301. },
  18302. {
  18303. name: "Megamacro",
  18304. height: math.unit(1, "mile")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(6 + 1 / 12, "feet"),
  18313. weight: math.unit(200, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/neil/front.svg",
  18317. extra: 1326 / 1250,
  18318. bottom: 0.023
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(6 + 1 / 12, "feet"),
  18326. default: true
  18327. },
  18328. {
  18329. name: "Macro",
  18330. height: math.unit(200, "feet")
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(5 + 9 / 12, "feet"),
  18339. weight: math.unit(190, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/atticus/front.svg",
  18343. extra: 2934 / 2785,
  18344. bottom: 0.025
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(5 + 9 / 12, "feet"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Macro",
  18356. height: math.unit(180, "feet")
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18362. {
  18363. side: {
  18364. height: math.unit(9, "feet"),
  18365. weight: math.unit(650, "lb"),
  18366. name: "Side",
  18367. image: {
  18368. source: "./media/characters/milo/side.svg",
  18369. extra: 2644 / 2310,
  18370. bottom: 0.032
  18371. }
  18372. },
  18373. },
  18374. [
  18375. {
  18376. name: "Normal",
  18377. height: math.unit(9, "feet"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "Macro",
  18382. height: math.unit(300, "feet")
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18388. {
  18389. side: {
  18390. height: math.unit(8, "meters"),
  18391. weight: math.unit(90000, "kg"),
  18392. name: "Side",
  18393. image: {
  18394. source: "./media/characters/ijzer/side.svg",
  18395. extra: 2756 / 1600,
  18396. bottom: 0.01
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Small",
  18403. height: math.unit(3, "meters")
  18404. },
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(8, "meters"),
  18408. default: true
  18409. },
  18410. {
  18411. name: "Normal+",
  18412. height: math.unit(10, "meters")
  18413. },
  18414. {
  18415. name: "Bigger",
  18416. height: math.unit(24, "meters")
  18417. },
  18418. {
  18419. name: "Huge",
  18420. height: math.unit(80, "meters")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18426. {
  18427. front: {
  18428. height: math.unit(6 + 2 / 12, "feet"),
  18429. weight: math.unit(153, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/luca-cervicum/front.svg",
  18433. extra: 370 / 327,
  18434. bottom: 0.015
  18435. }
  18436. },
  18437. back: {
  18438. height: math.unit(6 + 2 / 12, "feet"),
  18439. weight: math.unit(153, "lb"),
  18440. name: "Back",
  18441. image: {
  18442. source: "./media/characters/luca-cervicum/back.svg",
  18443. extra: 367 / 333,
  18444. bottom: 0.005
  18445. }
  18446. },
  18447. frontGear: {
  18448. height: math.unit(6 + 2 / 12, "feet"),
  18449. weight: math.unit(173, "lb"),
  18450. name: "Front (Gear)",
  18451. image: {
  18452. source: "./media/characters/luca-cervicum/front-gear.svg",
  18453. extra: 377 / 333,
  18454. bottom: 0.006
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(6 + 2 / 12, "feet"),
  18462. default: true
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(6 + 1 / 12, "feet"),
  18471. weight: math.unit(304, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/oliver/front.svg",
  18475. extra: 157 / 143,
  18476. bottom: 0.08
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(6 + 1 / 12, "feet"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(5 + 7 / 12, "feet"),
  18493. weight: math.unit(140, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/shane/front.svg",
  18497. extra: 304 / 289,
  18498. bottom: 0.005
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(5 + 7 / 12, "feet"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18512. {
  18513. front: {
  18514. height: math.unit(5 + 9 / 12, "feet"),
  18515. weight: math.unit(178, "lb"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/shin/front.svg",
  18519. extra: 159 / 151,
  18520. bottom: 0.015
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(5 + 9 / 12, "feet"),
  18528. default: true
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18534. {
  18535. front: {
  18536. height: math.unit(5 + 10 / 12, "feet"),
  18537. weight: math.unit(168, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/xerxes/front.svg",
  18541. extra: 282 / 260,
  18542. bottom: 0.045
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(5 + 10 / 12, "feet"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18556. {
  18557. front: {
  18558. height: math.unit(6 + 7 / 12, "feet"),
  18559. weight: math.unit(208, "lb"),
  18560. name: "Front",
  18561. image: {
  18562. source: "./media/characters/chaska/front.svg",
  18563. extra: 332 / 319,
  18564. bottom: 0.015
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(6 + 7 / 12, "feet"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18578. {
  18579. front: {
  18580. height: math.unit(5 + 8 / 12, "feet"),
  18581. weight: math.unit(208, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/enuk/front.svg",
  18585. extra: 437 / 406,
  18586. bottom: 0.02
  18587. }
  18588. },
  18589. },
  18590. [
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(5 + 8 / 12, "feet"),
  18594. default: true
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18600. {
  18601. front: {
  18602. height: math.unit(5 + 10 / 12, "feet"),
  18603. weight: math.unit(252, "lb"),
  18604. name: "Front",
  18605. image: {
  18606. source: "./media/characters/bruun/front.svg",
  18607. extra: 197 / 187,
  18608. bottom: 0.012
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(5 + 10 / 12, "feet"),
  18616. default: true
  18617. },
  18618. ]
  18619. ))
  18620. characterMakers.push(() => makeCharacter(
  18621. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18622. {
  18623. front: {
  18624. height: math.unit(6 + 10 / 12, "feet"),
  18625. weight: math.unit(255, "lb"),
  18626. name: "Front",
  18627. image: {
  18628. source: "./media/characters/alexeev/front.svg",
  18629. extra: 213 / 200,
  18630. bottom: 0.05
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(6 + 10 / 12, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(2 + 8 / 12, "feet"),
  18647. weight: math.unit(22, "lb"),
  18648. name: "Front",
  18649. image: {
  18650. source: "./media/characters/evelyn/front.svg",
  18651. extra: 208 / 180
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(2 + 8 / 12, "feet"),
  18659. default: true
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18665. {
  18666. front: {
  18667. height: math.unit(5 + 9 / 12, "feet"),
  18668. weight: math.unit(139, "lb"),
  18669. name: "Front",
  18670. image: {
  18671. source: "./media/characters/inca/front.svg",
  18672. extra: 294 / 291,
  18673. bottom: 0.03
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(5 + 9 / 12, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(5 + 1 / 12, "feet"),
  18690. weight: math.unit(84, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/magdalene/front.svg",
  18694. extra: 293 / 273
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Normal",
  18701. height: math.unit(5 + 1 / 12, "feet"),
  18702. default: true
  18703. },
  18704. ]
  18705. ))
  18706. characterMakers.push(() => makeCharacter(
  18707. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18708. {
  18709. front: {
  18710. height: math.unit(6 + 3 / 12, "feet"),
  18711. weight: math.unit(185, "lb"),
  18712. name: "Front",
  18713. image: {
  18714. source: "./media/characters/mera/front.svg",
  18715. extra: 291 / 277,
  18716. bottom: 0.03
  18717. }
  18718. },
  18719. },
  18720. [
  18721. {
  18722. name: "Normal",
  18723. height: math.unit(6 + 3 / 12, "feet"),
  18724. default: true
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(6 + 7 / 12, "feet"),
  18733. weight: math.unit(160, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/ceres/front.svg",
  18737. extra: 1023 / 950,
  18738. bottom: 0.027
  18739. }
  18740. },
  18741. back: {
  18742. height: math.unit(6 + 7 / 12, "feet"),
  18743. weight: math.unit(160, "lb"),
  18744. name: "Back",
  18745. image: {
  18746. source: "./media/characters/ceres/back.svg",
  18747. extra: 1023 / 950
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(6 + 7 / 12, "feet"),
  18755. default: true
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(5 + 10 / 12, "feet"),
  18764. weight: math.unit(150, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/kris/front.svg",
  18768. extra: 885 / 803,
  18769. bottom: 0.03
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(5 + 10 / 12, "feet"),
  18777. default: true
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(7, "feet"),
  18786. weight: math.unit(120, "kg"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/taluthus/front.svg",
  18790. extra: 903 / 833,
  18791. bottom: 0.015
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(7, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(300, "feet")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(5 + 9 / 12, "feet"),
  18812. weight: math.unit(145, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/dawn/front.svg",
  18816. extra: 2094 / 2016,
  18817. bottom: 0.025
  18818. }
  18819. },
  18820. back: {
  18821. height: math.unit(5 + 9 / 12, "feet"),
  18822. weight: math.unit(160, "lb"),
  18823. name: "Back",
  18824. image: {
  18825. source: "./media/characters/dawn/back.svg",
  18826. extra: 2112 / 2080,
  18827. bottom: 0.005
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(6 + 7 / 12, "feet"),
  18835. default: true
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18841. {
  18842. anthro: {
  18843. height: math.unit(8 + 3 / 12, "feet"),
  18844. weight: math.unit(450, "lb"),
  18845. name: "Anthro",
  18846. image: {
  18847. source: "./media/characters/arador/anthro.svg",
  18848. extra: 1835 / 1718,
  18849. bottom: 0.025
  18850. }
  18851. },
  18852. feral: {
  18853. height: math.unit(4, "feet"),
  18854. weight: math.unit(200, "lb"),
  18855. name: "Feral",
  18856. image: {
  18857. source: "./media/characters/arador/feral.svg",
  18858. extra: 1683 / 1514,
  18859. bottom: 0.07
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(8 + 3 / 12, "feet")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(82.5, "feet"),
  18871. default: true
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(5 + 10 / 12, "feet"),
  18880. weight: math.unit(125, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/dharsi/front.svg",
  18884. extra: 716 / 630,
  18885. bottom: 0.035
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Nano",
  18892. height: math.unit(100, "nm")
  18893. },
  18894. {
  18895. name: "Micro",
  18896. height: math.unit(2, "inches")
  18897. },
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(5 + 10 / 12, "feet"),
  18901. default: true
  18902. },
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(1000, "feet")
  18906. },
  18907. {
  18908. name: "Megamacro",
  18909. height: math.unit(10, "miles")
  18910. },
  18911. {
  18912. name: "Gigamacro",
  18913. height: math.unit(3000, "miles")
  18914. },
  18915. {
  18916. name: "Teramacro",
  18917. height: math.unit(500000, "miles")
  18918. },
  18919. {
  18920. name: "Teramacro+",
  18921. height: math.unit(30, "galaxies")
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6, "feet"),
  18930. weight: math.unit(150, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/deathy/front.svg",
  18934. extra: 1552 / 1463,
  18935. bottom: 0.025
  18936. }
  18937. },
  18938. side: {
  18939. height: math.unit(6, "feet"),
  18940. weight: math.unit(150, "lb"),
  18941. name: "Side",
  18942. image: {
  18943. source: "./media/characters/deathy/side.svg",
  18944. extra: 1604 / 1455,
  18945. bottom: 0.025
  18946. }
  18947. },
  18948. back: {
  18949. height: math.unit(6, "feet"),
  18950. weight: math.unit(150, "lb"),
  18951. name: "Back",
  18952. image: {
  18953. source: "./media/characters/deathy/back.svg",
  18954. extra: 1580 / 1463,
  18955. bottom: 0.005
  18956. }
  18957. },
  18958. },
  18959. [
  18960. {
  18961. name: "Micro",
  18962. height: math.unit(5, "millimeters")
  18963. },
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(6 + 5 / 12, "feet"),
  18967. default: true
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18973. {
  18974. front: {
  18975. height: math.unit(16, "feet"),
  18976. weight: math.unit(4000, "lb"),
  18977. name: "Front",
  18978. image: {
  18979. source: "./media/characters/juniper/front.svg",
  18980. bottom: 0.04
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(16, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(6, "feet"),
  18997. weight: math.unit(150, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/hipster/front.svg",
  19001. extra: 1312 / 1209,
  19002. bottom: 0.025
  19003. }
  19004. },
  19005. back: {
  19006. height: math.unit(6, "feet"),
  19007. weight: math.unit(150, "lb"),
  19008. name: "Back",
  19009. image: {
  19010. source: "./media/characters/hipster/back.svg",
  19011. extra: 1281 / 1196,
  19012. bottom: 0.01
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Micro",
  19019. height: math.unit(1, "mm")
  19020. },
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(4, "inches"),
  19024. default: true
  19025. },
  19026. {
  19027. name: "Macro",
  19028. height: math.unit(500, "feet")
  19029. },
  19030. {
  19031. name: "Megamacro",
  19032. height: math.unit(1000, "miles")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(6, "feet"),
  19041. weight: math.unit(150, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/tendirmuldr/front.svg",
  19045. extra: 1878 / 1772,
  19046. bottom: 0.015
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Megamacro",
  19053. height: math.unit(1500, "miles"),
  19054. default: true
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19060. {
  19061. front: {
  19062. height: math.unit(14, "feet"),
  19063. weight: math.unit(12000, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/mort/front.svg",
  19067. extra: 365 / 318,
  19068. bottom: 0.01
  19069. }
  19070. },
  19071. side: {
  19072. height: math.unit(14, "feet"),
  19073. weight: math.unit(12000, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/mort/side.svg",
  19077. extra: 365 / 318,
  19078. bottom: 0.052
  19079. },
  19080. default: true
  19081. },
  19082. back: {
  19083. height: math.unit(14, "feet"),
  19084. weight: math.unit(12000, "lb"),
  19085. name: "Back",
  19086. image: {
  19087. source: "./media/characters/mort/back.svg",
  19088. extra: 371 / 332,
  19089. bottom: 0.18
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(14, "feet"),
  19097. default: true
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19103. {
  19104. front: {
  19105. height: math.unit(8, "feet"),
  19106. weight: math.unit(1, "ton"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/lycoa/front.svg",
  19110. extra: 1875 / 1789,
  19111. bottom: 0.022
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(8, "feet"),
  19116. weight: math.unit(1, "ton"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/lycoa/back.svg",
  19120. extra: 1835 / 1781,
  19121. bottom: 0.03
  19122. }
  19123. },
  19124. head: {
  19125. height: math.unit(2.1, "feet"),
  19126. name: "Head",
  19127. image: {
  19128. source: "./media/characters/lycoa/head.svg"
  19129. }
  19130. },
  19131. tailmaw: {
  19132. height: math.unit(1.9, "feet"),
  19133. name: "Tailmaw",
  19134. image: {
  19135. source: "./media/characters/lycoa/tailmaw.svg"
  19136. }
  19137. },
  19138. tentacles: {
  19139. height: math.unit(2.1, "feet"),
  19140. name: "Tentacles",
  19141. image: {
  19142. source: "./media/characters/lycoa/tentacles.svg"
  19143. }
  19144. },
  19145. dick: {
  19146. height: math.unit(1.73, "feet"),
  19147. name: "Dick",
  19148. image: {
  19149. source: "./media/characters/lycoa/dick.svg"
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(8, "feet"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Macro",
  19161. height: math.unit(30, "feet")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(4 + 2 / 12, "feet"),
  19170. weight: math.unit(70, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/naldara/front.svg",
  19174. extra: 841 / 720,
  19175. bottom: 0.04
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Normal",
  19182. height: math.unit(4 + 2 / 12, "feet"),
  19183. default: true
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(13 + 7 / 12, "feet"),
  19192. weight: math.unit(1500, "lb"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/briar/front.svg",
  19196. extra: 626 / 596,
  19197. bottom: 0.08
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(13 + 7 / 12, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19211. {
  19212. side: {
  19213. height: math.unit(10, "feet"),
  19214. weight: math.unit(500, "lb"),
  19215. name: "Side",
  19216. image: {
  19217. source: "./media/characters/vanguard/side.svg",
  19218. extra: 502 / 425,
  19219. bottom: 0.087
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(10, "feet"),
  19227. default: true
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19233. {
  19234. front: {
  19235. height: math.unit(7.5, "feet"),
  19236. weight: math.unit(2, "lb"),
  19237. name: "Front",
  19238. image: {
  19239. source: "./media/characters/artemis/front.svg",
  19240. extra: 1192 / 1075,
  19241. bottom: 0.07
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(7.5, "feet"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Enlarged",
  19253. height: math.unit(12, "feet")
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(5 + 3 / 12, "feet"),
  19262. weight: math.unit(160, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/kira/front.svg",
  19266. extra: 906 / 786,
  19267. bottom: 0.01
  19268. }
  19269. },
  19270. back: {
  19271. height: math.unit(5 + 3 / 12, "feet"),
  19272. weight: math.unit(160, "lb"),
  19273. name: "Back",
  19274. image: {
  19275. source: "./media/characters/kira/back.svg",
  19276. extra: 882 / 757,
  19277. bottom: 0.005
  19278. }
  19279. },
  19280. frontDressed: {
  19281. height: math.unit(5 + 3 / 12, "feet"),
  19282. weight: math.unit(160, "lb"),
  19283. name: "Front (Dressed)",
  19284. image: {
  19285. source: "./media/characters/kira/front-dressed.svg",
  19286. extra: 906 / 786,
  19287. bottom: 0.01
  19288. }
  19289. },
  19290. beans: {
  19291. height: math.unit(0.92, "feet"),
  19292. name: "Beans",
  19293. image: {
  19294. source: "./media/characters/kira/beans.svg"
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(5 + 3 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(5 + 4 / 12, "feet"),
  19311. weight: math.unit(145, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/scramble/front.svg",
  19315. extra: 763 / 727,
  19316. bottom: 0.05
  19317. }
  19318. },
  19319. back: {
  19320. height: math.unit(5 + 4 / 12, "feet"),
  19321. weight: math.unit(145, "lb"),
  19322. name: "Back",
  19323. image: {
  19324. source: "./media/characters/scramble/back.svg",
  19325. extra: 826 / 737,
  19326. bottom: 0.002
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(5 + 4 / 12, "feet"),
  19334. default: true
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19340. {
  19341. side: {
  19342. height: math.unit(6 + 2 / 12, "feet"),
  19343. weight: math.unit(190, "lb"),
  19344. name: "Side",
  19345. image: {
  19346. source: "./media/characters/biscuit/side.svg",
  19347. extra: 858 / 791,
  19348. bottom: 0.044
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Normal",
  19355. height: math.unit(6 + 2 / 12, "feet"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19362. {
  19363. front: {
  19364. height: math.unit(5 + 2 / 12, "feet"),
  19365. weight: math.unit(120, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/poffin/front.svg",
  19369. extra: 786 / 680,
  19370. bottom: 0.005
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 2 / 12, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(6 + 3 / 12, "feet"),
  19387. weight: math.unit(519, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/dhari/front.svg",
  19391. extra: 1048 / 946,
  19392. bottom: 0.015
  19393. }
  19394. },
  19395. back: {
  19396. height: math.unit(6 + 3 / 12, "feet"),
  19397. weight: math.unit(519, "lb"),
  19398. name: "Back",
  19399. image: {
  19400. source: "./media/characters/dhari/back.svg",
  19401. extra: 1048 / 931,
  19402. bottom: 0.005
  19403. }
  19404. },
  19405. frontDressed: {
  19406. height: math.unit(6 + 3 / 12, "feet"),
  19407. weight: math.unit(519, "lb"),
  19408. name: "Front (Dressed)",
  19409. image: {
  19410. source: "./media/characters/dhari/front-dressed.svg",
  19411. extra: 1713 / 1546,
  19412. bottom: 0.02
  19413. }
  19414. },
  19415. backDressed: {
  19416. height: math.unit(6 + 3 / 12, "feet"),
  19417. weight: math.unit(519, "lb"),
  19418. name: "Back (Dressed)",
  19419. image: {
  19420. source: "./media/characters/dhari/back-dressed.svg",
  19421. extra: 1699 / 1537,
  19422. bottom: 0.01
  19423. }
  19424. },
  19425. maw: {
  19426. height: math.unit(0.95, "feet"),
  19427. name: "Maw",
  19428. image: {
  19429. source: "./media/characters/dhari/maw.svg"
  19430. }
  19431. },
  19432. wereFront: {
  19433. height: math.unit(12 + 8 / 12, "feet"),
  19434. weight: math.unit(4000, "lb"),
  19435. name: "Front (Were)",
  19436. image: {
  19437. source: "./media/characters/dhari/were-front.svg",
  19438. extra: 1065 / 969,
  19439. bottom: 0.015
  19440. }
  19441. },
  19442. wereBack: {
  19443. height: math.unit(12 + 8 / 12, "feet"),
  19444. weight: math.unit(4000, "lb"),
  19445. name: "Back (Were)",
  19446. image: {
  19447. source: "./media/characters/dhari/were-back.svg",
  19448. extra: 1065 / 969,
  19449. bottom: 0.012
  19450. }
  19451. },
  19452. wereMaw: {
  19453. height: math.unit(0.625, "meters"),
  19454. name: "Maw (Were)",
  19455. image: {
  19456. source: "./media/characters/dhari/were-maw.svg"
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(6 + 3 / 12, "feet"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19470. {
  19471. anthro: {
  19472. height: math.unit(5 + 7 / 12, "feet"),
  19473. weight: math.unit(175, "lb"),
  19474. name: "Anthro",
  19475. image: {
  19476. source: "./media/characters/rena-dyne/anthro.svg",
  19477. extra: 1849 / 1785,
  19478. bottom: 0.005
  19479. }
  19480. },
  19481. taur: {
  19482. height: math.unit(15 + 6 / 12, "feet"),
  19483. weight: math.unit(8000, "lb"),
  19484. name: "Taur",
  19485. image: {
  19486. source: "./media/characters/rena-dyne/taur.svg",
  19487. extra: 2315 / 2234,
  19488. bottom: 0.033
  19489. }
  19490. },
  19491. },
  19492. [
  19493. {
  19494. name: "Normal",
  19495. height: math.unit(5 + 7 / 12, "feet"),
  19496. default: true
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(8, "feet"),
  19505. weight: math.unit(600, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/weremeep/front.svg",
  19509. extra: 967 / 862,
  19510. bottom: 0.01
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(8, "feet"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Lorg",
  19522. height: math.unit(12, "feet")
  19523. },
  19524. {
  19525. name: "Oh Lawd She Comin'",
  19526. height: math.unit(20, "feet")
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19532. {
  19533. front: {
  19534. height: math.unit(4, "feet"),
  19535. weight: math.unit(90, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/reza/front.svg",
  19539. extra: 1183 / 1111,
  19540. bottom: 0.017
  19541. }
  19542. },
  19543. back: {
  19544. height: math.unit(4, "feet"),
  19545. weight: math.unit(90, "lb"),
  19546. name: "Back",
  19547. image: {
  19548. source: "./media/characters/reza/back.svg",
  19549. extra: 1183 / 1111,
  19550. bottom: 0.01
  19551. }
  19552. },
  19553. drake: {
  19554. height: math.unit(30, "feet"),
  19555. weight: math.unit(246960, "lb"),
  19556. name: "Drake",
  19557. image: {
  19558. source: "./media/characters/reza/drake.svg",
  19559. extra: 2350 / 2024,
  19560. bottom: 60.7 / 2403
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(4, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19574. {
  19575. side: {
  19576. height: math.unit(15, "feet"),
  19577. weight: math.unit(14, "tons"),
  19578. name: "Side",
  19579. image: {
  19580. source: "./media/characters/athea/side.svg",
  19581. extra: 960 / 540,
  19582. bottom: 0.003
  19583. }
  19584. },
  19585. sitting: {
  19586. height: math.unit(6 * 2.85, "feet"),
  19587. weight: math.unit(14, "tons"),
  19588. name: "Sitting",
  19589. image: {
  19590. source: "./media/characters/athea/sitting.svg",
  19591. extra: 621 / 581,
  19592. bottom: 0.075
  19593. }
  19594. },
  19595. maw: {
  19596. height: math.unit(7.59498031496063, "feet"),
  19597. name: "Maw",
  19598. image: {
  19599. source: "./media/characters/athea/maw.svg"
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Lap Cat",
  19606. height: math.unit(2.5, "feet")
  19607. },
  19608. {
  19609. name: "Minimacro",
  19610. height: math.unit(15, "feet"),
  19611. default: true
  19612. },
  19613. {
  19614. name: "Macro",
  19615. height: math.unit(120, "feet")
  19616. },
  19617. {
  19618. name: "Macro+",
  19619. height: math.unit(640, "feet")
  19620. },
  19621. {
  19622. name: "Colossus",
  19623. height: math.unit(2.2, "miles")
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19629. {
  19630. front: {
  19631. height: math.unit(8 + 8 / 12, "feet"),
  19632. weight: math.unit(130, "kg"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/seroko/front.svg",
  19636. extra: 1385 / 1280,
  19637. bottom: 0.025
  19638. }
  19639. },
  19640. back: {
  19641. height: math.unit(8 + 8 / 12, "feet"),
  19642. weight: math.unit(130, "kg"),
  19643. name: "Back",
  19644. image: {
  19645. source: "./media/characters/seroko/back.svg",
  19646. extra: 1369 / 1238,
  19647. bottom: 0.018
  19648. }
  19649. },
  19650. frontDressed: {
  19651. height: math.unit(8 + 8 / 12, "feet"),
  19652. weight: math.unit(130, "kg"),
  19653. name: "Front (Dressed)",
  19654. image: {
  19655. source: "./media/characters/seroko/front-dressed.svg",
  19656. extra: 1366 / 1275,
  19657. bottom: 0.03
  19658. }
  19659. },
  19660. },
  19661. [
  19662. {
  19663. name: "Normal",
  19664. height: math.unit(8 + 8 / 12, "feet"),
  19665. default: true
  19666. },
  19667. ]
  19668. ))
  19669. characterMakers.push(() => makeCharacter(
  19670. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19671. {
  19672. front: {
  19673. height: math.unit(5.5, "feet"),
  19674. weight: math.unit(160, "lb"),
  19675. name: "Front",
  19676. image: {
  19677. source: "./media/characters/quatzi/front.svg",
  19678. extra: 2346 / 2242,
  19679. bottom: 0.015
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(5.5, "feet"),
  19687. default: true
  19688. },
  19689. {
  19690. name: "Big",
  19691. height: math.unit(7.7, "feet")
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(5 + 11 / 12, "feet"),
  19700. weight: math.unit(180, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/sen/front.svg",
  19704. extra: 1321 / 1254,
  19705. bottom: 0.015
  19706. }
  19707. },
  19708. side: {
  19709. height: math.unit(5 + 11 / 12, "feet"),
  19710. weight: math.unit(180, "lb"),
  19711. name: "Side",
  19712. image: {
  19713. source: "./media/characters/sen/side.svg",
  19714. extra: 1321 / 1254,
  19715. bottom: 0.007
  19716. }
  19717. },
  19718. back: {
  19719. height: math.unit(5 + 11 / 12, "feet"),
  19720. weight: math.unit(180, "lb"),
  19721. name: "Back",
  19722. image: {
  19723. source: "./media/characters/sen/back.svg",
  19724. extra: 1321 / 1254
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(5 + 11 / 12, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(166.6, "cm"),
  19741. weight: math.unit(66.6, "kg"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/fruity/front.svg",
  19745. extra: 1510 / 1386,
  19746. bottom: 0.04
  19747. }
  19748. },
  19749. back: {
  19750. height: math.unit(166.6, "cm"),
  19751. weight: math.unit(66.6, "lb"),
  19752. name: "Back",
  19753. image: {
  19754. source: "./media/characters/fruity/back.svg",
  19755. extra: 1563 / 1435,
  19756. bottom: 0.005
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(166.6, "cm"),
  19764. default: true
  19765. },
  19766. {
  19767. name: "Demonic",
  19768. height: math.unit(166.6, "feet")
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19774. {
  19775. side: {
  19776. height: math.unit(10, "feet"),
  19777. weight: math.unit(500, "lb"),
  19778. name: "Side",
  19779. image: {
  19780. source: "./media/characters/zost/side.svg",
  19781. extra: 966 / 880,
  19782. bottom: 0.075
  19783. }
  19784. },
  19785. mawFront: {
  19786. height: math.unit(1.08, "meters"),
  19787. name: "Maw (Front)",
  19788. image: {
  19789. source: "./media/characters/zost/maw-front.svg"
  19790. }
  19791. },
  19792. mawSide: {
  19793. height: math.unit(2.66, "feet"),
  19794. name: "Maw (Side)",
  19795. image: {
  19796. source: "./media/characters/zost/maw-side.svg"
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(10, "feet"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(5 + 4 / 12, "feet"),
  19813. weight: math.unit(120, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/luci/front.svg",
  19817. extra: 1985 / 1884,
  19818. bottom: 0.04
  19819. }
  19820. },
  19821. back: {
  19822. height: math.unit(5 + 4 / 12, "feet"),
  19823. weight: math.unit(120, "lb"),
  19824. name: "Back",
  19825. image: {
  19826. source: "./media/characters/luci/back.svg",
  19827. extra: 1892 / 1791,
  19828. bottom: 0.002
  19829. }
  19830. },
  19831. },
  19832. [
  19833. {
  19834. name: "Normal",
  19835. height: math.unit(5 + 4 / 12, "feet"),
  19836. default: true
  19837. },
  19838. ]
  19839. ))
  19840. characterMakers.push(() => makeCharacter(
  19841. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19842. {
  19843. front: {
  19844. height: math.unit(1500, "feet"),
  19845. weight: math.unit(3.8e6, "tons"),
  19846. name: "Front",
  19847. image: {
  19848. source: "./media/characters/2th/front.svg",
  19849. extra: 3489 / 3350,
  19850. bottom: 0.1
  19851. }
  19852. },
  19853. foot: {
  19854. height: math.unit(461, "feet"),
  19855. name: "Foot",
  19856. image: {
  19857. source: "./media/characters/2th/foot.svg"
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "\"Micro\"",
  19864. height: math.unit(15 + 7 / 12, "feet")
  19865. },
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(1500, "feet"),
  19869. default: true
  19870. },
  19871. {
  19872. name: "Macro",
  19873. height: math.unit(5000, "feet")
  19874. },
  19875. {
  19876. name: "Megamacro",
  19877. height: math.unit(15, "miles")
  19878. },
  19879. {
  19880. name: "Gigamacro",
  19881. height: math.unit(4000, "miles")
  19882. },
  19883. {
  19884. name: "Galactic",
  19885. height: math.unit(50, "AU")
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(5 + 6 / 12, "feet"),
  19894. weight: math.unit(220, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/amethyst/front.svg",
  19898. extra: 2078 / 2040,
  19899. bottom: 0.045
  19900. }
  19901. },
  19902. back: {
  19903. height: math.unit(5 + 6 / 12, "feet"),
  19904. weight: math.unit(220, "lb"),
  19905. name: "Back",
  19906. image: {
  19907. source: "./media/characters/amethyst/back.svg",
  19908. extra: 2021 / 1989,
  19909. bottom: 0.02
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(5 + 6 / 12, "feet"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(4 + 11 / 12, "feet"),
  19926. weight: math.unit(120, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/yumi-akiyama/front.svg",
  19930. extra: 1327 / 1235,
  19931. bottom: 0.02
  19932. }
  19933. },
  19934. back: {
  19935. height: math.unit(4 + 11 / 12, "feet"),
  19936. weight: math.unit(120, "lb"),
  19937. name: "Back",
  19938. image: {
  19939. source: "./media/characters/yumi-akiyama/back.svg",
  19940. extra: 1287 / 1245,
  19941. bottom: 0.002
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Galactic",
  19948. height: math.unit(50, "galaxies"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Universal",
  19953. height: math.unit(100, "universes")
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(8, "feet"),
  19962. weight: math.unit(500, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/rifter-yrmori/front.svg",
  19966. extra: 1180 / 1125,
  19967. bottom: 0.02
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(8, "feet"),
  19972. weight: math.unit(500, "lb"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/rifter-yrmori/back.svg",
  19976. extra: 1190 / 1145,
  19977. bottom: 0.001
  19978. }
  19979. },
  19980. wings: {
  19981. height: math.unit(7.75, "feet"),
  19982. weight: math.unit(500, "lb"),
  19983. name: "Wings",
  19984. image: {
  19985. source: "./media/characters/rifter-yrmori/wings.svg",
  19986. extra: 1357 / 1285
  19987. }
  19988. },
  19989. maw: {
  19990. height: math.unit(0.8, "feet"),
  19991. name: "Maw",
  19992. image: {
  19993. source: "./media/characters/rifter-yrmori/maw.svg"
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(8, "feet"),
  20001. default: true
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(42, "meters")
  20006. },
  20007. ]
  20008. ))
  20009. characterMakers.push(() => makeCharacter(
  20010. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20011. {
  20012. were: {
  20013. height: math.unit(25 + 6 / 12, "feet"),
  20014. weight: math.unit(10000, "lb"),
  20015. name: "Were",
  20016. image: {
  20017. source: "./media/characters/tahajin/were.svg",
  20018. extra: 801 / 770,
  20019. bottom: 0.042
  20020. }
  20021. },
  20022. aquatic: {
  20023. height: math.unit(6 + 4 / 12, "feet"),
  20024. weight: math.unit(160, "lb"),
  20025. name: "Aquatic",
  20026. image: {
  20027. source: "./media/characters/tahajin/aquatic.svg",
  20028. extra: 572 / 542,
  20029. bottom: 0.04
  20030. }
  20031. },
  20032. chow: {
  20033. height: math.unit(8 + 11 / 12, "feet"),
  20034. weight: math.unit(450, "lb"),
  20035. name: "Chow",
  20036. image: {
  20037. source: "./media/characters/tahajin/chow.svg",
  20038. extra: 660 / 640,
  20039. bottom: 0.015
  20040. }
  20041. },
  20042. demiNaga: {
  20043. height: math.unit(6 + 8 / 12, "feet"),
  20044. weight: math.unit(300, "lb"),
  20045. name: "Demi Naga",
  20046. image: {
  20047. source: "./media/characters/tahajin/demi-naga.svg",
  20048. extra: 643 / 615,
  20049. bottom: 0.1
  20050. }
  20051. },
  20052. data: {
  20053. height: math.unit(5, "inches"),
  20054. weight: math.unit(0.1, "lb"),
  20055. name: "Data",
  20056. image: {
  20057. source: "./media/characters/tahajin/data.svg"
  20058. }
  20059. },
  20060. fluu: {
  20061. height: math.unit(5 + 7 / 12, "feet"),
  20062. weight: math.unit(140, "lb"),
  20063. name: "Fluu",
  20064. image: {
  20065. source: "./media/characters/tahajin/fluu.svg",
  20066. extra: 628 / 592,
  20067. bottom: 0.02
  20068. }
  20069. },
  20070. starWarrior: {
  20071. height: math.unit(4 + 5 / 12, "feet"),
  20072. weight: math.unit(50, "lb"),
  20073. name: "Star Warrior",
  20074. image: {
  20075. source: "./media/characters/tahajin/star-warrior.svg"
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(25 + 6 / 12, "feet"),
  20083. default: true
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(8, "feet"),
  20092. weight: math.unit(350, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/gabira/front.svg",
  20096. extra: 608 / 580,
  20097. bottom: 0.03
  20098. }
  20099. },
  20100. back: {
  20101. height: math.unit(8, "feet"),
  20102. weight: math.unit(350, "lb"),
  20103. name: "Back",
  20104. image: {
  20105. source: "./media/characters/gabira/back.svg",
  20106. extra: 608 / 580,
  20107. bottom: 0.03
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(8, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(5 + 3 / 12, "feet"),
  20124. weight: math.unit(137, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/sasha-katraine/front.svg",
  20128. bottom: 0.045
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Micro",
  20135. height: math.unit(5, "inches")
  20136. },
  20137. {
  20138. name: "Normal",
  20139. height: math.unit(5 + 3 / 12, "feet"),
  20140. default: true
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20146. {
  20147. side: {
  20148. height: math.unit(4, "inches"),
  20149. weight: math.unit(200, "grams"),
  20150. name: "Side",
  20151. image: {
  20152. source: "./media/characters/der/side.svg",
  20153. extra: 719 / 400,
  20154. bottom: 30.6 / 749.9187
  20155. }
  20156. },
  20157. },
  20158. [
  20159. {
  20160. name: "Micro",
  20161. height: math.unit(4, "inches"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20168. {
  20169. side: {
  20170. height: math.unit(30, "meters"),
  20171. weight: math.unit(700, "tonnes"),
  20172. name: "Side",
  20173. image: {
  20174. source: "./media/characters/fixerdragon/side.svg",
  20175. extra: (1293.0514 - 116.03) / 1106.86,
  20176. bottom: 116.03 / 1293.0514
  20177. }
  20178. },
  20179. },
  20180. [
  20181. {
  20182. name: "Planck",
  20183. height: math.unit(1.6e-35, "meters")
  20184. },
  20185. {
  20186. name: "Micro",
  20187. height: math.unit(0.4, "meters")
  20188. },
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(30, "meters"),
  20192. default: true
  20193. },
  20194. {
  20195. name: "Megamacro",
  20196. height: math.unit(1.2, "megameters")
  20197. },
  20198. {
  20199. name: "Teramacro",
  20200. height: math.unit(130, "terameters")
  20201. },
  20202. {
  20203. name: "Yottamacro",
  20204. height: math.unit(6200, "yottameters")
  20205. },
  20206. ]
  20207. ));
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(8, "feet"),
  20213. weight: math.unit(250, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/kite/front.svg",
  20217. extra: 2796 / 2659,
  20218. bottom: 0.002
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(8, "feet"),
  20226. default: true
  20227. },
  20228. {
  20229. name: "Macro",
  20230. height: math.unit(360, "feet")
  20231. },
  20232. {
  20233. name: "Megamacro",
  20234. height: math.unit(1500, "feet")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(5 + 10 / 12, "feet"),
  20243. weight: math.unit(150, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/poojawa-vynar/front.svg",
  20247. extra: (1506.1547 - 55) / 1356.6,
  20248. bottom: 55 / 1506.1547
  20249. }
  20250. },
  20251. frontTailless: {
  20252. height: math.unit(5 + 10 / 12, "feet"),
  20253. weight: math.unit(150, "lb"),
  20254. name: "Front (Tailless)",
  20255. image: {
  20256. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20257. extra: (1506.1547 - 55) / 1356.6,
  20258. bottom: 55 / 1506.1547
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(5 + 10 / 12, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(293, "meters"),
  20275. weight: math.unit(70400, "tons"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/violette/front.svg",
  20279. extra: 1227 / 1180,
  20280. bottom: 0.005
  20281. }
  20282. },
  20283. back: {
  20284. height: math.unit(293, "meters"),
  20285. weight: math.unit(70400, "tons"),
  20286. name: "Back",
  20287. image: {
  20288. source: "./media/characters/violette/back.svg",
  20289. extra: 1227 / 1180,
  20290. bottom: 0.005
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Macro",
  20297. height: math.unit(293, "meters"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(1050, "feet"),
  20307. weight: math.unit(200000, "tons"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/alessandra/front.svg",
  20311. extra: 960 / 912,
  20312. bottom: 0.06
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Macro",
  20319. height: math.unit(1050, "feet")
  20320. },
  20321. {
  20322. name: "Macro+",
  20323. height: math.unit(900, "meters"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20330. {
  20331. front: {
  20332. height: math.unit(5, "feet"),
  20333. weight: math.unit(187, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/person/front.svg",
  20337. extra: 3087 / 2945,
  20338. bottom: 91 / 3181
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Micro",
  20345. height: math.unit(3, "inches")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(5, "feet"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Macro",
  20354. height: math.unit(90, "feet")
  20355. },
  20356. {
  20357. name: "Max Size",
  20358. height: math.unit(280, "feet")
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(4.5, "meters"),
  20367. weight: math.unit(3200, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/ty/front.svg",
  20371. extra: 1038 / 960,
  20372. bottom: 31.156 / 1068
  20373. }
  20374. },
  20375. back: {
  20376. height: math.unit(4.5, "meters"),
  20377. weight: math.unit(3200, "lb"),
  20378. name: "Back",
  20379. image: {
  20380. source: "./media/characters/ty/back.svg",
  20381. extra: 1044 / 966,
  20382. bottom: 7.48 / 1049
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(4.5, "meters"),
  20390. default: true
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20396. {
  20397. front: {
  20398. height: math.unit(5 + 4 / 12, "feet"),
  20399. weight: math.unit(115, "lb"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/rocky/front.svg",
  20403. extra: 1012 / 975,
  20404. bottom: 54 / 1066
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Normal",
  20411. height: math.unit(5 + 4 / 12, "feet"),
  20412. default: true
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20418. {
  20419. upright: {
  20420. height: math.unit(6, "meters"),
  20421. weight: math.unit(4000, "kg"),
  20422. name: "Upright",
  20423. image: {
  20424. source: "./media/characters/ruin/upright.svg",
  20425. extra: 668 / 661,
  20426. bottom: 42 / 799.8396
  20427. }
  20428. },
  20429. },
  20430. [
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(6, "meters"),
  20434. default: true
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20440. {
  20441. front: {
  20442. height: math.unit(5, "feet"),
  20443. weight: math.unit(106, "lb"),
  20444. name: "Front",
  20445. image: {
  20446. source: "./media/characters/robin/front.svg",
  20447. extra: 862 / 799,
  20448. bottom: 42.4 / 914.8856
  20449. }
  20450. },
  20451. },
  20452. [
  20453. {
  20454. name: "Normal",
  20455. height: math.unit(5, "feet"),
  20456. default: true
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20462. {
  20463. side: {
  20464. height: math.unit(3, "feet"),
  20465. weight: math.unit(225, "lb"),
  20466. name: "Side",
  20467. image: {
  20468. source: "./media/characters/saian/side.svg",
  20469. extra: 566 / 356,
  20470. bottom: 79.7 / 643
  20471. }
  20472. },
  20473. maw: {
  20474. height: math.unit(2.85, "feet"),
  20475. name: "Maw",
  20476. image: {
  20477. source: "./media/characters/saian/maw.svg"
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(3, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20491. {
  20492. side: {
  20493. height: math.unit(8, "feet"),
  20494. weight: math.unit(300, "lb"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/equus-silvermane/side.svg",
  20498. extra: 2176 / 2050,
  20499. bottom: 65.7 / 2245
  20500. }
  20501. },
  20502. front: {
  20503. height: math.unit(8, "feet"),
  20504. weight: math.unit(300, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/equus-silvermane/front.svg",
  20508. extra: 4633 / 4400,
  20509. bottom: 71.3 / 4706.915
  20510. }
  20511. },
  20512. sideStepping: {
  20513. height: math.unit(8, "feet"),
  20514. weight: math.unit(300, "lb"),
  20515. name: "Side (Stepping)",
  20516. image: {
  20517. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20518. extra: 1968 / 1860,
  20519. bottom: 16.4 / 1989
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(8, "feet")
  20527. },
  20528. {
  20529. name: "Minimacro",
  20530. height: math.unit(75, "feet"),
  20531. default: true
  20532. },
  20533. {
  20534. name: "Macro",
  20535. height: math.unit(150, "feet")
  20536. },
  20537. {
  20538. name: "Macro+",
  20539. height: math.unit(1000, "feet")
  20540. },
  20541. {
  20542. name: "Megamacro",
  20543. height: math.unit(1, "mile")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20549. {
  20550. side: {
  20551. height: math.unit(20, "feet"),
  20552. weight: math.unit(30000, "kg"),
  20553. name: "Side",
  20554. image: {
  20555. source: "./media/characters/windar/side.svg",
  20556. extra: 1491 / 1248,
  20557. bottom: 82.56 / 1568
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(20, "feet"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20571. {
  20572. side: {
  20573. height: math.unit(15.66, "feet"),
  20574. weight: math.unit(150, "lb"),
  20575. name: "Side",
  20576. image: {
  20577. source: "./media/characters/melody/side.svg",
  20578. extra: 1097 / 944,
  20579. bottom: 11.8 / 1109
  20580. }
  20581. },
  20582. sideOutfit: {
  20583. height: math.unit(15.66, "feet"),
  20584. weight: math.unit(150, "lb"),
  20585. name: "Side (Outfit)",
  20586. image: {
  20587. source: "./media/characters/melody/side-outfit.svg",
  20588. extra: 1097 / 944,
  20589. bottom: 11.8 / 1109
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(15.66, "feet"),
  20597. default: true
  20598. },
  20599. ]
  20600. ))
  20601. characterMakers.push(() => makeCharacter(
  20602. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20603. {
  20604. front: {
  20605. height: math.unit(8, "feet"),
  20606. weight: math.unit(325, "lb"),
  20607. name: "Front",
  20608. image: {
  20609. source: "./media/characters/windera/front.svg",
  20610. extra: 3180 / 2845,
  20611. bottom: 178 / 3365
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(8, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20625. {
  20626. front: {
  20627. height: math.unit(28.75, "feet"),
  20628. weight: math.unit(2000, "kg"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/sonear/front.svg",
  20632. extra: 1041.1 / 964.9,
  20633. bottom: 53.7 / 1096.6
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(28.75, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20647. {
  20648. side: {
  20649. height: math.unit(25.5, "feet"),
  20650. weight: math.unit(23000, "kg"),
  20651. name: "Side",
  20652. image: {
  20653. source: "./media/characters/kanara/side.svg"
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(25.5, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20667. {
  20668. side: {
  20669. height: math.unit(10, "feet"),
  20670. weight: math.unit(1000, "kg"),
  20671. name: "Side",
  20672. image: {
  20673. source: "./media/characters/ereus/side.svg",
  20674. extra: 1157 / 959,
  20675. bottom: 153 / 1312.5
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(10, "feet"),
  20683. default: true
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20689. {
  20690. side: {
  20691. height: math.unit(4.5, "feet"),
  20692. weight: math.unit(500, "lb"),
  20693. name: "Side",
  20694. image: {
  20695. source: "./media/characters/e-ter/side.svg",
  20696. extra: 1550 / 1248,
  20697. bottom: 146 / 1694
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(4.5, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20711. {
  20712. side: {
  20713. height: math.unit(9.7, "feet"),
  20714. weight: math.unit(4000, "kg"),
  20715. name: "Side",
  20716. image: {
  20717. source: "./media/characters/yamie/side.svg"
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(9.7, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(50, "feet"),
  20734. weight: math.unit(50000, "kg"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/anders/front.svg",
  20738. extra: 570 / 539,
  20739. bottom: 14.7 / 586.7
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Large",
  20746. height: math.unit(50, "feet")
  20747. },
  20748. {
  20749. name: "Macro",
  20750. height: math.unit(2000, "feet"),
  20751. default: true
  20752. },
  20753. {
  20754. name: "Megamacro",
  20755. height: math.unit(12, "miles")
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(7 + 2 / 12, "feet"),
  20764. weight: math.unit(300, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/reban/front.svg",
  20768. extra: 516 / 487,
  20769. bottom: 42.82 / 558.356
  20770. }
  20771. },
  20772. dick: {
  20773. height: math.unit(7 / 5, "feet"),
  20774. name: "Dick",
  20775. image: {
  20776. source: "./media/characters/reban/dick.svg"
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Natural Height",
  20783. height: math.unit(7 + 2 / 12, "feet")
  20784. },
  20785. {
  20786. name: "Macro",
  20787. height: math.unit(500, "feet"),
  20788. default: true
  20789. },
  20790. {
  20791. name: "Canon Height",
  20792. height: math.unit(50, "AU")
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20798. {
  20799. front: {
  20800. height: math.unit(6, "feet"),
  20801. weight: math.unit(150, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/terrance-keayes/front.svg",
  20805. extra: 1.005,
  20806. bottom: 151 / 1615
  20807. }
  20808. },
  20809. side: {
  20810. height: math.unit(6, "feet"),
  20811. weight: math.unit(150, "lb"),
  20812. name: "Side",
  20813. image: {
  20814. source: "./media/characters/terrance-keayes/side.svg",
  20815. extra: 1.005,
  20816. bottom: 129.4 / 1544
  20817. }
  20818. },
  20819. back: {
  20820. height: math.unit(6, "feet"),
  20821. weight: math.unit(150, "lb"),
  20822. name: "Back",
  20823. image: {
  20824. source: "./media/characters/terrance-keayes/back.svg",
  20825. extra: 1.005,
  20826. bottom: 58.4 / 1557.3
  20827. }
  20828. },
  20829. dick: {
  20830. height: math.unit(6 * 0.208, "feet"),
  20831. name: "Dick",
  20832. image: {
  20833. source: "./media/characters/terrance-keayes/dick.svg"
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Canon Height",
  20840. height: math.unit(35, "miles"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(6, "feet"),
  20850. weight: math.unit(150, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/ofelia/front.svg",
  20854. extra: 546 / 541,
  20855. bottom: 39 / 583
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(6, "feet"),
  20860. weight: math.unit(150, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/ofelia/back.svg",
  20864. extra: 564 / 559.5,
  20865. bottom: 8.69 / 573.02
  20866. }
  20867. },
  20868. maw: {
  20869. height: math.unit(1, "feet"),
  20870. name: "Maw",
  20871. image: {
  20872. source: "./media/characters/ofelia/maw.svg"
  20873. }
  20874. },
  20875. foot: {
  20876. height: math.unit(1.949, "feet"),
  20877. name: "Foot",
  20878. image: {
  20879. source: "./media/characters/ofelia/foot.svg"
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Canon Height",
  20886. height: math.unit(2000, "miles"),
  20887. default: true
  20888. },
  20889. ]
  20890. ))
  20891. characterMakers.push(() => makeCharacter(
  20892. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20893. {
  20894. front: {
  20895. height: math.unit(6, "feet"),
  20896. weight: math.unit(150, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/samuel/front.svg",
  20900. extra: 265 / 258,
  20901. bottom: 2 / 266.1566
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Macro",
  20908. height: math.unit(100, "feet"),
  20909. default: true
  20910. },
  20911. {
  20912. name: "Full Size",
  20913. height: math.unit(1000, "miles")
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(6, "feet"),
  20922. weight: math.unit(300, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/beishir-kiel/front.svg",
  20926. extra: 569 / 547,
  20927. bottom: 41.9 / 609
  20928. }
  20929. },
  20930. maw: {
  20931. height: math.unit(6 * 0.202, "feet"),
  20932. name: "Maw",
  20933. image: {
  20934. source: "./media/characters/beishir-kiel/maw.svg"
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(300, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(5 + 8 / 12, "feet"),
  20951. weight: math.unit(120, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/logan-grey/front.svg",
  20955. extra: 2539 / 2393,
  20956. bottom: 97.6 / 2636.37
  20957. }
  20958. },
  20959. frontAlt: {
  20960. height: math.unit(5 + 8 / 12, "feet"),
  20961. weight: math.unit(120, "lb"),
  20962. name: "Front (Alt)",
  20963. image: {
  20964. source: "./media/characters/logan-grey/front-alt.svg",
  20965. extra: 958 / 893,
  20966. bottom: 15 / 970.768
  20967. }
  20968. },
  20969. back: {
  20970. height: math.unit(5 + 8 / 12, "feet"),
  20971. weight: math.unit(120, "lb"),
  20972. name: "Back",
  20973. image: {
  20974. source: "./media/characters/logan-grey/back.svg",
  20975. extra: 958 / 893,
  20976. bottom: 2.1881 / 970.9788
  20977. }
  20978. },
  20979. dick: {
  20980. height: math.unit(1.437, "feet"),
  20981. name: "Dick",
  20982. image: {
  20983. source: "./media/characters/logan-grey/dick.svg"
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(5 + 8 / 12, "feet")
  20991. },
  20992. {
  20993. name: "The 500 Foot Femboy",
  20994. height: math.unit(500, "feet"),
  20995. default: true
  20996. },
  20997. {
  20998. name: "Megmacro",
  20999. height: math.unit(20, "miles")
  21000. },
  21001. ]
  21002. ))
  21003. characterMakers.push(() => makeCharacter(
  21004. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21005. {
  21006. front: {
  21007. height: math.unit(8 + 2 / 12, "feet"),
  21008. weight: math.unit(275, "lb"),
  21009. name: "Front",
  21010. image: {
  21011. source: "./media/characters/draganta/front.svg",
  21012. extra: 1177 / 1135,
  21013. bottom: 33.46 / 1212.1
  21014. }
  21015. },
  21016. },
  21017. [
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(8 + 6 / 12, "feet"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(150, "feet")
  21026. },
  21027. {
  21028. name: "Megamacro",
  21029. height: math.unit(1000, "miles")
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(1.72, "m"),
  21038. weight: math.unit(80, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/voski/front.svg",
  21042. extra: 2076.22 / 2022.4,
  21043. bottom: 102.7 / 2177.3866
  21044. }
  21045. },
  21046. frontNsfw: {
  21047. height: math.unit(1.72, "m"),
  21048. weight: math.unit(80, "lb"),
  21049. name: "Front (NSFW)",
  21050. image: {
  21051. source: "./media/characters/voski/front-nsfw.svg",
  21052. extra: 2076.22 / 2022.4,
  21053. bottom: 102.7 / 2177.3866
  21054. }
  21055. },
  21056. back: {
  21057. height: math.unit(1.72, "m"),
  21058. weight: math.unit(80, "lb"),
  21059. name: "Back",
  21060. image: {
  21061. source: "./media/characters/voski/back.svg",
  21062. extra: 2104 / 2051,
  21063. bottom: 10.45 / 2113.63
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(1.72, "m")
  21071. },
  21072. {
  21073. name: "Macro",
  21074. height: math.unit(55, "m"),
  21075. default: true
  21076. },
  21077. {
  21078. name: "Macro+",
  21079. height: math.unit(300, "m")
  21080. },
  21081. {
  21082. name: "Macro++",
  21083. height: math.unit(700, "m")
  21084. },
  21085. {
  21086. name: "Macro+++",
  21087. height: math.unit(4500, "m")
  21088. },
  21089. {
  21090. name: "Macro++++",
  21091. height: math.unit(45, "km")
  21092. },
  21093. {
  21094. name: "Macro+++++",
  21095. height: math.unit(1220, "km")
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21101. {
  21102. front: {
  21103. height: math.unit(2.3, "m"),
  21104. weight: math.unit(304, "kg"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/icowom-lee/front.svg",
  21108. extra: 985 / 955,
  21109. bottom: 25.4 / 1012
  21110. }
  21111. },
  21112. fronttentacles: {
  21113. height: math.unit(2.3, "m"),
  21114. weight: math.unit(304, "kg"),
  21115. name: "Front-tentacles",
  21116. image: {
  21117. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21118. extra: 985 / 955,
  21119. bottom: 25.4 / 1012
  21120. }
  21121. },
  21122. back: {
  21123. height: math.unit(2.3, "m"),
  21124. weight: math.unit(304, "kg"),
  21125. name: "Back",
  21126. image: {
  21127. source: "./media/characters/icowom-lee/back.svg",
  21128. extra: 975 / 954,
  21129. bottom: 9.5 / 985
  21130. }
  21131. },
  21132. backtentacles: {
  21133. height: math.unit(2.3, "m"),
  21134. weight: math.unit(304, "kg"),
  21135. name: "Back-tentacles",
  21136. image: {
  21137. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21138. extra: 975 / 954,
  21139. bottom: 9.5 / 985
  21140. }
  21141. },
  21142. frontDressed: {
  21143. height: math.unit(2.3, "m"),
  21144. weight: math.unit(304, "kg"),
  21145. name: "Front (Dressed)",
  21146. image: {
  21147. source: "./media/characters/icowom-lee/front-dressed.svg",
  21148. extra: 3076 / 2933,
  21149. bottom: 51.4 / 3125.1889
  21150. }
  21151. },
  21152. rump: {
  21153. height: math.unit(0.776, "meters"),
  21154. name: "Rump",
  21155. image: {
  21156. source: "./media/characters/icowom-lee/rump.svg"
  21157. }
  21158. },
  21159. genitals: {
  21160. height: math.unit(0.78, "meters"),
  21161. name: "Genitals",
  21162. image: {
  21163. source: "./media/characters/icowom-lee/genitals.svg"
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(2.3, "meters"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(94, "meters"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(22, "meters"),
  21185. weight: math.unit(21000, "kg"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/shock-diamond/front.svg",
  21189. extra: 2204 / 2053,
  21190. bottom: 65 / 2239.47
  21191. }
  21192. },
  21193. frontNude: {
  21194. height: math.unit(22, "meters"),
  21195. weight: math.unit(21000, "kg"),
  21196. name: "Front (Nude)",
  21197. image: {
  21198. source: "./media/characters/shock-diamond/front-nude.svg",
  21199. extra: 2514 / 2285,
  21200. bottom: 13 / 2527.56
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(3, "meters")
  21208. },
  21209. {
  21210. name: "Macro",
  21211. height: math.unit(22, "meters"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(5 + 4 / 12, "feet"),
  21221. weight: math.unit(120, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/rory/front.svg",
  21225. extra: 589 / 556,
  21226. bottom: 45.7 / 635.76
  21227. }
  21228. },
  21229. frontNude: {
  21230. height: math.unit(5 + 4 / 12, "feet"),
  21231. weight: math.unit(120, "lb"),
  21232. name: "Front (Nude)",
  21233. image: {
  21234. source: "./media/characters/rory/front-nude.svg",
  21235. extra: 589 / 556,
  21236. bottom: 45.7 / 635.76
  21237. }
  21238. },
  21239. side: {
  21240. height: math.unit(5 + 4 / 12, "feet"),
  21241. weight: math.unit(120, "lb"),
  21242. name: "Side",
  21243. image: {
  21244. source: "./media/characters/rory/side.svg",
  21245. extra: 597 / 564,
  21246. bottom: 55 / 653
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(5 + 4 / 12, "feet"),
  21251. weight: math.unit(120, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/rory/back.svg",
  21255. extra: 620 / 585,
  21256. bottom: 8.86 / 630.43
  21257. }
  21258. },
  21259. dick: {
  21260. height: math.unit(0.86, "feet"),
  21261. name: "Dick",
  21262. image: {
  21263. source: "./media/characters/rory/dick.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5 + 4 / 12, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Macro",
  21275. height: math.unit(100, "feet")
  21276. },
  21277. {
  21278. name: "Macro+",
  21279. height: math.unit(140, "feet")
  21280. },
  21281. {
  21282. name: "Macro++",
  21283. height: math.unit(300, "feet")
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21289. {
  21290. front: {
  21291. height: math.unit(5 + 9 / 12, "feet"),
  21292. weight: math.unit(190, "lb"),
  21293. name: "Front",
  21294. image: {
  21295. source: "./media/characters/sprisk/front.svg",
  21296. extra: 1225 / 1180,
  21297. bottom: 42.7 / 1266.4
  21298. }
  21299. },
  21300. frontNsfw: {
  21301. height: math.unit(5 + 9 / 12, "feet"),
  21302. weight: math.unit(190, "lb"),
  21303. name: "Front (NSFW)",
  21304. image: {
  21305. source: "./media/characters/sprisk/front-nsfw.svg",
  21306. extra: 1225 / 1180,
  21307. bottom: 42.7 / 1266.4
  21308. }
  21309. },
  21310. back: {
  21311. height: math.unit(5 + 9 / 12, "feet"),
  21312. weight: math.unit(190, "lb"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/sprisk/back.svg",
  21316. extra: 1247 / 1200,
  21317. bottom: 5.6 / 1253.04
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Tiny",
  21324. height: math.unit(2, "inches")
  21325. },
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(5 + 9 / 12, "feet"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Mini Macro",
  21333. height: math.unit(18, "feet")
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(100, "feet")
  21338. },
  21339. {
  21340. name: "MACRO",
  21341. height: math.unit(50, "miles")
  21342. },
  21343. {
  21344. name: "M A C R O",
  21345. height: math.unit(300, "miles")
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21351. {
  21352. side: {
  21353. height: math.unit(15.6, "meters"),
  21354. weight: math.unit(700000, "kg"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/bunsen/side.svg",
  21358. extra: 1644 / 358
  21359. }
  21360. },
  21361. foot: {
  21362. height: math.unit(1.611 * 1644 / 358, "meter"),
  21363. name: "Foot",
  21364. image: {
  21365. source: "./media/characters/bunsen/foot.svg"
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Small",
  21372. height: math.unit(10, "feet")
  21373. },
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(15.6, "meters"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(4 + 11 / 12, "feet"),
  21386. weight: math.unit(140, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/sesh/front.svg",
  21390. extra: 3420 / 3231,
  21391. bottom: 72 / 3949.5
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(4 + 11 / 12, "feet")
  21399. },
  21400. {
  21401. name: "Grown",
  21402. height: math.unit(15, "feet"),
  21403. default: true
  21404. },
  21405. {
  21406. name: "Macro",
  21407. height: math.unit(1500, "feet")
  21408. },
  21409. {
  21410. name: "Megamacro",
  21411. height: math.unit(30, "miles")
  21412. },
  21413. {
  21414. name: "Continental",
  21415. height: math.unit(3000, "miles")
  21416. },
  21417. {
  21418. name: "Gravity Mass",
  21419. height: math.unit(300000, "miles")
  21420. },
  21421. {
  21422. name: "Planet Buster",
  21423. height: math.unit(30000000, "miles")
  21424. },
  21425. {
  21426. name: "Big",
  21427. height: math.unit(3000000000, "miles")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(9, "feet"),
  21436. weight: math.unit(350, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/pepper/front.svg",
  21440. extra: 1448 / 1312,
  21441. bottom: 9.4 / 1457.88
  21442. }
  21443. },
  21444. back: {
  21445. height: math.unit(9, "feet"),
  21446. weight: math.unit(350, "lb"),
  21447. name: "Back",
  21448. image: {
  21449. source: "./media/characters/pepper/back.svg",
  21450. extra: 1423 / 1300,
  21451. bottom: 4.6 / 1429
  21452. }
  21453. },
  21454. maw: {
  21455. height: math.unit(0.932, "feet"),
  21456. name: "Maw",
  21457. image: {
  21458. source: "./media/characters/pepper/maw.svg"
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(9, "feet"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(6, "feet"),
  21475. weight: math.unit(150, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/maelstrom/front.svg",
  21479. extra: 2100 / 1883,
  21480. bottom: 94 / 2196.7
  21481. }
  21482. },
  21483. },
  21484. [
  21485. {
  21486. name: "Less Kaiju",
  21487. height: math.unit(200, "feet")
  21488. },
  21489. {
  21490. name: "Kaiju",
  21491. height: math.unit(400, "feet"),
  21492. default: true
  21493. },
  21494. {
  21495. name: "Kaiju-er",
  21496. height: math.unit(600, "feet")
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(6 + 5 / 12, "feet"),
  21505. weight: math.unit(180, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/lexir/front.svg",
  21509. extra: 180 / 172,
  21510. bottom: 12 / 192
  21511. }
  21512. },
  21513. back: {
  21514. height: math.unit(6 + 5 / 12, "feet"),
  21515. weight: math.unit(180, "lb"),
  21516. name: "Back",
  21517. image: {
  21518. source: "./media/characters/lexir/back.svg",
  21519. extra: 183.84 / 175.5,
  21520. bottom: 3.1 / 187
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Very Smal",
  21527. height: math.unit(1, "nm")
  21528. },
  21529. {
  21530. name: "Normal",
  21531. height: math.unit(6 + 5 / 12, "feet"),
  21532. default: true
  21533. },
  21534. {
  21535. name: "Macro",
  21536. height: math.unit(1, "mile")
  21537. },
  21538. {
  21539. name: "Megamacro",
  21540. height: math.unit(50, "miles")
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(1.5, "meters"),
  21549. weight: math.unit(100, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/maksio/front.svg",
  21553. extra: 1549 / 1531,
  21554. bottom: 123.7 / 1674.5429
  21555. }
  21556. },
  21557. back: {
  21558. height: math.unit(1.5, "meters"),
  21559. weight: math.unit(100, "lb"),
  21560. name: "Back",
  21561. image: {
  21562. source: "./media/characters/maksio/back.svg",
  21563. extra: 1541 / 1509,
  21564. bottom: 97 / 1639
  21565. }
  21566. },
  21567. hand: {
  21568. height: math.unit(0.621, "feet"),
  21569. name: "Hand",
  21570. image: {
  21571. source: "./media/characters/maksio/hand.svg"
  21572. }
  21573. },
  21574. foot: {
  21575. height: math.unit(1.611, "feet"),
  21576. name: "Foot",
  21577. image: {
  21578. source: "./media/characters/maksio/foot.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Shrunken",
  21585. height: math.unit(10, "cm")
  21586. },
  21587. {
  21588. name: "Normal",
  21589. height: math.unit(150, "cm"),
  21590. default: true
  21591. },
  21592. ]
  21593. ))
  21594. characterMakers.push(() => makeCharacter(
  21595. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21596. {
  21597. front: {
  21598. height: math.unit(100, "feet"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/erza-bear/front.svg",
  21602. extra: 2449 / 2390,
  21603. bottom: 46 / 2494
  21604. }
  21605. },
  21606. back: {
  21607. height: math.unit(100, "feet"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/erza-bear/back.svg",
  21611. extra: 2489 / 2430,
  21612. bottom: 85.4 / 2480
  21613. }
  21614. },
  21615. tail: {
  21616. height: math.unit(42, "feet"),
  21617. name: "Tail",
  21618. image: {
  21619. source: "./media/characters/erza-bear/tail.svg"
  21620. }
  21621. },
  21622. tongue: {
  21623. height: math.unit(8, "feet"),
  21624. name: "Tongue",
  21625. image: {
  21626. source: "./media/characters/erza-bear/tongue.svg"
  21627. }
  21628. },
  21629. dick: {
  21630. height: math.unit(10.5, "feet"),
  21631. name: "Dick",
  21632. image: {
  21633. source: "./media/characters/erza-bear/dick.svg"
  21634. }
  21635. },
  21636. dickVertical: {
  21637. height: math.unit(16.9, "feet"),
  21638. name: "Dick (Vertical)",
  21639. image: {
  21640. source: "./media/characters/erza-bear/dick-vertical.svg"
  21641. }
  21642. },
  21643. },
  21644. [
  21645. {
  21646. name: "Macro",
  21647. height: math.unit(100, "feet"),
  21648. default: true
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(172, "cm"),
  21657. weight: math.unit(73, "kg"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/violet-flor/front.svg",
  21661. extra: 1530 / 1442,
  21662. bottom: 61.9 / 1588.8
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(180, "cm"),
  21667. weight: math.unit(73, "kg"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/violet-flor/back.svg",
  21671. extra: 1692 / 1630,
  21672. bottom: 20 / 1712
  21673. }
  21674. },
  21675. },
  21676. [
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(172, "cm"),
  21680. default: true
  21681. },
  21682. ]
  21683. ))
  21684. characterMakers.push(() => makeCharacter(
  21685. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21686. {
  21687. front: {
  21688. height: math.unit(6, "feet"),
  21689. weight: math.unit(220, "lb"),
  21690. name: "Front",
  21691. image: {
  21692. source: "./media/characters/lynn-rhea/front.svg",
  21693. extra: 310 / 273
  21694. }
  21695. },
  21696. back: {
  21697. height: math.unit(6, "feet"),
  21698. weight: math.unit(220, "lb"),
  21699. name: "Back",
  21700. image: {
  21701. source: "./media/characters/lynn-rhea/back.svg",
  21702. extra: 310 / 273
  21703. }
  21704. },
  21705. dicks: {
  21706. height: math.unit(0.9, "feet"),
  21707. name: "Dicks",
  21708. image: {
  21709. source: "./media/characters/lynn-rhea/dicks.svg"
  21710. }
  21711. },
  21712. slit: {
  21713. height: math.unit(0.4, "feet"),
  21714. name: "Slit",
  21715. image: {
  21716. source: "./media/characters/lynn-rhea/slit.svg"
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Micro",
  21723. height: math.unit(1, "inch")
  21724. },
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(60, "feet"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Megamacro",
  21732. height: math.unit(2, "miles")
  21733. },
  21734. {
  21735. name: "Gigamacro",
  21736. height: math.unit(3, "earths")
  21737. },
  21738. {
  21739. name: "Galactic",
  21740. height: math.unit(0.8, "galaxies")
  21741. },
  21742. ]
  21743. ))
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21746. {
  21747. front: {
  21748. height: math.unit(1600, "feet"),
  21749. weight: math.unit(85758785169, "kg"),
  21750. name: "Front",
  21751. image: {
  21752. source: "./media/characters/valathos/front.svg",
  21753. extra: 1451 / 1339
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(1600, "feet"),
  21761. default: true
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(7 + 5 / 12, "feet"),
  21770. weight: math.unit(300, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/azula/front.svg",
  21774. extra: 3208 / 2880,
  21775. bottom: 80.2 / 3277
  21776. }
  21777. },
  21778. back: {
  21779. height: math.unit(7 + 5 / 12, "feet"),
  21780. weight: math.unit(300, "lb"),
  21781. name: "Back",
  21782. image: {
  21783. source: "./media/characters/azula/back.svg",
  21784. extra: 3169 / 2822,
  21785. bottom: 150.6 / 3321
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(7 + 5 / 12, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Big",
  21797. height: math.unit(20, "feet")
  21798. },
  21799. ]
  21800. ))
  21801. characterMakers.push(() => makeCharacter(
  21802. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21803. {
  21804. front: {
  21805. height: math.unit(5 + 1 / 12, "feet"),
  21806. weight: math.unit(110, "lb"),
  21807. name: "Front",
  21808. image: {
  21809. source: "./media/characters/rupert/front.svg",
  21810. extra: 1549 / 1495,
  21811. bottom: 54.2 / 1604.4
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(5 + 1 / 12, "feet"),
  21819. default: true
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(8 + 4 / 12, "feet"),
  21828. weight: math.unit(350, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/sheera-castellar/front.svg",
  21832. extra: 1957 / 1894,
  21833. bottom: 26.97 / 1975.017
  21834. }
  21835. },
  21836. side: {
  21837. height: math.unit(8 + 4 / 12, "feet"),
  21838. weight: math.unit(350, "lb"),
  21839. name: "Side",
  21840. image: {
  21841. source: "./media/characters/sheera-castellar/side.svg",
  21842. extra: 1957 / 1894
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(8 + 4 / 12, "feet"),
  21847. weight: math.unit(350, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/sheera-castellar/back.svg",
  21851. extra: 1957 / 1894
  21852. }
  21853. },
  21854. angled: {
  21855. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21856. weight: math.unit(350, "lb"),
  21857. name: "Angled",
  21858. image: {
  21859. source: "./media/characters/sheera-castellar/angled.svg",
  21860. extra: 1807 / 1707,
  21861. bottom: 68 / 1875
  21862. }
  21863. },
  21864. genitals: {
  21865. height: math.unit(2.2, "feet"),
  21866. name: "Genitals",
  21867. image: {
  21868. source: "./media/characters/sheera-castellar/genitals.svg"
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(8 + 4 / 12, "feet")
  21876. },
  21877. {
  21878. name: "Macro",
  21879. height: math.unit(150, "feet"),
  21880. default: true
  21881. },
  21882. {
  21883. name: "Macro+",
  21884. height: math.unit(800, "feet")
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(6, "feet"),
  21893. weight: math.unit(150, "lb"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/jaipur/front.svg",
  21897. extra: 3860 / 3731,
  21898. bottom: 287 / 4140
  21899. }
  21900. },
  21901. back: {
  21902. height: math.unit(6, "feet"),
  21903. weight: math.unit(150, "lb"),
  21904. name: "Back",
  21905. image: {
  21906. source: "./media/characters/jaipur/back.svg",
  21907. extra: 4060 / 3930,
  21908. bottom: 151 / 4200
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(1.85, "meters"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(150, "meters")
  21921. },
  21922. {
  21923. name: "Macro+",
  21924. height: math.unit(0.5, "miles")
  21925. },
  21926. {
  21927. name: "Macro++",
  21928. height: math.unit(2.5, "miles")
  21929. },
  21930. {
  21931. name: "Macro+++",
  21932. height: math.unit(12, "miles")
  21933. },
  21934. {
  21935. name: "Macro++++",
  21936. height: math.unit(120, "miles")
  21937. },
  21938. {
  21939. name: "Macro+++++",
  21940. height: math.unit(1200, "miles")
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(150, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/sheila-wolf/front.svg",
  21953. extra: 1931 / 1808,
  21954. bottom: 29.5 / 1960
  21955. }
  21956. },
  21957. dick: {
  21958. height: math.unit(1.464, "feet"),
  21959. name: "Dick",
  21960. image: {
  21961. source: "./media/characters/sheila-wolf/dick.svg"
  21962. }
  21963. },
  21964. muzzle: {
  21965. height: math.unit(0.513, "feet"),
  21966. name: "Muzzle",
  21967. image: {
  21968. source: "./media/characters/sheila-wolf/muzzle.svg"
  21969. }
  21970. },
  21971. },
  21972. [
  21973. {
  21974. name: "Macro",
  21975. height: math.unit(70, "feet"),
  21976. default: true
  21977. },
  21978. ]
  21979. ))
  21980. characterMakers.push(() => makeCharacter(
  21981. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21982. {
  21983. front: {
  21984. height: math.unit(32, "meters"),
  21985. weight: math.unit(300000, "kg"),
  21986. name: "Front",
  21987. image: {
  21988. source: "./media/characters/almor/front.svg",
  21989. extra: 1408 / 1322,
  21990. bottom: 94.6 / 1506.5
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Macro",
  21997. height: math.unit(32, "meters"),
  21998. default: true
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(7, "feet"),
  22007. weight: math.unit(200, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/silver/front.svg",
  22011. extra: 472.1 / 450.5,
  22012. bottom: 26.5 / 499.424
  22013. }
  22014. },
  22015. },
  22016. [
  22017. {
  22018. name: "Normal",
  22019. height: math.unit(7, "feet"),
  22020. default: true
  22021. },
  22022. {
  22023. name: "Macro",
  22024. height: math.unit(800, "feet")
  22025. },
  22026. {
  22027. name: "Megamacro",
  22028. height: math.unit(250, "miles")
  22029. },
  22030. ]
  22031. ))
  22032. characterMakers.push(() => makeCharacter(
  22033. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22034. {
  22035. front: {
  22036. height: math.unit(6, "feet"),
  22037. weight: math.unit(150, "lb"),
  22038. name: "Front",
  22039. image: {
  22040. source: "./media/characters/pliskin/front.svg",
  22041. extra: 1469 / 1359,
  22042. bottom: 70 / 1540
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Micro",
  22049. height: math.unit(3, "inches")
  22050. },
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5 + 11 / 12, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Macro",
  22058. height: math.unit(120, "feet")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22064. {
  22065. front: {
  22066. height: math.unit(6, "feet"),
  22067. weight: math.unit(150, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/sammy/front.svg",
  22071. extra: 1193 / 1089,
  22072. bottom: 30.5 / 1226
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Macro",
  22079. height: math.unit(1700, "feet"),
  22080. default: true
  22081. },
  22082. {
  22083. name: "Examacro",
  22084. height: math.unit(2.5e9, "lightyears")
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(21, "meters"),
  22093. weight: math.unit(12, "tonnes"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/kuru/front.svg",
  22097. extra: 4301 / 3785,
  22098. bottom: 371.3 / 4691
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(21, "meters"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(23, "meters"),
  22115. weight: math.unit(12.2, "tonnes"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/rakka/front.svg",
  22119. extra: 4670 / 4169,
  22120. bottom: 301 / 4968.7
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Macro",
  22127. height: math.unit(23, "meters"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(6, "feet"),
  22137. weight: math.unit(150, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/rhys-feline/front.svg",
  22141. extra: 2488 / 2308,
  22142. bottom: 35.67 / 2519.19
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Really Small",
  22149. height: math.unit(1, "nm")
  22150. },
  22151. {
  22152. name: "Micro",
  22153. height: math.unit(4, "inches")
  22154. },
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(4 + 10 / 12, "feet"),
  22158. default: true
  22159. },
  22160. {
  22161. name: "Macro",
  22162. height: math.unit(100, "feet")
  22163. },
  22164. {
  22165. name: "Megamacto",
  22166. height: math.unit(50, "miles")
  22167. },
  22168. ]
  22169. ))
  22170. characterMakers.push(() => makeCharacter(
  22171. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22172. {
  22173. side: {
  22174. height: math.unit(30, "feet"),
  22175. weight: math.unit(35000, "kg"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/alydar/side.svg",
  22179. extra: 234 / 222,
  22180. bottom: 6.5 / 241
  22181. }
  22182. },
  22183. front: {
  22184. height: math.unit(30, "feet"),
  22185. weight: math.unit(35000, "kg"),
  22186. name: "Front",
  22187. image: {
  22188. source: "./media/characters/alydar/front.svg",
  22189. extra: 223.37 / 210.2,
  22190. bottom: 22.3 / 246.76
  22191. }
  22192. },
  22193. top: {
  22194. height: math.unit(64.54, "feet"),
  22195. weight: math.unit(35000, "kg"),
  22196. name: "Top",
  22197. image: {
  22198. source: "./media/characters/alydar/top.svg"
  22199. }
  22200. },
  22201. anthro: {
  22202. height: math.unit(30, "feet"),
  22203. weight: math.unit(9000, "kg"),
  22204. name: "Anthro",
  22205. image: {
  22206. source: "./media/characters/alydar/anthro.svg",
  22207. extra: 432 / 421,
  22208. bottom: 7.18 / 440
  22209. }
  22210. },
  22211. maw: {
  22212. height: math.unit(11.693, "feet"),
  22213. name: "Maw",
  22214. image: {
  22215. source: "./media/characters/alydar/maw.svg"
  22216. }
  22217. },
  22218. head: {
  22219. height: math.unit(11.693, "feet"),
  22220. name: "Head",
  22221. image: {
  22222. source: "./media/characters/alydar/head.svg"
  22223. }
  22224. },
  22225. headAlt: {
  22226. height: math.unit(12.861, "feet"),
  22227. name: "Head (Alt)",
  22228. image: {
  22229. source: "./media/characters/alydar/head-alt.svg"
  22230. }
  22231. },
  22232. wing: {
  22233. height: math.unit(20.712, "feet"),
  22234. name: "Wing",
  22235. image: {
  22236. source: "./media/characters/alydar/wing.svg"
  22237. }
  22238. },
  22239. wingFeather: {
  22240. height: math.unit(9.662, "feet"),
  22241. name: "Wing Feather",
  22242. image: {
  22243. source: "./media/characters/alydar/wing-feather.svg"
  22244. }
  22245. },
  22246. countourFeather: {
  22247. height: math.unit(4.154, "feet"),
  22248. name: "Contour Feather",
  22249. image: {
  22250. source: "./media/characters/alydar/contour-feather.svg"
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Diplomatic",
  22257. height: math.unit(13, "feet"),
  22258. default: true
  22259. },
  22260. {
  22261. name: "Small",
  22262. height: math.unit(30, "feet")
  22263. },
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(95, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Large",
  22271. height: math.unit(285, "feet")
  22272. },
  22273. {
  22274. name: "Incomprehensible",
  22275. height: math.unit(450, "megameters")
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(11, "feet"),
  22284. weight: math.unit(1750, "kg"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/selicia/side.svg",
  22288. extra: 440 / 396,
  22289. bottom: 24.8 / 465.979
  22290. }
  22291. },
  22292. maw: {
  22293. height: math.unit(4.665, "feet"),
  22294. name: "Maw",
  22295. image: {
  22296. source: "./media/characters/selicia/maw.svg"
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(11, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22310. {
  22311. side: {
  22312. height: math.unit(2 + 6 / 12, "feet"),
  22313. weight: math.unit(30, "lb"),
  22314. name: "Side",
  22315. image: {
  22316. source: "./media/characters/layla/side.svg",
  22317. extra: 244 / 188,
  22318. bottom: 18.2 / 262.1
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(2 + 6 / 12, "feet"),
  22323. weight: math.unit(30, "lb"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/layla/back.svg",
  22327. extra: 308 / 241.5,
  22328. bottom: 8.9 / 316.8
  22329. }
  22330. },
  22331. cumming: {
  22332. height: math.unit(2 + 6 / 12, "feet"),
  22333. weight: math.unit(30, "lb"),
  22334. name: "Cumming",
  22335. image: {
  22336. source: "./media/characters/layla/cumming.svg",
  22337. extra: 342 / 279,
  22338. bottom: 595 / 938
  22339. }
  22340. },
  22341. dickFlaccid: {
  22342. height: math.unit(2.595, "feet"),
  22343. name: "Flaccid Genitals",
  22344. image: {
  22345. source: "./media/characters/layla/dick-flaccid.svg"
  22346. }
  22347. },
  22348. dickErect: {
  22349. height: math.unit(2.359, "feet"),
  22350. name: "Erect Genitals",
  22351. image: {
  22352. source: "./media/characters/layla/dick-erect.svg"
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Micro",
  22359. height: math.unit(1, "inch")
  22360. },
  22361. {
  22362. name: "Small",
  22363. height: math.unit(1, "foot")
  22364. },
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(2 + 6 / 12, "feet"),
  22368. default: true
  22369. },
  22370. {
  22371. name: "Macro",
  22372. height: math.unit(200, "feet")
  22373. },
  22374. {
  22375. name: "Megamacro",
  22376. height: math.unit(1000, "miles")
  22377. },
  22378. {
  22379. name: "Planetary",
  22380. height: math.unit(8000, "miles")
  22381. },
  22382. {
  22383. name: "True Layla",
  22384. height: math.unit(200000 * 7, "multiverses")
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22390. {
  22391. back: {
  22392. height: math.unit(10.5, "feet"),
  22393. weight: math.unit(800, "lb"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/knox/back.svg",
  22397. extra: 1486 / 1089,
  22398. bottom: 107 / 1601.4
  22399. }
  22400. },
  22401. side: {
  22402. height: math.unit(10.5, "feet"),
  22403. weight: math.unit(800, "lb"),
  22404. name: "Side",
  22405. image: {
  22406. source: "./media/characters/knox/side.svg",
  22407. extra: 244 / 218,
  22408. bottom: 14 / 260
  22409. }
  22410. },
  22411. },
  22412. [
  22413. {
  22414. name: "Compact",
  22415. height: math.unit(10.5, "feet"),
  22416. default: true
  22417. },
  22418. {
  22419. name: "Dynamax",
  22420. height: math.unit(210, "feet")
  22421. },
  22422. {
  22423. name: "Full Macro",
  22424. height: math.unit(850, "feet")
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22430. {
  22431. front: {
  22432. height: math.unit(6, "feet"),
  22433. weight: math.unit(152, "lb"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/shin-pikachu/front.svg",
  22437. extra: 1574 / 1480,
  22438. bottom: 53.3 / 1626
  22439. }
  22440. },
  22441. hand: {
  22442. height: math.unit(1.055, "feet"),
  22443. name: "Hand",
  22444. image: {
  22445. source: "./media/characters/shin-pikachu/hand.svg"
  22446. }
  22447. },
  22448. foot: {
  22449. height: math.unit(1.1, "feet"),
  22450. name: "Foot",
  22451. image: {
  22452. source: "./media/characters/shin-pikachu/foot.svg"
  22453. }
  22454. },
  22455. collar: {
  22456. height: math.unit(0.386, "feet"),
  22457. name: "Collar",
  22458. image: {
  22459. source: "./media/characters/shin-pikachu/collar.svg"
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Smallest",
  22466. height: math.unit(0.5, "inches")
  22467. },
  22468. {
  22469. name: "Micro",
  22470. height: math.unit(6, "inches")
  22471. },
  22472. {
  22473. name: "Normal",
  22474. height: math.unit(6, "feet"),
  22475. default: true
  22476. },
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(150, "feet")
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22485. {
  22486. front: {
  22487. height: math.unit(28, "feet"),
  22488. weight: math.unit(10500, "lb"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/kayda/front.svg",
  22492. extra: 1536 / 1428,
  22493. bottom: 68.7 / 1603
  22494. }
  22495. },
  22496. back: {
  22497. height: math.unit(28, "feet"),
  22498. weight: math.unit(10500, "lb"),
  22499. name: "Back",
  22500. image: {
  22501. source: "./media/characters/kayda/back.svg",
  22502. extra: 1557 / 1464,
  22503. bottom: 39.5 / 1597.49
  22504. }
  22505. },
  22506. dick: {
  22507. height: math.unit(3.858, "feet"),
  22508. name: "Dick",
  22509. image: {
  22510. source: "./media/characters/kayda/dick.svg"
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Macro",
  22517. height: math.unit(28, "feet"),
  22518. default: true
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22524. {
  22525. front: {
  22526. height: math.unit(10 + 11 / 12, "feet"),
  22527. weight: math.unit(1400, "lb"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/brian/front.svg",
  22531. extra: 737 / 692,
  22532. bottom: 55.4 / 785
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(10 + 11 / 12, "feet"),
  22540. default: true
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(5 + 8 / 12, "feet"),
  22549. weight: math.unit(140, "lb"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/khemri/front.svg",
  22553. extra: 4780 / 4059,
  22554. bottom: 80.1 / 4859.25
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Micro",
  22561. height: math.unit(6, "inches")
  22562. },
  22563. {
  22564. name: "Normal",
  22565. height: math.unit(5 + 8 / 12, "feet"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22572. {
  22573. front: {
  22574. height: math.unit(13, "feet"),
  22575. weight: math.unit(1700, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/felix-braveheart/front.svg",
  22579. extra: 1222 / 1157,
  22580. bottom: 53.2 / 1280
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(13, "feet"),
  22585. weight: math.unit(1700, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/felix-braveheart/back.svg",
  22589. extra: 1277 / 1203,
  22590. bottom: 50.2 / 1327
  22591. }
  22592. },
  22593. feral: {
  22594. height: math.unit(6, "feet"),
  22595. weight: math.unit(400, "lb"),
  22596. name: "Feral",
  22597. image: {
  22598. source: "./media/characters/felix-braveheart/feral.svg",
  22599. extra: 682 / 625,
  22600. bottom: 6.9 / 688
  22601. }
  22602. },
  22603. },
  22604. [
  22605. {
  22606. name: "Normal",
  22607. height: math.unit(13, "feet"),
  22608. default: true
  22609. },
  22610. ]
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22614. {
  22615. side: {
  22616. height: math.unit(5 + 11 / 12, "feet"),
  22617. weight: math.unit(1400, "lb"),
  22618. name: "Side",
  22619. image: {
  22620. source: "./media/characters/shadow-blade/side.svg",
  22621. extra: 1726 / 1267,
  22622. bottom: 58.4 / 1785
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(5 + 11 / 12, "feet"),
  22630. default: true
  22631. },
  22632. ]
  22633. ))
  22634. characterMakers.push(() => makeCharacter(
  22635. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22636. {
  22637. front: {
  22638. height: math.unit(1 + 6 / 12, "feet"),
  22639. weight: math.unit(25, "lb"),
  22640. name: "Front",
  22641. image: {
  22642. source: "./media/characters/karla-halldor/front.svg",
  22643. extra: 1459 / 1383,
  22644. bottom: 12 / 1472
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(1 + 6 / 12, "feet"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22658. {
  22659. front: {
  22660. height: math.unit(6 + 2 / 12, "feet"),
  22661. weight: math.unit(160, "lb"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/ariam/front.svg",
  22665. extra: 714 / 617,
  22666. bottom: 23.4 / 737,
  22667. }
  22668. },
  22669. squatting: {
  22670. height: math.unit(4.1, "feet"),
  22671. weight: math.unit(160, "lb"),
  22672. name: "Squatting",
  22673. image: {
  22674. source: "./media/characters/ariam/squatting.svg",
  22675. extra: 2617 / 2112,
  22676. bottom: 61.2 / 2681,
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(6 + 2 / 12, "feet"),
  22684. default: true
  22685. },
  22686. {
  22687. name: "Normal+",
  22688. height: math.unit(4, "meters")
  22689. },
  22690. {
  22691. name: "Macro",
  22692. height: math.unit(50, "meters")
  22693. },
  22694. {
  22695. name: "Macro+",
  22696. height: math.unit(100, "meters")
  22697. },
  22698. {
  22699. name: "Megamacro",
  22700. height: math.unit(20, "km")
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22706. {
  22707. front: {
  22708. height: math.unit(1.67, "meters"),
  22709. weight: math.unit(140, "lb"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22713. extra: 438 / 410,
  22714. bottom: 0.75 / 439
  22715. }
  22716. },
  22717. },
  22718. [
  22719. {
  22720. name: "Shrunken",
  22721. height: math.unit(7.6, "cm")
  22722. },
  22723. {
  22724. name: "Human Scale",
  22725. height: math.unit(1.67, "meters")
  22726. },
  22727. {
  22728. name: "Wolxi Scale",
  22729. height: math.unit(36.7, "meters"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22736. {
  22737. front: {
  22738. height: math.unit(1.73, "meters"),
  22739. weight: math.unit(240, "lb"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/izue-two-mothers/front.svg",
  22743. extra: 469 / 437,
  22744. bottom: 1.24 / 470.6
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Shrunken",
  22751. height: math.unit(7.86, "cm")
  22752. },
  22753. {
  22754. name: "Human Scale",
  22755. height: math.unit(1.73, "meters")
  22756. },
  22757. {
  22758. name: "Wolxi Scale",
  22759. height: math.unit(38, "meters"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(1.55, "meters"),
  22769. weight: math.unit(120, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/teeku-love-shack/front.svg",
  22773. extra: 387 / 362,
  22774. bottom: 1.51 / 388
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Shrunken",
  22781. height: math.unit(7, "cm")
  22782. },
  22783. {
  22784. name: "Human Scale",
  22785. height: math.unit(1.55, "meters")
  22786. },
  22787. {
  22788. name: "Wolxi Scale",
  22789. height: math.unit(34.1, "meters"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(1.83, "meters"),
  22799. weight: math.unit(135, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/dejma-the-red/front.svg",
  22803. extra: 480 / 458,
  22804. bottom: 1.8 / 482
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Shrunken",
  22811. height: math.unit(8.3, "cm")
  22812. },
  22813. {
  22814. name: "Human Scale",
  22815. height: math.unit(1.83, "meters")
  22816. },
  22817. {
  22818. name: "Wolxi Scale",
  22819. height: math.unit(40, "meters"),
  22820. default: true
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(1.78, "meters"),
  22829. weight: math.unit(65, "kg"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/aki/front.svg",
  22833. extra: 452 / 415
  22834. }
  22835. },
  22836. frontNsfw: {
  22837. height: math.unit(1.78, "meters"),
  22838. weight: math.unit(65, "kg"),
  22839. name: "Front (NSFW)",
  22840. image: {
  22841. source: "./media/characters/aki/front-nsfw.svg",
  22842. extra: 452 / 415
  22843. }
  22844. },
  22845. back: {
  22846. height: math.unit(1.78, "meters"),
  22847. weight: math.unit(65, "kg"),
  22848. name: "Back",
  22849. image: {
  22850. source: "./media/characters/aki/back.svg",
  22851. extra: 452 / 415
  22852. }
  22853. },
  22854. rump: {
  22855. height: math.unit(2.05, "feet"),
  22856. name: "Rump",
  22857. image: {
  22858. source: "./media/characters/aki/rump.svg"
  22859. }
  22860. },
  22861. dick: {
  22862. height: math.unit(0.95, "feet"),
  22863. name: "Dick",
  22864. image: {
  22865. source: "./media/characters/aki/dick.svg"
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Micro",
  22872. height: math.unit(15, "cm")
  22873. },
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(178, "cm"),
  22877. default: true
  22878. },
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(214, "m")
  22882. },
  22883. {
  22884. name: "Macro+",
  22885. height: math.unit(534, "m")
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22891. {
  22892. front: {
  22893. height: math.unit(5 + 5 / 12, "feet"),
  22894. weight: math.unit(120, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/ari/front.svg",
  22898. extra: 714.5 / 682,
  22899. bottom: 8 / 722.5
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(5 + 5 / 12, "feet")
  22907. },
  22908. {
  22909. name: "Macro",
  22910. height: math.unit(100, "feet"),
  22911. default: true
  22912. },
  22913. {
  22914. name: "Megamacro",
  22915. height: math.unit(100, "miles")
  22916. },
  22917. {
  22918. name: "Gigamacro",
  22919. height: math.unit(80000, "miles")
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22925. {
  22926. side: {
  22927. height: math.unit(9, "feet"),
  22928. weight: math.unit(400, "kg"),
  22929. name: "Side",
  22930. image: {
  22931. source: "./media/characters/bolt/side.svg",
  22932. extra: 1126 / 896,
  22933. bottom: 60 / 1187.3,
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Micro",
  22940. height: math.unit(5, "inches")
  22941. },
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(9, "feet"),
  22945. default: true
  22946. },
  22947. {
  22948. name: "Macro",
  22949. height: math.unit(700, "feet")
  22950. },
  22951. {
  22952. name: "Max Size",
  22953. height: math.unit(1.52e22, "yottameters")
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(4.53, "meters"),
  22962. weight: math.unit(3, "tons"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/draekon-sylviar/front.svg",
  22966. extra: 1228 / 1068,
  22967. bottom: 41 / 1270
  22968. }
  22969. },
  22970. tail: {
  22971. height: math.unit(1.772, "meter"),
  22972. name: "Tail",
  22973. image: {
  22974. source: "./media/characters/draekon-sylviar/tail.svg"
  22975. }
  22976. },
  22977. head: {
  22978. height: math.unit(1.331, "meter"),
  22979. name: "Head",
  22980. image: {
  22981. source: "./media/characters/draekon-sylviar/head.svg"
  22982. }
  22983. },
  22984. hand: {
  22985. height: math.unit(0.564, "meter"),
  22986. name: "Hand",
  22987. image: {
  22988. source: "./media/characters/draekon-sylviar/hand.svg"
  22989. }
  22990. },
  22991. foot: {
  22992. height: math.unit(0.621, "meter"),
  22993. name: "Foot",
  22994. image: {
  22995. source: "./media/characters/draekon-sylviar/foot.svg",
  22996. bottom: 32 / 324
  22997. }
  22998. },
  22999. dick: {
  23000. height: math.unit(61, "cm"),
  23001. name: "Dick",
  23002. image: {
  23003. source: "./media/characters/draekon-sylviar/dick.svg"
  23004. }
  23005. },
  23006. dickseparated: {
  23007. height: math.unit(61, "cm"),
  23008. name: "Dick-separated",
  23009. image: {
  23010. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Small",
  23017. height: math.unit(4.53 / 2, "meters"),
  23018. default: true
  23019. },
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(4.53, "meters"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Large",
  23027. height: math.unit(4.53 * 2, "meters"),
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(6 + 2 / 12, "feet"),
  23036. weight: math.unit(180, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/brawler/front.svg",
  23040. extra: 3301 / 3027,
  23041. bottom: 138 / 3439
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Normal",
  23048. height: math.unit(6 + 2 / 12, "feet"),
  23049. default: true
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(11, "feet"),
  23058. weight: math.unit(1000, "lb"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/alex/front.svg",
  23062. bottom: 44.5 / 620
  23063. }
  23064. },
  23065. },
  23066. [
  23067. {
  23068. name: "Micro",
  23069. height: math.unit(5, "inches")
  23070. },
  23071. {
  23072. name: "Normal",
  23073. height: math.unit(11, "feet"),
  23074. default: true
  23075. },
  23076. {
  23077. name: "Macro",
  23078. height: math.unit(9.5e9, "feet")
  23079. },
  23080. {
  23081. name: "Max Size",
  23082. height: math.unit(1.4e283, "yottameters")
  23083. },
  23084. ]
  23085. ))
  23086. characterMakers.push(() => makeCharacter(
  23087. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23088. {
  23089. female: {
  23090. height: math.unit(29.9, "m"),
  23091. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23092. name: "Female",
  23093. image: {
  23094. source: "./media/characters/zenari/female.svg",
  23095. extra: 3281.6 / 3217,
  23096. bottom: 72.2 / 3353
  23097. }
  23098. },
  23099. male: {
  23100. height: math.unit(27.7, "m"),
  23101. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23102. name: "Male",
  23103. image: {
  23104. source: "./media/characters/zenari/male.svg",
  23105. extra: 3008 / 2991,
  23106. bottom: 54.6 / 3069
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(29.7, "meters"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23120. {
  23121. female: {
  23122. height: math.unit(23.8, "m"),
  23123. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23124. name: "Female",
  23125. image: {
  23126. source: "./media/characters/mactarian/female.svg",
  23127. extra: 2662 / 2569,
  23128. bottom: 73 / 2736
  23129. }
  23130. },
  23131. male: {
  23132. height: math.unit(23.8, "m"),
  23133. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23134. name: "Male",
  23135. image: {
  23136. source: "./media/characters/mactarian/male.svg",
  23137. extra: 2673 / 2600,
  23138. bottom: 76 / 2750
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Macro",
  23145. height: math.unit(23.8, "meters"),
  23146. default: true
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23152. {
  23153. female: {
  23154. height: math.unit(19.3, "m"),
  23155. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23156. name: "Female",
  23157. image: {
  23158. source: "./media/characters/umok/female.svg",
  23159. extra: 2186 / 2078,
  23160. bottom: 87 / 2277
  23161. }
  23162. },
  23163. male: {
  23164. height: math.unit(19.5, "m"),
  23165. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23166. name: "Male",
  23167. image: {
  23168. source: "./media/characters/umok/male.svg",
  23169. extra: 2233 / 2140,
  23170. bottom: 24.4 / 2258
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Macro",
  23177. height: math.unit(19.3, "meters"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23184. {
  23185. female: {
  23186. height: math.unit(26.15, "m"),
  23187. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23188. name: "Female",
  23189. image: {
  23190. source: "./media/characters/joraxian/female.svg",
  23191. extra: 2943 / 2831,
  23192. bottom: 27 / 2972
  23193. }
  23194. },
  23195. male: {
  23196. height: math.unit(25.4, "m"),
  23197. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23198. name: "Male",
  23199. image: {
  23200. source: "./media/characters/joraxian/male.svg",
  23201. extra: 2835 / 2741,
  23202. bottom: 27 / 2862
  23203. }
  23204. },
  23205. },
  23206. [
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(26.15, "meters"),
  23210. default: true
  23211. },
  23212. ]
  23213. ))
  23214. characterMakers.push(() => makeCharacter(
  23215. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23216. {
  23217. female: {
  23218. height: math.unit(21.6, "m"),
  23219. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23220. name: "Female",
  23221. image: {
  23222. source: "./media/characters/sthara/female.svg",
  23223. extra: 2516 / 2347,
  23224. bottom: 21.5 / 2537
  23225. }
  23226. },
  23227. male: {
  23228. height: math.unit(24, "m"),
  23229. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23230. name: "Male",
  23231. image: {
  23232. source: "./media/characters/sthara/male.svg",
  23233. extra: 2732 / 2607,
  23234. bottom: 23 / 2732
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Macro",
  23241. height: math.unit(21.6, "meters"),
  23242. default: true
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23248. {
  23249. front: {
  23250. height: math.unit(6 + 4 / 12, "feet"),
  23251. weight: math.unit(175, "lb"),
  23252. name: "Front",
  23253. image: {
  23254. source: "./media/characters/luka-bryzant/front.svg",
  23255. extra: 311 / 289,
  23256. bottom: 4 / 315
  23257. }
  23258. },
  23259. back: {
  23260. height: math.unit(6 + 4 / 12, "feet"),
  23261. weight: math.unit(175, "lb"),
  23262. name: "Back",
  23263. image: {
  23264. source: "./media/characters/luka-bryzant/back.svg",
  23265. extra: 311 / 289,
  23266. bottom: 3.8 / 313.7
  23267. }
  23268. },
  23269. },
  23270. [
  23271. {
  23272. name: "Micro",
  23273. height: math.unit(10, "inches")
  23274. },
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(6 + 4 / 12, "feet"),
  23278. default: true
  23279. },
  23280. {
  23281. name: "Large",
  23282. height: math.unit(12, "feet")
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(5 + 7 / 12, "feet"),
  23291. weight: math.unit(185, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/aman-aquila/front.svg",
  23295. extra: 1013 / 976,
  23296. bottom: 45.6 / 1057
  23297. }
  23298. },
  23299. side: {
  23300. height: math.unit(5 + 7 / 12, "feet"),
  23301. weight: math.unit(185, "lb"),
  23302. name: "Side",
  23303. image: {
  23304. source: "./media/characters/aman-aquila/side.svg",
  23305. extra: 1054 / 1011,
  23306. bottom: 15 / 1070
  23307. }
  23308. },
  23309. back: {
  23310. height: math.unit(5 + 7 / 12, "feet"),
  23311. weight: math.unit(185, "lb"),
  23312. name: "Back",
  23313. image: {
  23314. source: "./media/characters/aman-aquila/back.svg",
  23315. extra: 1026 / 970,
  23316. bottom: 12 / 1039
  23317. }
  23318. },
  23319. head: {
  23320. height: math.unit(1.211, "feet"),
  23321. name: "Head",
  23322. image: {
  23323. source: "./media/characters/aman-aquila/head.svg",
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Minimicro",
  23330. height: math.unit(0.057, "inches")
  23331. },
  23332. {
  23333. name: "Micro",
  23334. height: math.unit(7, "inches")
  23335. },
  23336. {
  23337. name: "Mini",
  23338. height: math.unit(3 + 7 / 12, "feet")
  23339. },
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(5 + 7 / 12, "feet"),
  23343. default: true
  23344. },
  23345. {
  23346. name: "Macro",
  23347. height: math.unit(157 + 7 / 12, "feet")
  23348. },
  23349. {
  23350. name: "Megamacro",
  23351. height: math.unit(1557 + 7 / 12, "feet")
  23352. },
  23353. {
  23354. name: "Gigamacro",
  23355. height: math.unit(15557 + 7 / 12, "feet")
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(3 + 2 / 12, "inches"),
  23364. weight: math.unit(0.3, "ounces"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/hiphae/front.svg",
  23368. extra: 1931 / 1683,
  23369. bottom: 24 / 1955
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(3 + 1 / 2, "inches"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(5 + 10 / 12, "feet"),
  23386. weight: math.unit(165, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/nicky/front.svg",
  23390. extra: 3144 / 2886,
  23391. bottom: 45.6 / 3192
  23392. }
  23393. },
  23394. back: {
  23395. height: math.unit(5 + 10 / 12, "feet"),
  23396. weight: math.unit(165, "lb"),
  23397. name: "Back",
  23398. image: {
  23399. source: "./media/characters/nicky/back.svg",
  23400. extra: 3055 / 2804,
  23401. bottom: 28.4 / 3087
  23402. }
  23403. },
  23404. frontclothed: {
  23405. height: math.unit(5 + 10 / 12, "feet"),
  23406. weight: math.unit(165, "lb"),
  23407. name: "Front-clothed",
  23408. image: {
  23409. source: "./media/characters/nicky/front-clothed.svg",
  23410. extra: 3184.9 / 2926.9,
  23411. bottom: 86.5 / 3239.9
  23412. }
  23413. },
  23414. foot: {
  23415. height: math.unit(1.16, "feet"),
  23416. name: "Foot",
  23417. image: {
  23418. source: "./media/characters/nicky/foot.svg"
  23419. }
  23420. },
  23421. feet: {
  23422. height: math.unit(1.34, "feet"),
  23423. name: "Feet",
  23424. image: {
  23425. source: "./media/characters/nicky/feet.svg"
  23426. }
  23427. },
  23428. maw: {
  23429. height: math.unit(0.9, "feet"),
  23430. name: "Maw",
  23431. image: {
  23432. source: "./media/characters/nicky/maw.svg"
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Normal",
  23439. height: math.unit(5 + 10 / 12, "feet"),
  23440. default: true
  23441. },
  23442. {
  23443. name: "Macro",
  23444. height: math.unit(60, "feet")
  23445. },
  23446. {
  23447. name: "Megamacro",
  23448. height: math.unit(1, "mile")
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23454. {
  23455. side: {
  23456. height: math.unit(10, "feet"),
  23457. weight: math.unit(600, "lb"),
  23458. name: "Side",
  23459. image: {
  23460. source: "./media/characters/blair/side.svg",
  23461. bottom: 16.6 / 475,
  23462. extra: 458 / 431
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Micro",
  23469. height: math.unit(8, "inches")
  23470. },
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(10, "feet"),
  23474. default: true
  23475. },
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(180, "feet")
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(5 + 4 / 12, "feet"),
  23487. weight: math.unit(125, "lb"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/fisher/front.svg",
  23491. extra: 444 / 390,
  23492. bottom: 2 / 444.8
  23493. }
  23494. },
  23495. },
  23496. [
  23497. {
  23498. name: "Micro",
  23499. height: math.unit(4, "inches")
  23500. },
  23501. {
  23502. name: "Normal",
  23503. height: math.unit(5 + 4 / 12, "feet"),
  23504. default: true
  23505. },
  23506. {
  23507. name: "Macro",
  23508. height: math.unit(100, "feet")
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(6.71, "feet"),
  23517. weight: math.unit(200, "lb"),
  23518. capacity: math.unit(1000000, "people"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/gliss/front.svg",
  23522. extra: 2347 / 2231,
  23523. bottom: 113 / 2462
  23524. }
  23525. },
  23526. hammerspaceSize: {
  23527. height: math.unit(6.71 * 717, "feet"),
  23528. weight: math.unit(200, "lb"),
  23529. capacity: math.unit(1000000, "people"),
  23530. name: "Hammerspace Size",
  23531. image: {
  23532. source: "./media/characters/gliss/front.svg",
  23533. extra: 2347 / 2231,
  23534. bottom: 113 / 2462
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Normal",
  23541. height: math.unit(6.71, "feet"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23548. {
  23549. side: {
  23550. height: math.unit(1.44, "m"),
  23551. weight: math.unit(80, "kg"),
  23552. name: "Side",
  23553. image: {
  23554. source: "./media/characters/dune-anderson/side.svg",
  23555. bottom: 49 / 1426
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Wolf-sized",
  23562. height: math.unit(1.44, "meters")
  23563. },
  23564. {
  23565. name: "Normal",
  23566. height: math.unit(5.05, "meters"),
  23567. default: true
  23568. },
  23569. {
  23570. name: "Big",
  23571. height: math.unit(14.4, "meters")
  23572. },
  23573. {
  23574. name: "Huge",
  23575. height: math.unit(144, "meters")
  23576. },
  23577. ]
  23578. ))
  23579. characterMakers.push(() => makeCharacter(
  23580. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23581. {
  23582. front: {
  23583. height: math.unit(7, "feet"),
  23584. weight: math.unit(425, "lb"),
  23585. name: "Front",
  23586. image: {
  23587. source: "./media/characters/hind/front.svg",
  23588. extra: 2091 / 1860,
  23589. bottom: 129 / 2220
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(7, "feet"),
  23594. weight: math.unit(425, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/hind/back.svg",
  23598. extra: 2091 / 1860,
  23599. bottom: 24.6 / 2309
  23600. }
  23601. },
  23602. tail: {
  23603. height: math.unit(2.8, "feet"),
  23604. name: "Tail",
  23605. image: {
  23606. source: "./media/characters/hind/tail.svg"
  23607. }
  23608. },
  23609. head: {
  23610. height: math.unit(2.55, "feet"),
  23611. name: "Head",
  23612. image: {
  23613. source: "./media/characters/hind/head.svg"
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "XS",
  23620. height: math.unit(0.7, "feet")
  23621. },
  23622. {
  23623. name: "Normal",
  23624. height: math.unit(7, "feet"),
  23625. default: true
  23626. },
  23627. {
  23628. name: "XL",
  23629. height: math.unit(70, "feet")
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(6, "feet"),
  23638. weight: math.unit(150, "lb"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/dylan-skaven/front.svg",
  23642. extra: 2318 / 2063,
  23643. bottom: 93.4 / 2410
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Nano",
  23650. height: math.unit(1, "mm")
  23651. },
  23652. {
  23653. name: "Micro",
  23654. height: math.unit(1, "cm")
  23655. },
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(2.1, "meters"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(7 + 5 / 12, "feet"),
  23668. weight: math.unit(357, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/solex-draconov/front.svg",
  23672. extra: 1993 / 1865,
  23673. bottom: 117 / 2111
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Natural Height",
  23680. height: math.unit(7 + 5 / 12, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Macro",
  23685. height: math.unit(350, "feet")
  23686. },
  23687. {
  23688. name: "Macro+",
  23689. height: math.unit(1000, "feet")
  23690. },
  23691. {
  23692. name: "Megamacro",
  23693. height: math.unit(20, "km")
  23694. },
  23695. {
  23696. name: "Megamacro+",
  23697. height: math.unit(1000, "km")
  23698. },
  23699. {
  23700. name: "Gigamacro",
  23701. height: math.unit(2.5, "Gm")
  23702. },
  23703. {
  23704. name: "Teramacro",
  23705. height: math.unit(15, "Tm")
  23706. },
  23707. {
  23708. name: "Galactic",
  23709. height: math.unit(30, "Zm")
  23710. },
  23711. {
  23712. name: "Universal",
  23713. height: math.unit(21000, "Ym")
  23714. },
  23715. {
  23716. name: "Omniversal",
  23717. height: math.unit(9.861e50, "Ym")
  23718. },
  23719. {
  23720. name: "Existential",
  23721. height: math.unit(1e300, "meters")
  23722. },
  23723. ]
  23724. ))
  23725. characterMakers.push(() => makeCharacter(
  23726. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23727. {
  23728. side: {
  23729. height: math.unit(25, "feet"),
  23730. weight: math.unit(90000, "lb"),
  23731. name: "Side",
  23732. image: {
  23733. source: "./media/characters/mandarax/side.svg",
  23734. extra: 614 / 332,
  23735. bottom: 55 / 630
  23736. }
  23737. },
  23738. head: {
  23739. height: math.unit(11.4, "feet"),
  23740. name: "Head",
  23741. image: {
  23742. source: "./media/characters/mandarax/head.svg"
  23743. }
  23744. },
  23745. belly: {
  23746. height: math.unit(33, "feet"),
  23747. name: "Belly",
  23748. capacity: math.unit(500, "people"),
  23749. image: {
  23750. source: "./media/characters/mandarax/belly.svg"
  23751. }
  23752. },
  23753. dick: {
  23754. height: math.unit(8.46, "feet"),
  23755. name: "Dick",
  23756. image: {
  23757. source: "./media/characters/mandarax/dick.svg"
  23758. }
  23759. },
  23760. top: {
  23761. height: math.unit(28, "meters"),
  23762. name: "Top",
  23763. image: {
  23764. source: "./media/characters/mandarax/top.svg"
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(25, "feet"),
  23772. default: true
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23778. {
  23779. front: {
  23780. height: math.unit(5, "feet"),
  23781. weight: math.unit(90, "lb"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/pixil/front.svg",
  23785. extra: 2000 / 1618,
  23786. bottom: 12.3 / 2011
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Normal",
  23793. height: math.unit(5, "feet"),
  23794. default: true
  23795. },
  23796. {
  23797. name: "Megamacro",
  23798. height: math.unit(10, "miles"),
  23799. },
  23800. ]
  23801. ))
  23802. characterMakers.push(() => makeCharacter(
  23803. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23804. {
  23805. front: {
  23806. height: math.unit(7 + 2 / 12, "feet"),
  23807. weight: math.unit(200, "lb"),
  23808. name: "Front",
  23809. image: {
  23810. source: "./media/characters/angel/front.svg",
  23811. extra: 1830 / 1737,
  23812. bottom: 22.6 / 1854,
  23813. }
  23814. },
  23815. },
  23816. [
  23817. {
  23818. name: "Normal",
  23819. height: math.unit(7 + 2 / 12, "feet"),
  23820. default: true
  23821. },
  23822. {
  23823. name: "Macro",
  23824. height: math.unit(1000, "feet")
  23825. },
  23826. {
  23827. name: "Megamacro",
  23828. height: math.unit(2, "miles")
  23829. },
  23830. {
  23831. name: "Gigamacro",
  23832. height: math.unit(20, "earths")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(5, "feet"),
  23841. weight: math.unit(180, "lb"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/mekana/front.svg",
  23845. extra: 1671 / 1605,
  23846. bottom: 3.5 / 1691
  23847. }
  23848. },
  23849. side: {
  23850. height: math.unit(5, "feet"),
  23851. weight: math.unit(180, "lb"),
  23852. name: "Side",
  23853. image: {
  23854. source: "./media/characters/mekana/side.svg",
  23855. extra: 1671 / 1605,
  23856. bottom: 3.5 / 1691
  23857. }
  23858. },
  23859. back: {
  23860. height: math.unit(5, "feet"),
  23861. weight: math.unit(180, "lb"),
  23862. name: "Back",
  23863. image: {
  23864. source: "./media/characters/mekana/back.svg",
  23865. extra: 1671 / 1605,
  23866. bottom: 3.5 / 1691
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(5, "feet"),
  23874. default: true
  23875. },
  23876. ]
  23877. ))
  23878. characterMakers.push(() => makeCharacter(
  23879. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23880. {
  23881. front: {
  23882. height: math.unit(4 + 6 / 12, "feet"),
  23883. weight: math.unit(80, "lb"),
  23884. name: "Front",
  23885. image: {
  23886. source: "./media/characters/pixie/front.svg",
  23887. extra: 1924 / 1825,
  23888. bottom: 22.4 / 1946
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(4 + 6 / 12, "feet"),
  23896. default: true
  23897. },
  23898. {
  23899. name: "Macro",
  23900. height: math.unit(40, "feet")
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(2.1, "meters"),
  23909. weight: math.unit(200, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/the-lascivious/front.svg",
  23913. extra: 1 / 0.893,
  23914. bottom: 3.5 / 573.7
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Human Scale",
  23921. height: math.unit(2.1, "meters")
  23922. },
  23923. {
  23924. name: "Wolxi Scale",
  23925. height: math.unit(46.2, "m"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Boinker of Buildings",
  23930. height: math.unit(10, "km")
  23931. },
  23932. {
  23933. name: "Shagger of Skyscrapers",
  23934. height: math.unit(40, "km")
  23935. },
  23936. {
  23937. name: "Banger of Boroughs",
  23938. height: math.unit(4000, "km")
  23939. },
  23940. {
  23941. name: "Screwer of States",
  23942. height: math.unit(100000, "km")
  23943. },
  23944. {
  23945. name: "Pounder of Planets",
  23946. height: math.unit(2000000, "km")
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(6, "feet"),
  23955. weight: math.unit(150, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/aj/front.svg",
  23959. extra: 2039 / 1562,
  23960. bottom: 40 / 2079
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(11 + 6 / 12, "feet"),
  23968. default: true
  23969. },
  23970. {
  23971. name: "Megamacro",
  23972. height: math.unit(60, "megameters")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  23978. {
  23979. side: {
  23980. height: math.unit(31 + 8/12, "feet"),
  23981. weight: math.unit(75000, "kg"),
  23982. name: "Side",
  23983. image: {
  23984. source: "./media/characters/koros/side.svg",
  23985. extra: 1442/1297,
  23986. bottom: 122.7/1562
  23987. }
  23988. },
  23989. dicksKingsCrown: {
  23990. height: math.unit(6, "feet"),
  23991. name: "Dicks (King's Crown)",
  23992. image: {
  23993. source: "./media/characters/koros/dicks-kings-crown.svg"
  23994. }
  23995. },
  23996. dicksTailSet: {
  23997. height: math.unit(3, "feet"),
  23998. name: "Dicks (Tail Set)",
  23999. image: {
  24000. source: "./media/characters/koros/dicks-tail-set.svg"
  24001. }
  24002. },
  24003. dickCumming: {
  24004. height: math.unit(7.98, "feet"),
  24005. name: "Dick (Cumming)",
  24006. image: {
  24007. source: "./media/characters/koros/dick-cumming.svg"
  24008. }
  24009. },
  24010. dicksBack: {
  24011. height: math.unit(5.9, "feet"),
  24012. name: "Dicks (Back)",
  24013. image: {
  24014. source: "./media/characters/koros/dicks-back.svg"
  24015. }
  24016. },
  24017. dicksFront: {
  24018. height: math.unit(3.72, "feet"),
  24019. name: "Dicks (Front)",
  24020. image: {
  24021. source: "./media/characters/koros/dicks-front.svg"
  24022. }
  24023. },
  24024. dicksPeeking: {
  24025. height: math.unit(3.0, "feet"),
  24026. name: "Dicks (Peeking)",
  24027. image: {
  24028. source: "./media/characters/koros/dicks-peeking.svg"
  24029. }
  24030. },
  24031. eye: {
  24032. height: math.unit(1.7, "feet"),
  24033. name: "Eye",
  24034. image: {
  24035. source: "./media/characters/koros/eye.svg"
  24036. }
  24037. },
  24038. headFront: {
  24039. height: math.unit(11.69, "feet"),
  24040. name: "Head (Front)",
  24041. image: {
  24042. source: "./media/characters/koros/head-front.svg"
  24043. }
  24044. },
  24045. headSide: {
  24046. height: math.unit(14, "feet"),
  24047. name: "Head (Side)",
  24048. image: {
  24049. source: "./media/characters/koros/head-side.svg"
  24050. }
  24051. },
  24052. leg: {
  24053. height: math.unit(17, "feet"),
  24054. name: "Leg",
  24055. image: {
  24056. source: "./media/characters/koros/leg.svg"
  24057. }
  24058. },
  24059. mawSide: {
  24060. height: math.unit(12.8, "feet"),
  24061. name: "Maw (Side)",
  24062. image: {
  24063. source: "./media/characters/koros/maw-side.svg"
  24064. }
  24065. },
  24066. mawSpitting: {
  24067. height: math.unit(17, "feet"),
  24068. name: "Maw (Spitting)",
  24069. image: {
  24070. source: "./media/characters/koros/maw-spitting.svg"
  24071. }
  24072. },
  24073. slit: {
  24074. height: math.unit(2.8, "feet"),
  24075. name: "Slit",
  24076. image: {
  24077. source: "./media/characters/koros/slit.svg"
  24078. }
  24079. },
  24080. stomach: {
  24081. height: math.unit(6.8, "feet"),
  24082. capacity: math.unit(20, "people"),
  24083. name: "Stomach",
  24084. image: {
  24085. source: "./media/characters/koros/stomach.svg"
  24086. }
  24087. },
  24088. wingspanBottom: {
  24089. height: math.unit(114, "feet"),
  24090. name: "Wingspan (Bottom)",
  24091. image: {
  24092. source: "./media/characters/koros/wingspan-bottom.svg"
  24093. }
  24094. },
  24095. wingspanTop: {
  24096. height: math.unit(104, "feet"),
  24097. name: "Wingspan (Top)",
  24098. image: {
  24099. source: "./media/characters/koros/wingspan-top.svg"
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(31 + 8/12, "feet"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(18 + 5/12, "feet"),
  24116. weight: math.unit(3750, "kg"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/vexx/front.svg",
  24120. extra: 426/396,
  24121. bottom: 31.5/458
  24122. }
  24123. },
  24124. maw: {
  24125. height: math.unit(6, "feet"),
  24126. name: "Maw",
  24127. image: {
  24128. source: "./media/characters/vexx/maw.svg"
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(18 + 5/12, "feet"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(17 + 6/12, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/baadra/front.svg",
  24149. extra: 3137/2890,
  24150. bottom: 168.4/3305
  24151. }
  24152. },
  24153. back: {
  24154. height: math.unit(17 + 6/12, "feet"),
  24155. weight: math.unit(150, "lb"),
  24156. name: "Back",
  24157. image: {
  24158. source: "./media/characters/baadra/back.svg",
  24159. extra: 3142/2890,
  24160. bottom: 220/3371
  24161. }
  24162. },
  24163. head: {
  24164. height: math.unit(5.45, "feet"),
  24165. name: "Head",
  24166. image: {
  24167. source: "./media/characters/baadra/head.svg"
  24168. }
  24169. },
  24170. headAngry: {
  24171. height: math.unit(4.95, "feet"),
  24172. name: "Head (Angry)",
  24173. image: {
  24174. source: "./media/characters/baadra/head-angry.svg"
  24175. }
  24176. },
  24177. headOpen: {
  24178. height: math.unit(6, "feet"),
  24179. name: "Head (Open)",
  24180. image: {
  24181. source: "./media/characters/baadra/head-open.svg"
  24182. }
  24183. },
  24184. },
  24185. [
  24186. {
  24187. name: "Normal",
  24188. height: math.unit(17 + 6/12, "feet"),
  24189. default: true
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(7 + 3/12, "feet"),
  24198. weight: math.unit(180, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/juri/front.svg",
  24202. extra: 1401/1237,
  24203. bottom: 18.5/1418
  24204. }
  24205. },
  24206. side: {
  24207. height: math.unit(7 + 3/12, "feet"),
  24208. weight: math.unit(180, "lb"),
  24209. name: "Side",
  24210. image: {
  24211. source: "./media/characters/juri/side.svg",
  24212. extra: 1424/1242,
  24213. bottom: 18.5/1447
  24214. }
  24215. },
  24216. sitting: {
  24217. height: math.unit(6, "feet"),
  24218. weight: math.unit(180, "lb"),
  24219. name: "Sitting",
  24220. image: {
  24221. source: "./media/characters/juri/sitting.svg",
  24222. extra: 1270/1143,
  24223. bottom: 100/1343
  24224. }
  24225. },
  24226. back: {
  24227. height: math.unit(7 + 3/12, "feet"),
  24228. weight: math.unit(180, "lb"),
  24229. name: "Back",
  24230. image: {
  24231. source: "./media/characters/juri/back.svg",
  24232. extra: 1377/1240,
  24233. bottom: 23.7/1405
  24234. }
  24235. },
  24236. maw: {
  24237. height: math.unit(2.8, "feet"),
  24238. name: "Maw",
  24239. image: {
  24240. source: "./media/characters/juri/maw.svg"
  24241. }
  24242. },
  24243. stomach: {
  24244. height: math.unit(0.89, "feet"),
  24245. capacity: math.unit(4, "liters"),
  24246. name: "Stomach",
  24247. image: {
  24248. source: "./media/characters/juri/stomach.svg"
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Normal",
  24255. height: math.unit(7 + 3/12, "feet"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24262. {
  24263. fox: {
  24264. height: math.unit(5 + 6/12, "feet"),
  24265. weight: math.unit(140, "lb"),
  24266. name: "Fox",
  24267. image: {
  24268. source: "./media/characters/maxene-sita/fox.svg",
  24269. extra: 146/138,
  24270. bottom: 2.1/148.19
  24271. }
  24272. },
  24273. kitsune: {
  24274. height: math.unit(10, "feet"),
  24275. weight: math.unit(800, "lb"),
  24276. name: "Kitsune",
  24277. image: {
  24278. source: "./media/characters/maxene-sita/kitsune.svg",
  24279. extra: 185/176,
  24280. bottom: 4.7/189.9
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(5 + 6/12, "feet"),
  24288. default: true
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24294. {
  24295. front: {
  24296. height: math.unit(3 + 4/12, "feet"),
  24297. weight: math.unit(70, "lb"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/maia/front.svg",
  24301. extra: 227/219.5,
  24302. bottom: 40 / 267
  24303. }
  24304. },
  24305. back: {
  24306. height: math.unit(3 + 4/12, "feet"),
  24307. weight: math.unit(70, "lb"),
  24308. name: "Back",
  24309. image: {
  24310. source: "./media/characters/maia/back.svg",
  24311. extra: 237/225
  24312. }
  24313. },
  24314. },
  24315. [
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(3 + 4/12, "feet"),
  24319. default: true
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(5 + 10/12, "feet"),
  24328. weight: math.unit(197, "lb"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/jabaro/front.svg",
  24332. extra: 225/216,
  24333. bottom: 5.06/230
  24334. }
  24335. },
  24336. back: {
  24337. height: math.unit(5 + 10/12, "feet"),
  24338. weight: math.unit(197, "lb"),
  24339. name: "Back",
  24340. image: {
  24341. source: "./media/characters/jabaro/back.svg",
  24342. extra: 225/219,
  24343. bottom: 1.9/227
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(5 + 10/12, "feet"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(5 + 8/12, "feet"),
  24360. weight: math.unit(139, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/risa/front.svg",
  24364. extra: 270/260,
  24365. bottom: 11.2/282
  24366. }
  24367. },
  24368. back: {
  24369. height: math.unit(5 + 8/12, "feet"),
  24370. weight: math.unit(139, "lb"),
  24371. name: "Back",
  24372. image: {
  24373. source: "./media/characters/risa/back.svg",
  24374. extra: 264/255,
  24375. bottom: 4/268
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(5 + 8/12, "feet"),
  24383. default: true
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24389. {
  24390. front: {
  24391. height: math.unit(2 + 11/12, "feet"),
  24392. weight: math.unit(30, "lb"),
  24393. name: "Front",
  24394. image: {
  24395. source: "./media/characters/weatley/front.svg",
  24396. bottom: 10.7/414,
  24397. extra: 403.5/362
  24398. }
  24399. },
  24400. back: {
  24401. height: math.unit(2 + 11/12, "feet"),
  24402. weight: math.unit(30, "lb"),
  24403. name: "Back",
  24404. image: {
  24405. source: "./media/characters/weatley/back.svg",
  24406. bottom: 10.7/414,
  24407. extra: 403.5/362
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Normal",
  24414. height: math.unit(2 + 11/12, "feet"),
  24415. default: true
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Mercury Crescent", species: ["dragon"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(5 + 2/12, "feet"),
  24424. weight: math.unit(50, "kg"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/mercury-crescent/front.svg",
  24428. extra: 1088/1033,
  24429. bottom: 18.9/1109
  24430. }
  24431. },
  24432. },
  24433. [
  24434. {
  24435. name: "Normal",
  24436. height: math.unit(5 + 2/12, "feet"),
  24437. default: true
  24438. },
  24439. ]
  24440. ))
  24441. characterMakers.push(() => makeCharacter(
  24442. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24443. {
  24444. front: {
  24445. height: math.unit(2, "feet"),
  24446. weight: math.unit(15, "kg"),
  24447. name: "Front",
  24448. image: {
  24449. source: "./media/characters/diamond-jones/front.svg",
  24450. bottom: 16/568
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(2, "feet"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Sweet Bit", species: ["gestalt"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(3, "feet"),
  24467. weight: math.unit(30, "kg"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/sweet-bit/front.svg",
  24471. extra: 675/567,
  24472. bottom: 27.7/703
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Normal",
  24479. height: math.unit(3, "feet"),
  24480. default: true
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Umbrazen" },
  24486. {
  24487. side: {
  24488. height: math.unit(9.178, "feet"),
  24489. weight: math.unit(500, "lb"),
  24490. name: "Side",
  24491. image: {
  24492. source: "./media/characters/umbrazen/side.svg",
  24493. extra: 1730/1473,
  24494. bottom: 34.6/1765
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(9.178, "feet"),
  24502. default: true
  24503. },
  24504. ]
  24505. ))
  24506. //characters
  24507. function makeCharacters() {
  24508. const results = [];
  24509. characterMakers.forEach(character => {
  24510. results.push(character());
  24511. });
  24512. return results;
  24513. }