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

24733 строки
613 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: ["machine"]
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "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. }
  1236. //species
  1237. function getSpeciesInfo(speciesList) {
  1238. let result = new Set();
  1239. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1240. result.add(entry)
  1241. });
  1242. return Array.from(result);
  1243. };
  1244. function getSpeciesInfoHelper(species) {
  1245. if (!speciesData[species]) {
  1246. console.warn(species + " doesn't exist");
  1247. return [];
  1248. }
  1249. if (speciesData[species].parents) {
  1250. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1251. } else {
  1252. return [species];
  1253. }
  1254. }
  1255. characterMakers.push(() => makeCharacter(
  1256. {
  1257. name: "Fen",
  1258. species: ["crux"],
  1259. description: {
  1260. title: "Bio",
  1261. text: "Very furry. Sheds on everything."
  1262. },
  1263. tags: [
  1264. "anthro",
  1265. "goo"
  1266. ]
  1267. },
  1268. {
  1269. back: {
  1270. height: math.unit(2.2428, "meter"),
  1271. weight: math.unit(124.738, "kg"),
  1272. name: "Back",
  1273. image: {
  1274. source: "./media/characters/fen/back.svg",
  1275. extra: 1025 / 935,
  1276. bottom: 0.01
  1277. },
  1278. info: {
  1279. description: {
  1280. mode: "append",
  1281. text: "\n\nHe is not currently looking at you."
  1282. }
  1283. }
  1284. },
  1285. full: {
  1286. height: math.unit(1.34, "meter"),
  1287. weight: math.unit(225, "kg"),
  1288. name: "Full",
  1289. image: {
  1290. source: "./media/characters/fen/full.svg"
  1291. },
  1292. info: {
  1293. description: {
  1294. mode: "append",
  1295. text: "\n\nMunch."
  1296. }
  1297. }
  1298. },
  1299. kneeling: {
  1300. height: math.unit(5.4, "feet"),
  1301. weight: math.unit(124.738, "kg"),
  1302. name: "Kneeling",
  1303. image: {
  1304. source: "./media/characters/fen/kneeling.svg",
  1305. extra: 563 / 507
  1306. }
  1307. },
  1308. goo: {
  1309. height: math.unit(2.8, "feet"),
  1310. weight: math.unit(125, "kg"),
  1311. capacity: math.unit(1, "people"),
  1312. name: "Goo",
  1313. image: {
  1314. source: "./media/characters/fen/goo.svg",
  1315. bottom: 116 / 613
  1316. }
  1317. },
  1318. lounging: {
  1319. height: math.unit(6.5, "feet"),
  1320. weight: math.unit(125, "kg"),
  1321. name: "Lounging",
  1322. image: {
  1323. source: "./media/characters/fen/lounging.svg"
  1324. }
  1325. },
  1326. },
  1327. [
  1328. {
  1329. name: "Normal",
  1330. height: math.unit(2.2428, "meter")
  1331. },
  1332. {
  1333. name: "Big",
  1334. height: math.unit(12, "feet")
  1335. },
  1336. {
  1337. name: "Minimacro",
  1338. height: math.unit(40, "feet"),
  1339. default: true,
  1340. info: {
  1341. description: {
  1342. mode: "append",
  1343. text: "\n\nTOO DAMN BIG"
  1344. }
  1345. }
  1346. },
  1347. {
  1348. name: "Macro",
  1349. height: math.unit(100, "feet"),
  1350. info: {
  1351. description: {
  1352. mode: "append",
  1353. text: "\n\nTOO DAMN BIG"
  1354. }
  1355. }
  1356. },
  1357. {
  1358. name: "Macro+",
  1359. height: math.unit(300, "feet")
  1360. },
  1361. {
  1362. name: "Megamacro",
  1363. height: math.unit(2, "miles")
  1364. }
  1365. ]
  1366. ))
  1367. characterMakers.push(() => makeCharacter(
  1368. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1369. {
  1370. front: {
  1371. height: math.unit(183, "cm"),
  1372. weight: math.unit(80, "kg"),
  1373. name: "Front",
  1374. image: {
  1375. source: "./media/characters/sofia-fluttertail/front.svg",
  1376. bottom: 0.01,
  1377. extra: 2154 / 2081
  1378. }
  1379. },
  1380. frontAlt: {
  1381. height: math.unit(183, "cm"),
  1382. weight: math.unit(80, "kg"),
  1383. name: "Front (alt)",
  1384. image: {
  1385. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1386. }
  1387. },
  1388. back: {
  1389. height: math.unit(183, "cm"),
  1390. weight: math.unit(80, "kg"),
  1391. name: "Back",
  1392. image: {
  1393. source: "./media/characters/sofia-fluttertail/back.svg"
  1394. }
  1395. },
  1396. kneeling: {
  1397. height: math.unit(125, "cm"),
  1398. weight: math.unit(80, "kg"),
  1399. name: "Kneeling",
  1400. image: {
  1401. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1402. extra: 1033 / 977,
  1403. bottom: 23.7 / 1057
  1404. }
  1405. },
  1406. maw: {
  1407. height: math.unit(183 / 5, "cm"),
  1408. name: "Maw",
  1409. image: {
  1410. source: "./media/characters/sofia-fluttertail/maw.svg"
  1411. }
  1412. },
  1413. mawcloseup: {
  1414. height: math.unit(183 / 5 * 0.41, "cm"),
  1415. name: "Maw (Closeup)",
  1416. image: {
  1417. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1418. }
  1419. },
  1420. },
  1421. [
  1422. {
  1423. name: "Normal",
  1424. height: math.unit(1.83, "meter")
  1425. },
  1426. {
  1427. name: "Size Thief",
  1428. height: math.unit(18, "feet")
  1429. },
  1430. {
  1431. name: "50 Foot Collie",
  1432. height: math.unit(50, "feet")
  1433. },
  1434. {
  1435. name: "Macro",
  1436. height: math.unit(96, "feet"),
  1437. default: true
  1438. },
  1439. {
  1440. name: "Megamerger",
  1441. height: math.unit(650, "feet")
  1442. },
  1443. ]
  1444. ))
  1445. characterMakers.push(() => makeCharacter(
  1446. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1447. {
  1448. front: {
  1449. height: math.unit(7, "feet"),
  1450. weight: math.unit(100, "kg"),
  1451. name: "Front",
  1452. image: {
  1453. source: "./media/characters/march/front.svg",
  1454. extra: 1,
  1455. bottom: 0.015
  1456. }
  1457. },
  1458. foot: {
  1459. height: math.unit(0.9, "feet"),
  1460. name: "Foot",
  1461. image: {
  1462. source: "./media/characters/march/foot.svg"
  1463. }
  1464. },
  1465. },
  1466. [
  1467. {
  1468. name: "Normal",
  1469. height: math.unit(7.9, "feet")
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(220, "meters")
  1474. },
  1475. {
  1476. name: "Megamacro",
  1477. height: math.unit(2.98, "km"),
  1478. default: true
  1479. },
  1480. {
  1481. name: "Gigamacro",
  1482. height: math.unit(15963, "km")
  1483. },
  1484. {
  1485. name: "Teramacro",
  1486. height: math.unit(2980000000, "km")
  1487. },
  1488. {
  1489. name: "Examacro",
  1490. height: math.unit(250, "parsecs")
  1491. },
  1492. ]
  1493. ))
  1494. characterMakers.push(() => makeCharacter(
  1495. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1496. {
  1497. front: {
  1498. height: math.unit(6, "feet"),
  1499. weight: math.unit(60, "kg"),
  1500. name: "Front",
  1501. image: {
  1502. source: "./media/characters/noir/front.svg",
  1503. extra: 1,
  1504. bottom: 0.032
  1505. }
  1506. },
  1507. },
  1508. [
  1509. {
  1510. name: "Normal",
  1511. height: math.unit(6.6, "feet")
  1512. },
  1513. {
  1514. name: "Macro",
  1515. height: math.unit(500, "feet")
  1516. },
  1517. {
  1518. name: "Megamacro",
  1519. height: math.unit(2.5, "km"),
  1520. default: true
  1521. },
  1522. {
  1523. name: "Gigamacro",
  1524. height: math.unit(22500, "km")
  1525. },
  1526. {
  1527. name: "Teramacro",
  1528. height: math.unit(2500000000, "km")
  1529. },
  1530. {
  1531. name: "Examacro",
  1532. height: math.unit(200, "parsecs")
  1533. },
  1534. ]
  1535. ))
  1536. characterMakers.push(() => makeCharacter(
  1537. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1538. {
  1539. front: {
  1540. height: math.unit(7, "feet"),
  1541. weight: math.unit(100, "kg"),
  1542. name: "Front",
  1543. image: {
  1544. source: "./media/characters/okuri/front.svg",
  1545. extra: 1,
  1546. bottom: 0.037
  1547. }
  1548. },
  1549. back: {
  1550. height: math.unit(7, "feet"),
  1551. weight: math.unit(100, "kg"),
  1552. name: "Back",
  1553. image: {
  1554. source: "./media/characters/okuri/back.svg",
  1555. extra: 1,
  1556. bottom: 0.007
  1557. }
  1558. },
  1559. },
  1560. [
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(100, "miles"),
  1564. default: true
  1565. },
  1566. ]
  1567. ))
  1568. characterMakers.push(() => makeCharacter(
  1569. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1570. {
  1571. front: {
  1572. height: math.unit(7, "feet"),
  1573. weight: math.unit(100, "kg"),
  1574. name: "Front",
  1575. image: {
  1576. source: "./media/characters/manny/front.svg",
  1577. extra: 1,
  1578. bottom: 0.06
  1579. }
  1580. },
  1581. back: {
  1582. height: math.unit(7, "feet"),
  1583. weight: math.unit(100, "kg"),
  1584. name: "Back",
  1585. image: {
  1586. source: "./media/characters/manny/back.svg",
  1587. extra: 1,
  1588. bottom: 0.014
  1589. }
  1590. },
  1591. },
  1592. [
  1593. {
  1594. name: "Normal",
  1595. height: math.unit(7, "feet"),
  1596. },
  1597. {
  1598. name: "Macro",
  1599. height: math.unit(78, "feet"),
  1600. default: true
  1601. },
  1602. {
  1603. name: "Macro+",
  1604. height: math.unit(300, "meters")
  1605. },
  1606. {
  1607. name: "Macro++",
  1608. height: math.unit(2400, "meters")
  1609. },
  1610. {
  1611. name: "Megamacro",
  1612. height: math.unit(5167, "meters")
  1613. },
  1614. {
  1615. name: "Gigamacro",
  1616. height: math.unit(41769, "miles")
  1617. },
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1622. {
  1623. front: {
  1624. height: math.unit(7, "feet"),
  1625. weight: math.unit(100, "kg"),
  1626. name: "Front",
  1627. image: {
  1628. source: "./media/characters/adake/front-1.svg"
  1629. }
  1630. },
  1631. frontAlt: {
  1632. height: math.unit(7, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Front (Alt)",
  1635. image: {
  1636. source: "./media/characters/adake/front-2.svg",
  1637. extra: 1,
  1638. bottom: 0.01
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/adake/back.svg",
  1647. }
  1648. },
  1649. kneel: {
  1650. height: math.unit(5.385, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Kneeling",
  1653. image: {
  1654. source: "./media/characters/adake/kneel.svg",
  1655. bottom: 0.052
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(7, "feet"),
  1663. },
  1664. {
  1665. name: "Macro",
  1666. height: math.unit(78, "feet"),
  1667. default: true
  1668. },
  1669. {
  1670. name: "Macro+",
  1671. height: math.unit(300, "meters")
  1672. },
  1673. {
  1674. name: "Macro++",
  1675. height: math.unit(2400, "meters")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(5167, "meters")
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(41769, "miles")
  1684. },
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1689. {
  1690. front: {
  1691. height: math.unit(1.65, "meters"),
  1692. weight: math.unit(50, "kg"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/elijah/front.svg",
  1696. extra: 858 / 830,
  1697. bottom: 95.5 / 953.8559
  1698. }
  1699. },
  1700. back: {
  1701. height: math.unit(1.65, "meters"),
  1702. weight: math.unit(50, "kg"),
  1703. name: "Back",
  1704. image: {
  1705. source: "./media/characters/elijah/back.svg",
  1706. extra: 895 / 850,
  1707. bottom: 5.3 / 897.956
  1708. }
  1709. },
  1710. frontNsfw: {
  1711. height: math.unit(1.65, "meters"),
  1712. weight: math.unit(50, "kg"),
  1713. name: "Front (NSFW)",
  1714. image: {
  1715. source: "./media/characters/elijah/front-nsfw.svg",
  1716. extra: 858 / 830,
  1717. bottom: 95.5 / 953.8559
  1718. }
  1719. },
  1720. backNsfw: {
  1721. height: math.unit(1.65, "meters"),
  1722. weight: math.unit(50, "kg"),
  1723. name: "Back (NSFW)",
  1724. image: {
  1725. source: "./media/characters/elijah/back-nsfw.svg",
  1726. extra: 895 / 850,
  1727. bottom: 5.3 / 897.956
  1728. }
  1729. },
  1730. dick: {
  1731. height: math.unit(1, "feet"),
  1732. name: "Dick",
  1733. image: {
  1734. source: "./media/characters/elijah/dick.svg"
  1735. }
  1736. },
  1737. beakOpen: {
  1738. height: math.unit(1.25, "feet"),
  1739. name: "Beak (Open)",
  1740. image: {
  1741. source: "./media/characters/elijah/beak-open.svg"
  1742. }
  1743. },
  1744. beakShut: {
  1745. height: math.unit(1.25, "feet"),
  1746. name: "Beak (Shut)",
  1747. image: {
  1748. source: "./media/characters/elijah/beak-shut.svg"
  1749. }
  1750. },
  1751. footFlexing: {
  1752. height: math.unit(1.61, "feet"),
  1753. name: "Foot (Flexing)",
  1754. image: {
  1755. source: "./media/characters/elijah/foot-flexing.svg"
  1756. }
  1757. },
  1758. footStepping: {
  1759. height: math.unit(1.44, "feet"),
  1760. name: "Foot (Stepping)",
  1761. image: {
  1762. source: "./media/characters/elijah/foot-stepping.svg"
  1763. }
  1764. },
  1765. plantigradeLeg: {
  1766. height: math.unit(2.34, "feet"),
  1767. name: "Plantigrade Leg",
  1768. image: {
  1769. source: "./media/characters/elijah/plantigrade-leg.svg"
  1770. }
  1771. },
  1772. plantigradeFootLeft: {
  1773. height: math.unit(0.9, "feet"),
  1774. name: "Plantigrade Foot (Left)",
  1775. image: {
  1776. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1777. }
  1778. },
  1779. plantigradeFootRight: {
  1780. height: math.unit(0.9, "feet"),
  1781. name: "Plantigrade Foot (Right)",
  1782. image: {
  1783. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1784. }
  1785. },
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(1.65, "meters")
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(55, "meters"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Macro+",
  1799. height: math.unit(105, "meters")
  1800. },
  1801. ]
  1802. ))
  1803. characterMakers.push(() => makeCharacter(
  1804. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1805. {
  1806. front: {
  1807. height: math.unit(11, "feet"),
  1808. weight: math.unit(80, "kg"),
  1809. name: "Front",
  1810. image: {
  1811. source: "./media/characters/rai/front.svg",
  1812. extra: 1,
  1813. bottom: 0.03
  1814. }
  1815. },
  1816. side: {
  1817. height: math.unit(11, "feet"),
  1818. weight: math.unit(80, "kg"),
  1819. name: "Side",
  1820. image: {
  1821. source: "./media/characters/rai/side.svg"
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(11, "feet"),
  1826. weight: math.unit(80, "lb"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/rai/back.svg",
  1830. extra: 1,
  1831. bottom: 0.01
  1832. }
  1833. },
  1834. feral: {
  1835. height: math.unit(11, "feet"),
  1836. weight: math.unit(800, "lb"),
  1837. name: "Feral",
  1838. image: {
  1839. source: "./media/characters/rai/feral.svg",
  1840. extra: 1050 / 659,
  1841. bottom: 0.07
  1842. }
  1843. },
  1844. dragon: {
  1845. height: math.unit(23, "feet"),
  1846. weight: math.unit(50000, "lb"),
  1847. name: "Dragon",
  1848. image: {
  1849. source: "./media/characters/rai/dragon.svg",
  1850. extra: 2498 / 2030,
  1851. bottom: 85.2 / 2584
  1852. }
  1853. },
  1854. maw: {
  1855. height: math.unit(6 / 3.81416, "feet"),
  1856. name: "Maw",
  1857. image: {
  1858. source: "./media/characters/rai/maw.svg"
  1859. }
  1860. },
  1861. },
  1862. [
  1863. {
  1864. name: "Normal",
  1865. height: math.unit(11, "feet")
  1866. },
  1867. {
  1868. name: "Macro",
  1869. height: math.unit(302, "feet"),
  1870. default: true
  1871. },
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1876. {
  1877. frontDressed: {
  1878. height: math.unit(216, "feet"),
  1879. weight: math.unit(7000000, "lb"),
  1880. name: "Front (Dressed)",
  1881. image: {
  1882. source: "./media/characters/jazzy/front-dressed.svg",
  1883. extra: 2738 / 2651,
  1884. bottom: 41.8 / 2786
  1885. }
  1886. },
  1887. backDressed: {
  1888. height: math.unit(216, "feet"),
  1889. weight: math.unit(7000000, "lb"),
  1890. name: "Back (Dressed)",
  1891. image: {
  1892. source: "./media/characters/jazzy/back-dressed.svg",
  1893. extra: 2775 / 2673,
  1894. bottom: 36.8 / 2817
  1895. }
  1896. },
  1897. front: {
  1898. height: math.unit(216, "feet"),
  1899. weight: math.unit(7000000, "lb"),
  1900. name: "Front",
  1901. image: {
  1902. source: "./media/characters/jazzy/front.svg",
  1903. extra: 2738 / 2651,
  1904. bottom: 41.8 / 2786
  1905. }
  1906. },
  1907. back: {
  1908. height: math.unit(216, "feet"),
  1909. weight: math.unit(7000000, "lb"),
  1910. name: "Back",
  1911. image: {
  1912. source: "./media/characters/jazzy/back.svg",
  1913. extra: 2775 / 2673,
  1914. bottom: 36.8 / 2817
  1915. }
  1916. },
  1917. maw: {
  1918. height: math.unit(20, "feet"),
  1919. name: "Maw",
  1920. image: {
  1921. source: "./media/characters/jazzy/maw.svg"
  1922. }
  1923. },
  1924. paws: {
  1925. height: math.unit(27.5, "feet"),
  1926. name: "Paws",
  1927. image: {
  1928. source: "./media/characters/jazzy/paws.svg"
  1929. }
  1930. },
  1931. eye: {
  1932. height: math.unit(4.4, "feet"),
  1933. name: "Eye",
  1934. image: {
  1935. source: "./media/characters/jazzy/eye.svg"
  1936. }
  1937. },
  1938. droneOffense: {
  1939. height: math.unit(9.5, "inches"),
  1940. name: "Drone (Offense)",
  1941. image: {
  1942. source: "./media/characters/jazzy/drone-offense.svg"
  1943. }
  1944. },
  1945. droneRecon: {
  1946. height: math.unit(9.5, "inches"),
  1947. name: "Drone (Recon)",
  1948. image: {
  1949. source: "./media/characters/jazzy/drone-recon.svg"
  1950. }
  1951. },
  1952. droneDefense: {
  1953. height: math.unit(9.5, "inches"),
  1954. name: "Drone (Defense)",
  1955. image: {
  1956. source: "./media/characters/jazzy/drone-defense.svg"
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(216, "feet"),
  1964. default: true
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(7, "feet"),
  1973. weight: math.unit(80, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/flamm/front.svg",
  1977. extra: 1794 / 1677,
  1978. bottom: 31.7 / 1828.5
  1979. }
  1980. },
  1981. },
  1982. [
  1983. {
  1984. name: "Normal",
  1985. height: math.unit(9.5, "feet")
  1986. },
  1987. {
  1988. name: "Macro",
  1989. height: math.unit(200, "feet"),
  1990. default: true
  1991. },
  1992. ]
  1993. ))
  1994. characterMakers.push(() => makeCharacter(
  1995. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1996. {
  1997. front: {
  1998. height: math.unit(7, "feet"),
  1999. weight: math.unit(80, "kg"),
  2000. name: "Front",
  2001. image: {
  2002. source: "./media/characters/zephiro/front.svg",
  2003. extra: 2309 / 2162,
  2004. bottom: 0.069
  2005. }
  2006. },
  2007. side: {
  2008. height: math.unit(7, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Side",
  2011. image: {
  2012. source: "./media/characters/zephiro/side.svg",
  2013. extra: 2403 / 2279,
  2014. bottom: 0.015
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(7, "feet"),
  2019. weight: math.unit(80, "kg"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/zephiro/back.svg",
  2023. extra: 2373 / 2244,
  2024. bottom: 0.013
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Micro",
  2031. height: math.unit(3, "inches")
  2032. },
  2033. {
  2034. name: "Normal",
  2035. height: math.unit(5 + 3 / 12, "feet"),
  2036. default: true
  2037. },
  2038. {
  2039. name: "Macro",
  2040. height: math.unit(118, "feet")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(5, "feet"),
  2049. weight: math.unit(90, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/fory/front.svg",
  2053. extra: 2862 / 2674,
  2054. bottom: 180 / 3043.8
  2055. }
  2056. },
  2057. back: {
  2058. height: math.unit(5, "feet"),
  2059. weight: math.unit(90, "kg"),
  2060. name: "Back",
  2061. image: {
  2062. source: "./media/characters/fory/back.svg",
  2063. extra: 2962 / 2791,
  2064. bottom: 106 / 3071.8
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(2.14, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/fory/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(5, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(50, "feet"),
  2083. default: true
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(10, "miles")
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(5, "earths")
  2092. },
  2093. ]
  2094. ))
  2095. characterMakers.push(() => makeCharacter(
  2096. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2097. {
  2098. front: {
  2099. height: math.unit(7, "feet"),
  2100. weight: math.unit(90, "kg"),
  2101. name: "Front",
  2102. image: {
  2103. source: "./media/characters/kurrikage/front.svg",
  2104. extra: 1,
  2105. bottom: 0.035
  2106. }
  2107. },
  2108. back: {
  2109. height: math.unit(7, "feet"),
  2110. weight: math.unit(90, "lb"),
  2111. name: "Back",
  2112. image: {
  2113. source: "./media/characters/kurrikage/back.svg"
  2114. }
  2115. },
  2116. paw: {
  2117. height: math.unit(1.5, "feet"),
  2118. name: "Paw",
  2119. image: {
  2120. source: "./media/characters/kurrikage/paw.svg"
  2121. }
  2122. },
  2123. staff: {
  2124. height: math.unit(6.7, "feet"),
  2125. name: "Staff",
  2126. image: {
  2127. source: "./media/characters/kurrikage/staff.svg"
  2128. }
  2129. },
  2130. peek: {
  2131. height: math.unit(1.05, "feet"),
  2132. name: "Peeking",
  2133. image: {
  2134. source: "./media/characters/kurrikage/peek.svg",
  2135. bottom: 0.08
  2136. }
  2137. },
  2138. },
  2139. [
  2140. {
  2141. name: "Normal",
  2142. height: math.unit(12, "feet"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Big",
  2147. height: math.unit(20, "feet")
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(500, "feet")
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(20, "miles")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(6, "feet"),
  2164. weight: math.unit(75, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/shingo/front.svg",
  2168. extra: 3511 / 3338,
  2169. bottom: 0.005
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Micro",
  2176. height: math.unit(4, "inches")
  2177. },
  2178. {
  2179. name: "Normal",
  2180. height: math.unit(6, "feet"),
  2181. default: true
  2182. },
  2183. {
  2184. name: "Macro",
  2185. height: math.unit(108, "feet")
  2186. }
  2187. ]
  2188. ))
  2189. characterMakers.push(() => makeCharacter(
  2190. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2191. {
  2192. side: {
  2193. height: math.unit(6, "feet"),
  2194. weight: math.unit(75, "kg"),
  2195. name: "Side",
  2196. image: {
  2197. source: "./media/characters/aigey/side.svg"
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(200, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(100, "miles")
  2210. },
  2211. ]
  2212. )
  2213. )
  2214. characterMakers.push(() => makeCharacter(
  2215. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2216. {
  2217. front: {
  2218. height: math.unit(5 + 5 / 12, "feet"),
  2219. weight: math.unit(75, "kg"),
  2220. name: "Front",
  2221. image: {
  2222. source: "./media/characters/natasha/front.svg",
  2223. extra: 859 / 824,
  2224. bottom: 23 / 879.6
  2225. }
  2226. },
  2227. frontNsfw: {
  2228. height: math.unit(5 + 5 / 12, "feet"),
  2229. weight: math.unit(75, "kg"),
  2230. name: "Front (NSFW)",
  2231. image: {
  2232. source: "./media/characters/natasha/front-nsfw.svg",
  2233. extra: 859 / 824,
  2234. bottom: 23 / 879.6
  2235. }
  2236. },
  2237. frontErect: {
  2238. height: math.unit(5 + 5 / 12, "feet"),
  2239. weight: math.unit(75, "kg"),
  2240. name: "Front (Erect)",
  2241. image: {
  2242. source: "./media/characters/natasha/front-erect.svg",
  2243. extra: 859 / 824,
  2244. bottom: 23 / 879.6
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(5 + 5 / 12, "feet"),
  2249. weight: math.unit(75, "kg"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/natasha/back.svg",
  2253. extra: 887.9 / 852.6,
  2254. bottom: 9.7 / 896.4
  2255. }
  2256. },
  2257. backAlt: {
  2258. height: math.unit(5 + 5 / 12, "feet"),
  2259. weight: math.unit(75, "kg"),
  2260. name: "Back (Alt)",
  2261. image: {
  2262. source: "./media/characters/natasha/back-alt.svg",
  2263. extra: 1236.7 / 1192,
  2264. bottom: 22.3 / 1258.2
  2265. }
  2266. },
  2267. dick: {
  2268. height: math.unit(1.772, "feet"),
  2269. name: "Dick",
  2270. image: {
  2271. source: "./media/characters/natasha/dick.svg"
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Normal",
  2278. height: math.unit(5 + 5 / 12, "feet")
  2279. },
  2280. {
  2281. name: "Large",
  2282. height: math.unit(12, "feet")
  2283. },
  2284. {
  2285. name: "Macro",
  2286. height: math.unit(100, "feet"),
  2287. default: true
  2288. },
  2289. {
  2290. name: "Macro+",
  2291. height: math.unit(260, "feet")
  2292. },
  2293. {
  2294. name: "Macro++",
  2295. height: math.unit(1, "mile")
  2296. },
  2297. ]
  2298. ))
  2299. characterMakers.push(() => makeCharacter(
  2300. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2301. {
  2302. front: {
  2303. height: math.unit(6, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Front",
  2306. image: {
  2307. source: "./media/characters/malik/front.svg"
  2308. }
  2309. },
  2310. side: {
  2311. height: math.unit(6, "feet"),
  2312. weight: math.unit(75, "kg"),
  2313. name: "Side",
  2314. image: {
  2315. source: "./media/characters/malik/side.svg",
  2316. extra: 1.1539
  2317. }
  2318. },
  2319. back: {
  2320. height: math.unit(6, "feet"),
  2321. weight: math.unit(75, "kg"),
  2322. name: "Back",
  2323. image: {
  2324. source: "./media/characters/malik/back.svg"
  2325. }
  2326. },
  2327. },
  2328. [
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(156, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro+",
  2336. height: math.unit(1188, "feet")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sefer/front.svg",
  2349. extra: 848 / 659,
  2350. bottom: 28.3 / 876.442
  2351. }
  2352. },
  2353. back: {
  2354. height: math.unit(6, "feet"),
  2355. weight: math.unit(75, "kg"),
  2356. name: "Back",
  2357. image: {
  2358. source: "./media/characters/sefer/back.svg",
  2359. extra: 864 / 695,
  2360. bottom: 10 / 871
  2361. }
  2362. },
  2363. frontDressed: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Front (Dressed)",
  2367. image: {
  2368. source: "./media/characters/sefer/front-dressed.svg",
  2369. extra: 839 / 653,
  2370. bottom: 37.6 / 878
  2371. }
  2372. },
  2373. },
  2374. [
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(6, "feet"),
  2378. default: true
  2379. },
  2380. ]
  2381. ))
  2382. characterMakers.push(() => makeCharacter(
  2383. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2384. {
  2385. body: {
  2386. height: math.unit(2.2428, "meter"),
  2387. weight: math.unit(124.738, "kg"),
  2388. name: "Body",
  2389. image: {
  2390. extra: 1225 / 1050,
  2391. source: "./media/characters/north/front.svg"
  2392. }
  2393. }
  2394. },
  2395. [
  2396. {
  2397. name: "Micro",
  2398. height: math.unit(4, "inches")
  2399. },
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(63, "meters")
  2403. },
  2404. {
  2405. name: "Megamacro",
  2406. height: math.unit(101, "miles"),
  2407. default: true
  2408. }
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2413. {
  2414. angled: {
  2415. height: math.unit(4, "meter"),
  2416. weight: math.unit(150, "kg"),
  2417. name: "Angled",
  2418. image: {
  2419. source: "./media/characters/talan/angled-sfw.svg",
  2420. bottom: 29 / 3734
  2421. }
  2422. },
  2423. angledNsfw: {
  2424. height: math.unit(4, "meter"),
  2425. weight: math.unit(150, "kg"),
  2426. name: "Angled (NSFW)",
  2427. image: {
  2428. source: "./media/characters/talan/angled-nsfw.svg",
  2429. bottom: 29 / 3734
  2430. }
  2431. },
  2432. frontNsfw: {
  2433. height: math.unit(4, "meter"),
  2434. weight: math.unit(150, "kg"),
  2435. name: "Front (NSFW)",
  2436. image: {
  2437. source: "./media/characters/talan/front-nsfw.svg",
  2438. bottom: 29 / 3734
  2439. }
  2440. },
  2441. sideNsfw: {
  2442. height: math.unit(4, "meter"),
  2443. weight: math.unit(150, "kg"),
  2444. name: "Side (NSFW)",
  2445. image: {
  2446. source: "./media/characters/talan/side-nsfw.svg",
  2447. bottom: 29 / 3734
  2448. }
  2449. },
  2450. back: {
  2451. height: math.unit(4, "meter"),
  2452. weight: math.unit(150, "kg"),
  2453. name: "Back",
  2454. image: {
  2455. source: "./media/characters/talan/back.svg"
  2456. }
  2457. },
  2458. dickBottom: {
  2459. height: math.unit(0.621, "meter"),
  2460. name: "Dick (Bottom)",
  2461. image: {
  2462. source: "./media/characters/talan/dick-bottom.svg"
  2463. }
  2464. },
  2465. dickTop: {
  2466. height: math.unit(0.621, "meter"),
  2467. name: "Dick (Top)",
  2468. image: {
  2469. source: "./media/characters/talan/dick-top.svg"
  2470. }
  2471. },
  2472. dickSide: {
  2473. height: math.unit(0.305, "meter"),
  2474. name: "Dick (Side)",
  2475. image: {
  2476. source: "./media/characters/talan/dick-side.svg"
  2477. }
  2478. },
  2479. dickFront: {
  2480. height: math.unit(0.305, "meter"),
  2481. name: "Dick (Front)",
  2482. image: {
  2483. source: "./media/characters/talan/dick-front.svg"
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(4, "meters")
  2491. },
  2492. {
  2493. name: "Macro",
  2494. height: math.unit(100, "meters")
  2495. },
  2496. {
  2497. name: "Megamacro",
  2498. height: math.unit(2, "miles"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Gigamacro",
  2503. height: math.unit(5000, "miles")
  2504. },
  2505. {
  2506. name: "Teramacro",
  2507. height: math.unit(100, "parsecs")
  2508. }
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2513. {
  2514. front: {
  2515. height: math.unit(2, "meter"),
  2516. weight: math.unit(90, "kg"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/gael'rathus/front.svg"
  2520. }
  2521. },
  2522. frontAlt: {
  2523. height: math.unit(2, "meter"),
  2524. weight: math.unit(90, "kg"),
  2525. name: "Front (alt)",
  2526. image: {
  2527. source: "./media/characters/gael'rathus/front-alt.svg"
  2528. }
  2529. },
  2530. frontAlt2: {
  2531. height: math.unit(2, "meter"),
  2532. weight: math.unit(90, "kg"),
  2533. name: "Front (alt 2)",
  2534. image: {
  2535. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2536. }
  2537. }
  2538. },
  2539. [
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(9, "feet"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Large",
  2547. height: math.unit(25, "feet")
  2548. },
  2549. {
  2550. name: "Macro",
  2551. height: math.unit(0.25, "miles")
  2552. },
  2553. {
  2554. name: "Megamacro",
  2555. height: math.unit(10, "miles")
  2556. }
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2561. {
  2562. side: {
  2563. height: math.unit(2, "meter"),
  2564. weight: math.unit(140, "kg"),
  2565. name: "Side",
  2566. image: {
  2567. source: "./media/characters/sosha/side.svg",
  2568. bottom: 0.042
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(12, "feet"),
  2576. default: true
  2577. }
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2582. {
  2583. side: {
  2584. height: math.unit(5 + 5 / 12, "feet"),
  2585. weight: math.unit(170, "kg"),
  2586. name: "Side",
  2587. image: {
  2588. source: "./media/characters/runnola/side.svg",
  2589. extra: 741 / 448,
  2590. bottom: 0.05
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Small",
  2597. height: math.unit(3, "feet")
  2598. },
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(5 + 5 / 12, "feet"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Big",
  2606. height: math.unit(10, "feet")
  2607. },
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(2, "meter"),
  2615. weight: math.unit(50, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/kurribird/front.svg",
  2619. bottom: 0.015
  2620. }
  2621. },
  2622. frontAlt: {
  2623. height: math.unit(1.5, "meter"),
  2624. weight: math.unit(50, "kg"),
  2625. name: "Front (Alt)",
  2626. image: {
  2627. source: "./media/characters/kurribird/front-alt.svg",
  2628. extra: 1.45
  2629. }
  2630. },
  2631. },
  2632. [
  2633. {
  2634. name: "Normal",
  2635. height: math.unit(7, "feet")
  2636. },
  2637. {
  2638. name: "Big",
  2639. height: math.unit(12, "feet"),
  2640. default: true
  2641. },
  2642. {
  2643. name: "Macro",
  2644. height: math.unit(1500, "feet")
  2645. },
  2646. {
  2647. name: "Megamacro",
  2648. height: math.unit(2, "miles")
  2649. }
  2650. ]
  2651. ))
  2652. characterMakers.push(() => makeCharacter(
  2653. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2654. {
  2655. front: {
  2656. height: math.unit(2, "meter"),
  2657. weight: math.unit(80, "kg"),
  2658. name: "Front",
  2659. image: {
  2660. source: "./media/characters/elbial/front.svg",
  2661. extra: 1643 / 1556,
  2662. bottom: 60.2 / 1696
  2663. }
  2664. },
  2665. side: {
  2666. height: math.unit(2, "meter"),
  2667. weight: math.unit(80, "kg"),
  2668. name: "Side",
  2669. image: {
  2670. source: "./media/characters/elbial/side.svg",
  2671. extra: 1630 / 1565,
  2672. bottom: 71.5 / 1697
  2673. }
  2674. },
  2675. back: {
  2676. height: math.unit(2, "meter"),
  2677. weight: math.unit(80, "kg"),
  2678. name: "Back",
  2679. image: {
  2680. source: "./media/characters/elbial/back.svg",
  2681. extra: 1668 / 1595,
  2682. bottom: 5.6 / 1672
  2683. }
  2684. },
  2685. frontDressed: {
  2686. height: math.unit(2, "meter"),
  2687. weight: math.unit(80, "kg"),
  2688. name: "Front (Dressed)",
  2689. image: {
  2690. source: "./media/characters/elbial/front-dressed.svg",
  2691. extra: 1653 / 1584,
  2692. bottom: 57 / 1708
  2693. }
  2694. },
  2695. genitals: {
  2696. height: math.unit(2 / 3.367, "meter"),
  2697. name: "Genitals",
  2698. image: {
  2699. source: "./media/characters/elbial/genitals.svg"
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Large",
  2706. height: math.unit(100, "feet")
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(500, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Megamacro",
  2715. height: math.unit(10, "miles")
  2716. },
  2717. {
  2718. name: "Gigamacro",
  2719. height: math.unit(25000, "miles")
  2720. },
  2721. {
  2722. name: "Full-Size",
  2723. height: math.unit(8000000, "gigaparsecs")
  2724. }
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(2, "meter"),
  2732. weight: math.unit(60, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/noah/front.svg"
  2736. }
  2737. },
  2738. talons: {
  2739. height: math.unit(0.315, "meter"),
  2740. name: "Talons",
  2741. image: {
  2742. source: "./media/characters/noah/talons.svg"
  2743. }
  2744. }
  2745. },
  2746. [
  2747. {
  2748. name: "Large",
  2749. height: math.unit(50, "feet")
  2750. },
  2751. {
  2752. name: "Macro",
  2753. height: math.unit(750, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Megamacro",
  2758. height: math.unit(50, "miles")
  2759. },
  2760. {
  2761. name: "Gigamacro",
  2762. height: math.unit(100000, "miles")
  2763. },
  2764. {
  2765. name: "Full-Size",
  2766. height: math.unit(3000000000, "miles")
  2767. }
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(2, "meter"),
  2775. weight: math.unit(80, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/natalya/front.svg"
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(2, "meter"),
  2783. weight: math.unit(80, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/natalya/back.svg"
  2787. }
  2788. }
  2789. },
  2790. [
  2791. {
  2792. name: "Normal",
  2793. height: math.unit(150, "feet"),
  2794. default: true
  2795. },
  2796. {
  2797. name: "Megamacro",
  2798. height: math.unit(5, "miles")
  2799. },
  2800. {
  2801. name: "Full-Size",
  2802. height: math.unit(600, "kiloparsecs")
  2803. }
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2808. {
  2809. front: {
  2810. height: math.unit(2, "meter"),
  2811. weight: math.unit(50, "kg"),
  2812. name: "Front",
  2813. image: {
  2814. source: "./media/characters/erestrebah/front.svg",
  2815. extra: 208 / 193,
  2816. bottom: 0.055
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(2, "meter"),
  2821. weight: math.unit(50, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/erestrebah/back.svg",
  2825. extra: 1.3
  2826. }
  2827. }
  2828. },
  2829. [
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(10, "feet")
  2833. },
  2834. {
  2835. name: "Large",
  2836. height: math.unit(50, "feet"),
  2837. default: true
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(300, "feet")
  2842. },
  2843. {
  2844. name: "Macro+",
  2845. height: math.unit(750, "feet")
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(3, "miles")
  2850. }
  2851. ]
  2852. ))
  2853. characterMakers.push(() => makeCharacter(
  2854. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2855. {
  2856. front: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(80, "kg"),
  2859. name: "Front",
  2860. image: {
  2861. source: "./media/characters/jennifer/front.svg",
  2862. bottom: 0.11,
  2863. extra: 1.16
  2864. }
  2865. },
  2866. frontAlt: {
  2867. height: math.unit(2, "meter"),
  2868. weight: math.unit(80, "kg"),
  2869. name: "Front (Alt)",
  2870. image: {
  2871. source: "./media/characters/jennifer/front-alt.svg"
  2872. }
  2873. }
  2874. },
  2875. [
  2876. {
  2877. name: "Canon Height",
  2878. height: math.unit(120, "feet"),
  2879. default: true
  2880. },
  2881. {
  2882. name: "Macro+",
  2883. height: math.unit(300, "feet")
  2884. },
  2885. {
  2886. name: "Megamacro",
  2887. height: math.unit(20000, "feet")
  2888. }
  2889. ]
  2890. ))
  2891. characterMakers.push(() => makeCharacter(
  2892. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2893. {
  2894. front: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(50, "kg"),
  2897. name: "Front",
  2898. image: {
  2899. source: "./media/characters/kalista/front.svg",
  2900. extra: 1947 / 1700,
  2901. bottom: 76.6 / 1412.98
  2902. }
  2903. },
  2904. back: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(50, "kg"),
  2907. name: "Back",
  2908. image: {
  2909. source: "./media/characters/kalista/back.svg",
  2910. extra: 1366 / 1156,
  2911. bottom: 33.9 / 1362.78
  2912. }
  2913. }
  2914. },
  2915. [
  2916. {
  2917. name: "Uncomfortably Small",
  2918. height: math.unit(10, "feet")
  2919. },
  2920. {
  2921. name: "Small",
  2922. height: math.unit(30, "feet")
  2923. },
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(100, "feet"),
  2927. default: true
  2928. },
  2929. {
  2930. name: "Macro+",
  2931. height: math.unit(2000, "feet")
  2932. },
  2933. {
  2934. name: "True Form",
  2935. height: math.unit(8924, "miles")
  2936. }
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(120, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/ggv/front.svg"
  2948. }
  2949. },
  2950. side: {
  2951. height: math.unit(2, "meter"),
  2952. weight: math.unit(120, "kg"),
  2953. name: "Side",
  2954. image: {
  2955. source: "./media/characters/ggv/side.svg"
  2956. }
  2957. }
  2958. },
  2959. [
  2960. {
  2961. name: "Extremely Puny",
  2962. height: math.unit(9 + 5 / 12, "feet")
  2963. },
  2964. {
  2965. name: "Horribly Small",
  2966. height: math.unit(47.7, "miles"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Reasonably Sized",
  2971. height: math.unit(25000, "parsecs")
  2972. },
  2973. {
  2974. name: "Slightly Uncompressed",
  2975. height: math.unit(7.77e31, "parsecs")
  2976. },
  2977. {
  2978. name: "Omniversal",
  2979. height: math.unit(1e300, "meters")
  2980. },
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(75, "lb"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/napalm/front.svg"
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(75, "lb"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/napalm/back.svg"
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Standard",
  3006. height: math.unit(55, "feet"),
  3007. default: true
  3008. }
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3013. {
  3014. front: {
  3015. height: math.unit(7 + 5 / 6, "feet"),
  3016. weight: math.unit(325, "lb"),
  3017. name: "Front",
  3018. image: {
  3019. source: "./media/characters/asana/front.svg",
  3020. extra: 1128 / 1068
  3021. }
  3022. },
  3023. back: {
  3024. height: math.unit(7 + 5 / 6, "feet"),
  3025. weight: math.unit(325, "lb"),
  3026. name: "Back",
  3027. image: {
  3028. source: "./media/characters/asana/back.svg",
  3029. extra: 1128 / 1068
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Standard",
  3036. height: math.unit(7 + 5 / 6, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Large",
  3041. height: math.unit(10, "meters")
  3042. },
  3043. {
  3044. name: "Macro",
  3045. height: math.unit(2500, "meters")
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(5e6, "meters")
  3050. },
  3051. {
  3052. name: "Examacro",
  3053. height: math.unit(5e12, "lightyears")
  3054. },
  3055. {
  3056. name: "Max Size",
  3057. height: math.unit(1e31, "lightyears")
  3058. }
  3059. ]
  3060. ))
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3063. {
  3064. front: {
  3065. height: math.unit(2, "meter"),
  3066. weight: math.unit(60, "kg"),
  3067. name: "Front",
  3068. image: {
  3069. source: "./media/characters/ebony/front.svg",
  3070. bottom: 0.03,
  3071. extra: 1045 / 810 + 0.03
  3072. }
  3073. },
  3074. side: {
  3075. height: math.unit(2, "meter"),
  3076. weight: math.unit(60, "kg"),
  3077. name: "Side",
  3078. image: {
  3079. source: "./media/characters/ebony/side.svg",
  3080. bottom: 0.03,
  3081. extra: 1045 / 810 + 0.03
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(2, "meter"),
  3086. weight: math.unit(60, "kg"),
  3087. name: "Back",
  3088. image: {
  3089. source: "./media/characters/ebony/back.svg",
  3090. bottom: 0.01,
  3091. extra: 1045 / 810 + 0.01
  3092. }
  3093. },
  3094. },
  3095. [
  3096. // TODO check why I did this lol
  3097. {
  3098. name: "Standard",
  3099. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Macro",
  3104. height: math.unit(200, "feet")
  3105. },
  3106. {
  3107. name: "Gigamacro",
  3108. height: math.unit(13000, "km")
  3109. }
  3110. ]
  3111. ))
  3112. characterMakers.push(() => makeCharacter(
  3113. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3114. {
  3115. front: {
  3116. height: math.unit(6, "feet"),
  3117. weight: math.unit(175, "lb"),
  3118. name: "Front",
  3119. image: {
  3120. source: "./media/characters/mountain/front.svg"
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(6, "feet"),
  3125. weight: math.unit(175, "lb"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/mountain/back.svg"
  3129. }
  3130. },
  3131. },
  3132. [
  3133. {
  3134. name: "Large",
  3135. height: math.unit(20, "meters")
  3136. },
  3137. {
  3138. name: "Macro",
  3139. height: math.unit(300, "meters")
  3140. },
  3141. {
  3142. name: "Gigamacro",
  3143. height: math.unit(10000, "km"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Examacro",
  3148. height: math.unit(10e9, "lightyears")
  3149. }
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3154. {
  3155. front: {
  3156. height: math.unit(8, "feet"),
  3157. weight: math.unit(500, "lb"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/rick/front.svg"
  3161. }
  3162. }
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(8, "feet"),
  3168. default: true
  3169. },
  3170. {
  3171. name: "Macro",
  3172. height: math.unit(5, "km")
  3173. }
  3174. ]
  3175. ))
  3176. characterMakers.push(() => makeCharacter(
  3177. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3178. {
  3179. front: {
  3180. height: math.unit(8, "feet"),
  3181. weight: math.unit(120, "lb"),
  3182. name: "Front",
  3183. image: {
  3184. source: "./media/characters/ona/front.svg"
  3185. }
  3186. },
  3187. frontAlt: {
  3188. height: math.unit(8, "feet"),
  3189. weight: math.unit(120, "lb"),
  3190. name: "Front (Alt)",
  3191. image: {
  3192. source: "./media/characters/ona/front-alt.svg"
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(8, "feet"),
  3197. weight: math.unit(120, "lb"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/ona/back.svg"
  3201. }
  3202. },
  3203. foot: {
  3204. height: math.unit(1.1, "feet"),
  3205. name: "Foot",
  3206. image: {
  3207. source: "./media/characters/ona/foot.svg"
  3208. }
  3209. }
  3210. },
  3211. [
  3212. {
  3213. name: "Megamacro",
  3214. height: math.unit(70, "km"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Gigamacro",
  3219. height: math.unit(681818, "miles")
  3220. },
  3221. {
  3222. name: "Examacro",
  3223. height: math.unit(3800000, "lightyears")
  3224. },
  3225. ]
  3226. ))
  3227. characterMakers.push(() => makeCharacter(
  3228. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3229. {
  3230. front: {
  3231. height: math.unit(12, "feet"),
  3232. weight: math.unit(3000, "lb"),
  3233. name: "Front",
  3234. image: {
  3235. source: "./media/characters/mech/front.svg",
  3236. bottom: 0.025,
  3237. }
  3238. },
  3239. back: {
  3240. height: math.unit(12, "feet"),
  3241. weight: math.unit(3000, "lb"),
  3242. name: "Back",
  3243. image: {
  3244. source: "./media/characters/mech/back.svg",
  3245. bottom: 0.03,
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(12, "feet")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(300, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Macro+",
  3261. height: math.unit(1500, "feet")
  3262. },
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(1.3, "meter"),
  3270. weight: math.unit(30, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/gregory/front.svg",
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(1.3, "meter"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(20, "meter")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2.8, "meter"),
  3294. weight: math.unit(200, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/elory/front.svg",
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(2.8, "meter"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(38, "meter")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(470, "feet"),
  3318. weight: math.unit(924, "tons"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/angelpatamon/front.svg",
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(470, "feet"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Deity Size I",
  3333. height: math.unit(28651.2, "km")
  3334. },
  3335. {
  3336. name: "Deity Size II",
  3337. height: math.unit(171907.2, "km")
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3343. {
  3344. side: {
  3345. height: math.unit(7.2, "meter"),
  3346. weight: math.unit(8.2, "tons"),
  3347. name: "Side",
  3348. image: {
  3349. source: "./media/characters/cryae/side.svg",
  3350. extra: 3500 / 1500
  3351. }
  3352. }
  3353. },
  3354. [
  3355. {
  3356. name: "Normal",
  3357. height: math.unit(7.2, "meter"),
  3358. default: true
  3359. }
  3360. ]
  3361. ))
  3362. characterMakers.push(() => makeCharacter(
  3363. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3364. {
  3365. front: {
  3366. height: math.unit(6, "feet"),
  3367. weight: math.unit(175, "lb"),
  3368. name: "Front",
  3369. image: {
  3370. source: "./media/characters/xera/front.svg",
  3371. extra: 2300 / 2061
  3372. }
  3373. },
  3374. side: {
  3375. height: math.unit(6, "feet"),
  3376. weight: math.unit(175, "lb"),
  3377. name: "Side",
  3378. image: {
  3379. source: "./media/characters/xera/side.svg",
  3380. extra: 2300 / 2061
  3381. }
  3382. },
  3383. back: {
  3384. height: math.unit(6, "feet"),
  3385. weight: math.unit(175, "lb"),
  3386. name: "Back",
  3387. image: {
  3388. source: "./media/characters/xera/back.svg"
  3389. }
  3390. },
  3391. },
  3392. [
  3393. {
  3394. name: "Small",
  3395. height: math.unit(10, "feet")
  3396. },
  3397. {
  3398. name: "Macro",
  3399. height: math.unit(500, "meters"),
  3400. default: true
  3401. },
  3402. {
  3403. name: "Macro+",
  3404. height: math.unit(10, "km")
  3405. },
  3406. {
  3407. name: "Gigamacro",
  3408. height: math.unit(25000, "km")
  3409. },
  3410. {
  3411. name: "Teramacro",
  3412. height: math.unit(3e6, "km")
  3413. }
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3418. {
  3419. front: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(175, "lb"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/nebula/front.svg",
  3425. extra: 2600 / 2450
  3426. }
  3427. }
  3428. },
  3429. [
  3430. {
  3431. name: "Small",
  3432. height: math.unit(4.5, "meters")
  3433. },
  3434. {
  3435. name: "Macro",
  3436. height: math.unit(1500, "meters"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Megamacro",
  3441. height: math.unit(150, "km")
  3442. },
  3443. {
  3444. name: "Gigamacro",
  3445. height: math.unit(27000, "km")
  3446. }
  3447. ]
  3448. ))
  3449. characterMakers.push(() => makeCharacter(
  3450. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3451. {
  3452. front: {
  3453. height: math.unit(6, "feet"),
  3454. weight: math.unit(225, "lb"),
  3455. name: "Front",
  3456. image: {
  3457. source: "./media/characters/abysgar/front.svg"
  3458. }
  3459. }
  3460. },
  3461. [
  3462. {
  3463. name: "Small",
  3464. height: math.unit(4.5, "meters")
  3465. },
  3466. {
  3467. name: "Macro",
  3468. height: math.unit(1250, "meters"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Megamacro",
  3473. height: math.unit(125, "km")
  3474. },
  3475. {
  3476. name: "Gigamacro",
  3477. height: math.unit(26000, "km")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(6, "feet"),
  3486. weight: math.unit(180, "lb"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/yakuz/front.svg"
  3490. }
  3491. }
  3492. },
  3493. [
  3494. {
  3495. name: "Small",
  3496. height: math.unit(5, "meters")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(1500, "meters"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Megamacro",
  3505. height: math.unit(200, "km")
  3506. },
  3507. {
  3508. name: "Gigamacro",
  3509. height: math.unit(100000, "km")
  3510. }
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3515. {
  3516. front: {
  3517. height: math.unit(6, "feet"),
  3518. weight: math.unit(175, "lb"),
  3519. name: "Front",
  3520. image: {
  3521. source: "./media/characters/mirova/front.svg"
  3522. }
  3523. }
  3524. },
  3525. [
  3526. {
  3527. name: "Small",
  3528. height: math.unit(5, "meters")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(900, "meters"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(135, "km")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(20000, "km")
  3542. }
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3547. {
  3548. side: {
  3549. height: math.unit(28.35, "feet"),
  3550. weight: math.unit(99.75, "tons"),
  3551. name: "Side",
  3552. image: {
  3553. source: "./media/characters/asana-mech/side.svg"
  3554. }
  3555. }
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(28.35, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Macro",
  3565. height: math.unit(2500, "feet")
  3566. },
  3567. {
  3568. name: "Megamacro",
  3569. height: math.unit(25, "miles")
  3570. },
  3571. {
  3572. name: "Examacro",
  3573. height: math.unit(6e8, "lightyears")
  3574. },
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3579. {
  3580. front: {
  3581. height: math.unit(2, "meters"),
  3582. weight: math.unit(70, "kg"),
  3583. name: "Front",
  3584. image: {
  3585. source: "./media/characters/ashtrek/front.svg",
  3586. extra: 560 / 524,
  3587. bottom: 0.01
  3588. }
  3589. },
  3590. frontArmor: {
  3591. height: math.unit(2, "meters"),
  3592. weight: math.unit(76, "kg"),
  3593. name: "Front (Armor)",
  3594. image: {
  3595. source: "./media/characters/ashtrek/front-armor.svg",
  3596. extra: 561 / 527,
  3597. bottom: 0.01
  3598. }
  3599. },
  3600. side: {
  3601. height: math.unit(2, "meters"),
  3602. weight: math.unit(70, "kg"),
  3603. name: "Side",
  3604. image: {
  3605. source: "./media/characters/ashtrek/side.svg",
  3606. extra: 1717 / 1609,
  3607. bottom: 0.005
  3608. }
  3609. },
  3610. back: {
  3611. height: math.unit(2, "meters"),
  3612. weight: math.unit(70, "kg"),
  3613. name: "Back",
  3614. image: {
  3615. source: "./media/characters/ashtrek/back.svg",
  3616. extra: 1570 / 1501
  3617. }
  3618. },
  3619. },
  3620. [
  3621. {
  3622. name: "DEFCON 5",
  3623. height: math.unit(5, "meters")
  3624. },
  3625. {
  3626. name: "DEFCON 4",
  3627. height: math.unit(500, "meters"),
  3628. default: true
  3629. },
  3630. {
  3631. name: "DEFCON 3",
  3632. height: math.unit(5, "km")
  3633. },
  3634. {
  3635. name: "DEFCON 2",
  3636. height: math.unit(500, "km")
  3637. },
  3638. {
  3639. name: "DEFCON 1",
  3640. height: math.unit(500000, "km")
  3641. },
  3642. {
  3643. name: "DEFCON 0",
  3644. height: math.unit(3, "gigaparsecs")
  3645. },
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(2, "meters"),
  3653. weight: math.unit(76, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/gale/front.svg"
  3657. }
  3658. },
  3659. frontAlt1: {
  3660. height: math.unit(2, "meters"),
  3661. weight: math.unit(76, "kg"),
  3662. name: "Front (Alt 1)",
  3663. image: {
  3664. source: "./media/characters/gale/front-alt-1.svg"
  3665. }
  3666. },
  3667. frontAlt2: {
  3668. height: math.unit(2, "meters"),
  3669. weight: math.unit(76, "kg"),
  3670. name: "Front (Alt 2)",
  3671. image: {
  3672. source: "./media/characters/gale/front-alt-2.svg"
  3673. }
  3674. },
  3675. },
  3676. [
  3677. {
  3678. name: "Normal",
  3679. height: math.unit(7, "feet")
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(150, "feet"),
  3684. default: true
  3685. },
  3686. {
  3687. name: "Macro+",
  3688. height: math.unit(300, "feet")
  3689. },
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(2, "meters"),
  3697. weight: math.unit(76, "kg"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/draylen/front.svg"
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(150, "feet"),
  3708. default: true
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(7 + 9 / 12, "feet"),
  3717. weight: math.unit(379, "lbs"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/chez/front.svg"
  3721. }
  3722. },
  3723. side: {
  3724. height: math.unit(7 + 9 / 12, "feet"),
  3725. weight: math.unit(379, "lbs"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/chez/side.svg"
  3729. }
  3730. }
  3731. },
  3732. [
  3733. {
  3734. name: "Normal",
  3735. height: math.unit(7 + 9 / 12, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "God King",
  3740. height: math.unit(9750000, "meters")
  3741. }
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3746. {
  3747. front: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(275, "lbs"),
  3750. name: "Front",
  3751. image: {
  3752. source: "./media/characters/kaylum/front.svg",
  3753. bottom: 0.01,
  3754. extra: 1166 / 1031
  3755. }
  3756. },
  3757. frontWingless: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(275, "lbs"),
  3760. name: "Front (Wingless)",
  3761. image: {
  3762. source: "./media/characters/kaylum/front-wingless.svg",
  3763. bottom: 0.01,
  3764. extra: 1117 / 1031
  3765. }
  3766. }
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(3.05, "meters")
  3772. },
  3773. {
  3774. name: "Master",
  3775. height: math.unit(5.5, "meters")
  3776. },
  3777. {
  3778. name: "Rampage",
  3779. height: math.unit(19, "meters")
  3780. },
  3781. {
  3782. name: "Macro Lite",
  3783. height: math.unit(37, "meters")
  3784. },
  3785. {
  3786. name: "Hyper Predator",
  3787. height: math.unit(61, "meters")
  3788. },
  3789. {
  3790. name: "Macro",
  3791. height: math.unit(138, "meters"),
  3792. default: true
  3793. }
  3794. ]
  3795. ))
  3796. characterMakers.push(() => makeCharacter(
  3797. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3798. {
  3799. front: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(150, "lbs"),
  3802. name: "Front",
  3803. image: {
  3804. source: "./media/characters/geta/front.svg"
  3805. }
  3806. }
  3807. },
  3808. [
  3809. {
  3810. name: "Micro",
  3811. height: math.unit(3, "inches"),
  3812. default: true
  3813. },
  3814. {
  3815. name: "Normal",
  3816. height: math.unit(5 + 5 / 12, "feet")
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3822. {
  3823. front: {
  3824. height: math.unit(6, "feet"),
  3825. weight: math.unit(300, "lbs"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/tyrnn/front.svg"
  3829. }
  3830. }
  3831. },
  3832. [
  3833. {
  3834. name: "Main Height",
  3835. height: math.unit(355, "feet"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Fave. Height",
  3840. height: math.unit(2400, "feet")
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(6, "feet"),
  3849. weight: math.unit(300, "lbs"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/appledectomy/front.svg"
  3853. }
  3854. }
  3855. },
  3856. [
  3857. {
  3858. name: "Macro",
  3859. height: math.unit(2500, "feet")
  3860. },
  3861. {
  3862. name: "Megamacro",
  3863. height: math.unit(50, "miles"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Gigamacro",
  3868. height: math.unit(5000, "miles")
  3869. },
  3870. {
  3871. name: "Teramacro",
  3872. height: math.unit(250000, "miles")
  3873. },
  3874. ]
  3875. ))
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3878. {
  3879. front: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(200, "lbs"),
  3882. name: "Front",
  3883. image: {
  3884. source: "./media/characters/vulpes/front.svg",
  3885. extra: 573 / 543,
  3886. bottom: 0.033
  3887. }
  3888. },
  3889. side: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(200, "lbs"),
  3892. name: "Side",
  3893. image: {
  3894. source: "./media/characters/vulpes/side.svg",
  3895. extra: 573 / 543,
  3896. bottom: 0.01
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(200, "lbs"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/vulpes/back.svg",
  3905. extra: 573 / 543,
  3906. }
  3907. },
  3908. feet: {
  3909. height: math.unit(1.276, "feet"),
  3910. name: "Feet",
  3911. image: {
  3912. source: "./media/characters/vulpes/feet.svg"
  3913. }
  3914. },
  3915. maw: {
  3916. height: math.unit(1.18, "feet"),
  3917. name: "Maw",
  3918. image: {
  3919. source: "./media/characters/vulpes/maw.svg"
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Micro",
  3926. height: math.unit(2, "inches")
  3927. },
  3928. {
  3929. name: "Normal",
  3930. height: math.unit(6.3, "feet")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(850, "feet")
  3935. },
  3936. {
  3937. name: "Megamacro",
  3938. height: math.unit(7500, "feet"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(570000, "miles")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(210, "lbs"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/rain-fallen/front.svg"
  3956. }
  3957. },
  3958. side: {
  3959. height: math.unit(6, "feet"),
  3960. weight: math.unit(210, "lbs"),
  3961. name: "Side",
  3962. image: {
  3963. source: "./media/characters/rain-fallen/side.svg"
  3964. }
  3965. },
  3966. back: {
  3967. height: math.unit(6, "feet"),
  3968. weight: math.unit(210, "lbs"),
  3969. name: "Back",
  3970. image: {
  3971. source: "./media/characters/rain-fallen/back.svg"
  3972. }
  3973. },
  3974. feral: {
  3975. height: math.unit(9, "feet"),
  3976. weight: math.unit(700, "lbs"),
  3977. name: "Feral",
  3978. image: {
  3979. source: "./media/characters/rain-fallen/feral.svg"
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(5, "meter")
  3987. },
  3988. {
  3989. name: "Macro",
  3990. height: math.unit(150, "meter"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Megamacro",
  3995. height: math.unit(278e6, "meter")
  3996. },
  3997. {
  3998. name: "Gigamacro",
  3999. height: math.unit(2e9, "meter")
  4000. },
  4001. {
  4002. name: "Teramacro",
  4003. height: math.unit(8e12, "meter")
  4004. },
  4005. {
  4006. name: "Devourer",
  4007. height: math.unit(14, "zettameters")
  4008. },
  4009. {
  4010. name: "Scarlet King",
  4011. height: math.unit(18, "yottameters")
  4012. },
  4013. {
  4014. name: "Void",
  4015. height: math.unit(6.66e66, "yottameters")
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4021. {
  4022. standing: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(180, "lbs"),
  4025. name: "Standing",
  4026. image: {
  4027. source: "./media/characters/zaakira/standing.svg"
  4028. }
  4029. },
  4030. laying: {
  4031. height: math.unit(3, "feet"),
  4032. weight: math.unit(180, "lbs"),
  4033. name: "Laying",
  4034. image: {
  4035. source: "./media/characters/zaakira/laying.svg"
  4036. }
  4037. },
  4038. },
  4039. [
  4040. {
  4041. name: "Normal",
  4042. height: math.unit(12, "feet")
  4043. },
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(279, "feet"),
  4047. default: true
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4053. {
  4054. front: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(250, "lbs"),
  4057. name: "Front",
  4058. image: {
  4059. source: "./media/characters/sigvald/front.svg",
  4060. extra: 1000 / 850
  4061. }
  4062. },
  4063. back: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(250, "lbs"),
  4066. name: "Back",
  4067. image: {
  4068. source: "./media/characters/sigvald/back.svg"
  4069. }
  4070. },
  4071. },
  4072. [
  4073. {
  4074. name: "Normal",
  4075. height: math.unit(8, "feet")
  4076. },
  4077. {
  4078. name: "Large",
  4079. height: math.unit(12, "feet")
  4080. },
  4081. {
  4082. name: "Larger",
  4083. height: math.unit(20, "feet")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(150, "feet")
  4088. },
  4089. {
  4090. name: "Macro+",
  4091. height: math.unit(200, "feet"),
  4092. default: true
  4093. },
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4098. {
  4099. side: {
  4100. height: math.unit(12, "feet"),
  4101. weight: math.unit(2000, "kg"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/scott/side.svg",
  4105. extra: 754 / 724,
  4106. bottom: 0.069
  4107. }
  4108. },
  4109. upright: {
  4110. height: math.unit(12, "feet"),
  4111. weight: math.unit(2000, "kg"),
  4112. name: "Upright",
  4113. image: {
  4114. source: "./media/characters/scott/upright.svg",
  4115. extra: 3881 / 3722,
  4116. bottom: 0.05
  4117. }
  4118. },
  4119. },
  4120. [
  4121. {
  4122. name: "Normal",
  4123. height: math.unit(12, "feet"),
  4124. default: true
  4125. },
  4126. ]
  4127. ))
  4128. characterMakers.push(() => makeCharacter(
  4129. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4130. {
  4131. side: {
  4132. height: math.unit(8, "meters"),
  4133. weight: math.unit(84755, "lbs"),
  4134. name: "Side",
  4135. image: {
  4136. source: "./media/characters/tobias/side.svg",
  4137. extra: 1474 / 1096,
  4138. bottom: 38.9 / 1513.1235
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(8, "meters"),
  4146. default: true
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4152. {
  4153. front: {
  4154. height: math.unit(5.5, "feet"),
  4155. weight: math.unit(400, "lbs"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/kieran/front.svg",
  4159. extra: 2694 / 2364,
  4160. bottom: 217 / 2908
  4161. }
  4162. },
  4163. side: {
  4164. height: math.unit(5.5, "feet"),
  4165. weight: math.unit(400, "lbs"),
  4166. name: "Side",
  4167. image: {
  4168. source: "./media/characters/kieran/side.svg",
  4169. extra: 875 / 777,
  4170. bottom: 84.6 / 959
  4171. }
  4172. },
  4173. },
  4174. [
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(5.5, "feet"),
  4178. default: true
  4179. },
  4180. ]
  4181. ))
  4182. characterMakers.push(() => makeCharacter(
  4183. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4184. {
  4185. side: {
  4186. height: math.unit(2, "meters"),
  4187. weight: math.unit(70, "kg"),
  4188. name: "Side",
  4189. image: {
  4190. source: "./media/characters/sanya/side.svg",
  4191. bottom: 0.02,
  4192. extra: 1.02
  4193. }
  4194. },
  4195. },
  4196. [
  4197. {
  4198. name: "Small",
  4199. height: math.unit(2, "meters")
  4200. },
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(3, "meters")
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(16, "meters"),
  4208. default: true
  4209. },
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4214. {
  4215. side: {
  4216. height: math.unit(2, "meters"),
  4217. weight: math.unit(120, "kg"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/miranda/front.svg",
  4221. extra: 10.6 / 10
  4222. }
  4223. },
  4224. },
  4225. [
  4226. {
  4227. name: "Normal",
  4228. height: math.unit(10, "feet"),
  4229. default: true
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "James", species: ["deer"], tags: ["anthro"] },
  4235. {
  4236. side: {
  4237. height: math.unit(2, "meters"),
  4238. weight: math.unit(100, "kg"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/james/front.svg",
  4242. extra: 10 / 8.5
  4243. }
  4244. },
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(8.5, "feet"),
  4250. default: true
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4256. {
  4257. side: {
  4258. height: math.unit(9.5, "feet"),
  4259. weight: math.unit(2500, "lbs"),
  4260. name: "Side",
  4261. image: {
  4262. source: "./media/characters/heather/side.svg"
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(9.5, "feet"),
  4270. default: true
  4271. }
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4276. {
  4277. side: {
  4278. height: math.unit(6.5, "feet"),
  4279. weight: math.unit(400, "lbs"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/lukas/side.svg",
  4283. extra: 7.25 / 6.5
  4284. }
  4285. },
  4286. },
  4287. [
  4288. {
  4289. name: "Normal",
  4290. height: math.unit(6.5, "feet"),
  4291. default: true
  4292. }
  4293. ]
  4294. ))
  4295. characterMakers.push(() => makeCharacter(
  4296. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4297. {
  4298. side: {
  4299. height: math.unit(5, "feet"),
  4300. weight: math.unit(3000, "lbs"),
  4301. name: "Side",
  4302. image: {
  4303. source: "./media/characters/louise/side.svg"
  4304. }
  4305. },
  4306. },
  4307. [
  4308. {
  4309. name: "Normal",
  4310. height: math.unit(5, "feet"),
  4311. default: true
  4312. }
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4317. {
  4318. side: {
  4319. height: math.unit(6, "feet"),
  4320. weight: math.unit(150, "lbs"),
  4321. name: "Side",
  4322. image: {
  4323. source: "./media/characters/ramona/side.svg"
  4324. }
  4325. },
  4326. },
  4327. [
  4328. {
  4329. name: "Normal",
  4330. height: math.unit(5.3, "meters"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Macro",
  4335. height: math.unit(20, "stories")
  4336. },
  4337. {
  4338. name: "Macro+",
  4339. height: math.unit(50, "stories")
  4340. },
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4345. {
  4346. standing: {
  4347. height: math.unit(5.75, "feet"),
  4348. weight: math.unit(160, "lbs"),
  4349. name: "Standing",
  4350. image: {
  4351. source: "./media/characters/deerpuff/standing.svg",
  4352. extra: 682 / 624
  4353. }
  4354. },
  4355. sitting: {
  4356. height: math.unit(5.75 / 1.79, "feet"),
  4357. weight: math.unit(160, "lbs"),
  4358. name: "Sitting",
  4359. image: {
  4360. source: "./media/characters/deerpuff/sitting.svg",
  4361. bottom: 44 / 400,
  4362. extra: 1
  4363. }
  4364. },
  4365. taurLaying: {
  4366. height: math.unit(6, "feet"),
  4367. weight: math.unit(400, "lbs"),
  4368. name: "Taur (Laying)",
  4369. image: {
  4370. source: "./media/characters/deerpuff/taur-laying.svg"
  4371. }
  4372. },
  4373. },
  4374. [
  4375. {
  4376. name: "Puffball",
  4377. height: math.unit(6, "inches")
  4378. },
  4379. {
  4380. name: "Normalpuff",
  4381. height: math.unit(5.75, "feet")
  4382. },
  4383. {
  4384. name: "Macropuff",
  4385. height: math.unit(1500, "feet"),
  4386. default: true
  4387. },
  4388. {
  4389. name: "Megapuff",
  4390. height: math.unit(500, "miles")
  4391. },
  4392. {
  4393. name: "Gigapuff",
  4394. height: math.unit(250000, "miles")
  4395. },
  4396. {
  4397. name: "Omegapuff",
  4398. height: math.unit(1000, "lightyears")
  4399. },
  4400. ]
  4401. ))
  4402. characterMakers.push(() => makeCharacter(
  4403. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4404. {
  4405. stomping: {
  4406. height: math.unit(6, "feet"),
  4407. weight: math.unit(170, "lbs"),
  4408. name: "Stomping",
  4409. image: {
  4410. source: "./media/characters/vivian/stomping.svg"
  4411. }
  4412. },
  4413. sitting: {
  4414. height: math.unit(6 / 1.75, "feet"),
  4415. weight: math.unit(170, "lbs"),
  4416. name: "Sitting",
  4417. image: {
  4418. source: "./media/characters/vivian/sitting.svg",
  4419. bottom: 1 / 6.4,
  4420. extra: 1,
  4421. }
  4422. },
  4423. },
  4424. [
  4425. {
  4426. name: "Normal",
  4427. height: math.unit(7, "feet"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Macro",
  4432. height: math.unit(10, "stories")
  4433. },
  4434. {
  4435. name: "Macro+",
  4436. height: math.unit(30, "stories")
  4437. },
  4438. {
  4439. name: "Megamacro",
  4440. height: math.unit(10, "miles")
  4441. },
  4442. {
  4443. name: "Megamacro+",
  4444. height: math.unit(2750000, "meters")
  4445. },
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(160, "lbs"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/prince/front.svg",
  4457. extra: 3400 / 3000
  4458. }
  4459. },
  4460. jumping: {
  4461. height: math.unit(6, "feet"),
  4462. weight: math.unit(160, "lbs"),
  4463. name: "Jumping",
  4464. image: {
  4465. source: "./media/characters/prince/jump.svg",
  4466. extra: 2555 / 2134
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Normal",
  4473. height: math.unit(7.75, "feet"),
  4474. default: true
  4475. },
  4476. {
  4477. name: "Not cute",
  4478. height: math.unit(17, "feet")
  4479. },
  4480. {
  4481. name: "I said NOT",
  4482. height: math.unit(91, "feet")
  4483. },
  4484. {
  4485. name: "Please stop",
  4486. height: math.unit(560, "feet")
  4487. },
  4488. {
  4489. name: "What have you done",
  4490. height: math.unit(2200, "feet")
  4491. },
  4492. {
  4493. name: "Deer God",
  4494. height: math.unit(3.6, "miles")
  4495. },
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4500. {
  4501. standing: {
  4502. height: math.unit(6, "feet"),
  4503. weight: math.unit(300, "lbs"),
  4504. name: "Standing",
  4505. image: {
  4506. source: "./media/characters/psymon/standing.svg",
  4507. extra: 1888 / 1810,
  4508. bottom: 0.05
  4509. }
  4510. },
  4511. slithering: {
  4512. height: math.unit(6, "feet"),
  4513. weight: math.unit(300, "lbs"),
  4514. name: "Slithering",
  4515. image: {
  4516. source: "./media/characters/psymon/slithering.svg",
  4517. extra: 1330 / 1224
  4518. }
  4519. },
  4520. slitheringAlt: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(300, "lbs"),
  4523. name: "Slithering (Alt)",
  4524. image: {
  4525. source: "./media/characters/psymon/slithering-alt.svg",
  4526. extra: 1330 / 1224
  4527. }
  4528. },
  4529. },
  4530. [
  4531. {
  4532. name: "Normal",
  4533. height: math.unit(11.25, "feet"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "Large",
  4538. height: math.unit(27, "feet")
  4539. },
  4540. {
  4541. name: "Giant",
  4542. height: math.unit(87, "feet")
  4543. },
  4544. {
  4545. name: "Macro",
  4546. height: math.unit(365, "feet")
  4547. },
  4548. {
  4549. name: "Megamacro",
  4550. height: math.unit(3, "miles")
  4551. },
  4552. {
  4553. name: "World Serpent",
  4554. height: math.unit(8000, "miles")
  4555. },
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(180, "lbs"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/daimos/front.svg",
  4567. extra: 4160 / 3897,
  4568. bottom: 0.021
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(8, "feet"),
  4576. default: true
  4577. },
  4578. {
  4579. name: "Big Dog",
  4580. height: math.unit(22, "feet")
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(127, "feet")
  4585. },
  4586. {
  4587. name: "Megamacro",
  4588. height: math.unit(3600, "feet")
  4589. },
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4594. {
  4595. side: {
  4596. height: math.unit(6, "feet"),
  4597. weight: math.unit(180, "lbs"),
  4598. name: "Side",
  4599. image: {
  4600. source: "./media/characters/blake/side.svg",
  4601. extra: 1212 / 1120,
  4602. bottom: 0.05
  4603. }
  4604. },
  4605. crouched: {
  4606. height: math.unit(6 * 0.57, "feet"),
  4607. weight: math.unit(180, "lbs"),
  4608. name: "Crouched",
  4609. image: {
  4610. source: "./media/characters/blake/crouched.svg",
  4611. extra: 840 / 587,
  4612. bottom: 0.04
  4613. }
  4614. },
  4615. bent: {
  4616. height: math.unit(6 * 0.75, "feet"),
  4617. weight: math.unit(180, "lbs"),
  4618. name: "Bent",
  4619. image: {
  4620. source: "./media/characters/blake/bent.svg",
  4621. extra: 592 / 544,
  4622. bottom: 0.035
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(8 + 1 / 6, "feet"),
  4630. default: true
  4631. },
  4632. {
  4633. name: "Big Backside",
  4634. height: math.unit(37, "feet")
  4635. },
  4636. {
  4637. name: "Subway Shredder",
  4638. height: math.unit(72, "feet")
  4639. },
  4640. {
  4641. name: "City Carver",
  4642. height: math.unit(1675, "feet")
  4643. },
  4644. {
  4645. name: "Tectonic Tweaker",
  4646. height: math.unit(2300, "miles")
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4652. {
  4653. front: {
  4654. height: math.unit(6, "feet"),
  4655. weight: math.unit(180, "lbs"),
  4656. name: "Front",
  4657. image: {
  4658. source: "./media/characters/guisetto/front.svg",
  4659. extra: 856 / 817,
  4660. bottom: 0.06
  4661. }
  4662. },
  4663. airborne: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(180, "lbs"),
  4666. name: "Airborne",
  4667. image: {
  4668. source: "./media/characters/guisetto/airborne.svg",
  4669. extra: 584 / 525
  4670. }
  4671. },
  4672. },
  4673. [
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(10 + 11 / 12, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Large",
  4681. height: math.unit(35, "feet")
  4682. },
  4683. {
  4684. name: "Macro",
  4685. height: math.unit(475, "feet")
  4686. },
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(6, "feet"),
  4694. weight: math.unit(180, "lbs"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/luxor/front.svg",
  4698. extra: 2940 / 2152
  4699. }
  4700. },
  4701. back: {
  4702. height: math.unit(6, "feet"),
  4703. weight: math.unit(180, "lbs"),
  4704. name: "Back",
  4705. image: {
  4706. source: "./media/characters/luxor/back.svg",
  4707. extra: 1083 / 960
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Normal",
  4714. height: math.unit(5 + 5 / 6, "feet"),
  4715. default: true
  4716. },
  4717. {
  4718. name: "Lamp",
  4719. height: math.unit(50, "feet")
  4720. },
  4721. {
  4722. name: "Lämp",
  4723. height: math.unit(300, "feet")
  4724. },
  4725. {
  4726. name: "The sun is a lamp",
  4727. height: math.unit(250000, "miles")
  4728. },
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4733. {
  4734. front: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(50, "lbs"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/huoyan/front.svg"
  4740. }
  4741. },
  4742. side: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(180, "lbs"),
  4745. name: "Side",
  4746. image: {
  4747. source: "./media/characters/huoyan/side.svg"
  4748. }
  4749. },
  4750. },
  4751. [
  4752. {
  4753. name: "Chef",
  4754. height: math.unit(9, "feet")
  4755. },
  4756. {
  4757. name: "Normal",
  4758. height: math.unit(65, "feet"),
  4759. default: true
  4760. },
  4761. {
  4762. name: "Macro",
  4763. height: math.unit(780, "feet")
  4764. },
  4765. {
  4766. name: "Flaming Mountain",
  4767. height: math.unit(4.8, "miles")
  4768. },
  4769. {
  4770. name: "Celestial",
  4771. height: math.unit(765000, "miles")
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4777. {
  4778. front: {
  4779. height: math.unit(5 + 3 / 4, "feet"),
  4780. weight: math.unit(120, "lbs"),
  4781. name: "Front",
  4782. image: {
  4783. source: "./media/characters/tails/front.svg"
  4784. }
  4785. }
  4786. },
  4787. [
  4788. {
  4789. name: "Normal",
  4790. height: math.unit(5 + 3 / 4, "feet"),
  4791. default: true
  4792. }
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4797. {
  4798. front: {
  4799. height: math.unit(4, "feet"),
  4800. weight: math.unit(50, "lbs"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/rainy/front.svg"
  4804. }
  4805. }
  4806. },
  4807. [
  4808. {
  4809. name: "Macro",
  4810. height: math.unit(800, "feet"),
  4811. default: true
  4812. }
  4813. ]
  4814. ))
  4815. characterMakers.push(() => makeCharacter(
  4816. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4817. {
  4818. front: {
  4819. height: math.unit(6, "feet"),
  4820. weight: math.unit(150, "lbs"),
  4821. name: "Front",
  4822. image: {
  4823. source: "./media/characters/rainier/front.svg"
  4824. }
  4825. }
  4826. },
  4827. [
  4828. {
  4829. name: "Micro",
  4830. height: math.unit(2, "mm"),
  4831. default: true
  4832. }
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4837. {
  4838. front: {
  4839. height: math.unit(6, "feet"),
  4840. weight: math.unit(180, "lbs"),
  4841. name: "Front",
  4842. image: {
  4843. source: "./media/characters/andy/front.svg"
  4844. }
  4845. }
  4846. },
  4847. [
  4848. {
  4849. name: "Normal",
  4850. height: math.unit(8, "feet"),
  4851. default: true
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(1000, "feet")
  4856. },
  4857. {
  4858. name: "Megamacro",
  4859. height: math.unit(5, "miles")
  4860. },
  4861. {
  4862. name: "Gigamacro",
  4863. height: math.unit(5000, "miles")
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4869. {
  4870. front: {
  4871. height: math.unit(6, "feet"),
  4872. weight: math.unit(210, "lbs"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/cimmaron/front-sfw.svg",
  4876. extra: 701 / 676,
  4877. bottom: 0.046
  4878. }
  4879. },
  4880. back: {
  4881. height: math.unit(6, "feet"),
  4882. weight: math.unit(210, "lbs"),
  4883. name: "Back",
  4884. image: {
  4885. source: "./media/characters/cimmaron/back-sfw.svg",
  4886. extra: 701 / 676,
  4887. bottom: 0.046
  4888. }
  4889. },
  4890. frontNsfw: {
  4891. height: math.unit(6, "feet"),
  4892. weight: math.unit(210, "lbs"),
  4893. name: "Front (NSFW)",
  4894. image: {
  4895. source: "./media/characters/cimmaron/front-nsfw.svg",
  4896. extra: 701 / 676,
  4897. bottom: 0.046
  4898. }
  4899. },
  4900. backNsfw: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(210, "lbs"),
  4903. name: "Back (NSFW)",
  4904. image: {
  4905. source: "./media/characters/cimmaron/back-nsfw.svg",
  4906. extra: 701 / 676,
  4907. bottom: 0.046
  4908. }
  4909. },
  4910. dick: {
  4911. height: math.unit(1.714, "feet"),
  4912. name: "Dick",
  4913. image: {
  4914. source: "./media/characters/cimmaron/dick.svg"
  4915. }
  4916. },
  4917. },
  4918. [
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(6, "feet"),
  4922. default: true
  4923. },
  4924. {
  4925. name: "Macro Mayor",
  4926. height: math.unit(350, "meters")
  4927. },
  4928. ]
  4929. ))
  4930. characterMakers.push(() => makeCharacter(
  4931. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4932. {
  4933. front: {
  4934. height: math.unit(6, "feet"),
  4935. weight: math.unit(200, "lbs"),
  4936. name: "Front",
  4937. image: {
  4938. source: "./media/characters/akari/front.svg",
  4939. extra: 962 / 901,
  4940. bottom: 0.04
  4941. }
  4942. }
  4943. },
  4944. [
  4945. {
  4946. name: "Micro",
  4947. height: math.unit(5, "inches"),
  4948. default: true
  4949. },
  4950. {
  4951. name: "Normal",
  4952. height: math.unit(7, "feet")
  4953. },
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4958. {
  4959. front: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(140, "lbs"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/cynosura/front.svg",
  4965. extra: 896 / 847
  4966. }
  4967. },
  4968. back: {
  4969. height: math.unit(6, "feet"),
  4970. weight: math.unit(140, "lbs"),
  4971. name: "Back",
  4972. image: {
  4973. source: "./media/characters/cynosura/back.svg",
  4974. extra: 1365 / 1250
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Micro",
  4981. height: math.unit(4, "inches")
  4982. },
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(5.75, "feet"),
  4986. default: true
  4987. },
  4988. {
  4989. name: "Tall",
  4990. height: math.unit(10, "feet")
  4991. },
  4992. {
  4993. name: "Big",
  4994. height: math.unit(20, "feet")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(50, "feet")
  4999. },
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5004. {
  5005. front: {
  5006. height: math.unit(6, "feet"),
  5007. weight: math.unit(170, "lbs"),
  5008. name: "Front",
  5009. image: {
  5010. source: "./media/characters/gin/front.svg",
  5011. extra: 1.053,
  5012. bottom: 0.025
  5013. }
  5014. },
  5015. foot: {
  5016. height: math.unit(6 / 4.25, "feet"),
  5017. name: "Foot",
  5018. image: {
  5019. source: "./media/characters/gin/foot.svg"
  5020. }
  5021. },
  5022. sole: {
  5023. height: math.unit(6 / 4.40, "feet"),
  5024. name: "Sole",
  5025. image: {
  5026. source: "./media/characters/gin/sole.svg"
  5027. }
  5028. },
  5029. },
  5030. [
  5031. {
  5032. name: "Normal",
  5033. height: math.unit(13 + 2 / 12, "feet")
  5034. },
  5035. {
  5036. name: "Macro",
  5037. height: math.unit(1500, "feet")
  5038. },
  5039. {
  5040. name: "Megamacro",
  5041. height: math.unit(200, "miles"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Gigamacro",
  5046. height: math.unit(500, "megameters")
  5047. },
  5048. {
  5049. name: "Teramacro",
  5050. height: math.unit(15, "lightyears")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6 + 1 / 6, "feet"),
  5059. weight: math.unit(178, "lbs"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/guy/front.svg"
  5063. }
  5064. }
  5065. },
  5066. [
  5067. {
  5068. name: "Normal",
  5069. height: math.unit(6 + 1 / 6, "feet"),
  5070. default: true
  5071. },
  5072. {
  5073. name: "Large",
  5074. height: math.unit(25 + 7 / 12, "feet")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(60 + 9 / 12, "feet")
  5079. },
  5080. {
  5081. name: "Macro+",
  5082. height: math.unit(246, "feet")
  5083. },
  5084. {
  5085. name: "Macro++",
  5086. height: math.unit(878, "feet")
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5092. {
  5093. front: {
  5094. height: math.unit(9, "feet"),
  5095. weight: math.unit(800, "lbs"),
  5096. name: "Front",
  5097. image: {
  5098. source: "./media/characters/tiberius/front.svg",
  5099. extra: 2295 / 2071
  5100. }
  5101. },
  5102. back: {
  5103. height: math.unit(9, "feet"),
  5104. weight: math.unit(800, "lbs"),
  5105. name: "Back",
  5106. image: {
  5107. source: "./media/characters/tiberius/back.svg",
  5108. extra: 2373 / 2160
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(9, "feet"),
  5116. default: true
  5117. }
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5122. {
  5123. front: {
  5124. height: math.unit(6, "feet"),
  5125. weight: math.unit(600, "lbs"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/surgo/front.svg",
  5129. extra: 3591 / 2227
  5130. }
  5131. },
  5132. back: {
  5133. height: math.unit(6, "feet"),
  5134. weight: math.unit(600, "lbs"),
  5135. name: "Back",
  5136. image: {
  5137. source: "./media/characters/surgo/back.svg",
  5138. extra: 3557 / 2228
  5139. }
  5140. },
  5141. laying: {
  5142. height: math.unit(6 * 0.85, "feet"),
  5143. weight: math.unit(600, "lbs"),
  5144. name: "Laying",
  5145. image: {
  5146. source: "./media/characters/surgo/laying.svg"
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Normal",
  5153. height: math.unit(6, "feet"),
  5154. default: true
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5160. {
  5161. side: {
  5162. height: math.unit(6, "feet"),
  5163. weight: math.unit(150, "lbs"),
  5164. name: "Side",
  5165. image: {
  5166. source: "./media/characters/cibus/side.svg",
  5167. extra: 800 / 400
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(6, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(240, "lbs"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/nibbles/front.svg"
  5188. }
  5189. },
  5190. side: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(240, "lbs"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/nibbles/side.svg"
  5196. }
  5197. },
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(9, "feet"),
  5203. default: true
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5209. {
  5210. side: {
  5211. height: math.unit(5 + 1 / 6, "feet"),
  5212. weight: math.unit(130, "lbs"),
  5213. name: "Side",
  5214. image: {
  5215. source: "./media/characters/rikky/side.svg"
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Normal",
  5222. height: math.unit(5 + 1 / 6, "feet")
  5223. },
  5224. {
  5225. name: "Macro",
  5226. height: math.unit(152, "feet"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Megamacro",
  5231. height: math.unit(7, "miles")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5237. {
  5238. side: {
  5239. height: math.unit(370, "cm"),
  5240. weight: math.unit(350, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/malfressa/side.svg"
  5244. }
  5245. },
  5246. walking: {
  5247. height: math.unit(370, "cm"),
  5248. weight: math.unit(350, "lbs"),
  5249. name: "Walking",
  5250. image: {
  5251. source: "./media/characters/malfressa/walking.svg"
  5252. }
  5253. },
  5254. feral: {
  5255. height: math.unit(2500, "cm"),
  5256. weight: math.unit(100000, "lbs"),
  5257. name: "Feral",
  5258. image: {
  5259. source: "./media/characters/malfressa/feral.svg",
  5260. extra: 2108 / 837,
  5261. bottom: 0.02
  5262. }
  5263. },
  5264. },
  5265. [
  5266. {
  5267. name: "Normal",
  5268. height: math.unit(370, "cm")
  5269. },
  5270. {
  5271. name: "Macro",
  5272. height: math.unit(300, "meters"),
  5273. default: true
  5274. }
  5275. ]
  5276. ))
  5277. characterMakers.push(() => makeCharacter(
  5278. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5279. {
  5280. front: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(60, "kg"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/jaro/front.svg"
  5286. }
  5287. },
  5288. back: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(60, "kg"),
  5291. name: "Back",
  5292. image: {
  5293. source: "./media/characters/jaro/back.svg"
  5294. }
  5295. },
  5296. },
  5297. [
  5298. {
  5299. name: "Micro",
  5300. height: math.unit(7, "inches")
  5301. },
  5302. {
  5303. name: "Normal",
  5304. height: math.unit(5.5, "feet"),
  5305. default: true
  5306. },
  5307. {
  5308. name: "Minimacro",
  5309. height: math.unit(20, "feet")
  5310. },
  5311. {
  5312. name: "Macro",
  5313. height: math.unit(200, "meters")
  5314. }
  5315. ]
  5316. ))
  5317. characterMakers.push(() => makeCharacter(
  5318. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5319. {
  5320. front: {
  5321. height: math.unit(6, "feet"),
  5322. weight: math.unit(195, "lb"),
  5323. name: "Front",
  5324. image: {
  5325. source: "./media/characters/rogue/front.svg"
  5326. }
  5327. },
  5328. },
  5329. [
  5330. {
  5331. name: "Macro",
  5332. height: math.unit(90, "feet"),
  5333. default: true
  5334. },
  5335. ]
  5336. ))
  5337. characterMakers.push(() => makeCharacter(
  5338. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5339. {
  5340. front: {
  5341. height: math.unit(5 + 8 / 12, "feet"),
  5342. weight: math.unit(140, "lb"),
  5343. name: "Front",
  5344. image: {
  5345. source: "./media/characters/piper/front.svg",
  5346. extra: 3928 / 3681
  5347. }
  5348. },
  5349. },
  5350. [
  5351. {
  5352. name: "Micro",
  5353. height: math.unit(2, "inches")
  5354. },
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5 + 8 / 12, "feet")
  5358. },
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(250, "feet"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Megamacro",
  5366. height: math.unit(7, "miles")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(220, "lb"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/gemini/front.svg"
  5379. }
  5380. },
  5381. back: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(220, "lb"),
  5384. name: "Back",
  5385. image: {
  5386. source: "./media/characters/gemini/back.svg"
  5387. }
  5388. },
  5389. kneeling: {
  5390. height: math.unit(6 / 1.5, "feet"),
  5391. weight: math.unit(220, "lb"),
  5392. name: "Kneeling",
  5393. image: {
  5394. source: "./media/characters/gemini/kneeling.svg",
  5395. bottom: 0.02
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(300, "meters"),
  5403. default: true
  5404. },
  5405. {
  5406. name: "Megamacro",
  5407. height: math.unit(6900, "meters")
  5408. },
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5413. {
  5414. anthro: {
  5415. height: math.unit(2.35, "meters"),
  5416. weight: math.unit(73, "kg"),
  5417. name: "Anthro",
  5418. image: {
  5419. source: "./media/characters/alicia/anthro.svg",
  5420. extra: 2571 / 2385,
  5421. bottom: 75 / 2648
  5422. }
  5423. },
  5424. paw: {
  5425. height: math.unit(1.32, "feet"),
  5426. name: "Paw",
  5427. image: {
  5428. source: "./media/characters/alicia/paw.svg"
  5429. }
  5430. },
  5431. feral: {
  5432. height: math.unit(1.69, "meters"),
  5433. weight: math.unit(73, "kg"),
  5434. name: "Feral",
  5435. image: {
  5436. source: "./media/characters/alicia/feral.svg",
  5437. extra: 2123 / 1715,
  5438. bottom: 222 / 2349
  5439. }
  5440. },
  5441. },
  5442. [
  5443. {
  5444. name: "Normal",
  5445. height: math.unit(2.35, "meters")
  5446. },
  5447. {
  5448. name: "Macro",
  5449. height: math.unit(60, "meters"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(10000, "kilometers")
  5455. },
  5456. ]
  5457. ))
  5458. characterMakers.push(() => makeCharacter(
  5459. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5460. {
  5461. front: {
  5462. height: math.unit(7, "feet"),
  5463. weight: math.unit(250, "lbs"),
  5464. name: "Front",
  5465. image: {
  5466. source: "./media/characters/archy/front.svg"
  5467. }
  5468. }
  5469. },
  5470. [
  5471. {
  5472. name: "Micro",
  5473. height: math.unit(1, "inch")
  5474. },
  5475. {
  5476. name: "Shorty",
  5477. height: math.unit(5, "feet")
  5478. },
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(7, "feet")
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(600, "meters"),
  5486. default: true
  5487. },
  5488. {
  5489. name: "Megamacro",
  5490. height: math.unit(1, "mile")
  5491. },
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(1.65, "meters"),
  5499. weight: math.unit(74, "kg"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/berri/front.svg",
  5503. extra: 857 / 837,
  5504. bottom: 18 / 877
  5505. }
  5506. },
  5507. bum: {
  5508. height: math.unit(1.46, "feet"),
  5509. name: "Bum",
  5510. image: {
  5511. source: "./media/characters/berri/bum.svg"
  5512. }
  5513. },
  5514. mouth: {
  5515. height: math.unit(0.44, "feet"),
  5516. name: "Mouth",
  5517. image: {
  5518. source: "./media/characters/berri/mouth.svg"
  5519. }
  5520. },
  5521. paw: {
  5522. height: math.unit(0.826, "feet"),
  5523. name: "Paw",
  5524. image: {
  5525. source: "./media/characters/berri/paw.svg"
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(1.65, "meters")
  5533. },
  5534. {
  5535. name: "Macro",
  5536. height: math.unit(60, "m"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Megamacro",
  5541. height: math.unit(9.213, "km")
  5542. },
  5543. {
  5544. name: "Planet Eater",
  5545. height: math.unit(489, "megameters")
  5546. },
  5547. {
  5548. name: "Teramacro",
  5549. height: math.unit(2471635000000, "meters")
  5550. },
  5551. {
  5552. name: "Examacro",
  5553. height: math.unit(8.0624e+26, "meters")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(1.72, "meters"),
  5562. weight: math.unit(68, "kg"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/lexi/front.svg"
  5566. }
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Very Smol",
  5572. height: math.unit(10, "mm")
  5573. },
  5574. {
  5575. name: "Micro",
  5576. height: math.unit(6.8, "cm"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(1.72, "m")
  5582. }
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(1.69, "meters"),
  5590. weight: math.unit(68, "kg"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/martin/front.svg",
  5594. extra: 596 / 581
  5595. }
  5596. }
  5597. },
  5598. [
  5599. {
  5600. name: "Micro",
  5601. height: math.unit(6.85, "cm"),
  5602. default: true
  5603. },
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(1.69, "m")
  5607. }
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5612. {
  5613. front: {
  5614. height: math.unit(1.69, "meters"),
  5615. weight: math.unit(68, "kg"),
  5616. name: "Front",
  5617. image: {
  5618. source: "./media/characters/juno/front.svg"
  5619. }
  5620. }
  5621. },
  5622. [
  5623. {
  5624. name: "Micro",
  5625. height: math.unit(7, "cm")
  5626. },
  5627. {
  5628. name: "Normal",
  5629. height: math.unit(1.89, "m")
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(353, "meters"),
  5634. default: true
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(1.93, "meters"),
  5643. weight: math.unit(83, "kg"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/samantha/front.svg"
  5647. }
  5648. },
  5649. frontClothed: {
  5650. height: math.unit(1.93, "meters"),
  5651. weight: math.unit(83, "kg"),
  5652. name: "Front (Clothed)",
  5653. image: {
  5654. source: "./media/characters/samantha/front-clothed.svg"
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(1.93, "meters"),
  5659. weight: math.unit(83, "kg"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/samantha/back.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(1.93, "m")
  5670. },
  5671. {
  5672. name: "Macro",
  5673. height: math.unit(74, "meters"),
  5674. default: true
  5675. },
  5676. {
  5677. name: "Macro+",
  5678. height: math.unit(223, "meters"),
  5679. },
  5680. {
  5681. name: "Megamacro",
  5682. height: math.unit(8381, "meters"),
  5683. },
  5684. {
  5685. name: "Megamacro+",
  5686. height: math.unit(12000, "kilometers")
  5687. },
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5692. {
  5693. front: {
  5694. height: math.unit(1.92, "meters"),
  5695. weight: math.unit(80, "kg"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/dr-clay/front.svg"
  5699. }
  5700. },
  5701. frontClothed: {
  5702. height: math.unit(1.92, "meters"),
  5703. weight: math.unit(80, "kg"),
  5704. name: "Front (Clothed)",
  5705. image: {
  5706. source: "./media/characters/dr-clay/front-clothed.svg"
  5707. }
  5708. }
  5709. },
  5710. [
  5711. {
  5712. name: "Normal",
  5713. height: math.unit(1.92, "m")
  5714. },
  5715. {
  5716. name: "Macro",
  5717. height: math.unit(214, "meters"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Macro+",
  5722. height: math.unit(12.237, "meters"),
  5723. },
  5724. {
  5725. name: "Megamacro",
  5726. height: math.unit(557, "megameters"),
  5727. },
  5728. {
  5729. name: "Unimaginable",
  5730. height: math.unit(120e9, "lightyears")
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5736. {
  5737. front: {
  5738. height: math.unit(2, "meters"),
  5739. weight: math.unit(80, "kg"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5743. }
  5744. }
  5745. },
  5746. [
  5747. {
  5748. name: "Teramacro",
  5749. height: math.unit(500000, "lightyears"),
  5750. default: true
  5751. },
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(2, "meters"),
  5759. weight: math.unit(150, "kg"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/vemus/front.svg",
  5763. extra: 2384 / 2084,
  5764. bottom: 0.0123
  5765. }
  5766. }
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(3.75, "meters"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Big",
  5776. height: math.unit(8, "meters")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(100, "meters")
  5781. },
  5782. {
  5783. name: "Macro+",
  5784. height: math.unit(1500, "meters")
  5785. },
  5786. {
  5787. name: "Stellar",
  5788. height: math.unit(14e8, "meters")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(2, "meters"),
  5797. weight: math.unit(70, "kg"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/beherit/front.svg",
  5801. extra: 1408 / 1242
  5802. }
  5803. }
  5804. },
  5805. [
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(6, "feet")
  5809. },
  5810. {
  5811. name: "Lorg",
  5812. height: math.unit(25, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Lorger",
  5817. height: math.unit(75, "feet")
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(200, "meters")
  5822. },
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(2, "meters"),
  5830. weight: math.unit(150, "kg"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/everett/front.svg",
  5834. extra: 2038 / 1737,
  5835. bottom: 0.03
  5836. }
  5837. },
  5838. paw: {
  5839. height: math.unit(2 / 3.6, "meters"),
  5840. name: "Paw",
  5841. image: {
  5842. source: "./media/characters/everett/paw.svg"
  5843. }
  5844. },
  5845. },
  5846. [
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(15, "feet"),
  5850. default: true
  5851. },
  5852. {
  5853. name: "Lorg",
  5854. height: math.unit(70, "feet"),
  5855. default: true
  5856. },
  5857. {
  5858. name: "Lorger",
  5859. height: math.unit(250, "feet")
  5860. },
  5861. {
  5862. name: "Macro",
  5863. height: math.unit(500, "meters")
  5864. },
  5865. ]
  5866. ))
  5867. characterMakers.push(() => makeCharacter(
  5868. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5869. {
  5870. front: {
  5871. height: math.unit(2, "meters"),
  5872. weight: math.unit(86, "kg"),
  5873. name: "Front",
  5874. image: {
  5875. source: "./media/characters/rose-lion/front.svg"
  5876. }
  5877. },
  5878. bent: {
  5879. height: math.unit(2 / 1.4288, "meters"),
  5880. weight: math.unit(86, "kg"),
  5881. name: "Bent",
  5882. image: {
  5883. source: "./media/characters/rose-lion/bent.svg"
  5884. }
  5885. }
  5886. },
  5887. [
  5888. {
  5889. name: "Mini-Micro",
  5890. height: math.unit(1, "cm")
  5891. },
  5892. {
  5893. name: "Micro",
  5894. height: math.unit(3.5, "inches"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Normal",
  5899. height: math.unit(6 + 1 / 6, "feet")
  5900. },
  5901. {
  5902. name: "Mini-Macro",
  5903. height: math.unit(9 + 10 / 12, "feet")
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5909. {
  5910. front: {
  5911. height: math.unit(2, "meters"),
  5912. weight: math.unit(350, "lbs"),
  5913. name: "Front",
  5914. image: {
  5915. source: "./media/characters/regal/front.svg"
  5916. }
  5917. },
  5918. back: {
  5919. height: math.unit(2, "meters"),
  5920. weight: math.unit(350, "lbs"),
  5921. name: "Back",
  5922. image: {
  5923. source: "./media/characters/regal/back.svg"
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Macro",
  5930. height: math.unit(350, "feet"),
  5931. default: true
  5932. }
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(4 + 11 / 12, "feet"),
  5940. weight: math.unit(100, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/opal/front.svg"
  5944. }
  5945. },
  5946. frontAlt: {
  5947. height: math.unit(4 + 11 / 12, "feet"),
  5948. weight: math.unit(100, "lbs"),
  5949. name: "Front (Alt)",
  5950. image: {
  5951. source: "./media/characters/opal/front-alt.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Small",
  5958. height: math.unit(4 + 11 / 12, "feet")
  5959. },
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(20, "feet"),
  5963. default: true
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(120, "feet")
  5968. },
  5969. {
  5970. name: "Megamacro",
  5971. height: math.unit(80, "miles")
  5972. },
  5973. {
  5974. name: "True Size",
  5975. height: math.unit(100000, "lightyears")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(200, "lbs"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/vector-wuff/front.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(2.8, "meters")
  5995. },
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(450, "meters"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Megamacro",
  6003. height: math.unit(15, "kilometers")
  6004. }
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(6, "feet"),
  6012. weight: math.unit(256, "lbs"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/dannik/front.svg"
  6016. }
  6017. }
  6018. },
  6019. [
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(69.57, "meters"),
  6023. default: true
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(6, "feet"),
  6032. weight: math.unit(120, "lbs"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/azura-saharah/front.svg"
  6036. }
  6037. },
  6038. back: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(120, "lbs"),
  6041. name: "Back",
  6042. image: {
  6043. source: "./media/characters/azura-saharah/back.svg"
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(100, "feet"),
  6051. default: true
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6057. {
  6058. side: {
  6059. height: math.unit(5 + 4 / 12, "feet"),
  6060. weight: math.unit(163, "lbs"),
  6061. name: "Side",
  6062. image: {
  6063. source: "./media/characters/kennedy/side.svg"
  6064. }
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Standard Doggo",
  6070. height: math.unit(5 + 4 / 12, "feet")
  6071. },
  6072. {
  6073. name: "Big Doggo",
  6074. height: math.unit(25 + 3 / 12, "feet"),
  6075. default: true
  6076. },
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(90, "lbs"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/odi-lunar/front.svg"
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Micro",
  6094. height: math.unit(3, "inches"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(5.5, "feet")
  6100. }
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6105. {
  6106. back: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(220, "lbs"),
  6109. name: "Back",
  6110. image: {
  6111. source: "./media/characters/mandake/back.svg"
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(7, "feet"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(78, "feet")
  6124. },
  6125. {
  6126. name: "Macro+",
  6127. height: math.unit(300, "meters")
  6128. },
  6129. {
  6130. name: "Macro++",
  6131. height: math.unit(2400, "feet")
  6132. },
  6133. {
  6134. name: "Megamacro",
  6135. height: math.unit(5167, "meters")
  6136. },
  6137. {
  6138. name: "Gigamacro",
  6139. height: math.unit(41769, "miles")
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6145. {
  6146. front: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(120, "lbs"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/yozey/front.svg"
  6152. }
  6153. },
  6154. frontAlt: {
  6155. height: math.unit(6, "feet"),
  6156. weight: math.unit(120, "lbs"),
  6157. name: "Front (Alt)",
  6158. image: {
  6159. source: "./media/characters/yozey/front-alt.svg"
  6160. }
  6161. },
  6162. side: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(120, "lbs"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/yozey/side.svg"
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Micro",
  6174. height: math.unit(3, "inches"),
  6175. default: true
  6176. },
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(6, "feet")
  6180. }
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6185. {
  6186. front: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(103, "lbs"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/valeska-voss/front.svg"
  6192. }
  6193. }
  6194. },
  6195. [
  6196. {
  6197. name: "Mini-Sized Sub",
  6198. height: math.unit(3.1, "inches")
  6199. },
  6200. {
  6201. name: "Mid-Sized Sub",
  6202. height: math.unit(6.2, "inches")
  6203. },
  6204. {
  6205. name: "Full-Sized Sub",
  6206. height: math.unit(9.3, "inches")
  6207. },
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5 + 2 / 12, "foot"),
  6211. default: true
  6212. },
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6217. {
  6218. front: {
  6219. height: math.unit(6, "feet"),
  6220. weight: math.unit(160, "lbs"),
  6221. name: "Front",
  6222. image: {
  6223. source: "./media/characters/gene-zeta/front.svg",
  6224. bottom: 0.03,
  6225. extra: 1
  6226. }
  6227. }
  6228. },
  6229. [
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(6.25, "foot"),
  6233. default: true
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6239. {
  6240. front: {
  6241. height: math.unit(6, "feet"),
  6242. weight: math.unit(350, "lbs"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/razinox/front.svg",
  6246. extra: 1686 / 1548,
  6247. bottom: 28.2 / 1868
  6248. }
  6249. },
  6250. back: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(350, "lbs"),
  6253. name: "Back",
  6254. image: {
  6255. source: "./media/characters/razinox/back.svg",
  6256. extra: 1660 / 1590,
  6257. bottom: 15 / 1665
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(10 + 8 / 12, "foot")
  6265. },
  6266. {
  6267. name: "Minimacro",
  6268. height: math.unit(15, "foot")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(60, "foot"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Megamacro",
  6277. height: math.unit(5, "miles")
  6278. },
  6279. {
  6280. name: "Gigamacro",
  6281. height: math.unit(6000, "miles")
  6282. },
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(150, "lbs"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/cobalt/front.svg"
  6294. }
  6295. }
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(8 + 1 / 12, "foot")
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(111, "foot"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Supracosmic",
  6309. height: math.unit(1e42, "feet")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(6, "feet"),
  6318. weight: math.unit(140, "lbs"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/amanda/front.svg"
  6322. }
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Micro",
  6328. height: math.unit(5, "inches"),
  6329. default: true
  6330. },
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(5.59, "feet"),
  6338. weight: math.unit(250, "lbs"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/teal/front.svg"
  6342. }
  6343. },
  6344. frontAlt: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(250, "lbs"),
  6347. name: "Front (Alt)",
  6348. image: {
  6349. source: "./media/characters/teal/front-alt.svg",
  6350. bottom: 0.04,
  6351. extra: 1
  6352. }
  6353. },
  6354. },
  6355. [
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(12, "feet"),
  6359. default: true
  6360. },
  6361. {
  6362. name: "Macro",
  6363. height: math.unit(300, "feet")
  6364. },
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6369. {
  6370. frontCat: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(180, "lbs"),
  6373. name: "Front (Cat)",
  6374. image: {
  6375. source: "./media/characters/ravin-amulet/front-cat.svg"
  6376. }
  6377. },
  6378. frontCatAlt: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(180, "lbs"),
  6381. name: "Front (Alt, Cat)",
  6382. image: {
  6383. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6384. }
  6385. },
  6386. frontWerewolf: {
  6387. height: math.unit(6 * 1.2, "feet"),
  6388. weight: math.unit(225, "lbs"),
  6389. name: "Front (Werewolf)",
  6390. image: {
  6391. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6392. }
  6393. },
  6394. backWerewolf: {
  6395. height: math.unit(6 * 1.2, "feet"),
  6396. weight: math.unit(225, "lbs"),
  6397. name: "Back (Werewolf)",
  6398. image: {
  6399. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Nano",
  6406. height: math.unit(1, "micrometer")
  6407. },
  6408. {
  6409. name: "Micro",
  6410. height: math.unit(1, "inch")
  6411. },
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6, "feet"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Macro",
  6419. height: math.unit(60, "feet")
  6420. }
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(165, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/fluoresce/front.svg"
  6432. }
  6433. }
  6434. },
  6435. [
  6436. {
  6437. name: "Micro",
  6438. height: math.unit(6, "cm")
  6439. },
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(5 + 7 / 12, "feet"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(56, "feet")
  6448. },
  6449. {
  6450. name: "Megamacro",
  6451. height: math.unit(1.9, "miles")
  6452. },
  6453. ]
  6454. ))
  6455. characterMakers.push(() => makeCharacter(
  6456. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6457. {
  6458. front: {
  6459. height: math.unit(9 + 6 / 12, "feet"),
  6460. weight: math.unit(523, "lbs"),
  6461. name: "Side",
  6462. image: {
  6463. source: "./media/characters/aurora/side.svg"
  6464. }
  6465. }
  6466. },
  6467. [
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(9 + 6 / 12, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(96, "feet"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Macro+",
  6479. height: math.unit(243, "feet")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(194, "cm"),
  6488. weight: math.unit(90, "kg"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/ranek/front.svg"
  6492. }
  6493. },
  6494. side: {
  6495. height: math.unit(194, "cm"),
  6496. weight: math.unit(90, "kg"),
  6497. name: "Side",
  6498. image: {
  6499. source: "./media/characters/ranek/side.svg"
  6500. }
  6501. },
  6502. back: {
  6503. height: math.unit(194, "cm"),
  6504. weight: math.unit(90, "kg"),
  6505. name: "Back",
  6506. image: {
  6507. source: "./media/characters/ranek/back.svg"
  6508. }
  6509. },
  6510. feral: {
  6511. height: math.unit(30, "cm"),
  6512. weight: math.unit(1.6, "lbs"),
  6513. name: "Feral",
  6514. image: {
  6515. source: "./media/characters/ranek/feral.svg"
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(194, "cm"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(100, "meters")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6533. {
  6534. front: {
  6535. height: math.unit(5 + 6 / 12, "feet"),
  6536. weight: math.unit(153, "lbs"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/andrew-cooper/front.svg"
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Nano",
  6546. height: math.unit(1, "mm")
  6547. },
  6548. {
  6549. name: "Micro",
  6550. height: math.unit(2, "inches")
  6551. },
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(5 + 6 / 12, "feet"),
  6555. default: true
  6556. }
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6561. {
  6562. front: {
  6563. height: math.unit(6, "feet"),
  6564. weight: math.unit(180, "lbs"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/akane-sato/front.svg",
  6568. extra: 1219 / 1140
  6569. }
  6570. },
  6571. back: {
  6572. height: math.unit(6, "feet"),
  6573. weight: math.unit(180, "lbs"),
  6574. name: "Back",
  6575. image: {
  6576. source: "./media/characters/akane-sato/back.svg",
  6577. extra: 1219 / 1170
  6578. }
  6579. },
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(2.5, "meters")
  6585. },
  6586. {
  6587. name: "Macro",
  6588. height: math.unit(250, "meters"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Megamacro",
  6593. height: math.unit(25, "km")
  6594. },
  6595. ]
  6596. ))
  6597. characterMakers.push(() => makeCharacter(
  6598. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6599. {
  6600. front: {
  6601. height: math.unit(6, "feet"),
  6602. weight: math.unit(65, "kg"),
  6603. name: "Front",
  6604. image: {
  6605. source: "./media/characters/rook/front.svg",
  6606. extra: 960 / 950
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(8.8, "feet")
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(88, "feet"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Megamacro",
  6622. height: math.unit(8, "miles")
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(12 + 2 / 12, "feet"),
  6631. weight: math.unit(808, "lbs"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/prodigy/front.svg"
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(12 + 2 / 12, "feet"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Macro",
  6646. height: math.unit(143, "feet")
  6647. },
  6648. {
  6649. name: "Macro+",
  6650. height: math.unit(400, "feet")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(225, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/daniel/front.svg"
  6663. }
  6664. },
  6665. leaning: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(225, "lbs"),
  6668. name: "Leaning",
  6669. image: {
  6670. source: "./media/characters/daniel/leaning.svg"
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Macro",
  6677. height: math.unit(1000, "feet"),
  6678. default: true
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(88, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/chiros/front.svg",
  6691. extra: 306 / 226
  6692. }
  6693. },
  6694. side: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(88, "lbs"),
  6697. name: "Side",
  6698. image: {
  6699. source: "./media/characters/chiros/side.svg",
  6700. extra: 306 / 226
  6701. }
  6702. },
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(6, "cm"),
  6708. default: true
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6714. {
  6715. front: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(100, "lbs"),
  6718. name: "Front",
  6719. image: {
  6720. source: "./media/characters/selka/front.svg",
  6721. extra: 947 / 887
  6722. }
  6723. }
  6724. },
  6725. [
  6726. {
  6727. name: "Normal",
  6728. height: math.unit(5, "cm"),
  6729. default: true
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(8 + 3 / 12, "feet"),
  6738. weight: math.unit(424, "lbs"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/verin/front.svg",
  6742. extra: 1845 / 1550
  6743. }
  6744. },
  6745. frontArmored: {
  6746. height: math.unit(8 + 3 / 12, "feet"),
  6747. weight: math.unit(424, "lbs"),
  6748. name: "Front (Armored)",
  6749. image: {
  6750. source: "./media/characters/verin/front-armor.svg",
  6751. extra: 1845 / 1550,
  6752. bottom: 0.01
  6753. }
  6754. },
  6755. back: {
  6756. height: math.unit(8 + 3 / 12, "feet"),
  6757. weight: math.unit(424, "lbs"),
  6758. name: "Back",
  6759. image: {
  6760. source: "./media/characters/verin/back.svg",
  6761. bottom: 0.1,
  6762. extra: 1
  6763. }
  6764. },
  6765. foot: {
  6766. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6767. name: "Foot",
  6768. image: {
  6769. source: "./media/characters/verin/foot.svg"
  6770. }
  6771. },
  6772. },
  6773. [
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(8 + 3 / 12, "feet")
  6777. },
  6778. {
  6779. name: "Minimacro",
  6780. height: math.unit(21, "feet"),
  6781. default: true
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(626, "feet")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(2.718, "meters"),
  6794. weight: math.unit(150, "lbs"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/sovrim-terraquian/front.svg"
  6798. }
  6799. },
  6800. back: {
  6801. height: math.unit(2.718, "meters"),
  6802. weight: math.unit(150, "lbs"),
  6803. name: "Back",
  6804. image: {
  6805. source: "./media/characters/sovrim-terraquian/back.svg"
  6806. }
  6807. }
  6808. },
  6809. [
  6810. {
  6811. name: "Micro",
  6812. height: math.unit(2, "inches")
  6813. },
  6814. {
  6815. name: "Small",
  6816. height: math.unit(1, "meter")
  6817. },
  6818. {
  6819. name: "Normal",
  6820. height: math.unit(Math.E, "meters"),
  6821. default: true
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(20, "meters")
  6826. },
  6827. {
  6828. name: "Macro+",
  6829. height: math.unit(400, "meters")
  6830. },
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(7, "feet"),
  6838. weight: math.unit(489, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/reece-silvermane/front.svg",
  6842. bottom: 0.02,
  6843. extra: 1
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(1.5, "miles"),
  6851. default: true
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(78, "kg"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/kane/front.svg",
  6864. extra: 978 / 899
  6865. }
  6866. },
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(2.1, "m"),
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(1, "km"),
  6876. default: true
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(200, "kg"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/tegon/front.svg",
  6889. bottom: 0.01,
  6890. extra: 1
  6891. }
  6892. },
  6893. },
  6894. [
  6895. {
  6896. name: "Micro",
  6897. height: math.unit(1, "inch")
  6898. },
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(6 + 3 / 12, "feet"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(300, "feet")
  6907. },
  6908. {
  6909. name: "Megamacro",
  6910. height: math.unit(69, "miles")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6916. {
  6917. side: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(2304, "lbs"),
  6920. name: "Side",
  6921. image: {
  6922. source: "./media/characters/arcturax/side.svg",
  6923. extra: 790 / 376,
  6924. bottom: 0.01
  6925. }
  6926. },
  6927. },
  6928. [
  6929. {
  6930. name: "Micro",
  6931. height: math.unit(2, "inch")
  6932. },
  6933. {
  6934. name: "Normal",
  6935. height: math.unit(6, "feet")
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(39, "feet"),
  6940. default: true
  6941. },
  6942. {
  6943. name: "Megamacro",
  6944. height: math.unit(7, "miles")
  6945. },
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(6, "feet"),
  6953. weight: math.unit(50, "lbs"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/sentri/front.svg",
  6957. extra: 1750 / 1570,
  6958. bottom: 0.025
  6959. }
  6960. },
  6961. frontAlt: {
  6962. height: math.unit(6, "feet"),
  6963. weight: math.unit(50, "lbs"),
  6964. name: "Front (Alt)",
  6965. image: {
  6966. source: "./media/characters/sentri/front-alt.svg",
  6967. extra: 1750 / 1570,
  6968. bottom: 0.025
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(15, "feet"),
  6976. default: true
  6977. },
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(2500, "feet")
  6981. }
  6982. ]
  6983. ))
  6984. characterMakers.push(() => makeCharacter(
  6985. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6986. {
  6987. front: {
  6988. height: math.unit(5 + 8 / 12, "feet"),
  6989. weight: math.unit(130, "lbs"),
  6990. name: "Front",
  6991. image: {
  6992. source: "./media/characters/corvin/front.svg",
  6993. extra: 1803 / 1629
  6994. }
  6995. },
  6996. frontShirt: {
  6997. height: math.unit(5 + 8 / 12, "feet"),
  6998. weight: math.unit(130, "lbs"),
  6999. name: "Front (Shirt)",
  7000. image: {
  7001. source: "./media/characters/corvin/front-shirt.svg",
  7002. extra: 1803 / 1629
  7003. }
  7004. },
  7005. frontPoncho: {
  7006. height: math.unit(5 + 8 / 12, "feet"),
  7007. weight: math.unit(130, "lbs"),
  7008. name: "Front (Poncho)",
  7009. image: {
  7010. source: "./media/characters/corvin/front-poncho.svg",
  7011. extra: 1803 / 1629
  7012. }
  7013. },
  7014. side: {
  7015. height: math.unit(5 + 8 / 12, "feet"),
  7016. weight: math.unit(130, "lbs"),
  7017. name: "Side",
  7018. image: {
  7019. source: "./media/characters/corvin/side.svg",
  7020. extra: 1012 / 945
  7021. }
  7022. },
  7023. back: {
  7024. height: math.unit(5 + 8 / 12, "feet"),
  7025. weight: math.unit(130, "lbs"),
  7026. name: "Back",
  7027. image: {
  7028. source: "./media/characters/corvin/back.svg",
  7029. extra: 1803 / 1629
  7030. }
  7031. },
  7032. },
  7033. [
  7034. {
  7035. name: "Micro",
  7036. height: math.unit(3, "inches")
  7037. },
  7038. {
  7039. name: "Normal",
  7040. height: math.unit(5 + 8 / 12, "feet")
  7041. },
  7042. {
  7043. name: "Macro",
  7044. height: math.unit(300, "feet"),
  7045. default: true
  7046. },
  7047. {
  7048. name: "Megamacro",
  7049. height: math.unit(500, "miles")
  7050. }
  7051. ]
  7052. ))
  7053. characterMakers.push(() => makeCharacter(
  7054. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7055. {
  7056. front: {
  7057. height: math.unit(6, "feet"),
  7058. weight: math.unit(135, "lbs"),
  7059. name: "Front",
  7060. image: {
  7061. source: "./media/characters/q/front.svg",
  7062. extra: 854 / 752,
  7063. bottom: 0.005
  7064. }
  7065. },
  7066. back: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(130, "lbs"),
  7069. name: "Back",
  7070. image: {
  7071. source: "./media/characters/q/back.svg",
  7072. extra: 854 / 752
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(90, "feet"),
  7080. default: true
  7081. },
  7082. {
  7083. name: "Extra Macro",
  7084. height: math.unit(300, "feet"),
  7085. },
  7086. {
  7087. name: "BIG WALF",
  7088. height: math.unit(750, "feet"),
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(150, "lbs"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/carley/front.svg",
  7101. extra: 3927 / 3540,
  7102. bottom: 0.03
  7103. }
  7104. }
  7105. },
  7106. [
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(6 + 3 / 12, "feet")
  7110. },
  7111. {
  7112. name: "Macro",
  7113. height: math.unit(185, "feet"),
  7114. default: true
  7115. },
  7116. {
  7117. name: "Megamacro",
  7118. height: math.unit(8, "miles"),
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7124. {
  7125. front: {
  7126. height: math.unit(3, "feet"),
  7127. weight: math.unit(28, "lbs"),
  7128. name: "Front",
  7129. image: {
  7130. source: "./media/characters/citrine/front.svg"
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(3, "feet"),
  7138. default: true
  7139. }
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7144. {
  7145. front: {
  7146. height: math.unit(14, "feet"),
  7147. weight: math.unit(1450, "kg"),
  7148. capacity: math.unit(15, "people"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/aura-starwind/front.svg",
  7152. extra: 1455 / 1335
  7153. }
  7154. },
  7155. side: {
  7156. height: math.unit(14, "feet"),
  7157. weight: math.unit(1450, "kg"),
  7158. capacity: math.unit(15, "people"),
  7159. name: "Side",
  7160. image: {
  7161. source: "./media/characters/aura-starwind/side.svg",
  7162. extra: 1654 / 1497
  7163. }
  7164. },
  7165. taur: {
  7166. height: math.unit(18, "feet"),
  7167. weight: math.unit(5500, "kg"),
  7168. capacity: math.unit(50, "people"),
  7169. name: "Taur",
  7170. image: {
  7171. source: "./media/characters/aura-starwind/taur.svg",
  7172. extra: 1760 / 1650
  7173. }
  7174. },
  7175. feral: {
  7176. height: math.unit(46, "feet"),
  7177. weight: math.unit(25000, "kg"),
  7178. capacity: math.unit(120, "people"),
  7179. name: "Feral",
  7180. image: {
  7181. source: "./media/characters/aura-starwind/feral.svg"
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(14, "feet"),
  7189. default: true
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(50, "meters")
  7194. },
  7195. {
  7196. name: "Megamacro",
  7197. height: math.unit(5000, "meters")
  7198. },
  7199. {
  7200. name: "Gigamacro",
  7201. height: math.unit(100000, "kilometers")
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(2 + 7 / 12, "feet"),
  7210. weight: math.unit(32, "lbs"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/rivet/front.svg",
  7214. extra: 1716 / 1658,
  7215. bottom: 0.03
  7216. }
  7217. },
  7218. foot: {
  7219. height: math.unit(0.551, "feet"),
  7220. name: "Rivet's Foot",
  7221. image: {
  7222. source: "./media/characters/rivet/foot.svg"
  7223. },
  7224. rename: true
  7225. }
  7226. },
  7227. [
  7228. {
  7229. name: "Micro",
  7230. height: math.unit(1.5, "inches"),
  7231. },
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(2 + 7 / 12, "feet"),
  7235. default: true
  7236. },
  7237. {
  7238. name: "Macro",
  7239. height: math.unit(85, "feet")
  7240. },
  7241. {
  7242. name: "Megamacro",
  7243. height: math.unit(2.2, "km")
  7244. }
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(5 + 9 / 12, "feet"),
  7252. weight: math.unit(150, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/coffee/front.svg",
  7256. extra: 3666 / 3032,
  7257. bottom: 0.04
  7258. }
  7259. },
  7260. foot: {
  7261. height: math.unit(1.29, "feet"),
  7262. name: "Foot",
  7263. image: {
  7264. source: "./media/characters/coffee/foot.svg"
  7265. }
  7266. },
  7267. },
  7268. [
  7269. {
  7270. name: "Micro",
  7271. height: math.unit(2, "inches"),
  7272. },
  7273. {
  7274. name: "Normal",
  7275. height: math.unit(5 + 9 / 12, "feet"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Macro",
  7280. height: math.unit(800, "feet")
  7281. },
  7282. {
  7283. name: "Megamacro",
  7284. height: math.unit(25, "miles")
  7285. }
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(200, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/chari-gal/front.svg",
  7297. extra: 1568 / 1385,
  7298. bottom: 0.047
  7299. }
  7300. },
  7301. gigantamax: {
  7302. height: math.unit(6 * 16, "feet"),
  7303. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7304. name: "Gigantamax",
  7305. image: {
  7306. source: "./media/characters/chari-gal/gigantamax.svg",
  7307. extra: 1124 / 888,
  7308. bottom: 0.03
  7309. }
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(5 + 7 / 12, "feet")
  7316. },
  7317. {
  7318. name: "Macro",
  7319. height: math.unit(200, "feet"),
  7320. default: true
  7321. }
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(150, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/nova/front.svg",
  7333. extra: 5000 / 4722,
  7334. bottom: 0.02
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Micro-",
  7341. height: math.unit(0.8, "inches")
  7342. },
  7343. {
  7344. name: "Micro",
  7345. height: math.unit(2, "inches"),
  7346. default: true
  7347. },
  7348. ]
  7349. ))
  7350. characterMakers.push(() => makeCharacter(
  7351. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7352. {
  7353. front: {
  7354. height: math.unit(3 + 1 / 12, "feet"),
  7355. weight: math.unit(21.7, "lbs"),
  7356. name: "Front",
  7357. image: {
  7358. source: "./media/characters/argent/front.svg",
  7359. extra: 1471 / 1331,
  7360. bottom: 100.8 / 1575.5
  7361. }
  7362. }
  7363. },
  7364. [
  7365. {
  7366. name: "Micro",
  7367. height: math.unit(2, "inches")
  7368. },
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(3 + 1 / 12, "feet"),
  7372. default: true
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(120, "feet")
  7377. },
  7378. ]
  7379. ))
  7380. characterMakers.push(() => makeCharacter(
  7381. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7382. {
  7383. lamp: {
  7384. height: math.unit(7 * 1559 / 989, "feet"),
  7385. name: "Magic Lamp",
  7386. image: {
  7387. source: "./media/characters/mira-al-cul/lamp.svg",
  7388. extra: 1617 / 1559
  7389. }
  7390. },
  7391. front: {
  7392. height: math.unit(7, "feet"),
  7393. name: "Front",
  7394. image: {
  7395. source: "./media/characters/mira-al-cul/front.svg",
  7396. extra: 1044 / 990
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Heavily Restricted",
  7403. height: math.unit(7 * 1559 / 989, "feet")
  7404. },
  7405. {
  7406. name: "Freshly Freed",
  7407. height: math.unit(50 * 1559 / 989, "feet")
  7408. },
  7409. {
  7410. name: "World Encompassing",
  7411. height: math.unit(10000 * 1559 / 989, "miles")
  7412. },
  7413. {
  7414. name: "Galactic",
  7415. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7416. },
  7417. {
  7418. name: "Palmed Universe",
  7419. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Multiversal Matriarch",
  7424. height: math.unit(8.87e10, "yottameters")
  7425. },
  7426. {
  7427. name: "Void Mother",
  7428. height: math.unit(3.14e110, "yottaparsecs")
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7434. {
  7435. front: {
  7436. height: math.unit(17 + 1 / 12, "feet"),
  7437. weight: math.unit(476.2 * 5, "lbs"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/kuro-shi-uchū/front.svg",
  7441. extra: 2329 / 1835,
  7442. bottom: 0.02
  7443. }
  7444. },
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(2, "inches")
  7450. },
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(12, "meters")
  7454. },
  7455. {
  7456. name: "Planetary",
  7457. height: math.unit(0.00929, "AU"),
  7458. default: true
  7459. },
  7460. {
  7461. name: "Universal",
  7462. height: math.unit(20, "gigaparsecs")
  7463. },
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(5 + 2 / 12, "feet"),
  7471. weight: math.unit(120, "lbs"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/katherine/front.svg",
  7475. extra: 2075 / 1969
  7476. }
  7477. },
  7478. dress: {
  7479. height: math.unit(5 + 2 / 12, "feet"),
  7480. weight: math.unit(120, "lbs"),
  7481. name: "Dress",
  7482. image: {
  7483. source: "./media/characters/katherine/dress.svg",
  7484. extra: 2258 / 2064
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(1, "inches"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(5 + 2 / 12, "feet")
  7497. },
  7498. {
  7499. name: "Macro",
  7500. height: math.unit(100, "meters")
  7501. },
  7502. {
  7503. name: "Megamacro",
  7504. height: math.unit(80, "miles")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(7 + 8 / 12, "feet"),
  7513. weight: math.unit(250, "lbs"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/yevis/front.svg",
  7517. extra: 1938 / 1755
  7518. }
  7519. }
  7520. },
  7521. [
  7522. {
  7523. name: "Mortal",
  7524. height: math.unit(7 + 8 / 12, "feet")
  7525. },
  7526. {
  7527. name: "Battle",
  7528. height: math.unit(25 + 11 / 12, "feet")
  7529. },
  7530. {
  7531. name: "Wrath",
  7532. height: math.unit(1654 + 11 / 12, "feet")
  7533. },
  7534. {
  7535. name: "Planet Destroyer",
  7536. height: math.unit(12000, "miles")
  7537. },
  7538. {
  7539. name: "Galaxy Conqueror",
  7540. height: math.unit(1.45, "zettameters"),
  7541. default: true
  7542. },
  7543. {
  7544. name: "Universal War",
  7545. height: math.unit(184, "gigaparsecs")
  7546. },
  7547. {
  7548. name: "Eternity War",
  7549. height: math.unit(1.98e55, "yottaparsecs")
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(5 + 8 / 12, "feet"),
  7558. weight: math.unit(63, "kg"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/xavier/front.svg",
  7562. extra: 944 / 883
  7563. }
  7564. },
  7565. frontStretch: {
  7566. height: math.unit(5 + 8 / 12, "feet"),
  7567. weight: math.unit(63, "kg"),
  7568. name: "Stretching",
  7569. image: {
  7570. source: "./media/characters/xavier/front-stretch.svg",
  7571. extra: 962 / 820
  7572. }
  7573. },
  7574. },
  7575. [
  7576. {
  7577. name: "Normal",
  7578. height: math.unit(5 + 8 / 12, "feet")
  7579. },
  7580. {
  7581. name: "Macro",
  7582. height: math.unit(100, "meters"),
  7583. default: true
  7584. },
  7585. {
  7586. name: "McLargeHuge",
  7587. height: math.unit(10, "miles")
  7588. },
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7593. {
  7594. front: {
  7595. height: math.unit(5 + 5 / 12, "feet"),
  7596. weight: math.unit(150, "lb"),
  7597. name: "Front",
  7598. image: {
  7599. source: "./media/characters/joshii/front.svg"
  7600. }
  7601. },
  7602. foot: {
  7603. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7604. name: "Foot",
  7605. image: {
  7606. source: "./media/characters/joshii/foot.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Micro",
  7613. height: math.unit(2, "inches")
  7614. },
  7615. {
  7616. name: "Normal",
  7617. height: math.unit(5 + 5 / 12, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(785, "feet")
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(24.5, "miles")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7632. {
  7633. front: {
  7634. height: math.unit(6, "feet"),
  7635. weight: math.unit(150, "lb"),
  7636. name: "Front",
  7637. image: {
  7638. source: "./media/characters/goddess-elizabeth/front.svg",
  7639. extra: 1800 / 1525,
  7640. bottom: 0.005
  7641. }
  7642. },
  7643. foot: {
  7644. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7645. name: "Foot",
  7646. image: {
  7647. source: "./media/characters/goddess-elizabeth/foot.svg"
  7648. }
  7649. },
  7650. mouth: {
  7651. height: math.unit(6, "feet"),
  7652. name: "Mouth",
  7653. image: {
  7654. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(12, "feet")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(80, "miles"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(15000, "parsecs")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(5 + 9 / 12, "feet"),
  7679. weight: math.unit(144, "lb"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/kara/front.svg"
  7683. }
  7684. },
  7685. feet: {
  7686. height: math.unit(6 / 6.765, "feet"),
  7687. name: "Kara's Feet",
  7688. rename: true,
  7689. image: {
  7690. source: "./media/characters/kara/feet.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Normal",
  7697. height: math.unit(5 + 9 / 12, "feet")
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(174, "feet"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(18, "feet"),
  7711. weight: math.unit(4050, "lb"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/tyrone/front.svg",
  7715. extra: 2520 / 2402,
  7716. bottom: 0.025
  7717. }
  7718. },
  7719. },
  7720. [
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(18, "feet"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Macro",
  7728. height: math.unit(300, "feet")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(7 + 8 / 12, "feet"),
  7737. weight: math.unit(120, "lb"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/danny/front.svg",
  7741. extra: 1490 / 1350
  7742. }
  7743. },
  7744. back: {
  7745. height: math.unit(7 + 8 / 12, "feet"),
  7746. weight: math.unit(120, "lb"),
  7747. name: "Back",
  7748. image: {
  7749. source: "./media/characters/danny/back.svg",
  7750. extra: 1490 / 1350
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(7 + 8 / 12, "feet"),
  7758. default: true
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(3.5, "inches"),
  7767. weight: math.unit(19, "grams"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/mallow/front.svg",
  7771. extra: 471 / 431
  7772. }
  7773. },
  7774. back: {
  7775. height: math.unit(3.5, "inches"),
  7776. weight: math.unit(19, "grams"),
  7777. name: "Back",
  7778. image: {
  7779. source: "./media/characters/mallow/back.svg",
  7780. extra: 471 / 431
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(3.5, "inches"),
  7788. default: true
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(9, "feet"),
  7797. weight: math.unit(230, "kg"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/starry-aqua/front.svg"
  7801. }
  7802. },
  7803. back: {
  7804. height: math.unit(9, "feet"),
  7805. weight: math.unit(230, "kg"),
  7806. name: "Back",
  7807. image: {
  7808. source: "./media/characters/starry-aqua/back.svg"
  7809. }
  7810. },
  7811. hand: {
  7812. height: math.unit(9 * 0.1168, "feet"),
  7813. name: "Hand",
  7814. image: {
  7815. source: "./media/characters/starry-aqua/hand.svg"
  7816. }
  7817. },
  7818. foot: {
  7819. height: math.unit(9 * 0.18, "feet"),
  7820. name: "Foot",
  7821. image: {
  7822. source: "./media/characters/starry-aqua/foot.svg"
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(3, "inches")
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(9, "feet")
  7834. },
  7835. {
  7836. name: "Macro",
  7837. height: math.unit(300, "feet"),
  7838. default: true
  7839. },
  7840. {
  7841. name: "Megamacro",
  7842. height: math.unit(3200, "feet")
  7843. }
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(6, "feet"),
  7851. weight: math.unit(230, "lb"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/luka/front.svg",
  7855. extra: 1,
  7856. bottom: 0.025
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(12 + 8 / 12, "feet"),
  7864. default: true
  7865. },
  7866. {
  7867. name: "Minimacro",
  7868. height: math.unit(20, "feet")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(250, "feet")
  7873. },
  7874. {
  7875. name: "Megamacro",
  7876. height: math.unit(5, "miles")
  7877. },
  7878. {
  7879. name: "Gigamacro",
  7880. height: math.unit(8000, "miles")
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(6, "feet"),
  7889. weight: math.unit(150, "lb"),
  7890. name: "Front",
  7891. image: {
  7892. source: "./media/characters/natalie-nightring/front.svg",
  7893. extra: 1,
  7894. bottom: 0.06
  7895. }
  7896. },
  7897. },
  7898. [
  7899. {
  7900. name: "Uh Oh",
  7901. height: math.unit(0.1, "mm")
  7902. },
  7903. {
  7904. name: "Small",
  7905. height: math.unit(3, "inches")
  7906. },
  7907. {
  7908. name: "Human Scale",
  7909. height: math.unit(6, "feet")
  7910. },
  7911. {
  7912. name: "Librarian",
  7913. height: math.unit(50, "feet"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Immense",
  7918. height: math.unit(200, "miles")
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(180, "lbs"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/danni-rosie/front.svg",
  7931. extra: 1260 / 1128,
  7932. bottom: 0.022
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(2, "inches"),
  7940. default: true
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(5 + 9 / 12, "feet"),
  7949. weight: math.unit(220, "lb"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/samantha-kruse/front.svg",
  7953. extra: (985 / 935),
  7954. bottom: 0.03
  7955. }
  7956. },
  7957. frontUndressed: {
  7958. height: math.unit(5 + 9 / 12, "feet"),
  7959. weight: math.unit(220, "lb"),
  7960. name: "Front (Undressed)",
  7961. image: {
  7962. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7963. extra: (973 / 923),
  7964. bottom: 0.025
  7965. }
  7966. },
  7967. fat: {
  7968. height: math.unit(5 + 9 / 12, "feet"),
  7969. weight: math.unit(900, "lb"),
  7970. name: "Front (Fat)",
  7971. image: {
  7972. source: "./media/characters/samantha-kruse/fat.svg",
  7973. extra: 2688 / 2561
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Normal",
  7980. height: math.unit(5 + 9 / 12, "feet"),
  7981. default: true
  7982. }
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7987. {
  7988. back: {
  7989. height: math.unit(5 + 4 / 12, "feet"),
  7990. weight: math.unit(4963, "lb"),
  7991. name: "Back",
  7992. image: {
  7993. source: "./media/characters/amelia-rosie/back.svg",
  7994. extra: 1113 / 963,
  7995. bottom: 0.01
  7996. }
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "Level 0",
  8002. height: math.unit(5 + 4 / 12, "feet")
  8003. },
  8004. {
  8005. name: "Level 1",
  8006. height: math.unit(164597, "feet"),
  8007. default: true
  8008. },
  8009. {
  8010. name: "Level 2",
  8011. height: math.unit(956243, "miles")
  8012. },
  8013. {
  8014. name: "Level 3",
  8015. height: math.unit(29421709423, "miles")
  8016. },
  8017. {
  8018. name: "Level 4",
  8019. height: math.unit(154, "lightyears")
  8020. },
  8021. {
  8022. name: "Level 5",
  8023. height: math.unit(4738272, "lightyears")
  8024. },
  8025. {
  8026. name: "Level 6",
  8027. height: math.unit(145787152896, "lightyears")
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(5 + 11 / 12, "feet"),
  8036. weight: math.unit(65, "kg"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/rook-kitara/front.svg",
  8040. extra: 1347 / 1274,
  8041. bottom: 0.005
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Totally Unfair",
  8048. height: math.unit(1.8, "mm")
  8049. },
  8050. {
  8051. name: "Lap Rookie",
  8052. height: math.unit(1.4, "feet")
  8053. },
  8054. {
  8055. name: "Normal",
  8056. height: math.unit(5 + 11 / 12, "feet"),
  8057. default: true
  8058. },
  8059. {
  8060. name: "How Did This Happen",
  8061. height: math.unit(80, "miles")
  8062. }
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8067. {
  8068. front: {
  8069. height: math.unit(7, "feet"),
  8070. weight: math.unit(300, "lb"),
  8071. name: "Front",
  8072. image: {
  8073. source: "./media/characters/pisces/front.svg",
  8074. extra: 2255 / 2115,
  8075. bottom: 0.03
  8076. }
  8077. },
  8078. back: {
  8079. height: math.unit(7, "feet"),
  8080. weight: math.unit(300, "lb"),
  8081. name: "Back",
  8082. image: {
  8083. source: "./media/characters/pisces/back.svg",
  8084. extra: 2146 / 2055,
  8085. bottom: 0.04
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(7, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Swimming Pool",
  8097. height: math.unit(12.2, "meters")
  8098. },
  8099. {
  8100. name: "Olympic Swimming Pool",
  8101. height: math.unit(56.3, "meters")
  8102. },
  8103. {
  8104. name: "Lake Superior",
  8105. height: math.unit(93900, "meters")
  8106. },
  8107. {
  8108. name: "Mediterranean Sea",
  8109. height: math.unit(644457, "meters")
  8110. },
  8111. {
  8112. name: "World's Oceans",
  8113. height: math.unit(4567491, "meters")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(2.3, "meters"),
  8122. weight: math.unit(120, "kg"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/zelas/front.svg"
  8126. }
  8127. },
  8128. side: {
  8129. height: math.unit(2.3, "meters"),
  8130. weight: math.unit(120, "kg"),
  8131. name: "Side",
  8132. image: {
  8133. source: "./media/characters/zelas/side.svg"
  8134. }
  8135. },
  8136. back: {
  8137. height: math.unit(2.3, "meters"),
  8138. weight: math.unit(120, "kg"),
  8139. name: "Back",
  8140. image: {
  8141. source: "./media/characters/zelas/back.svg"
  8142. }
  8143. },
  8144. foot: {
  8145. height: math.unit(1.116, "feet"),
  8146. name: "Foot",
  8147. image: {
  8148. source: "./media/characters/zelas/foot.svg"
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(2.3, "meters")
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(30, "meters"),
  8160. default: true
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(1, "inch"),
  8169. weight: math.unit(0.21, "grams"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/talbot/front.svg",
  8173. extra: 594 / 544
  8174. }
  8175. },
  8176. },
  8177. [
  8178. {
  8179. name: "Micro",
  8180. height: math.unit(1, "inch"),
  8181. default: true
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8187. {
  8188. front: {
  8189. height: math.unit(3 + 3 / 12, "feet"),
  8190. weight: math.unit(51.8, "lb"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/fliss/front.svg",
  8194. extra: 840 / 640
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Teeny Tiny",
  8201. height: math.unit(1, "mm")
  8202. },
  8203. {
  8204. name: "Small",
  8205. height: math.unit(1, "inch"),
  8206. default: true
  8207. },
  8208. {
  8209. name: "Standard Sylveon",
  8210. height: math.unit(3 + 3 / 12, "feet")
  8211. },
  8212. {
  8213. name: "Large Nuisance",
  8214. height: math.unit(33, "feet")
  8215. },
  8216. {
  8217. name: "City Filler",
  8218. height: math.unit(3000, "feet")
  8219. },
  8220. {
  8221. name: "New Horizon",
  8222. height: math.unit(6000, "miles")
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(5, "cm"),
  8231. weight: math.unit(1.94, "g"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/fleta/front.svg",
  8235. extra: 835 / 803
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(5, "cm"),
  8240. weight: math.unit(1.94, "g"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/fleta/back.svg",
  8244. extra: 835 / 803
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Micro",
  8251. height: math.unit(5, "cm"),
  8252. default: true
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(6, "feet"),
  8261. weight: math.unit(225, "lb"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/dominic/front.svg",
  8265. extra: 1770 / 1620,
  8266. bottom: 0.025
  8267. }
  8268. },
  8269. back: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(225, "lb"),
  8272. name: "Back",
  8273. image: {
  8274. source: "./media/characters/dominic/back.svg",
  8275. extra: 1745 / 1620,
  8276. bottom: 0.065
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Nano",
  8283. height: math.unit(0.1, "mm")
  8284. },
  8285. {
  8286. name: "Micro-",
  8287. height: math.unit(1, "mm")
  8288. },
  8289. {
  8290. name: "Micro",
  8291. height: math.unit(4, "inches")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(6 + 4 / 12, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(115, "feet")
  8301. },
  8302. {
  8303. name: "Macro+",
  8304. height: math.unit(955, "feet")
  8305. },
  8306. {
  8307. name: "Megamacro",
  8308. height: math.unit(8990, "feet")
  8309. },
  8310. {
  8311. name: "Gigmacro",
  8312. height: math.unit(9310, "miles")
  8313. },
  8314. {
  8315. name: "Teramacro",
  8316. height: math.unit(1567005010, "miles")
  8317. },
  8318. {
  8319. name: "Examacro",
  8320. height: math.unit(1425, "parsecs")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(400, "feet"),
  8329. weight: math.unit(44444444, "lb"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/major-colonel/front.svg"
  8333. }
  8334. },
  8335. back: {
  8336. height: math.unit(400, "feet"),
  8337. weight: math.unit(44444444, "lb"),
  8338. name: "Back",
  8339. image: {
  8340. source: "./media/characters/major-colonel/back.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(400, "feet"),
  8348. default: true
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8354. {
  8355. catFront: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(120, "lb"),
  8358. name: "Front (Cat Side)",
  8359. image: {
  8360. source: "./media/characters/axel-lycan/cat-front.svg",
  8361. extra: 430 / 402,
  8362. bottom: 43 / 472.35
  8363. }
  8364. },
  8365. catBack: {
  8366. height: math.unit(6, "feet"),
  8367. weight: math.unit(120, "lb"),
  8368. name: "Back (Cat Side)",
  8369. image: {
  8370. source: "./media/characters/axel-lycan/cat-back.svg",
  8371. extra: 447 / 419,
  8372. bottom: 23.3 / 469
  8373. }
  8374. },
  8375. wolfFront: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(120, "lb"),
  8378. name: "Front (Wolf Side)",
  8379. image: {
  8380. source: "./media/characters/axel-lycan/wolf-front.svg",
  8381. extra: 485 / 456,
  8382. bottom: 19 / 504
  8383. }
  8384. },
  8385. wolfBack: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(120, "lb"),
  8388. name: "Back (Wolf Side)",
  8389. image: {
  8390. source: "./media/characters/axel-lycan/wolf-back.svg",
  8391. extra: 475 / 438,
  8392. bottom: 39.2 / 514
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(1, "km"),
  8400. default: true
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(5 + 9 / 12, "feet"),
  8409. weight: math.unit(175, "lb"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/vanrel-hyena/front.svg",
  8413. extra: 1086 / 1010,
  8414. bottom: 0.04
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Normal",
  8421. height: math.unit(5 + 9 / 12, "feet"),
  8422. default: true
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8428. {
  8429. front: {
  8430. height: math.unit(6, "feet"),
  8431. weight: math.unit(103, "lb"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/abbott-absol/front.svg",
  8435. extra: 2010 / 1842
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Megamicro",
  8442. height: math.unit(0.1, "mm")
  8443. },
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(1, "inch")
  8447. },
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(6, "feet"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(264, "lb"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/hector/front.svg",
  8464. extra: 2280 / 2130,
  8465. bottom: 0.07
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(12.25, "foot"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(160, "feet")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(150, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/sal/front.svg",
  8490. extra: 1846 / 1699,
  8491. bottom: 0.04
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(10, "miles"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8505. {
  8506. front: {
  8507. height: math.unit(3, "meters"),
  8508. weight: math.unit(450, "kg"),
  8509. name: "front",
  8510. image: {
  8511. source: "./media/characters/ranger/front.svg",
  8512. extra: 2401 / 2243,
  8513. bottom: 0.05
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(3, "meters"),
  8521. default: true
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(14, "feet"),
  8530. weight: math.unit(800, "kg"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/theresa/front.svg",
  8534. extra: 3575 / 3346,
  8535. bottom: 0.03
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(14, "feet"),
  8543. default: true
  8544. },
  8545. ]
  8546. ))
  8547. characterMakers.push(() => makeCharacter(
  8548. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8549. {
  8550. front: {
  8551. height: math.unit(6, "feet"),
  8552. weight: math.unit(3, "kg"),
  8553. name: "Front",
  8554. image: {
  8555. source: "./media/characters/ine/front.svg",
  8556. extra: 678 / 539,
  8557. bottom: 0.023
  8558. }
  8559. },
  8560. },
  8561. [
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(2.265, "feet"),
  8565. default: true
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(5, "feet"),
  8574. weight: math.unit(30, "kg"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/vial/front.svg",
  8578. extra: 1365 / 1277,
  8579. bottom: 0.04
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(5, "feet"),
  8587. default: true
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8593. {
  8594. side: {
  8595. height: math.unit(3.4, "meters"),
  8596. weight: math.unit(1000, "lb"),
  8597. name: "Side",
  8598. image: {
  8599. source: "./media/characters/rovoska/side.svg",
  8600. extra: 4403 / 1515
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(3.4, "meters"),
  8608. default: true
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(8, "feet"),
  8617. weight: math.unit(315, "lb"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/gunner-rotthbauer/front.svg"
  8621. }
  8622. },
  8623. back: {
  8624. height: math.unit(8, "feet"),
  8625. weight: math.unit(315, "lb"),
  8626. name: "Back",
  8627. image: {
  8628. source: "./media/characters/gunner-rotthbauer/back.svg"
  8629. }
  8630. },
  8631. },
  8632. [
  8633. {
  8634. name: "Micro",
  8635. height: math.unit(3.5, "inches")
  8636. },
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(8, "feet"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(250, "feet")
  8645. },
  8646. {
  8647. name: "Megamacro",
  8648. height: math.unit(1, "AU")
  8649. },
  8650. ]
  8651. ))
  8652. characterMakers.push(() => makeCharacter(
  8653. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8654. {
  8655. front: {
  8656. height: math.unit(5 + 5 / 12, "feet"),
  8657. weight: math.unit(140, "lb"),
  8658. name: "Front",
  8659. image: {
  8660. source: "./media/characters/allatia/front.svg",
  8661. extra: 1227 / 1180,
  8662. bottom: 0.027
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(5 + 5 / 12, "feet")
  8670. },
  8671. {
  8672. name: "Macro",
  8673. height: math.unit(250, "feet"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Megamacro",
  8678. height: math.unit(8, "miles")
  8679. }
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(6, "feet"),
  8687. weight: math.unit(120, "lb"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/tene/front.svg",
  8691. extra: 1728 / 1578,
  8692. bottom: 0.022
  8693. }
  8694. },
  8695. stomping: {
  8696. height: math.unit(2.025, "meters"),
  8697. weight: math.unit(120, "lb"),
  8698. name: "Stomping",
  8699. image: {
  8700. source: "./media/characters/tene/stomping.svg",
  8701. extra: 938 / 873,
  8702. bottom: 0.01
  8703. }
  8704. },
  8705. sitting: {
  8706. height: math.unit(1, "meter"),
  8707. weight: math.unit(120, "lb"),
  8708. name: "Sitting",
  8709. image: {
  8710. source: "./media/characters/tene/sitting.svg",
  8711. extra: 437 / 415,
  8712. bottom: 0.1
  8713. }
  8714. },
  8715. feral: {
  8716. height: math.unit(3.9, "feet"),
  8717. weight: math.unit(250, "lb"),
  8718. name: "Feral",
  8719. image: {
  8720. source: "./media/characters/tene/feral.svg",
  8721. extra: 717 / 458,
  8722. bottom: 0.179
  8723. }
  8724. },
  8725. },
  8726. [
  8727. {
  8728. name: "Normal",
  8729. height: math.unit(6, "feet")
  8730. },
  8731. {
  8732. name: "Macro",
  8733. height: math.unit(300, "feet"),
  8734. default: true
  8735. },
  8736. {
  8737. name: "Megamacro",
  8738. height: math.unit(5, "miles")
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8744. {
  8745. side: {
  8746. height: math.unit(6, "feet"),
  8747. name: "Side",
  8748. image: {
  8749. source: "./media/characters/evander/side.svg",
  8750. extra: 877 / 477
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(0.83, "meters"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(12, "feet"),
  8767. weight: math.unit(1000, "lb"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8771. extra: 1762 / 1611
  8772. }
  8773. },
  8774. back: {
  8775. height: math.unit(12, "feet"),
  8776. weight: math.unit(1000, "lb"),
  8777. name: "Back",
  8778. image: {
  8779. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8780. extra: 1762 / 1611
  8781. }
  8782. },
  8783. },
  8784. [
  8785. {
  8786. name: "Normal",
  8787. height: math.unit(12, "feet"),
  8788. default: true
  8789. },
  8790. {
  8791. name: "Kaiju",
  8792. height: math.unit(150, "feet")
  8793. },
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8798. {
  8799. front: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(150, "lb"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/zero-alurus/front.svg"
  8805. }
  8806. },
  8807. back: {
  8808. height: math.unit(6, "feet"),
  8809. weight: math.unit(150, "lb"),
  8810. name: "Back",
  8811. image: {
  8812. source: "./media/characters/zero-alurus/back.svg"
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5 + 10 / 12, "feet")
  8820. },
  8821. {
  8822. name: "Macro",
  8823. height: math.unit(60, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Macro+",
  8828. height: math.unit(450, "feet")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(200, "lb"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/mega-shi/front.svg",
  8841. extra: 1279 / 1250,
  8842. bottom: 0.02
  8843. }
  8844. },
  8845. back: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(200, "lb"),
  8848. name: "Back",
  8849. image: {
  8850. source: "./media/characters/mega-shi/back.svg",
  8851. extra: 1279 / 1250,
  8852. bottom: 0.02
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Micro",
  8859. height: math.unit(16 + 6 / 12, "feet")
  8860. },
  8861. {
  8862. name: "Third Dimension",
  8863. height: math.unit(40, "meters")
  8864. },
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(660, "feet"),
  8868. default: true
  8869. },
  8870. {
  8871. name: "Megamacro",
  8872. height: math.unit(10, "miles")
  8873. },
  8874. {
  8875. name: "Planetary Launch",
  8876. height: math.unit(500, "miles")
  8877. },
  8878. {
  8879. name: "Interstellar",
  8880. height: math.unit(1e9, "miles")
  8881. },
  8882. {
  8883. name: "Leaving the Universe",
  8884. height: math.unit(1, "gigaparsec")
  8885. },
  8886. {
  8887. name: "Travelling Universes",
  8888. height: math.unit(30e15, "parsecs")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(150, "lb"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/odyssey/front.svg",
  8901. extra: 1782 / 1582,
  8902. bottom: 0.01
  8903. }
  8904. },
  8905. side: {
  8906. height: math.unit(5.7, "feet"),
  8907. weight: math.unit(140, "lb"),
  8908. name: "Side",
  8909. image: {
  8910. source: "./media/characters/odyssey/side.svg",
  8911. extra: 6462 / 5700
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(5 + 4 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(1, "km")
  8923. },
  8924. {
  8925. name: "Megamacro",
  8926. height: math.unit(3000, "km")
  8927. },
  8928. {
  8929. name: "Gigamacro",
  8930. height: math.unit(1, "AU"),
  8931. default: true
  8932. },
  8933. {
  8934. name: "Omniversal",
  8935. height: math.unit(100e14, "lightyears")
  8936. },
  8937. ]
  8938. ))
  8939. characterMakers.push(() => makeCharacter(
  8940. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8941. {
  8942. front: {
  8943. height: math.unit(6, "feet"),
  8944. weight: math.unit(300, "lb"),
  8945. name: "Front",
  8946. image: {
  8947. source: "./media/characters/mekuto/front.svg",
  8948. extra: 921 / 832,
  8949. bottom: 0.03
  8950. }
  8951. },
  8952. hand: {
  8953. height: math.unit(6 / 10.24, "feet"),
  8954. name: "Hand",
  8955. image: {
  8956. source: "./media/characters/mekuto/hand.svg"
  8957. }
  8958. },
  8959. foot: {
  8960. height: math.unit(6 / 5.05, "feet"),
  8961. name: "Foot",
  8962. image: {
  8963. source: "./media/characters/mekuto/foot.svg"
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Minimicro",
  8970. height: math.unit(0.2, "inches")
  8971. },
  8972. {
  8973. name: "Micro",
  8974. height: math.unit(1.5, "inches")
  8975. },
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(5 + 11 / 12, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Minimacro",
  8983. height: math.unit(17 + 9 / 12, "feet")
  8984. },
  8985. {
  8986. name: "Macro",
  8987. height: math.unit(177.5, "feet")
  8988. },
  8989. {
  8990. name: "Megamacro",
  8991. height: math.unit(152, "miles")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  8997. {
  8998. front: {
  8999. height: math.unit(6.5, "inches"),
  9000. weight: math.unit(13, "oz"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/dafydd-tomos/front.svg",
  9004. extra: 2990 / 2603,
  9005. bottom: 0.03
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Micro",
  9012. height: math.unit(6.5, "inches"),
  9013. default: true
  9014. },
  9015. ]
  9016. ))
  9017. characterMakers.push(() => makeCharacter(
  9018. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9019. {
  9020. front: {
  9021. height: math.unit(6, "feet"),
  9022. weight: math.unit(150, "lb"),
  9023. name: "Front",
  9024. image: {
  9025. source: "./media/characters/splinter/front.svg",
  9026. extra: 2990 / 2882,
  9027. bottom: 0.04
  9028. }
  9029. },
  9030. back: {
  9031. height: math.unit(6, "feet"),
  9032. weight: math.unit(150, "lb"),
  9033. name: "Back",
  9034. image: {
  9035. source: "./media/characters/splinter/back.svg",
  9036. extra: 2990 / 2882,
  9037. bottom: 0.04
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Normal",
  9044. height: math.unit(6, "feet")
  9045. },
  9046. {
  9047. name: "Macro",
  9048. height: math.unit(230, "meters"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(4 + 10 / 12, "feet"),
  9058. weight: math.unit(480, "lb"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/snow-gabumon/front.svg",
  9062. extra: 1140 / 963,
  9063. bottom: 0.058
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(4 + 10 / 12, "feet"),
  9068. weight: math.unit(480, "lb"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/snow-gabumon/back.svg",
  9072. extra: 1115 / 962,
  9073. bottom: 0.041
  9074. }
  9075. },
  9076. frontUndresed: {
  9077. height: math.unit(4 + 10 / 12, "feet"),
  9078. weight: math.unit(480, "lb"),
  9079. name: "Front (Undressed)",
  9080. image: {
  9081. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9082. extra: 1061 / 960,
  9083. bottom: 0.045
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(1, "inch")
  9091. },
  9092. {
  9093. name: "Normal",
  9094. height: math.unit(4 + 10 / 12, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(200, "feet")
  9100. },
  9101. {
  9102. name: "Megamacro",
  9103. height: math.unit(120, "miles")
  9104. },
  9105. {
  9106. name: "Gigamacro",
  9107. height: math.unit(9800, "miles")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(1.7, "meters"),
  9116. weight: math.unit(140, "lb"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/moody/front.svg",
  9120. extra: 3226 / 3007,
  9121. bottom: 0.087
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Micro",
  9128. height: math.unit(1, "mm")
  9129. },
  9130. {
  9131. name: "Normal",
  9132. height: math.unit(1.7, "meters"),
  9133. default: true
  9134. },
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(80, "meters")
  9138. },
  9139. {
  9140. name: "Macro+",
  9141. height: math.unit(500, "meters")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(150, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/zyas/front.svg",
  9154. extra: 1180 / 1120,
  9155. bottom: 0.045
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(10, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(500, "feet")
  9168. },
  9169. {
  9170. name: "Megamacro",
  9171. height: math.unit(5, "miles")
  9172. },
  9173. {
  9174. name: "Teramacro",
  9175. height: math.unit(150000, "miles")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(150, "lb"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/cuon/front.svg",
  9188. extra: 1390 / 1320,
  9189. bottom: 0.008
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Micro",
  9196. height: math.unit(3, "inches")
  9197. },
  9198. {
  9199. name: "Normal",
  9200. height: math.unit(18 + 9 / 12, "feet"),
  9201. default: true
  9202. },
  9203. {
  9204. name: "Macro",
  9205. height: math.unit(360, "feet")
  9206. },
  9207. {
  9208. name: "Megamacro",
  9209. height: math.unit(360, "miles")
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(2.4, "meters"),
  9218. weight: math.unit(70, "kg"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/nyanuxk/front.svg",
  9222. extra: 1172 / 1084,
  9223. bottom: 0.065
  9224. }
  9225. },
  9226. side: {
  9227. height: math.unit(2.4, "meters"),
  9228. weight: math.unit(70, "kg"),
  9229. name: "Side",
  9230. image: {
  9231. source: "./media/characters/nyanuxk/side.svg",
  9232. extra: 1190 / 1132,
  9233. bottom: 0.007
  9234. }
  9235. },
  9236. back: {
  9237. height: math.unit(2.4, "meters"),
  9238. weight: math.unit(70, "kg"),
  9239. name: "Back",
  9240. image: {
  9241. source: "./media/characters/nyanuxk/back.svg",
  9242. extra: 1200 / 1141,
  9243. bottom: 0.015
  9244. }
  9245. },
  9246. foot: {
  9247. height: math.unit(0.52, "meters"),
  9248. name: "Foot",
  9249. image: {
  9250. source: "./media/characters/nyanuxk/foot.svg"
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Micro",
  9257. height: math.unit(2, "cm")
  9258. },
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(2.4, "meters"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Smaller Macro",
  9266. height: math.unit(120, "meters")
  9267. },
  9268. {
  9269. name: "Bigger Macro",
  9270. height: math.unit(1.2, "km")
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(15, "kilometers")
  9275. },
  9276. {
  9277. name: "Gigamacro",
  9278. height: math.unit(2000, "km")
  9279. },
  9280. {
  9281. name: "Teramacro",
  9282. height: math.unit(500000, "km")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9288. {
  9289. side: {
  9290. height: math.unit(6, "feet"),
  9291. name: "Side",
  9292. image: {
  9293. source: "./media/characters/ailbhe/side.svg",
  9294. extra: 757 / 464,
  9295. bottom: 0.041
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Normal",
  9302. height: math.unit(1.07, "meters"),
  9303. default: true
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9309. {
  9310. front: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(120, "kg"),
  9313. name: "Front",
  9314. image: {
  9315. source: "./media/characters/zevulfius/front.svg",
  9316. extra: 965 / 903
  9317. }
  9318. },
  9319. side: {
  9320. height: math.unit(6, "feet"),
  9321. weight: math.unit(120, "kg"),
  9322. name: "Side",
  9323. image: {
  9324. source: "./media/characters/zevulfius/side.svg",
  9325. extra: 939 / 900
  9326. }
  9327. },
  9328. back: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(120, "kg"),
  9331. name: "Back",
  9332. image: {
  9333. source: "./media/characters/zevulfius/back.svg",
  9334. extra: 918 / 854,
  9335. bottom: 0.005
  9336. }
  9337. },
  9338. foot: {
  9339. height: math.unit(6 / 3.72, "feet"),
  9340. name: "Foot",
  9341. image: {
  9342. source: "./media/characters/zevulfius/foot.svg"
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Macro",
  9349. height: math.unit(750, "meters")
  9350. },
  9351. {
  9352. name: "Megamacro",
  9353. height: math.unit(20, "km"),
  9354. default: true
  9355. },
  9356. {
  9357. name: "Gigamacro",
  9358. height: math.unit(2000, "km")
  9359. },
  9360. {
  9361. name: "Teramacro",
  9362. height: math.unit(250000, "km")
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(100, "feet"),
  9371. weight: math.unit(350, "kg"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/rikes/front.svg",
  9375. extra: 1565 / 1483,
  9376. bottom: 0.017
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(100, "feet"),
  9384. default: true
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9390. {
  9391. anthro: {
  9392. height: math.unit(8, "feet"),
  9393. weight: math.unit(120, "kg"),
  9394. name: "Anthro",
  9395. image: {
  9396. source: "./media/characters/adam-silver-mane/anthro.svg",
  9397. extra: 5743 / 5339,
  9398. bottom: 0.07
  9399. }
  9400. },
  9401. taur: {
  9402. height: math.unit(16, "feet"),
  9403. weight: math.unit(1500, "kg"),
  9404. name: "Taur",
  9405. image: {
  9406. source: "./media/characters/adam-silver-mane/taur.svg",
  9407. extra: 1713 / 1571,
  9408. bottom: 0.01
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(8, "feet")
  9416. },
  9417. {
  9418. name: "Minimacro",
  9419. height: math.unit(80, "feet")
  9420. },
  9421. {
  9422. name: "Macro",
  9423. height: math.unit(800, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Megamacro",
  9428. height: math.unit(8000, "feet")
  9429. },
  9430. {
  9431. name: "Gigamacro",
  9432. height: math.unit(800, "miles")
  9433. },
  9434. {
  9435. name: "Teramacro",
  9436. height: math.unit(80000, "miles")
  9437. },
  9438. {
  9439. name: "Celestial",
  9440. height: math.unit(8e6, "miles")
  9441. },
  9442. {
  9443. name: "Star Dragon",
  9444. height: math.unit(800000, "parsecs")
  9445. },
  9446. {
  9447. name: "Godly",
  9448. height: math.unit(800, "teraparsecs")
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9454. {
  9455. front: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(150, "lb"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/ky'owin/front.svg",
  9461. extra: 3888 / 3068,
  9462. bottom: 0.015
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(6 + 8 / 12, "feet")
  9470. },
  9471. {
  9472. name: "Large",
  9473. height: math.unit(68, "feet")
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(132, "feet")
  9478. },
  9479. {
  9480. name: "Macro+",
  9481. height: math.unit(340, "feet")
  9482. },
  9483. {
  9484. name: "Macro++",
  9485. height: math.unit(680, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Megamacro",
  9490. height: math.unit(1, "mile")
  9491. },
  9492. {
  9493. name: "Megamacro+",
  9494. height: math.unit(10, "miles")
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(4, "feet"),
  9503. weight: math.unit(50, "lb"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/mal/front.svg",
  9507. extra: 785 / 724,
  9508. bottom: 0.07
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Micro",
  9515. height: math.unit(4, "inches")
  9516. },
  9517. {
  9518. name: "Normal",
  9519. height: math.unit(4, "feet"),
  9520. default: true
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(200, "feet")
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9530. {
  9531. front: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(150, "lb"),
  9534. name: "Front",
  9535. image: {
  9536. source: "./media/characters/jordan-deware/front.svg",
  9537. extra: 1191 / 1012
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Nano",
  9544. height: math.unit(0.01, "mm")
  9545. },
  9546. {
  9547. name: "Minimicro",
  9548. height: math.unit(1, "mm")
  9549. },
  9550. {
  9551. name: "Micro",
  9552. height: math.unit(0.5, "inches")
  9553. },
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(4, "feet"),
  9557. default: true
  9558. },
  9559. {
  9560. name: "Minimacro",
  9561. height: math.unit(40, "meters")
  9562. },
  9563. {
  9564. name: "Small Macro",
  9565. height: math.unit(400, "meters")
  9566. },
  9567. {
  9568. name: "Macro",
  9569. height: math.unit(4, "miles")
  9570. },
  9571. {
  9572. name: "Megamacro",
  9573. height: math.unit(40, "miles")
  9574. },
  9575. {
  9576. name: "Megamacro+",
  9577. height: math.unit(400, "miles")
  9578. },
  9579. {
  9580. name: "Gigamacro",
  9581. height: math.unit(400000, "miles")
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9587. {
  9588. side: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(150, "lb"),
  9591. name: "Side",
  9592. image: {
  9593. source: "./media/characters/kimiko/side.svg",
  9594. extra: 600 / 358
  9595. }
  9596. },
  9597. },
  9598. [
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(15, "feet"),
  9602. default: true
  9603. },
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(220, "feet")
  9607. },
  9608. {
  9609. name: "Macro+",
  9610. height: math.unit(1450, "feet")
  9611. },
  9612. {
  9613. name: "Megamacro",
  9614. height: math.unit(11500, "feet")
  9615. },
  9616. {
  9617. name: "Gigamacro",
  9618. height: math.unit(9500, "miles")
  9619. },
  9620. {
  9621. name: "Teramacro",
  9622. height: math.unit(2208005005, "miles")
  9623. },
  9624. {
  9625. name: "Examacro",
  9626. height: math.unit(2750, "parsecs")
  9627. },
  9628. {
  9629. name: "Zettamacro",
  9630. height: math.unit(101500, "parsecs")
  9631. },
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9636. {
  9637. front: {
  9638. height: math.unit(6, "feet"),
  9639. weight: math.unit(70, "kg"),
  9640. name: "Front",
  9641. image: {
  9642. source: "./media/characters/andrew-sleepy/front.svg"
  9643. }
  9644. },
  9645. side: {
  9646. height: math.unit(6, "feet"),
  9647. weight: math.unit(70, "kg"),
  9648. name: "Side",
  9649. image: {
  9650. source: "./media/characters/andrew-sleepy/side.svg"
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Micro",
  9657. height: math.unit(1, "mm"),
  9658. default: true
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9664. {
  9665. front: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(150, "lb"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/judio/front.svg",
  9671. extra: 1258 / 1110
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(5 + 6 / 12, "feet")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(1000, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Megamacro",
  9687. height: math.unit(10, "miles")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(68, "kg"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/nomaxice/front.svg",
  9700. extra: 1498 / 1073,
  9701. bottom: 0.075
  9702. }
  9703. },
  9704. foot: {
  9705. height: math.unit(1.1, "feet"),
  9706. name: "Foot",
  9707. image: {
  9708. source: "./media/characters/nomaxice/foot.svg"
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Micro",
  9715. height: math.unit(8, "cm")
  9716. },
  9717. {
  9718. name: "Norm",
  9719. height: math.unit(1.82, "m")
  9720. },
  9721. {
  9722. name: "Norm+",
  9723. height: math.unit(8.8, "feet")
  9724. },
  9725. {
  9726. name: "Big",
  9727. height: math.unit(8, "meters"),
  9728. default: true
  9729. },
  9730. {
  9731. name: "Macro",
  9732. height: math.unit(18, "meters")
  9733. },
  9734. {
  9735. name: "Macro+",
  9736. height: math.unit(88, "meters")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(12, "feet"),
  9745. weight: math.unit(1.5, "tons"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/dydros/front.svg",
  9749. extra: 863 / 800,
  9750. bottom: 0.015
  9751. }
  9752. },
  9753. back: {
  9754. height: math.unit(12, "feet"),
  9755. weight: math.unit(1.5, "tons"),
  9756. name: "Back",
  9757. image: {
  9758. source: "./media/characters/dydros/back.svg",
  9759. extra: 900 / 843,
  9760. bottom: 0.005
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(12, "feet"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(100, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/riggi/front.svg",
  9781. extra: 5787 / 5303
  9782. }
  9783. },
  9784. hyper: {
  9785. height: math.unit(6 * 5 / 3, "feet"),
  9786. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9787. name: "Hyper",
  9788. image: {
  9789. source: "./media/characters/riggi/hyper.svg",
  9790. extra: 3595 / 3485
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Small Macro",
  9797. height: math.unit(50, "feet")
  9798. },
  9799. {
  9800. name: "Default",
  9801. height: math.unit(200, "feet"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Loom",
  9806. height: math.unit(10000, "feet")
  9807. },
  9808. {
  9809. name: "Cruising Altitude",
  9810. height: math.unit(30000, "feet")
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(100, "miles")
  9815. },
  9816. {
  9817. name: "Continent Sized",
  9818. height: math.unit(2800, "miles")
  9819. },
  9820. {
  9821. name: "Earth Sized",
  9822. height: math.unit(8000, "miles")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(250, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/alexi/front.svg",
  9835. extra: 3483 / 3291,
  9836. bottom: 0.04
  9837. }
  9838. },
  9839. back: {
  9840. height: math.unit(6, "feet"),
  9841. weight: math.unit(250, "lb"),
  9842. name: "Back",
  9843. image: {
  9844. source: "./media/characters/alexi/back.svg",
  9845. extra: 3533 / 3356,
  9846. bottom: 0.021
  9847. }
  9848. },
  9849. frontTransforming: {
  9850. height: math.unit(8.58, "feet"),
  9851. weight: math.unit(1300, "lb"),
  9852. name: "Transforming",
  9853. image: {
  9854. source: "./media/characters/alexi/front-transforming.svg",
  9855. extra: 437 / 409,
  9856. bottom: 19 / 458.66
  9857. }
  9858. },
  9859. frontTransformed: {
  9860. height: math.unit(12.5, "feet"),
  9861. weight: math.unit(4000, "lb"),
  9862. name: "Transformed",
  9863. image: {
  9864. source: "./media/characters/alexi/front-transformed.svg",
  9865. extra: 639 / 614,
  9866. bottom: 30.55 / 671
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(3, "meters"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Minimacro",
  9878. height: math.unit(30, "meters")
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(500, "meters")
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(9000, "km")
  9887. },
  9888. {
  9889. name: "Teramacro",
  9890. height: math.unit(384000, "km")
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(6, "feet"),
  9899. weight: math.unit(150, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/kayroo/front.svg",
  9903. extra: 1153 / 1038,
  9904. bottom: 0.06
  9905. }
  9906. },
  9907. foot: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(150, "lb"),
  9910. name: "Foot",
  9911. image: {
  9912. source: "./media/characters/kayroo/foot.svg"
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(8, "feet"),
  9920. default: true
  9921. },
  9922. {
  9923. name: "Minimacro",
  9924. height: math.unit(250, "feet")
  9925. },
  9926. {
  9927. name: "Macro",
  9928. height: math.unit(2800, "feet")
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(5200, "feet")
  9933. },
  9934. {
  9935. name: "Gigamacro",
  9936. height: math.unit(27000, "feet")
  9937. },
  9938. {
  9939. name: "Omega",
  9940. height: math.unit(45000, "feet")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(18, "feet"),
  9949. weight: math.unit(5800, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/rhys/front.svg",
  9953. extra: 3386 / 3090,
  9954. bottom: 0.07
  9955. }
  9956. },
  9957. },
  9958. [
  9959. {
  9960. name: "Normal",
  9961. height: math.unit(18, "feet"),
  9962. default: true
  9963. },
  9964. {
  9965. name: "Working Size",
  9966. height: math.unit(200, "feet")
  9967. },
  9968. {
  9969. name: "Demolition Size",
  9970. height: math.unit(2000, "feet")
  9971. },
  9972. {
  9973. name: "Maximum Licensed Size",
  9974. height: math.unit(5, "miles")
  9975. },
  9976. {
  9977. name: "Maximum Observed Size",
  9978. height: math.unit(10, "yottameters")
  9979. },
  9980. ]
  9981. ))
  9982. characterMakers.push(() => makeCharacter(
  9983. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9984. {
  9985. front: {
  9986. height: math.unit(6, "feet"),
  9987. weight: math.unit(250, "lb"),
  9988. name: "Front",
  9989. image: {
  9990. source: "./media/characters/toto/front.svg",
  9991. extra: 527 / 479,
  9992. bottom: 0.05
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Micro",
  9999. height: math.unit(3, "feet")
  10000. },
  10001. {
  10002. name: "Normal",
  10003. height: math.unit(10, "feet")
  10004. },
  10005. {
  10006. name: "Macro",
  10007. height: math.unit(150, "feet"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(1200, "feet")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "King", species: ["lion"], tags: ["anthro"] },
  10018. {
  10019. back: {
  10020. height: math.unit(6, "feet"),
  10021. weight: math.unit(150, "lb"),
  10022. name: "Back",
  10023. image: {
  10024. source: "./media/characters/king/back.svg"
  10025. }
  10026. },
  10027. },
  10028. [
  10029. {
  10030. name: "Micro",
  10031. height: math.unit(2, "inches")
  10032. },
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(8, "feet")
  10036. },
  10037. {
  10038. name: "Macro",
  10039. height: math.unit(200, "feet"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Megamacro",
  10044. height: math.unit(50, "miles")
  10045. },
  10046. ]
  10047. ))
  10048. characterMakers.push(() => makeCharacter(
  10049. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10050. {
  10051. anthro: {
  10052. height: math.unit(6 + 5 / 12, "feet"),
  10053. weight: math.unit(280, "lb"),
  10054. name: "Anthro",
  10055. image: {
  10056. source: "./media/characters/cordite/anthro.svg",
  10057. extra: 1986 / 1905,
  10058. bottom: 0.025
  10059. }
  10060. },
  10061. feral: {
  10062. height: math.unit(2, "feet"),
  10063. weight: math.unit(90, "lb"),
  10064. name: "Feral",
  10065. image: {
  10066. source: "./media/characters/cordite/feral.svg",
  10067. extra: 1260 / 755,
  10068. bottom: 0.05
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(6 + 5 / 12, "feet"),
  10076. default: true
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(6, "feet"),
  10085. weight: math.unit(150, "lb"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/pianostrong/front.svg",
  10089. extra: 6577 / 6254,
  10090. bottom: 0.02
  10091. }
  10092. },
  10093. side: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Side",
  10097. image: {
  10098. source: "./media/characters/pianostrong/side.svg",
  10099. extra: 6106 / 5730
  10100. }
  10101. },
  10102. back: {
  10103. height: math.unit(6, "feet"),
  10104. weight: math.unit(150, "lb"),
  10105. name: "Back",
  10106. image: {
  10107. source: "./media/characters/pianostrong/back.svg",
  10108. extra: 6085 / 5733,
  10109. bottom: 0.01
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Macro",
  10116. height: math.unit(100, "feet")
  10117. },
  10118. {
  10119. name: "Macro+",
  10120. height: math.unit(300, "feet"),
  10121. default: true
  10122. },
  10123. {
  10124. name: "Macro++",
  10125. height: math.unit(1000, "feet")
  10126. },
  10127. ]
  10128. ))
  10129. characterMakers.push(() => makeCharacter(
  10130. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10131. {
  10132. front: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(150, "lb"),
  10135. name: "Front",
  10136. image: {
  10137. source: "./media/characters/kona/front.svg",
  10138. extra: 2960 / 2629,
  10139. bottom: 0.005
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Normal",
  10146. height: math.unit(11 + 8 / 12, "feet")
  10147. },
  10148. {
  10149. name: "Macro",
  10150. height: math.unit(850, "feet"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Macro+",
  10155. height: math.unit(1.5, "km"),
  10156. default: true
  10157. },
  10158. {
  10159. name: "Megamacro",
  10160. height: math.unit(80, "miles")
  10161. },
  10162. {
  10163. name: "Gigamacro",
  10164. height: math.unit(3500, "miles")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10170. {
  10171. side: {
  10172. height: math.unit(1.9, "meters"),
  10173. weight: math.unit(326, "kg"),
  10174. name: "Side",
  10175. image: {
  10176. source: "./media/characters/levi/side.svg",
  10177. extra: 1704 / 1334,
  10178. bottom: 0.02
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(1.9, "meters"),
  10186. default: true
  10187. },
  10188. {
  10189. name: "Macro",
  10190. height: math.unit(20, "meters")
  10191. },
  10192. {
  10193. name: "Macro+",
  10194. height: math.unit(200, "meters")
  10195. },
  10196. {
  10197. name: "Megamacro",
  10198. height: math.unit(2, "km")
  10199. },
  10200. {
  10201. name: "Megamacro+",
  10202. height: math.unit(20, "km")
  10203. },
  10204. {
  10205. name: "Gigamacro",
  10206. height: math.unit(2500, "km")
  10207. },
  10208. {
  10209. name: "Gigamacro+",
  10210. height: math.unit(120000, "km")
  10211. },
  10212. {
  10213. name: "Teramacro",
  10214. height: math.unit(7.77e6, "km")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6 + 4 / 12, "feet"),
  10223. weight: math.unit(188, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/bmc/front.svg",
  10227. extra: 1067 / 1022,
  10228. bottom: 0.047
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Human-sized",
  10235. height: math.unit(6 + 4 / 12, "feet")
  10236. },
  10237. {
  10238. name: "Small",
  10239. height: math.unit(250, "feet")
  10240. },
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(1250, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Good Day",
  10248. height: math.unit(88, "miles")
  10249. },
  10250. {
  10251. name: "Largest Measured Size",
  10252. height: math.unit(11.2e6, "lightyears")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(20, "feet"),
  10261. weight: math.unit(2016, "kg"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/sven-the-kaiju/front.svg",
  10265. extra: 1479 / 1449,
  10266. bottom: 0.05
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Fairy",
  10273. height: math.unit(6, "inches")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(20, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Rampage",
  10282. height: math.unit(200, "feet")
  10283. },
  10284. {
  10285. name: "Archfey Forest Guardian",
  10286. height: math.unit(1, "mile")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(4, "meters"),
  10295. weight: math.unit(2, "tons"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/marik/front.svg",
  10299. extra: 1057 / 1003,
  10300. bottom: 0.08
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(4, "meters"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(20, "meters")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(50, "km")
  10317. },
  10318. {
  10319. name: "Gigamacro",
  10320. height: math.unit(100, "km")
  10321. },
  10322. {
  10323. name: "Alpha Macro",
  10324. height: math.unit(7.88e7, "yottameters")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(110, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/mel/front.svg",
  10337. extra: 736 / 617,
  10338. bottom: 0.017
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Pico",
  10345. height: math.unit(3, "pm")
  10346. },
  10347. {
  10348. name: "Nano",
  10349. height: math.unit(3, "nm")
  10350. },
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(0.3, "mm"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Micro+",
  10358. height: math.unit(3, "mm")
  10359. },
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(5 + 10.5 / 12, "feet")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10368. {
  10369. kaiju: {
  10370. height: math.unit(1.75, "meters"),
  10371. weight: math.unit(55, "kg"),
  10372. name: "Kaiju",
  10373. image: {
  10374. source: "./media/characters/lykonous/kaiju.svg",
  10375. extra: 1055 / 946,
  10376. bottom: 0.135
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(2.5, "meters"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Kaiju Dragon",
  10388. height: math.unit(60, "meters")
  10389. },
  10390. {
  10391. name: "Mega Kaiju",
  10392. height: math.unit(120, "km")
  10393. },
  10394. {
  10395. name: "Giga Kaiju",
  10396. height: math.unit(200, "megameters")
  10397. },
  10398. {
  10399. name: "Terra Kaiju",
  10400. height: math.unit(400, "gigameters")
  10401. },
  10402. {
  10403. name: "Kaiju Dragon God",
  10404. height: math.unit(13000, "exaparsecs")
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(150, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/blü/front.svg",
  10417. extra: 1883 / 1564,
  10418. bottom: 0.031
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(13, "feet"),
  10426. default: true
  10427. },
  10428. {
  10429. name: "Big Boi",
  10430. height: math.unit(150, "meters")
  10431. },
  10432. {
  10433. name: "Mini Stomper",
  10434. height: math.unit(300, "meters")
  10435. },
  10436. {
  10437. name: "Macro",
  10438. height: math.unit(1000, "meters")
  10439. },
  10440. {
  10441. name: "Megamacro",
  10442. height: math.unit(11000, "meters")
  10443. },
  10444. {
  10445. name: "Gigamacro",
  10446. height: math.unit(11000, "km")
  10447. },
  10448. {
  10449. name: "Teramacro",
  10450. height: math.unit(420000, "km")
  10451. },
  10452. {
  10453. name: "Examacro",
  10454. height: math.unit(120, "parsecs")
  10455. },
  10456. {
  10457. name: "God Tho",
  10458. height: math.unit(98000000000, "parsecs")
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10464. {
  10465. taurFront: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(200, "lb"),
  10468. name: "Taur (Front)",
  10469. image: {
  10470. source: "./media/characters/scales/taur-front.svg",
  10471. extra: 1,
  10472. bottom: 0.05
  10473. }
  10474. },
  10475. taurBack: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(200, "lb"),
  10478. name: "Taur (Back)",
  10479. image: {
  10480. source: "./media/characters/scales/taur-back.svg",
  10481. extra: 1,
  10482. bottom: 0.08
  10483. }
  10484. },
  10485. anthro: {
  10486. height: math.unit(6 * 7 / 12, "feet"),
  10487. weight: math.unit(100, "lb"),
  10488. name: "Anthro",
  10489. image: {
  10490. source: "./media/characters/scales/anthro.svg",
  10491. extra: 1,
  10492. bottom: 0.06
  10493. }
  10494. },
  10495. },
  10496. [
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(12, "feet"),
  10500. default: true
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(150, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/koragos/front.svg",
  10513. extra: 841 / 794,
  10514. bottom: 0.035
  10515. }
  10516. },
  10517. back: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(150, "lb"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/koragos/back.svg",
  10523. extra: 841 / 810,
  10524. bottom: 0.022
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Normal",
  10531. height: math.unit(6 + 11 / 12, "feet"),
  10532. default: true
  10533. },
  10534. {
  10535. name: "Macro",
  10536. height: math.unit(490, "feet")
  10537. },
  10538. {
  10539. name: "Megamacro",
  10540. height: math.unit(10, "miles")
  10541. },
  10542. {
  10543. name: "Gigamacro",
  10544. height: math.unit(50, "miles")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(250, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/xylrem/front.svg",
  10557. extra: 3323 / 3050,
  10558. bottom: 0.065
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Micro",
  10565. height: math.unit(4, "feet")
  10566. },
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(16, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(2720, "feet")
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(25000, "miles")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(8, "feet"),
  10587. weight: math.unit(250, "kg"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/ikideru/front.svg",
  10591. extra: 930 / 870,
  10592. bottom: 0.087
  10593. }
  10594. },
  10595. back: {
  10596. height: math.unit(8, "feet"),
  10597. weight: math.unit(250, "kg"),
  10598. name: "Back",
  10599. image: {
  10600. source: "./media/characters/ikideru/back.svg",
  10601. extra: 919 / 852,
  10602. bottom: 0.055
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Rare",
  10609. height: math.unit(8, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Playful Loom",
  10614. height: math.unit(80, "feet")
  10615. },
  10616. {
  10617. name: "City Leaner",
  10618. height: math.unit(230, "feet")
  10619. },
  10620. {
  10621. name: "Megamacro",
  10622. height: math.unit(2500, "feet")
  10623. },
  10624. {
  10625. name: "Gigamacro",
  10626. height: math.unit(26400, "feet")
  10627. },
  10628. {
  10629. name: "Tectonic Shifter",
  10630. height: math.unit(1.7, "megameters")
  10631. },
  10632. {
  10633. name: "Planet Carer",
  10634. height: math.unit(21, "megameters")
  10635. },
  10636. {
  10637. name: "God",
  10638. height: math.unit(11157.22, "parsecs")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10644. {
  10645. front: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(120, "lb"),
  10648. name: "Front",
  10649. image: {
  10650. source: "./media/characters/neo/front.svg"
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Micro",
  10657. height: math.unit(2, "inches"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Human Size",
  10662. height: math.unit(5 + 8 / 12, "feet")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(13 + 10 / 12, "feet"),
  10671. weight: math.unit(5320, "lb"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/chauncey-chantz/front.svg",
  10675. extra: 1587 / 1435,
  10676. bottom: 0.02
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(13 + 10 / 12, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(45, "feet")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(250, "miles")
  10693. },
  10694. {
  10695. name: "Planetary",
  10696. height: math.unit(10000, "miles")
  10697. },
  10698. {
  10699. name: "Galactic",
  10700. height: math.unit(40000, "parsecs")
  10701. },
  10702. {
  10703. name: "Universal",
  10704. height: math.unit(1, "yottameter")
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10710. {
  10711. front: {
  10712. height: math.unit(6, "feet"),
  10713. weight: math.unit(150, "lb"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/epifox/front.svg",
  10717. extra: 1,
  10718. bottom: 0.075
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Micro",
  10725. height: math.unit(6, "inches")
  10726. },
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(12, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Macro",
  10734. height: math.unit(3810, "feet")
  10735. },
  10736. {
  10737. name: "Megamacro",
  10738. height: math.unit(500, "miles")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(1.8796, "m"),
  10747. weight: math.unit(230, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/colin-t/front.svg",
  10751. extra: 1272 / 1193,
  10752. bottom: 0.07
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(0.571, "meters")
  10760. },
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(1.8796, "meters"),
  10764. default: true
  10765. },
  10766. {
  10767. name: "Tall",
  10768. height: math.unit(4, "meters")
  10769. },
  10770. {
  10771. name: "Macro",
  10772. height: math.unit(67.241, "meters")
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(371.856, "meters")
  10777. },
  10778. {
  10779. name: "Planetary",
  10780. height: math.unit(12631.5689, "km")
  10781. },
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10786. {
  10787. front: {
  10788. height: math.unit(1.85, "meters"),
  10789. weight: math.unit(80, "kg"),
  10790. name: "Front",
  10791. image: {
  10792. source: "./media/characters/matvei/front.svg",
  10793. extra: 614 / 594,
  10794. bottom: 0.01
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(1.85, "meters"),
  10802. default: true
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(5 + 9 / 12, "feet"),
  10811. weight: math.unit(70, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/quincy/front.svg",
  10815. extra: 3041 / 2751
  10816. }
  10817. },
  10818. back: {
  10819. height: math.unit(5 + 9 / 12, "feet"),
  10820. weight: math.unit(70, "lb"),
  10821. name: "Back",
  10822. image: {
  10823. source: "./media/characters/quincy/back.svg",
  10824. extra: 3041 / 2751
  10825. }
  10826. },
  10827. flying: {
  10828. height: math.unit(5 + 4 / 12, "feet"),
  10829. weight: math.unit(70, "lb"),
  10830. name: "Flying",
  10831. image: {
  10832. source: "./media/characters/quincy/flying.svg",
  10833. extra: 1044 / 930
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Micro",
  10840. height: math.unit(3, "cm")
  10841. },
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(5 + 9 / 12, "feet")
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(200, "meters"),
  10849. default: true
  10850. },
  10851. {
  10852. name: "Megamacro",
  10853. height: math.unit(1000, "meters")
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(4 + 7 / 12, "feet"),
  10862. weight: math.unit(150, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/vanrel/front.svg",
  10866. extra: 1,
  10867. bottom: 0.02
  10868. }
  10869. },
  10870. elemental: {
  10871. height: math.unit(3, "feet"),
  10872. weight: math.unit(150, "lb"),
  10873. name: "Elemental",
  10874. image: {
  10875. source: "./media/characters/vanrel/elemental.svg",
  10876. extra: 192.3 / 162.8,
  10877. bottom: 1.79 / 194.17
  10878. }
  10879. },
  10880. side: {
  10881. height: math.unit(4 + 7 / 12, "feet"),
  10882. weight: math.unit(150, "lb"),
  10883. name: "Side",
  10884. image: {
  10885. source: "./media/characters/vanrel/side.svg",
  10886. extra: 1,
  10887. bottom: 0.025
  10888. }
  10889. },
  10890. tome: {
  10891. height: math.unit(1.35, "feet"),
  10892. weight: math.unit(10, "lb"),
  10893. name: "Vanrel's Tome",
  10894. rename: true,
  10895. image: {
  10896. source: "./media/characters/vanrel/tome.svg"
  10897. }
  10898. },
  10899. beans: {
  10900. height: math.unit(0.89, "feet"),
  10901. name: "Beans",
  10902. image: {
  10903. source: "./media/characters/vanrel/beans.svg"
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(4 + 7 / 12, "feet"),
  10911. default: true
  10912. },
  10913. ]
  10914. ))
  10915. characterMakers.push(() => makeCharacter(
  10916. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10917. {
  10918. front: {
  10919. height: math.unit(7 + 5 / 12, "feet"),
  10920. weight: math.unit(150, "lb"),
  10921. name: "Front",
  10922. image: {
  10923. source: "./media/characters/kuiper-vanrel/front.svg",
  10924. extra: 1118 / 1068,
  10925. bottom: 0.09
  10926. }
  10927. },
  10928. foot: {
  10929. height: math.unit(0.55, "meters"),
  10930. name: "Foot",
  10931. image: {
  10932. source: "./media/characters/kuiper-vanrel/foot.svg",
  10933. }
  10934. },
  10935. battle: {
  10936. height: math.unit(6.824, "feet"),
  10937. weight: math.unit(150, "lb"),
  10938. name: "Battle",
  10939. image: {
  10940. source: "./media/characters/kuiper-vanrel/battle.svg",
  10941. extra: 1466 / 1327,
  10942. bottom: 29 / 1492.5
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(7 + 5 / 12, "feet"),
  10950. default: true
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(8 + 5 / 12, "feet"),
  10959. weight: math.unit(150, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/keset-vanrel/front.svg",
  10963. extra: 1150 / 1084,
  10964. bottom: 0.05
  10965. }
  10966. },
  10967. hand: {
  10968. height: math.unit(0.6, "meters"),
  10969. name: "Hand",
  10970. image: {
  10971. source: "./media/characters/keset-vanrel/hand.svg"
  10972. }
  10973. },
  10974. foot: {
  10975. height: math.unit(0.94978, "meters"),
  10976. name: "Foot",
  10977. image: {
  10978. source: "./media/characters/keset-vanrel/foot.svg"
  10979. }
  10980. },
  10981. battle: {
  10982. height: math.unit(7.408, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Battle",
  10985. image: {
  10986. source: "./media/characters/keset-vanrel/battle.svg",
  10987. extra: 1890 / 1386,
  10988. bottom: 73.28 / 1970
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(8 + 5 / 12, "feet"),
  10996. default: true
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(150, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/neos/front.svg",
  11009. extra: 1696 / 992,
  11010. bottom: 0.14
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(54, "cm"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro",
  11022. height: math.unit(100, "m")
  11023. },
  11024. {
  11025. name: "Megamacro",
  11026. height: math.unit(10, "km")
  11027. },
  11028. {
  11029. name: "Megamacro+",
  11030. height: math.unit(100, "km")
  11031. },
  11032. {
  11033. name: "Gigamacro",
  11034. height: math.unit(100, "Mm")
  11035. },
  11036. {
  11037. name: "Teramacro",
  11038. height: math.unit(100, "Gm")
  11039. },
  11040. {
  11041. name: "Examacro",
  11042. height: math.unit(100, "Em")
  11043. },
  11044. {
  11045. name: "Godly",
  11046. height: math.unit(10000, "Ym")
  11047. },
  11048. {
  11049. name: "Beyond Godly",
  11050. height: math.unit(10000000, "Ym")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11056. {
  11057. feminine: {
  11058. height: math.unit(5, "feet"),
  11059. weight: math.unit(100, "lb"),
  11060. name: "Feminine",
  11061. image: {
  11062. source: "./media/characters/sammy-mouse/feminine.svg",
  11063. extra: 2526 / 2425,
  11064. bottom: 0.123
  11065. }
  11066. },
  11067. masculine: {
  11068. height: math.unit(5, "feet"),
  11069. weight: math.unit(100, "lb"),
  11070. name: "Masculine",
  11071. image: {
  11072. source: "./media/characters/sammy-mouse/masculine.svg",
  11073. extra: 2526 / 2425,
  11074. bottom: 0.123
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Micro",
  11081. height: math.unit(5, "inches")
  11082. },
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(5, "feet"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Macro",
  11090. height: math.unit(60, "feet")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(4, "feet"),
  11099. weight: math.unit(50, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/kole/front.svg",
  11103. extra: 1423 / 1303,
  11104. bottom: 0.025
  11105. }
  11106. },
  11107. back: {
  11108. height: math.unit(4, "feet"),
  11109. weight: math.unit(50, "lb"),
  11110. name: "Back",
  11111. image: {
  11112. source: "./media/characters/kole/back.svg",
  11113. extra: 1426 / 1280,
  11114. bottom: 0.02
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Normal",
  11121. height: math.unit(4, "feet"),
  11122. default: true
  11123. },
  11124. ]
  11125. ))
  11126. characterMakers.push(() => makeCharacter(
  11127. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11128. {
  11129. front: {
  11130. height: math.unit(2 + 6 / 12, "feet"),
  11131. weight: math.unit(20, "lb"),
  11132. name: "Front",
  11133. image: {
  11134. source: "./media/characters/rufran/front.svg",
  11135. extra: 2041 / 1839,
  11136. bottom: 0.055
  11137. }
  11138. },
  11139. back: {
  11140. height: math.unit(2 + 6 / 12, "feet"),
  11141. weight: math.unit(20, "lb"),
  11142. name: "Back",
  11143. image: {
  11144. source: "./media/characters/rufran/back.svg",
  11145. extra: 2054 / 1839,
  11146. bottom: 0.01
  11147. }
  11148. },
  11149. hand: {
  11150. height: math.unit(0.2166, "meters"),
  11151. name: "Hand",
  11152. image: {
  11153. source: "./media/characters/rufran/hand.svg"
  11154. }
  11155. },
  11156. foot: {
  11157. height: math.unit(0.185, "meters"),
  11158. name: "Foot",
  11159. image: {
  11160. source: "./media/characters/rufran/foot.svg"
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Micro",
  11167. height: math.unit(1, "inch")
  11168. },
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(2 + 6 / 12, "feet"),
  11172. default: true
  11173. },
  11174. {
  11175. name: "Big",
  11176. height: math.unit(60, "feet")
  11177. },
  11178. {
  11179. name: "Macro",
  11180. height: math.unit(325, "feet")
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(0.3, "meters"),
  11189. weight: math.unit(3.5, "kg"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/chip/front.svg",
  11193. extra: 748 / 674
  11194. }
  11195. },
  11196. },
  11197. [
  11198. {
  11199. name: "Micro",
  11200. height: math.unit(1, "inch"),
  11201. default: true
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11207. {
  11208. side: {
  11209. height: math.unit(2.3, "meters"),
  11210. weight: math.unit(3500, "lb"),
  11211. name: "Side",
  11212. image: {
  11213. source: "./media/characters/torvid/side.svg",
  11214. extra: 1972 / 722,
  11215. bottom: 0.035
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(2.3, "meters"),
  11223. default: true
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(2, "meters"),
  11232. weight: math.unit(150.5, "kg"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/susan/front.svg",
  11236. extra: 693 / 635,
  11237. bottom: 0.05
  11238. }
  11239. },
  11240. },
  11241. [
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(505, "miles"),
  11245. default: true
  11246. },
  11247. ]
  11248. ))
  11249. characterMakers.push(() => makeCharacter(
  11250. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11251. {
  11252. front: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Front",
  11256. image: {
  11257. source: "./media/characters/raindrops/front.svg",
  11258. extra: 2655 / 2461,
  11259. bottom: 0.02
  11260. }
  11261. },
  11262. back: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Back",
  11266. image: {
  11267. source: "./media/characters/raindrops/back.svg",
  11268. extra: 2574 / 2400,
  11269. bottom: 0.03
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Micro",
  11276. height: math.unit(6, "inches")
  11277. },
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(6 + 2 / 12, "feet")
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(131, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(15, "miles")
  11290. },
  11291. {
  11292. name: "Gigamacro",
  11293. height: math.unit(4000, "miles")
  11294. },
  11295. {
  11296. name: "Teramacro",
  11297. height: math.unit(315000, "miles")
  11298. },
  11299. ]
  11300. ))
  11301. characterMakers.push(() => makeCharacter(
  11302. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11303. {
  11304. front: {
  11305. height: math.unit(2.794, "meters"),
  11306. weight: math.unit(325, "kg"),
  11307. name: "Front",
  11308. image: {
  11309. source: "./media/characters/tezwa/front.svg",
  11310. extra: 2083 / 1906,
  11311. bottom: 0.031
  11312. }
  11313. },
  11314. foot: {
  11315. height: math.unit(0.687, "meters"),
  11316. name: "Foot",
  11317. image: {
  11318. source: "./media/characters/tezwa/foot.svg"
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(9 + 2 / 12, "feet"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(58, "feet"),
  11335. weight: math.unit(89000, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/typhus/front.svg",
  11339. extra: 816 / 800,
  11340. bottom: 0.065
  11341. }
  11342. },
  11343. },
  11344. [
  11345. {
  11346. name: "Macro",
  11347. height: math.unit(58, "feet"),
  11348. default: true
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(12, "feet"),
  11357. weight: math.unit(6, "tonnes"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/lyra-von-wulf/front.svg",
  11361. extra: 1,
  11362. bottom: 0.10
  11363. }
  11364. },
  11365. frontMecha: {
  11366. height: math.unit(12, "feet"),
  11367. weight: math.unit(12, "tonnes"),
  11368. name: "Front (Mecha)",
  11369. image: {
  11370. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11371. extra: 1,
  11372. bottom: 0.042
  11373. }
  11374. },
  11375. maw: {
  11376. height: math.unit(2.2, "feet"),
  11377. name: "Maw",
  11378. image: {
  11379. source: "./media/characters/lyra-von-wulf/maw.svg"
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(12, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Classic",
  11391. height: math.unit(50, "feet")
  11392. },
  11393. {
  11394. name: "Macro",
  11395. height: math.unit(500, "feet")
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(1, "mile")
  11400. },
  11401. {
  11402. name: "Gigamacro",
  11403. height: math.unit(400, "miles")
  11404. },
  11405. {
  11406. name: "Teramacro",
  11407. height: math.unit(22000, "miles")
  11408. },
  11409. {
  11410. name: "Solarmacro",
  11411. height: math.unit(8600000, "miles")
  11412. },
  11413. {
  11414. name: "Galactic",
  11415. height: math.unit(1057000, "lightyears")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11421. {
  11422. front: {
  11423. height: math.unit(6 + 10 / 12, "feet"),
  11424. weight: math.unit(150, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/dixon/front.svg",
  11428. extra: 3361 / 3209,
  11429. bottom: 0.01
  11430. }
  11431. },
  11432. },
  11433. [
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(6 + 10 / 12, "feet"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Big",
  11441. height: math.unit(12, "meters")
  11442. },
  11443. {
  11444. name: "Macro",
  11445. height: math.unit(500, "meters")
  11446. },
  11447. {
  11448. name: "Megamacro",
  11449. height: math.unit(2, "km")
  11450. },
  11451. ]
  11452. ))
  11453. characterMakers.push(() => makeCharacter(
  11454. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11455. {
  11456. front: {
  11457. height: math.unit(185, "cm"),
  11458. weight: math.unit(68, "kg"),
  11459. name: "Front",
  11460. image: {
  11461. source: "./media/characters/kauko/front.svg",
  11462. extra: 1455 / 1421,
  11463. bottom: 0.03
  11464. }
  11465. },
  11466. back: {
  11467. height: math.unit(185, "cm"),
  11468. weight: math.unit(68, "kg"),
  11469. name: "Back",
  11470. image: {
  11471. source: "./media/characters/kauko/back.svg",
  11472. extra: 1455 / 1421,
  11473. bottom: 0.004
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(185, "cm"),
  11481. default: true
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11487. {
  11488. front: {
  11489. height: math.unit(6, "feet"),
  11490. weight: math.unit(150, "kg"),
  11491. name: "Front",
  11492. image: {
  11493. source: "./media/characters/varg/front.svg",
  11494. extra: 1108 / 1018,
  11495. bottom: 0.0375
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(5, "meters")
  11503. },
  11504. {
  11505. name: "Macro",
  11506. height: math.unit(200, "meters")
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(20, "kilometers")
  11511. },
  11512. {
  11513. name: "True Size",
  11514. height: math.unit(211, "km"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Gigamacro",
  11519. height: math.unit(1000, "km")
  11520. },
  11521. {
  11522. name: "Gigamacro+",
  11523. height: math.unit(8000, "km")
  11524. },
  11525. {
  11526. name: "Teramacro",
  11527. height: math.unit(1000000, "km")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(7 + 7 / 12, "feet"),
  11536. weight: math.unit(267, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/dayza/front.svg",
  11540. extra: 1262 / 1200,
  11541. bottom: 0.035
  11542. }
  11543. },
  11544. side: {
  11545. height: math.unit(7 + 7 / 12, "feet"),
  11546. weight: math.unit(267, "lb"),
  11547. name: "Side",
  11548. image: {
  11549. source: "./media/characters/dayza/side.svg",
  11550. extra: 1295 / 1245,
  11551. bottom: 0.05
  11552. }
  11553. },
  11554. back: {
  11555. height: math.unit(7 + 7 / 12, "feet"),
  11556. weight: math.unit(267, "lb"),
  11557. name: "Back",
  11558. image: {
  11559. source: "./media/characters/dayza/back.svg",
  11560. extra: 1241 / 1170
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(7 + 7 / 12, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(155, "feet")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(6 + 5 / 12, "feet"),
  11581. weight: math.unit(160, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/xanthos/front.svg",
  11585. extra: 1,
  11586. bottom: 0.04
  11587. }
  11588. },
  11589. back: {
  11590. height: math.unit(6 + 5 / 12, "feet"),
  11591. weight: math.unit(160, "lb"),
  11592. name: "Back",
  11593. image: {
  11594. source: "./media/characters/xanthos/back.svg",
  11595. extra: 1,
  11596. bottom: 0.03
  11597. }
  11598. },
  11599. hand: {
  11600. height: math.unit(0.928, "feet"),
  11601. name: "Hand",
  11602. image: {
  11603. source: "./media/characters/xanthos/hand.svg"
  11604. }
  11605. },
  11606. foot: {
  11607. height: math.unit(1.286, "feet"),
  11608. name: "Foot",
  11609. image: {
  11610. source: "./media/characters/xanthos/foot.svg"
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Normal",
  11617. height: math.unit(6 + 5 / 12, "feet"),
  11618. default: true
  11619. },
  11620. {
  11621. name: "Normal+",
  11622. height: math.unit(6, "meters")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(40, "feet")
  11627. },
  11628. {
  11629. name: "Macro+",
  11630. height: math.unit(200, "meters")
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(20, "km")
  11635. },
  11636. {
  11637. name: "Megamacro+",
  11638. height: math.unit(100, "km")
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(6 + 3 / 12, "feet"),
  11647. weight: math.unit(215, "lb"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/grynn/front.svg",
  11651. extra: 4627 / 4209,
  11652. bottom: 0.047
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Micro",
  11659. height: math.unit(6, "inches")
  11660. },
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(6 + 3 / 12, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Big",
  11668. height: math.unit(104, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(944, "feet")
  11673. },
  11674. {
  11675. name: "Macro+",
  11676. height: math.unit(9480, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(78752, "feet")
  11681. },
  11682. {
  11683. name: "Megamacro+",
  11684. height: math.unit(630128, "feet")
  11685. },
  11686. {
  11687. name: "Megamacro++",
  11688. height: math.unit(3150695, "feet")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(7 + 5 / 12, "feet"),
  11697. weight: math.unit(450, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/mocha-aura/front.svg",
  11701. extra: 1907 / 1817,
  11702. bottom: 0.04
  11703. }
  11704. },
  11705. back: {
  11706. height: math.unit(7 + 5 / 12, "feet"),
  11707. weight: math.unit(450, "lb"),
  11708. name: "Back",
  11709. image: {
  11710. source: "./media/characters/mocha-aura/back.svg",
  11711. extra: 1900 / 1825,
  11712. bottom: 0.045
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Nano",
  11719. height: math.unit(1, "nm")
  11720. },
  11721. {
  11722. name: "Megamicro",
  11723. height: math.unit(1, "mm")
  11724. },
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(3, "inches")
  11728. },
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(7 + 5 / 12, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(30, "feet")
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(3500, "feet")
  11741. },
  11742. {
  11743. name: "Teramacro",
  11744. height: math.unit(500000, "miles")
  11745. },
  11746. {
  11747. name: "Petamacro",
  11748. height: math.unit(50000000000000000, "parsecs")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(6, "feet"),
  11757. weight: math.unit(150, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/ilisha-devya/front.svg",
  11761. extra: 1,
  11762. bottom: 0.175
  11763. }
  11764. },
  11765. back: {
  11766. height: math.unit(6, "feet"),
  11767. weight: math.unit(150, "lb"),
  11768. name: "Back",
  11769. image: {
  11770. source: "./media/characters/ilisha-devya/back.svg",
  11771. extra: 1,
  11772. bottom: 0.015
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(500, "feet"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Megamacro",
  11784. height: math.unit(10, "miles")
  11785. },
  11786. {
  11787. name: "Gigamacro",
  11788. height: math.unit(100000, "miles")
  11789. },
  11790. {
  11791. name: "Examacro",
  11792. height: math.unit(1e9, "lightyears")
  11793. },
  11794. {
  11795. name: "Omniversal",
  11796. height: math.unit(1e33, "lightyears")
  11797. },
  11798. {
  11799. name: "Beyond Infinite",
  11800. height: math.unit(1e100, "lightyears")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11806. {
  11807. Side: {
  11808. height: math.unit(6, "feet"),
  11809. weight: math.unit(150, "lb"),
  11810. name: "Side",
  11811. image: {
  11812. source: "./media/characters/mira/side.svg",
  11813. extra: 900 / 799,
  11814. bottom: 0.02
  11815. }
  11816. },
  11817. },
  11818. [
  11819. {
  11820. name: "Human Size",
  11821. height: math.unit(6, "feet")
  11822. },
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(100, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Megamacro",
  11830. height: math.unit(10, "miles")
  11831. },
  11832. {
  11833. name: "Gigamacro",
  11834. height: math.unit(25000, "miles")
  11835. },
  11836. {
  11837. name: "Teramacro",
  11838. height: math.unit(300, "AU")
  11839. },
  11840. {
  11841. name: "Full Size",
  11842. height: math.unit(4.5e10, "lightyears")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11848. {
  11849. front: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(150, "lb"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/holly/front.svg",
  11855. extra: 639 / 606
  11856. }
  11857. },
  11858. back: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Back",
  11862. image: {
  11863. source: "./media/characters/holly/back.svg",
  11864. extra: 623 / 598
  11865. }
  11866. },
  11867. frontWorking: {
  11868. height: math.unit(6, "feet"),
  11869. weight: math.unit(150, "lb"),
  11870. name: "Front (Working)",
  11871. image: {
  11872. source: "./media/characters/holly/front-working.svg",
  11873. extra: 607 / 577,
  11874. bottom: 0.048
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(12 + 3 / 12, "feet"),
  11882. default: true
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/porter/front.svg",
  11895. extra: 1,
  11896. bottom: 0.01
  11897. }
  11898. },
  11899. frontRobes: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(150, "lb"),
  11902. name: "Front (Robes)",
  11903. image: {
  11904. source: "./media/characters/porter/front-robes.svg",
  11905. extra: 1.01,
  11906. bottom: 0.01
  11907. }
  11908. },
  11909. },
  11910. [
  11911. {
  11912. name: "Normal",
  11913. height: math.unit(11 + 9 / 12, "feet"),
  11914. default: true
  11915. },
  11916. ]
  11917. ))
  11918. characterMakers.push(() => makeCharacter(
  11919. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11920. {
  11921. legendary: {
  11922. height: math.unit(6, "feet"),
  11923. weight: math.unit(150, "lb"),
  11924. name: "Legendary",
  11925. image: {
  11926. source: "./media/characters/lucy/legendary.svg",
  11927. extra: 1355 / 1100,
  11928. bottom: 0.045
  11929. }
  11930. },
  11931. },
  11932. [
  11933. {
  11934. name: "Legendary",
  11935. height: math.unit(86882 * 2, "miles"),
  11936. default: true
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11942. {
  11943. front: {
  11944. height: math.unit(6, "feet"),
  11945. weight: math.unit(150, "lb"),
  11946. name: "Front",
  11947. image: {
  11948. source: "./media/characters/drusilla/front.svg",
  11949. extra: 678 / 635,
  11950. bottom: 0.03
  11951. }
  11952. },
  11953. back: {
  11954. height: math.unit(6, "feet"),
  11955. weight: math.unit(150, "lb"),
  11956. name: "Back",
  11957. image: {
  11958. source: "./media/characters/drusilla/back.svg",
  11959. extra: 678 / 635,
  11960. bottom: 0.005
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(100, "feet")
  11968. },
  11969. {
  11970. name: "Canon Height",
  11971. height: math.unit(2000, "feet"),
  11972. default: true
  11973. },
  11974. ]
  11975. ))
  11976. characterMakers.push(() => makeCharacter(
  11977. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11978. {
  11979. front: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(180, "lb"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/renard-thatch/front.svg",
  11985. extra: 2411 / 2275,
  11986. bottom: 0.01
  11987. }
  11988. },
  11989. frontPosing: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(180, "lb"),
  11992. name: "Front (Posing)",
  11993. image: {
  11994. source: "./media/characters/renard-thatch/front-posing.svg",
  11995. extra: 2381 / 2261,
  11996. bottom: 0.01
  11997. }
  11998. },
  11999. back: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(180, "lb"),
  12002. name: "Back",
  12003. image: {
  12004. source: "./media/characters/renard-thatch/back.svg",
  12005. extra: 2428 / 2288
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Micro",
  12012. height: math.unit(3, "inches")
  12013. },
  12014. {
  12015. name: "Default",
  12016. height: math.unit(6, "feet"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(75, "feet")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(1450, "feet"),
  12030. weight: math.unit(1.21e6, "tons"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/sekvra/front.svg",
  12034. extra: 1,
  12035. bottom: 0.03
  12036. }
  12037. },
  12038. frontClothed: {
  12039. height: math.unit(1450, "feet"),
  12040. weight: math.unit(1.21e6, "tons"),
  12041. name: "Front (Clothed)",
  12042. image: {
  12043. source: "./media/characters/sekvra/front-clothed.svg",
  12044. extra: 1,
  12045. bottom: 0.03
  12046. }
  12047. },
  12048. side: {
  12049. height: math.unit(1450, "feet"),
  12050. weight: math.unit(1.21e6, "tons"),
  12051. name: "Side",
  12052. image: {
  12053. source: "./media/characters/sekvra/side.svg",
  12054. extra: 1,
  12055. bottom: 0.025
  12056. }
  12057. },
  12058. back: {
  12059. height: math.unit(1450, "feet"),
  12060. weight: math.unit(1.21e6, "tons"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/sekvra/back.svg",
  12064. extra: 1,
  12065. bottom: 0.005
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Macro",
  12072. height: math.unit(1450, "feet"),
  12073. default: true
  12074. },
  12075. {
  12076. name: "Megamacro",
  12077. height: math.unit(15000, "feet")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12083. {
  12084. front: {
  12085. height: math.unit(6, "feet"),
  12086. weight: math.unit(150, "lb"),
  12087. name: "Front",
  12088. image: {
  12089. source: "./media/characters/carmine/front.svg",
  12090. extra: 1,
  12091. bottom: 0.035
  12092. }
  12093. },
  12094. frontArmor: {
  12095. height: math.unit(6, "feet"),
  12096. weight: math.unit(150, "lb"),
  12097. name: "Front (Armor)",
  12098. image: {
  12099. source: "./media/characters/carmine/front-armor.svg",
  12100. extra: 1,
  12101. bottom: 0.035
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Large",
  12108. height: math.unit(1, "mile")
  12109. },
  12110. {
  12111. name: "Huge",
  12112. height: math.unit(40, "miles"),
  12113. default: true
  12114. },
  12115. {
  12116. name: "Colossal",
  12117. height: math.unit(2500, "miles")
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12123. {
  12124. front: {
  12125. height: math.unit(6, "feet"),
  12126. weight: math.unit(150, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/elyssia/front.svg",
  12130. extra: 2201 / 2035,
  12131. bottom: 0.05
  12132. }
  12133. },
  12134. frontClothed: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Front (Clothed)",
  12138. image: {
  12139. source: "./media/characters/elyssia/front-clothed.svg",
  12140. extra: 2201 / 2035,
  12141. bottom: 0.05
  12142. }
  12143. },
  12144. back: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(150, "lb"),
  12147. name: "Back",
  12148. image: {
  12149. source: "./media/characters/elyssia/back.svg",
  12150. extra: 2201 / 2035,
  12151. bottom: 0.013
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Smaller",
  12158. height: math.unit(150, "feet")
  12159. },
  12160. {
  12161. name: "Standard",
  12162. height: math.unit(1400, "feet"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Distracted",
  12167. height: math.unit(15000, "feet")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(7 + 4 / 12, "feet"),
  12176. weight: math.unit(500, "lb"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/geno-maxwell/front.svg",
  12180. extra: 2207 / 2040,
  12181. bottom: 0.015
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Micro",
  12188. height: math.unit(3, "inches")
  12189. },
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(7 + 4 / 12, "feet"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(220, "feet")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(11, "miles")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(7 + 4 / 12, "feet"),
  12210. weight: math.unit(500, "lb"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/regena-maxwell/front.svg",
  12214. extra: 3115 / 2770,
  12215. bottom: 0.02
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(7 + 4 / 12, "feet"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(220, "feet")
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(11, "miles")
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(6, "feet"),
  12240. weight: math.unit(150, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12244. extra: 860 / 690,
  12245. bottom: 0.03
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Normal",
  12252. height: math.unit(1.7, "meters"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "lb"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/quilly/front.svg",
  12266. extra: 890 / 776
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Gigamacro",
  12273. height: math.unit(404090, "miles"),
  12274. default: true
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(7 + 8 / 12, "feet"),
  12283. weight: math.unit(350, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/tempest/front.svg",
  12287. extra: 1175 / 1086,
  12288. bottom: 0.02
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(7 + 8 / 12, "feet"),
  12296. default: true
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12302. {
  12303. side: {
  12304. height: math.unit(4 + 5 / 12, "feet"),
  12305. weight: math.unit(80, "lb"),
  12306. name: "Side",
  12307. image: {
  12308. source: "./media/characters/rodger/side.svg",
  12309. extra: 1235 / 1118
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Micro",
  12316. height: math.unit(1, "inch")
  12317. },
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(4 + 5 / 12, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Macro",
  12325. height: math.unit(120, "feet")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(6, "feet"),
  12334. weight: math.unit(150, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/danyel/front.svg",
  12338. extra: 1185 / 1123,
  12339. bottom: 0.05
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Shrunken",
  12346. height: math.unit(0.5, "mm")
  12347. },
  12348. {
  12349. name: "Micro",
  12350. height: math.unit(1, "mm"),
  12351. default: true
  12352. },
  12353. {
  12354. name: "Upsized",
  12355. height: math.unit(5 + 5 / 12, "feet")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(5 + 6 / 12, "feet"),
  12364. weight: math.unit(200, "lb"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/vivian-bijoux/front.svg",
  12368. extra: 1,
  12369. bottom: 0.072
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(5 + 6 / 12, "feet"),
  12377. default: true
  12378. },
  12379. {
  12380. name: "Bad Dream",
  12381. height: math.unit(500, "feet")
  12382. },
  12383. {
  12384. name: "Nightmare",
  12385. height: math.unit(500, "miles")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(6 + 1 / 12, "feet"),
  12394. weight: math.unit(260, "lb"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/zeta/front.svg",
  12398. extra: 1968 / 1889,
  12399. bottom: 0.06
  12400. }
  12401. },
  12402. back: {
  12403. height: math.unit(6 + 1 / 12, "feet"),
  12404. weight: math.unit(260, "lb"),
  12405. name: "Back",
  12406. image: {
  12407. source: "./media/characters/zeta/back.svg",
  12408. extra: 1944 / 1858,
  12409. bottom: 0.03
  12410. }
  12411. },
  12412. hand: {
  12413. height: math.unit(1.112, "feet"),
  12414. name: "Hand",
  12415. image: {
  12416. source: "./media/characters/zeta/hand.svg"
  12417. }
  12418. },
  12419. foot: {
  12420. height: math.unit(1.48, "feet"),
  12421. name: "Foot",
  12422. image: {
  12423. source: "./media/characters/zeta/foot.svg"
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Micro",
  12430. height: math.unit(6, "inches")
  12431. },
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(6 + 1 / 12, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(20, "feet")
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(150, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/jamie-larsen/front.svg",
  12452. extra: 962 / 933,
  12453. bottom: 0.02
  12454. }
  12455. },
  12456. back: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(150, "lb"),
  12459. name: "Back",
  12460. image: {
  12461. source: "./media/characters/jamie-larsen/back.svg",
  12462. extra: 997 / 946
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Macro",
  12469. height: math.unit(28 + 7 / 12, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Macro+",
  12474. height: math.unit(180, "feet")
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(10, "miles")
  12479. },
  12480. {
  12481. name: "Gigamacro",
  12482. height: math.unit(200000, "miles")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(120, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/vance/front.svg",
  12495. extra: 1980 / 1890,
  12496. bottom: 0.09
  12497. }
  12498. },
  12499. back: {
  12500. height: math.unit(6, "feet"),
  12501. weight: math.unit(120, "lb"),
  12502. name: "Back",
  12503. image: {
  12504. source: "./media/characters/vance/back.svg",
  12505. extra: 2081 / 1994,
  12506. bottom: 0.014
  12507. }
  12508. },
  12509. hand: {
  12510. height: math.unit(0.88, "feet"),
  12511. name: "Hand",
  12512. image: {
  12513. source: "./media/characters/vance/hand.svg"
  12514. }
  12515. },
  12516. foot: {
  12517. height: math.unit(0.64, "feet"),
  12518. name: "Foot",
  12519. image: {
  12520. source: "./media/characters/vance/foot.svg"
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Small",
  12527. height: math.unit(90, "feet"),
  12528. default: true
  12529. },
  12530. {
  12531. name: "Macro",
  12532. height: math.unit(100, "meters")
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(15, "miles")
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(180, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/xochitl/front.svg",
  12549. extra: 2297 / 2261,
  12550. bottom: 0.065
  12551. }
  12552. },
  12553. back: {
  12554. height: math.unit(6, "feet"),
  12555. weight: math.unit(180, "lb"),
  12556. name: "Back",
  12557. image: {
  12558. source: "./media/characters/xochitl/back.svg",
  12559. extra: 2386 / 2354,
  12560. bottom: 0.01
  12561. }
  12562. },
  12563. foot: {
  12564. height: math.unit(6 / 5 * 1.15, "feet"),
  12565. weight: math.unit(150, "lb"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/xochitl/foot.svg"
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Macro",
  12575. height: math.unit(80, "feet")
  12576. },
  12577. {
  12578. name: "Macro+",
  12579. height: math.unit(400, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Gigamacro",
  12584. height: math.unit(80000, "miles")
  12585. },
  12586. {
  12587. name: "Gigamacro+",
  12588. height: math.unit(400000, "miles")
  12589. },
  12590. {
  12591. name: "Teramacro",
  12592. height: math.unit(300, "AU")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(6, "feet"),
  12601. weight: math.unit(150, "lb"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/vincent/front.svg",
  12605. extra: 1130 / 1080,
  12606. bottom: 0.055
  12607. }
  12608. },
  12609. beak: {
  12610. height: math.unit(6 * 0.1, "feet"),
  12611. name: "Beak",
  12612. image: {
  12613. source: "./media/characters/vincent/beak.svg"
  12614. }
  12615. },
  12616. hand: {
  12617. height: math.unit(6 * 0.85, "feet"),
  12618. weight: math.unit(150, "lb"),
  12619. name: "Hand",
  12620. image: {
  12621. source: "./media/characters/vincent/hand.svg"
  12622. }
  12623. },
  12624. foot: {
  12625. height: math.unit(6 * 0.19, "feet"),
  12626. weight: math.unit(150, "lb"),
  12627. name: "Foot",
  12628. image: {
  12629. source: "./media/characters/vincent/foot.svg"
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Base",
  12636. height: math.unit(6 + 5 / 12, "feet"),
  12637. default: true
  12638. },
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(300, "feet")
  12642. },
  12643. {
  12644. name: "Megamacro",
  12645. height: math.unit(2, "miles")
  12646. },
  12647. {
  12648. name: "Gigamacro",
  12649. height: math.unit(1000, "miles")
  12650. },
  12651. ]
  12652. ))
  12653. characterMakers.push(() => makeCharacter(
  12654. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12655. {
  12656. front: {
  12657. height: math.unit(6 + 2 / 12, "feet"),
  12658. weight: math.unit(265, "lb"),
  12659. name: "Front",
  12660. image: {
  12661. source: "./media/characters/jay/front.svg",
  12662. extra: 1510 / 1430,
  12663. bottom: 0.042
  12664. }
  12665. },
  12666. back: {
  12667. height: math.unit(6 + 2 / 12, "feet"),
  12668. weight: math.unit(265, "lb"),
  12669. name: "Back",
  12670. image: {
  12671. source: "./media/characters/jay/back.svg",
  12672. extra: 1510 / 1430,
  12673. bottom: 0.025
  12674. }
  12675. },
  12676. clothed: {
  12677. height: math.unit(6 + 2 / 12, "feet"),
  12678. weight: math.unit(265, "lb"),
  12679. name: "Front (Clothed)",
  12680. image: {
  12681. source: "./media/characters/jay/clothed.svg",
  12682. extra: 744 / 699,
  12683. bottom: 0.043
  12684. }
  12685. },
  12686. head: {
  12687. height: math.unit(1.772, "feet"),
  12688. name: "Head",
  12689. image: {
  12690. source: "./media/characters/jay/head.svg"
  12691. }
  12692. },
  12693. sizeRay: {
  12694. height: math.unit(1.331, "feet"),
  12695. name: "Size Ray",
  12696. image: {
  12697. source: "./media/characters/jay/size-ray.svg"
  12698. }
  12699. },
  12700. },
  12701. [
  12702. {
  12703. name: "Micro",
  12704. height: math.unit(1, "inch")
  12705. },
  12706. {
  12707. name: "Normal",
  12708. height: math.unit(6 + 2 / 12, "feet"),
  12709. default: true
  12710. },
  12711. {
  12712. name: "Macro",
  12713. height: math.unit(1, "mile")
  12714. },
  12715. {
  12716. name: "Megamacro",
  12717. height: math.unit(100, "miles")
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12723. {
  12724. front: {
  12725. height: math.unit(2, "meters"),
  12726. weight: math.unit(500, "kg"),
  12727. name: "Front",
  12728. image: {
  12729. source: "./media/characters/coatl/front.svg",
  12730. extra: 3948 / 3500,
  12731. bottom: 0.082
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Normal",
  12738. height: math.unit(4, "meters")
  12739. },
  12740. {
  12741. name: "Macro",
  12742. height: math.unit(100, "meters"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Macro+",
  12747. height: math.unit(300, "meters")
  12748. },
  12749. {
  12750. name: "Megamacro",
  12751. height: math.unit(3, "gigameters")
  12752. },
  12753. {
  12754. name: "Megamacro+",
  12755. height: math.unit(300, "terameters")
  12756. },
  12757. {
  12758. name: "Megamacro++",
  12759. height: math.unit(3, "lightyears")
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(50, "kg"),
  12769. name: "front",
  12770. image: {
  12771. source: "./media/characters/shiroryu/front.svg",
  12772. extra: 1990 / 1935
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Mortal Mingling",
  12779. height: math.unit(3, "meters")
  12780. },
  12781. {
  12782. name: "Kaiju-ish",
  12783. height: math.unit(250, "meters")
  12784. },
  12785. {
  12786. name: "Somewhat Godly",
  12787. height: math.unit(400, "km"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Planetary",
  12792. height: math.unit(300, "megameters")
  12793. },
  12794. {
  12795. name: "Galaxy-dwarfing",
  12796. height: math.unit(450, "kiloparsecs")
  12797. },
  12798. {
  12799. name: "Universe Eater",
  12800. height: math.unit(150, "gigaparsecs")
  12801. },
  12802. {
  12803. name: "Almost Immeasurable",
  12804. height: math.unit(1.3e266, "yottaparsecs")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/umeko/front.svg",
  12817. extra: 1,
  12818. bottom: 0.019
  12819. }
  12820. },
  12821. frontArmored: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Front (Armored)",
  12825. image: {
  12826. source: "./media/characters/umeko/front-armored.svg",
  12827. extra: 1,
  12828. bottom: 0.021
  12829. }
  12830. },
  12831. },
  12832. [
  12833. {
  12834. name: "Macro",
  12835. height: math.unit(220, "feet"),
  12836. default: true
  12837. },
  12838. {
  12839. name: "Guardian Dragon",
  12840. height: math.unit(50, "miles")
  12841. },
  12842. {
  12843. name: "Cosmic",
  12844. height: math.unit(800000, "miles")
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/cassidy/front.svg",
  12857. extra: 1,
  12858. bottom: 0.043
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Canon Height",
  12865. height: math.unit(120, "feet"),
  12866. default: true
  12867. },
  12868. {
  12869. name: "Macro+",
  12870. height: math.unit(400, "feet")
  12871. },
  12872. {
  12873. name: "Macro++",
  12874. height: math.unit(4000, "feet")
  12875. },
  12876. {
  12877. name: "Megamacro",
  12878. height: math.unit(3, "miles")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/isaac/front.svg",
  12891. extra: 896 / 815,
  12892. bottom: 0.11
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Human Size",
  12899. height: math.unit(8, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(400, "feet")
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(50, "miles")
  12909. },
  12910. {
  12911. name: "Canon Height",
  12912. height: math.unit(200, "AU")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(6, "feet"),
  12921. weight: math.unit(72, "kg"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/sleekit/front.svg",
  12925. extra: 4693 / 4487,
  12926. bottom: 0.012
  12927. }
  12928. },
  12929. },
  12930. [
  12931. {
  12932. name: "Minimum Height",
  12933. height: math.unit(10, "meters")
  12934. },
  12935. {
  12936. name: "Smaller",
  12937. height: math.unit(25, "meters")
  12938. },
  12939. {
  12940. name: "Larger",
  12941. height: math.unit(38, "meters"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Maximum height",
  12946. height: math.unit(100, "meters")
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(6, "feet"),
  12955. weight: math.unit(150, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/nillia/front.svg",
  12959. extra: 2195 / 2037,
  12960. bottom: 0.005
  12961. }
  12962. },
  12963. back: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(150, "lb"),
  12966. name: "Back",
  12967. image: {
  12968. source: "./media/characters/nillia/back.svg",
  12969. extra: 2195 / 2037,
  12970. bottom: 0.005
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Canon Height",
  12977. height: math.unit(489, "feet"),
  12978. default: true
  12979. }
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(6, "feet"),
  12987. weight: math.unit(150, "lb"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/mesmyriza/front.svg",
  12991. extra: 2067 / 1784,
  12992. bottom: 0.035
  12993. }
  12994. },
  12995. foot: {
  12996. height: math.unit(6 / (250 / 35), "feet"),
  12997. name: "Foot",
  12998. image: {
  12999. source: "./media/characters/mesmyriza/foot.svg"
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Macro",
  13006. height: math.unit(457, "meters"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(8, "megameters")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(6, "feet"),
  13020. weight: math.unit(250, "lb"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/saudade/front.svg",
  13024. extra: 1172 / 1139,
  13025. bottom: 0.035
  13026. }
  13027. },
  13028. },
  13029. [
  13030. {
  13031. name: "Micro",
  13032. height: math.unit(3, "inches")
  13033. },
  13034. {
  13035. name: "Normal",
  13036. height: math.unit(6, "feet"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Macro",
  13041. height: math.unit(50, "feet")
  13042. },
  13043. {
  13044. name: "Megamacro",
  13045. height: math.unit(2800, "feet")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(5 + 4 / 12, "feet"),
  13054. weight: math.unit(100, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/keireer/front.svg",
  13058. extra: 716 / 666,
  13059. bottom: 0.05
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(5 + 4 / 12, "feet"),
  13067. default: true
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13073. {
  13074. front: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(90, "kg"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/mirja/front.svg",
  13080. extra: 1789 / 1683,
  13081. bottom: 0.05
  13082. }
  13083. },
  13084. frontDressed: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(90, "lb"),
  13087. name: "Front (Dressed)",
  13088. image: {
  13089. source: "./media/characters/mirja/front-dressed.svg",
  13090. extra: 1789 / 1683,
  13091. bottom: 0.05
  13092. }
  13093. },
  13094. back: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(90, "lb"),
  13097. name: "Back",
  13098. image: {
  13099. source: "./media/characters/mirja/back.svg",
  13100. extra: 953 / 917,
  13101. bottom: 0.017
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "\"Incognito\"",
  13108. height: math.unit(3, "meters")
  13109. },
  13110. {
  13111. name: "Strolling Size",
  13112. height: math.unit(15, "km")
  13113. },
  13114. {
  13115. name: "Larger Strolling Size",
  13116. height: math.unit(400, "km")
  13117. },
  13118. {
  13119. name: "Preferred Size",
  13120. height: math.unit(5000, "km")
  13121. },
  13122. {
  13123. name: "True Size",
  13124. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13125. default: true
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(15, "feet"),
  13134. weight: math.unit(880, "kg"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/nightraver/front.svg",
  13138. extra: 2444 / 2160,
  13139. bottom: 0.027
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(15, "feet"),
  13144. weight: math.unit(880, "kg"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/nightraver/back.svg",
  13148. extra: 2309 / 2180,
  13149. bottom: 0.005
  13150. }
  13151. },
  13152. sole: {
  13153. height: math.unit(2.878, "feet"),
  13154. name: "Sole",
  13155. image: {
  13156. source: "./media/characters/nightraver/sole.svg"
  13157. }
  13158. },
  13159. foot: {
  13160. height: math.unit(2.285, "feet"),
  13161. name: "Foot",
  13162. image: {
  13163. source: "./media/characters/nightraver/foot.svg"
  13164. }
  13165. },
  13166. maw: {
  13167. height: math.unit(2.67, "feet"),
  13168. name: "Maw",
  13169. image: {
  13170. source: "./media/characters/nightraver/maw.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Micro",
  13177. height: math.unit(1, "cm")
  13178. },
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(15, "feet"),
  13182. default: true
  13183. },
  13184. {
  13185. name: "Macro",
  13186. height: math.unit(300, "feet")
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(300, "miles")
  13191. },
  13192. {
  13193. name: "Gigamacro",
  13194. height: math.unit(10000, "miles")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13200. {
  13201. side: {
  13202. height: math.unit(2, "inches"),
  13203. weight: math.unit(5, "grams"),
  13204. name: "Side",
  13205. image: {
  13206. source: "./media/characters/arc/side.svg"
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Micro",
  13213. height: math.unit(2, "inches"),
  13214. default: true
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(1.1938, "meters"),
  13223. weight: math.unit(54, "kg"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/nebula-shahar/front.svg",
  13227. extra: 1642 / 1436,
  13228. bottom: 0.06
  13229. }
  13230. },
  13231. },
  13232. [
  13233. {
  13234. name: "Megamicro",
  13235. height: math.unit(0.3, "mm")
  13236. },
  13237. {
  13238. name: "Micro",
  13239. height: math.unit(3, "cm")
  13240. },
  13241. {
  13242. name: "Normal",
  13243. height: math.unit(138, "cm"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(30, "m")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(5.24, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/shayla/front.svg",
  13261. extra: 1512 / 1414,
  13262. bottom: 0.01
  13263. }
  13264. },
  13265. back: {
  13266. height: math.unit(5.24, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Back",
  13269. image: {
  13270. source: "./media/characters/shayla/back.svg",
  13271. extra: 1512 / 1414
  13272. }
  13273. },
  13274. hand: {
  13275. height: math.unit(0.7781496062992126, "feet"),
  13276. name: "Hand",
  13277. image: {
  13278. source: "./media/characters/shayla/hand.svg"
  13279. }
  13280. },
  13281. foot: {
  13282. height: math.unit(1.4206036745406823, "feet"),
  13283. name: "Foot",
  13284. image: {
  13285. source: "./media/characters/shayla/foot.svg"
  13286. }
  13287. },
  13288. },
  13289. [
  13290. {
  13291. name: "Micro",
  13292. height: math.unit(0.32, "feet")
  13293. },
  13294. {
  13295. name: "Normal",
  13296. height: math.unit(5.24, "feet"),
  13297. default: true
  13298. },
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(492.12, "feet")
  13302. },
  13303. {
  13304. name: "Megamacro",
  13305. height: math.unit(186.41, "miles")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(2.2, "m"),
  13314. weight: math.unit(120, "kg"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/pia-jr/front.svg",
  13318. extra: 1000 / 970,
  13319. bottom: 0.035
  13320. }
  13321. },
  13322. hand: {
  13323. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13324. name: "Hand",
  13325. image: {
  13326. source: "./media/characters/pia-jr/hand.svg"
  13327. }
  13328. },
  13329. paw: {
  13330. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13331. name: "Paw",
  13332. image: {
  13333. source: "./media/characters/pia-jr/paw.svg"
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Micro",
  13340. height: math.unit(1.2, "cm")
  13341. },
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(2.2, "m"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(180, "m")
  13350. },
  13351. {
  13352. name: "Megamacro",
  13353. height: math.unit(420, "km")
  13354. },
  13355. ]
  13356. ))
  13357. characterMakers.push(() => makeCharacter(
  13358. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13359. {
  13360. front: {
  13361. height: math.unit(2, "m"),
  13362. weight: math.unit(115, "kg"),
  13363. name: "Front",
  13364. image: {
  13365. source: "./media/characters/pia-sr/front.svg",
  13366. extra: 760 / 730,
  13367. bottom: 0.015
  13368. }
  13369. },
  13370. back: {
  13371. height: math.unit(2, "m"),
  13372. weight: math.unit(115, "kg"),
  13373. name: "Back",
  13374. image: {
  13375. source: "./media/characters/pia-sr/back.svg",
  13376. extra: 760 / 730,
  13377. bottom: 0.01
  13378. }
  13379. },
  13380. hand: {
  13381. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13382. name: "Hand",
  13383. image: {
  13384. source: "./media/characters/pia-sr/hand.svg"
  13385. }
  13386. },
  13387. foot: {
  13388. height: math.unit(1.83, "feet"),
  13389. name: "Foot",
  13390. image: {
  13391. source: "./media/characters/pia-sr/foot.svg"
  13392. }
  13393. },
  13394. },
  13395. [
  13396. {
  13397. name: "Micro",
  13398. height: math.unit(88, "mm")
  13399. },
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(2, "m"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Macro",
  13407. height: math.unit(200, "m")
  13408. },
  13409. {
  13410. name: "Megamacro",
  13411. height: math.unit(420, "km")
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13417. {
  13418. front: {
  13419. height: math.unit(8 + 2 / 12, "feet"),
  13420. weight: math.unit(300, "lb"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/kibibyte/front.svg",
  13424. extra: 2221 / 2098,
  13425. bottom: 0.04
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(8 + 2 / 12, "feet"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Socialable Macro",
  13437. height: math.unit(50, "feet")
  13438. },
  13439. {
  13440. name: "Macro",
  13441. height: math.unit(300, "feet")
  13442. },
  13443. {
  13444. name: "Megamacro",
  13445. height: math.unit(500, "miles")
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(150, "lb"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/felix/front.svg",
  13458. extra: 762 / 722,
  13459. bottom: 0.02
  13460. }
  13461. },
  13462. frontClothed: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(150, "lb"),
  13465. name: "Front (Clothed)",
  13466. image: {
  13467. source: "./media/characters/felix/front-clothed.svg",
  13468. extra: 762 / 722,
  13469. bottom: 0.02
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(6 + 8 / 12, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(2600, "feet")
  13482. },
  13483. {
  13484. name: "Megamacro",
  13485. height: math.unit(450, "miles")
  13486. },
  13487. ]
  13488. ))
  13489. characterMakers.push(() => makeCharacter(
  13490. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13491. {
  13492. front: {
  13493. height: math.unit(6 + 1 / 12, "feet"),
  13494. weight: math.unit(250, "lb"),
  13495. name: "Front",
  13496. image: {
  13497. source: "./media/characters/tobo/front.svg",
  13498. extra: 608 / 586,
  13499. bottom: 0.023
  13500. }
  13501. },
  13502. back: {
  13503. height: math.unit(6 + 1 / 12, "feet"),
  13504. weight: math.unit(250, "lb"),
  13505. name: "Back",
  13506. image: {
  13507. source: "./media/characters/tobo/back.svg",
  13508. extra: 608 / 586
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Nano",
  13515. height: math.unit(2, "nm")
  13516. },
  13517. {
  13518. name: "Megamicro",
  13519. height: math.unit(0.1, "mm")
  13520. },
  13521. {
  13522. name: "Micro",
  13523. height: math.unit(1, "inch"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Human-sized",
  13528. height: math.unit(6 + 1 / 12, "feet")
  13529. },
  13530. {
  13531. name: "Macro",
  13532. height: math.unit(250, "feet")
  13533. },
  13534. {
  13535. name: "Megamacro",
  13536. height: math.unit(75, "miles")
  13537. },
  13538. {
  13539. name: "Texas-sized",
  13540. height: math.unit(750, "miles")
  13541. },
  13542. {
  13543. name: "Teramacro",
  13544. height: math.unit(50000, "miles")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(269, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/danny-kapowsky/front.svg",
  13557. extra: 766 / 736,
  13558. bottom: 0.044
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(6, "feet"),
  13563. weight: math.unit(269, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/danny-kapowsky/back.svg",
  13567. extra: 797 / 760,
  13568. bottom: 0.025
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Macro",
  13575. height: math.unit(150, "feet"),
  13576. default: true
  13577. },
  13578. {
  13579. name: "Macro+",
  13580. height: math.unit(200, "feet")
  13581. },
  13582. {
  13583. name: "Macro++",
  13584. height: math.unit(300, "feet")
  13585. },
  13586. {
  13587. name: "Macro+++",
  13588. height: math.unit(400, "feet")
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13594. {
  13595. side: {
  13596. height: math.unit(6, "feet"),
  13597. weight: math.unit(170, "lb"),
  13598. name: "Side",
  13599. image: {
  13600. source: "./media/characters/finn/side.svg",
  13601. extra: 1953 / 1807,
  13602. bottom: 0.057
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Megamacro",
  13609. height: math.unit(14445, "feet"),
  13610. default: true
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13616. {
  13617. front: {
  13618. height: math.unit(5 + 6 / 12, "feet"),
  13619. weight: math.unit(125, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/roy/front.svg",
  13623. extra: 1,
  13624. bottom: 0.11
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Micro",
  13631. height: math.unit(3, "inches"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Normal",
  13636. height: math.unit(5 + 6 / 12, "feet")
  13637. },
  13638. {
  13639. name: "Lesser Macro",
  13640. height: math.unit(60, "feet")
  13641. },
  13642. {
  13643. name: "Greater Macro",
  13644. height: math.unit(120, "feet")
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(100, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/aevsivs/front.svg",
  13657. extra: 1,
  13658. bottom: 0.03
  13659. }
  13660. },
  13661. back: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(100, "lb"),
  13664. name: "Back",
  13665. image: {
  13666. source: "./media/characters/aevsivs/back.svg"
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Micro",
  13673. height: math.unit(2, "inches"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(5, "feet")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(5 + 7 / 12, "feet"),
  13687. weight: math.unit(159, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/hildegard/front.svg",
  13691. extra: 312 / 286,
  13692. bottom: 0.005
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(5 + 7 / 12, "feet"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13706. {
  13707. bernard: {
  13708. height: math.unit(2 + 7 / 12, "feet"),
  13709. weight: math.unit(66, "lb"),
  13710. name: "Bernard",
  13711. rename: true,
  13712. image: {
  13713. source: "./media/characters/bernard-wilder/bernard.svg",
  13714. extra: 192 / 128,
  13715. bottom: 0.05
  13716. }
  13717. },
  13718. wilder: {
  13719. height: math.unit(5 + 8 / 12, "feet"),
  13720. weight: math.unit(143, "lb"),
  13721. name: "Wilder",
  13722. rename: true,
  13723. image: {
  13724. source: "./media/characters/bernard-wilder/wilder.svg",
  13725. extra: 361 / 312,
  13726. bottom: 0.02
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Normal",
  13733. height: math.unit(2 + 7 / 12, "feet"),
  13734. default: true
  13735. },
  13736. ]
  13737. ))
  13738. characterMakers.push(() => makeCharacter(
  13739. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13740. {
  13741. anthro: {
  13742. height: math.unit(6 + 1 / 12, "feet"),
  13743. weight: math.unit(155, "lb"),
  13744. name: "Anthro",
  13745. image: {
  13746. source: "./media/characters/hearth/anthro.svg",
  13747. extra: 260 / 250,
  13748. bottom: 0.02
  13749. }
  13750. },
  13751. feral: {
  13752. height: math.unit(3.78, "feet"),
  13753. weight: math.unit(35, "kg"),
  13754. name: "Feral",
  13755. image: {
  13756. source: "./media/characters/hearth/feral.svg",
  13757. extra: 153 / 135,
  13758. bottom: 0.03
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(6 + 1 / 12, "feet"),
  13766. default: true
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(182, "lb"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/ingrid/front.svg",
  13779. extra: 294 / 268,
  13780. bottom: 0.027
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(6, "feet"),
  13788. default: true
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13794. {
  13795. eevee: {
  13796. height: math.unit(2 + 10 / 12, "feet"),
  13797. weight: math.unit(86, "lb"),
  13798. name: "Malgam",
  13799. image: {
  13800. source: "./media/characters/malgam/eevee.svg",
  13801. extra: 218 / 180,
  13802. bottom: 0.2
  13803. }
  13804. },
  13805. sylveon: {
  13806. height: math.unit(4, "feet"),
  13807. weight: math.unit(101, "lb"),
  13808. name: "Future Malgam",
  13809. rename: true,
  13810. image: {
  13811. source: "./media/characters/malgam/sylveon.svg",
  13812. extra: 371 / 325,
  13813. bottom: 0.015
  13814. }
  13815. },
  13816. gigantamax: {
  13817. height: math.unit(50, "feet"),
  13818. name: "Gigantamax Malgam",
  13819. rename: true,
  13820. image: {
  13821. source: "./media/characters/malgam/gigantamax.svg"
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(2 + 10 / 12, "feet"),
  13829. default: true
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(5 + 11 / 12, "feet"),
  13838. weight: math.unit(188, "lb"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/fleur/front.svg",
  13842. extra: 309 / 283,
  13843. bottom: 0.007
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(5 + 11 / 12, "feet"),
  13851. default: true
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(5 + 4 / 12, "feet"),
  13860. weight: math.unit(122, "lb"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/jude/front.svg",
  13864. extra: 288 / 273,
  13865. bottom: 0.03
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Normal",
  13872. height: math.unit(5 + 4 / 12, "feet"),
  13873. default: true
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 11 / 12, "feet"),
  13882. weight: math.unit(190, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/seara/front.svg",
  13886. extra: 1,
  13887. bottom: 0.05
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Normal",
  13894. height: math.unit(5 + 11 / 12, "feet"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(16 + 5 / 12, "feet"),
  13904. weight: math.unit(524, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/caspian/front.svg",
  13908. extra: 1,
  13909. bottom: 0.04
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(16 + 5 / 12, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13923. {
  13924. front: {
  13925. height: math.unit(5 + 7 / 12, "feet"),
  13926. weight: math.unit(170, "lb"),
  13927. name: "Front",
  13928. image: {
  13929. source: "./media/characters/mika/front.svg",
  13930. extra: 1,
  13931. bottom: 0.016
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Normal",
  13938. height: math.unit(5 + 7 / 12, "feet"),
  13939. default: true
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(6 + 2 / 12, "feet"),
  13948. weight: math.unit(268, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/sol/front.svg",
  13952. extra: 247 / 231,
  13953. bottom: 0.05
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(6 + 2 / 12, "feet"),
  13961. default: true
  13962. },
  13963. ]
  13964. ))
  13965. characterMakers.push(() => makeCharacter(
  13966. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13967. {
  13968. buizel: {
  13969. height: math.unit(2 + 5 / 12, "feet"),
  13970. weight: math.unit(87, "lb"),
  13971. name: "Buizel",
  13972. image: {
  13973. source: "./media/characters/umiko/buizel.svg",
  13974. extra: 172 / 157,
  13975. bottom: 0.01
  13976. }
  13977. },
  13978. floatzel: {
  13979. height: math.unit(5 + 9 / 12, "feet"),
  13980. weight: math.unit(250, "lb"),
  13981. name: "Floatzel",
  13982. image: {
  13983. source: "./media/characters/umiko/floatzel.svg",
  13984. extra: 262 / 248
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(2 + 5 / 12, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(6 + 2 / 12, "feet"),
  14001. weight: math.unit(146, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/iliac/front.svg",
  14005. extra: 389 / 365,
  14006. bottom: 0.035
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(6 + 2 / 12, "feet"),
  14014. default: true
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(6, "feet"),
  14023. weight: math.unit(170, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/topaz/front.svg",
  14027. extra: 317 / 303,
  14028. bottom: 0.055
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Normal",
  14035. height: math.unit(6, "feet"),
  14036. default: true
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14042. {
  14043. front: {
  14044. height: math.unit(5 + 11 / 12, "feet"),
  14045. weight: math.unit(144, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/gabriel/front.svg",
  14049. extra: 285 / 262,
  14050. bottom: 0.004
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Normal",
  14057. height: math.unit(5 + 11 / 12, "feet"),
  14058. default: true
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14064. {
  14065. side: {
  14066. height: math.unit(6 + 5 / 12, "feet"),
  14067. weight: math.unit(300, "lb"),
  14068. name: "Side",
  14069. image: {
  14070. source: "./media/characters/tempest-suicune/side.svg",
  14071. extra: 195 / 154,
  14072. bottom: 0.04
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(6 + 5 / 12, "feet"),
  14080. default: true
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(7 + 2 / 12, "feet"),
  14089. weight: math.unit(322, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/vulcan/front.svg",
  14093. extra: 154 / 147,
  14094. bottom: 0.04
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(7 + 2 / 12, "feet"),
  14102. default: true
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(5 + 10 / 12, "feet"),
  14111. weight: math.unit(264, "lb"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/gault/front.svg",
  14115. extra: 161 / 140,
  14116. bottom: 0.028
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5 + 10 / 12, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(150, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/shard/front.svg",
  14137. extra: 273 / 238,
  14138. bottom: 0.02
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(3 + 6 / 12, "feet"),
  14146. default: true
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(5 + 11 / 12, "feet"),
  14155. weight: math.unit(146, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/ashe/front.svg",
  14159. extra: 400 / 373,
  14160. bottom: 0.01
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(5 + 11 / 12, "feet"),
  14168. default: true
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(5 + 5 / 12, "feet"),
  14177. weight: math.unit(135, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/beatrix/front.svg",
  14181. extra: 392 / 379,
  14182. bottom: 0.01
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(6, "feet"),
  14190. default: true
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(150, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/ignatius/front.svg",
  14203. extra: 245 / 222,
  14204. bottom: 0.01
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(5 + 5 / 12, "feet"),
  14212. default: true
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(6 + 2 / 12, "feet"),
  14221. weight: math.unit(138, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/mei-li/front.svg",
  14225. extra: 237 / 229,
  14226. bottom: 0.03
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(6 + 2 / 12, "feet"),
  14234. default: true
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(2 + 4 / 12, "feet"),
  14243. weight: math.unit(62, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/puru/front.svg",
  14247. extra: 206 / 149,
  14248. bottom: 0.06
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(2 + 4 / 12, "feet"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14262. {
  14263. taur: {
  14264. height: math.unit(11, "feet"),
  14265. weight: math.unit(500, "lb"),
  14266. name: "Taur",
  14267. image: {
  14268. source: "./media/characters/kee/taur.svg",
  14269. extra: 1,
  14270. bottom: 0.04
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Normal",
  14277. height: math.unit(11, "feet"),
  14278. default: true
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14284. {
  14285. anthro: {
  14286. height: math.unit(7, "feet"),
  14287. weight: math.unit(190, "lb"),
  14288. name: "Anthro",
  14289. image: {
  14290. source: "./media/characters/cobalt-dracha/anthro.svg",
  14291. extra: 231 / 225,
  14292. bottom: 0.04
  14293. }
  14294. },
  14295. feral: {
  14296. height: math.unit(9 + 7 / 12, "feet"),
  14297. weight: math.unit(294, "lb"),
  14298. name: "Feral",
  14299. image: {
  14300. source: "./media/characters/cobalt-dracha/feral.svg",
  14301. extra: 692 / 633,
  14302. bottom: 0.05
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(7, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14316. {
  14317. fallen: {
  14318. height: math.unit(11 + 8 / 12, "feet"),
  14319. weight: math.unit(485, "lb"),
  14320. name: "Java (Fallen)",
  14321. rename: true,
  14322. image: {
  14323. source: "./media/characters/java/fallen.svg",
  14324. extra: 226 / 208,
  14325. bottom: 0.005
  14326. }
  14327. },
  14328. godkin: {
  14329. height: math.unit(10 + 6 / 12, "feet"),
  14330. weight: math.unit(328, "lb"),
  14331. name: "Java (Godkin)",
  14332. rename: true,
  14333. image: {
  14334. source: "./media/characters/java/godkin.svg",
  14335. extra: 270 / 262,
  14336. bottom: 0.02
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Normal",
  14343. height: math.unit(11 + 8 / 12, "feet"),
  14344. default: true
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(7 + 8 / 12, "feet"),
  14353. weight: math.unit(320, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/skoll/front.svg",
  14357. extra: 232 / 220,
  14358. bottom: 0.02
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(7 + 8 / 12, "feet"),
  14366. default: true
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14372. {
  14373. front: {
  14374. height: math.unit(5 + 9 / 12, "feet"),
  14375. weight: math.unit(170, "lb"),
  14376. name: "Front",
  14377. image: {
  14378. source: "./media/characters/purna/front.svg",
  14379. extra: 239 / 229,
  14380. bottom: 0.01
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(5 + 9 / 12, "feet"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(5 + 9 / 12, "feet"),
  14397. weight: math.unit(142, "lb"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/kuva/front.svg",
  14401. extra: 281 / 271,
  14402. bottom: 0.006
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(5 + 9 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14416. {
  14417. anthro: {
  14418. height: math.unit(9 + 2 / 12, "feet"),
  14419. weight: math.unit(270, "lb"),
  14420. name: "Anthro",
  14421. image: {
  14422. source: "./media/characters/embra/anthro.svg",
  14423. extra: 200 / 187,
  14424. bottom: 0.02
  14425. }
  14426. },
  14427. feral: {
  14428. height: math.unit(18 + 8 / 12, "feet"),
  14429. weight: math.unit(576, "lb"),
  14430. name: "Feral",
  14431. image: {
  14432. source: "./media/characters/embra/feral.svg",
  14433. extra: 152 / 137,
  14434. bottom: 0.037
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(9 + 2 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14448. {
  14449. anthro: {
  14450. height: math.unit(10 + 9 / 12, "feet"),
  14451. weight: math.unit(224, "lb"),
  14452. name: "Anthro",
  14453. image: {
  14454. source: "./media/characters/grottos/anthro.svg",
  14455. extra: 350 / 332,
  14456. bottom: 0.045
  14457. }
  14458. },
  14459. feral: {
  14460. height: math.unit(20 + 7 / 12, "feet"),
  14461. weight: math.unit(629, "lb"),
  14462. name: "Feral",
  14463. image: {
  14464. source: "./media/characters/grottos/feral.svg",
  14465. extra: 207 / 190,
  14466. bottom: 0.05
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(10 + 9 / 12, "feet"),
  14474. default: true
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14480. {
  14481. anthro: {
  14482. height: math.unit(9 + 6 / 12, "feet"),
  14483. weight: math.unit(298, "lb"),
  14484. name: "Anthro",
  14485. image: {
  14486. source: "./media/characters/frifna/anthro.svg",
  14487. extra: 282 / 269,
  14488. bottom: 0.015
  14489. }
  14490. },
  14491. feral: {
  14492. height: math.unit(16 + 2 / 12, "feet"),
  14493. weight: math.unit(624, "lb"),
  14494. name: "Feral",
  14495. image: {
  14496. source: "./media/characters/frifna/feral.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(9 + 6 / 12, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6 + 2 / 12, "feet"),
  14513. weight: math.unit(168, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/elise/front.svg",
  14517. extra: 276 / 271
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(6 + 2 / 12, "feet"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(5 + 10 / 12, "feet"),
  14534. weight: math.unit(210, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/glade/front.svg",
  14538. extra: 258 / 247,
  14539. bottom: 0.008
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(5 + 10 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14553. {
  14554. front: {
  14555. height: math.unit(5 + 10 / 12, "feet"),
  14556. weight: math.unit(129, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/rina/front.svg",
  14560. extra: 266 / 255,
  14561. bottom: 0.005
  14562. }
  14563. },
  14564. },
  14565. [
  14566. {
  14567. name: "Normal",
  14568. height: math.unit(5 + 10 / 12, "feet"),
  14569. default: true
  14570. },
  14571. ]
  14572. ))
  14573. characterMakers.push(() => makeCharacter(
  14574. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14575. {
  14576. front: {
  14577. height: math.unit(6 + 1 / 12, "feet"),
  14578. weight: math.unit(192, "lb"),
  14579. name: "Front",
  14580. image: {
  14581. source: "./media/characters/veronica/front.svg",
  14582. extra: 319 / 309,
  14583. bottom: 0.005
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(6 + 1 / 12, "feet"),
  14591. default: true
  14592. },
  14593. ]
  14594. ))
  14595. characterMakers.push(() => makeCharacter(
  14596. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14597. {
  14598. front: {
  14599. height: math.unit(9 + 3 / 12, "feet"),
  14600. weight: math.unit(1100, "lb"),
  14601. name: "Front",
  14602. image: {
  14603. source: "./media/characters/braxton/front.svg",
  14604. extra: 1057 / 984,
  14605. bottom: 0.05
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Normal",
  14612. height: math.unit(9 + 3 / 12, "feet")
  14613. },
  14614. {
  14615. name: "Giant",
  14616. height: math.unit(300, "feet"),
  14617. default: true
  14618. },
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(700, "feet")
  14622. },
  14623. {
  14624. name: "Megamacro",
  14625. height: math.unit(6000, "feet")
  14626. },
  14627. ]
  14628. ))
  14629. characterMakers.push(() => makeCharacter(
  14630. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14631. {
  14632. front: {
  14633. height: math.unit(6 + 7 / 12, "feet"),
  14634. weight: math.unit(150, "lb"),
  14635. name: "Front",
  14636. image: {
  14637. source: "./media/characters/blue-feyonics/front.svg",
  14638. extra: 1403 / 1306,
  14639. bottom: 0.047
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Normal",
  14646. height: math.unit(6 + 7 / 12, "feet"),
  14647. default: true
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(1.8, "meters"),
  14656. weight: math.unit(60, "kg"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/maxwell/front.svg",
  14660. extra: 2060 / 1873
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Micro",
  14667. height: math.unit(1, "mm")
  14668. },
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(1.8, "meter"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Macro",
  14676. height: math.unit(30, "meters")
  14677. },
  14678. {
  14679. name: "Megamacro",
  14680. height: math.unit(10, "km")
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14686. {
  14687. front: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front",
  14691. image: {
  14692. source: "./media/characters/jack/front.svg",
  14693. extra: 1754 / 1640,
  14694. bottom: 0.01
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(80000, "feet"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Max size",
  14706. height: math.unit(10, "lightyears")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14712. {
  14713. upright: {
  14714. height: math.unit(7, "feet"),
  14715. weight: math.unit(170, "lb"),
  14716. name: "Upright",
  14717. image: {
  14718. source: "./media/characters/cafat/upright.svg",
  14719. bottom: 0.01
  14720. }
  14721. },
  14722. uprightFull: {
  14723. height: math.unit(7, "feet"),
  14724. weight: math.unit(170, "lb"),
  14725. name: "Upright (Full)",
  14726. image: {
  14727. source: "./media/characters/cafat/upright-full.svg",
  14728. bottom: 0.01
  14729. }
  14730. },
  14731. side: {
  14732. height: math.unit(5, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Side",
  14735. image: {
  14736. source: "./media/characters/cafat/side.svg"
  14737. }
  14738. },
  14739. },
  14740. [
  14741. {
  14742. name: "Small",
  14743. height: math.unit(7, "feet"),
  14744. default: true
  14745. },
  14746. {
  14747. name: "Large",
  14748. height: math.unit(15.5, "feet")
  14749. },
  14750. ]
  14751. ))
  14752. characterMakers.push(() => makeCharacter(
  14753. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14754. {
  14755. front: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Front",
  14759. image: {
  14760. source: "./media/characters/verin-raharra/front.svg",
  14761. extra: 5019 / 4835,
  14762. bottom: 0.023
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(7 + 5 / 12, "feet"),
  14770. default: true
  14771. },
  14772. {
  14773. name: "Upsized",
  14774. height: math.unit(20, "feet")
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(7, "feet"),
  14783. weight: math.unit(230, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/nakata/front.svg",
  14787. extra: 1.005,
  14788. bottom: 0.01
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(7, "feet"),
  14796. default: true
  14797. },
  14798. {
  14799. name: "Big",
  14800. height: math.unit(14, "feet")
  14801. },
  14802. {
  14803. name: "Macro",
  14804. height: math.unit(400, "feet")
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(4.91, "feet"),
  14813. weight: math.unit(100, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/lily/front.svg",
  14817. extra: 1585 / 1415,
  14818. bottom: 0.02
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(4.91, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14832. {
  14833. laying: {
  14834. height: math.unit(4 + 4 / 12, "feet"),
  14835. weight: math.unit(600, "lb"),
  14836. name: "Laying",
  14837. image: {
  14838. source: "./media/characters/sheila/laying.svg",
  14839. extra: 1333 / 1265,
  14840. bottom: 0.16
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(4 + 4 / 12, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(190, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/sax/front.svg",
  14861. extra: 1187 / 973,
  14862. bottom: 0.042
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Micro",
  14869. height: math.unit(4, "inches"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/pandora/front.svg",
  14883. extra: 2720 / 2556,
  14884. bottom: 0.015
  14885. }
  14886. },
  14887. back: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(150, "lb"),
  14890. name: "Back",
  14891. image: {
  14892. source: "./media/characters/pandora/back.svg",
  14893. extra: 2720 / 2556,
  14894. bottom: 0.01
  14895. }
  14896. },
  14897. beans: {
  14898. height: math.unit(6 / 8, "feet"),
  14899. name: "Beans",
  14900. image: {
  14901. source: "./media/characters/pandora/beans.svg"
  14902. }
  14903. },
  14904. skirt: {
  14905. height: math.unit(6, "feet"),
  14906. weight: math.unit(150, "lb"),
  14907. name: "Skirt",
  14908. image: {
  14909. source: "./media/characters/pandora/skirt.svg",
  14910. extra: 1622 / 1525,
  14911. bottom: 0.015
  14912. }
  14913. },
  14914. hoodie: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Hoodie",
  14918. image: {
  14919. source: "./media/characters/pandora/hoodie.svg",
  14920. extra: 1622 / 1525,
  14921. bottom: 0.015
  14922. }
  14923. },
  14924. casual: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Casual",
  14928. image: {
  14929. source: "./media/characters/pandora/casual.svg",
  14930. extra: 1622 / 1525,
  14931. bottom: 0.015
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(6, "feet")
  14939. },
  14940. {
  14941. name: "Big Steppy",
  14942. height: math.unit(1, "km"),
  14943. default: true
  14944. },
  14945. ]
  14946. ))
  14947. characterMakers.push(() => makeCharacter(
  14948. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14949. {
  14950. side: {
  14951. height: math.unit(10, "feet"),
  14952. weight: math.unit(800, "kg"),
  14953. name: "Side",
  14954. image: {
  14955. source: "./media/characters/venio-darcony/side.svg",
  14956. extra: 1373 / 1003,
  14957. bottom: 0.037
  14958. }
  14959. },
  14960. front: {
  14961. height: math.unit(19, "feet"),
  14962. weight: math.unit(800, "kg"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/venio-darcony/front.svg"
  14966. }
  14967. },
  14968. back: {
  14969. height: math.unit(19, "feet"),
  14970. weight: math.unit(800, "kg"),
  14971. name: "Back",
  14972. image: {
  14973. source: "./media/characters/venio-darcony/back.svg"
  14974. }
  14975. },
  14976. sideNsfw: {
  14977. height: math.unit(10, "feet"),
  14978. weight: math.unit(800, "kg"),
  14979. name: "Side (NSFW)",
  14980. image: {
  14981. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14982. extra: 1373 / 1003,
  14983. bottom: 0.037
  14984. }
  14985. },
  14986. frontNsfw: {
  14987. height: math.unit(19, "feet"),
  14988. weight: math.unit(800, "kg"),
  14989. name: "Front (NSFW)",
  14990. image: {
  14991. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14992. }
  14993. },
  14994. backNsfw: {
  14995. height: math.unit(19, "feet"),
  14996. weight: math.unit(800, "kg"),
  14997. name: "Back (NSFW)",
  14998. image: {
  14999. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15000. }
  15001. },
  15002. sideArmored: {
  15003. height: math.unit(10, "feet"),
  15004. weight: math.unit(800, "kg"),
  15005. name: "Side (Armored)",
  15006. image: {
  15007. source: "./media/characters/venio-darcony/side-armored.svg",
  15008. extra: 1373 / 1003,
  15009. bottom: 0.037
  15010. }
  15011. },
  15012. frontArmored: {
  15013. height: math.unit(19, "feet"),
  15014. weight: math.unit(900, "kg"),
  15015. name: "Front (Armored)",
  15016. image: {
  15017. source: "./media/characters/venio-darcony/front-armored.svg"
  15018. }
  15019. },
  15020. backArmored: {
  15021. height: math.unit(19, "feet"),
  15022. weight: math.unit(900, "kg"),
  15023. name: "Back (Armored)",
  15024. image: {
  15025. source: "./media/characters/venio-darcony/back-armored.svg"
  15026. }
  15027. },
  15028. sword: {
  15029. height: math.unit(10, "feet"),
  15030. weight: math.unit(50, "lb"),
  15031. name: "Sword",
  15032. image: {
  15033. source: "./media/characters/venio-darcony/sword.svg"
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(10, "feet")
  15041. },
  15042. {
  15043. name: "Macro",
  15044. height: math.unit(130, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Macro+",
  15049. height: math.unit(240, "feet")
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(150, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/veski/front.svg",
  15062. extra: 1299 / 1225,
  15063. bottom: 0.04
  15064. }
  15065. },
  15066. back: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(150, "lb"),
  15069. name: "Back",
  15070. image: {
  15071. source: "./media/characters/veski/back.svg",
  15072. extra: 1299 / 1225,
  15073. bottom: 0.008
  15074. }
  15075. },
  15076. maw: {
  15077. height: math.unit(1.5 * 1.21, "feet"),
  15078. name: "Maw",
  15079. image: {
  15080. source: "./media/characters/veski/maw.svg"
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Macro",
  15087. height: math.unit(2, "km"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(5 + 7 / 12, "feet"),
  15097. name: "Front",
  15098. image: {
  15099. source: "./media/characters/isabelle/front.svg",
  15100. extra: 2130 / 1976,
  15101. bottom: 0.05
  15102. }
  15103. },
  15104. },
  15105. [
  15106. {
  15107. name: "Supermicro",
  15108. height: math.unit(10, "micrometers")
  15109. },
  15110. {
  15111. name: "Micro",
  15112. height: math.unit(1, "inch")
  15113. },
  15114. {
  15115. name: "Tiny",
  15116. height: math.unit(5, "inches")
  15117. },
  15118. {
  15119. name: "Standard",
  15120. height: math.unit(5 + 7 / 12, "inches")
  15121. },
  15122. {
  15123. name: "Macro",
  15124. height: math.unit(80, "meters"),
  15125. default: true
  15126. },
  15127. {
  15128. name: "Megamacro",
  15129. height: math.unit(250, "meters")
  15130. },
  15131. {
  15132. name: "Gigamacro",
  15133. height: math.unit(5, "km")
  15134. },
  15135. {
  15136. name: "Cosmic",
  15137. height: math.unit(2.5e6, "miles")
  15138. },
  15139. ]
  15140. ))
  15141. characterMakers.push(() => makeCharacter(
  15142. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15143. {
  15144. front: {
  15145. height: math.unit(6, "feet"),
  15146. weight: math.unit(150, "lb"),
  15147. name: "Front",
  15148. image: {
  15149. source: "./media/characters/hanzo/front.svg",
  15150. extra: 374 / 344,
  15151. bottom: 0.02
  15152. }
  15153. },
  15154. },
  15155. [
  15156. {
  15157. name: "Normal",
  15158. height: math.unit(8, "feet"),
  15159. default: true
  15160. },
  15161. ]
  15162. ))
  15163. characterMakers.push(() => makeCharacter(
  15164. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15165. {
  15166. front: {
  15167. height: math.unit(7, "feet"),
  15168. weight: math.unit(130, "lb"),
  15169. name: "Front",
  15170. image: {
  15171. source: "./media/characters/anna/front.svg",
  15172. extra: 169 / 145,
  15173. bottom: 0.06
  15174. }
  15175. },
  15176. full: {
  15177. height: math.unit(4.96, "feet"),
  15178. weight: math.unit(220, "lb"),
  15179. name: "Full",
  15180. image: {
  15181. source: "./media/characters/anna/full.svg",
  15182. extra: 138 / 114,
  15183. bottom: 0.15
  15184. }
  15185. },
  15186. tongue: {
  15187. height: math.unit(2.53, "feet"),
  15188. name: "Tongue",
  15189. image: {
  15190. source: "./media/characters/anna/tongue.svg"
  15191. }
  15192. },
  15193. },
  15194. [
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(7, "feet"),
  15198. default: true
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15204. {
  15205. front: {
  15206. height: math.unit(7, "feet"),
  15207. weight: math.unit(150, "lb"),
  15208. name: "Front",
  15209. image: {
  15210. source: "./media/characters/ian-corvid/front.svg",
  15211. extra: 150 / 142,
  15212. bottom: 0.02
  15213. }
  15214. },
  15215. back: {
  15216. height: math.unit(7, "feet"),
  15217. weight: math.unit(150, "lb"),
  15218. name: "Back",
  15219. image: {
  15220. source: "./media/characters/ian-corvid/back.svg",
  15221. extra: 150 / 143,
  15222. bottom: 0.01
  15223. }
  15224. },
  15225. stomping: {
  15226. height: math.unit(7, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Stomping",
  15229. image: {
  15230. source: "./media/characters/ian-corvid/stomping.svg",
  15231. extra: 76 / 72
  15232. }
  15233. },
  15234. sitting: {
  15235. height: math.unit(7 / 1.8, "feet"),
  15236. weight: math.unit(150, "lb"),
  15237. name: "Sitting",
  15238. image: {
  15239. source: "./media/characters/ian-corvid/sitting.svg",
  15240. extra: 1400 / 1269,
  15241. bottom: 0.15
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Tiny Microw",
  15248. height: math.unit(1, "inch")
  15249. },
  15250. {
  15251. name: "Microw",
  15252. height: math.unit(6, "inches")
  15253. },
  15254. {
  15255. name: "Crow",
  15256. height: math.unit(7 + 1 / 12, "feet"),
  15257. default: true
  15258. },
  15259. {
  15260. name: "Macrow",
  15261. height: math.unit(176, "feet")
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15267. {
  15268. front: {
  15269. height: math.unit(5 + 7 / 12, "feet"),
  15270. weight: math.unit(147, "lb"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/natalie-kellon/front.svg",
  15274. extra: 1214 / 1141,
  15275. bottom: 0.02
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Micro",
  15282. height: math.unit(1 / 16, "inch")
  15283. },
  15284. {
  15285. name: "Tiny",
  15286. height: math.unit(4, "inches")
  15287. },
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(5 + 7 / 12, "feet"),
  15291. default: true
  15292. },
  15293. {
  15294. name: "Amazon",
  15295. height: math.unit(12, "feet")
  15296. },
  15297. {
  15298. name: "Giantess",
  15299. height: math.unit(160, "meters")
  15300. },
  15301. {
  15302. name: "Titaness",
  15303. height: math.unit(800, "meters")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15309. {
  15310. front: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(150, "lb"),
  15313. name: "Front",
  15314. image: {
  15315. source: "./media/characters/alluria/front.svg",
  15316. extra: 806 / 738,
  15317. bottom: 0.01
  15318. }
  15319. },
  15320. side: {
  15321. height: math.unit(6, "feet"),
  15322. weight: math.unit(150, "lb"),
  15323. name: "Side",
  15324. image: {
  15325. source: "./media/characters/alluria/side.svg",
  15326. extra: 800 / 750,
  15327. }
  15328. },
  15329. back: {
  15330. height: math.unit(6, "feet"),
  15331. weight: math.unit(150, "lb"),
  15332. name: "Back",
  15333. image: {
  15334. source: "./media/characters/alluria/back.svg",
  15335. extra: 806 / 738,
  15336. }
  15337. },
  15338. frontMaid: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front (Maid)",
  15342. image: {
  15343. source: "./media/characters/alluria/front-maid.svg",
  15344. extra: 806 / 738,
  15345. bottom: 0.01
  15346. }
  15347. },
  15348. sideMaid: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Side (Maid)",
  15352. image: {
  15353. source: "./media/characters/alluria/side-maid.svg",
  15354. extra: 800 / 750,
  15355. bottom: 0.005
  15356. }
  15357. },
  15358. backMaid: {
  15359. height: math.unit(6, "feet"),
  15360. weight: math.unit(150, "lb"),
  15361. name: "Back (Maid)",
  15362. image: {
  15363. source: "./media/characters/alluria/back-maid.svg",
  15364. extra: 806 / 738,
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Micro",
  15371. height: math.unit(6, "inches"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/kyle/front.svg",
  15385. extra: 1069 / 962,
  15386. bottom: 77.228 / 1727.45
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Macro",
  15393. height: math.unit(150, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(300, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/duncan/front.svg",
  15407. extra: 1650 / 1482,
  15408. bottom: 0.05
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Macro",
  15415. height: math.unit(100, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(5 + 4 / 12, "feet"),
  15425. weight: math.unit(220, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/memory/front.svg",
  15429. extra: 3641 / 3545,
  15430. bottom: 0.03
  15431. }
  15432. },
  15433. back: {
  15434. height: math.unit(5 + 4 / 12, "feet"),
  15435. weight: math.unit(220, "lb"),
  15436. name: "Back",
  15437. image: {
  15438. source: "./media/characters/memory/back.svg",
  15439. extra: 3641 / 3545,
  15440. bottom: 0.025
  15441. }
  15442. },
  15443. frontSkirt: {
  15444. height: math.unit(5 + 4 / 12, "feet"),
  15445. weight: math.unit(220, "lb"),
  15446. name: "Front (Skirt)",
  15447. image: {
  15448. source: "./media/characters/memory/front-skirt.svg",
  15449. extra: 3641 / 3545,
  15450. bottom: 0.03
  15451. }
  15452. },
  15453. frontDress: {
  15454. height: math.unit(5 + 4 / 12, "feet"),
  15455. weight: math.unit(220, "lb"),
  15456. name: "Front (Dress)",
  15457. image: {
  15458. source: "./media/characters/memory/front-dress.svg",
  15459. extra: 3641 / 3545,
  15460. bottom: 0.03
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Micro",
  15467. height: math.unit(6, "inches"),
  15468. default: true
  15469. },
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(5 + 4 / 12, "feet")
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(4 + 11 / 12, "feet"),
  15481. weight: math.unit(100, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/luno/front.svg",
  15485. extra: 1535 / 1487,
  15486. bottom: 0.03
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Micro",
  15493. height: math.unit(3, "inches")
  15494. },
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(4 + 11 / 12, "feet"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Macro",
  15502. height: math.unit(300, "feet")
  15503. },
  15504. {
  15505. name: "Megamacro",
  15506. height: math.unit(700, "miles")
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15512. {
  15513. front: {
  15514. height: math.unit(6 + 2 / 12, "feet"),
  15515. weight: math.unit(170, "lb"),
  15516. name: "Front",
  15517. image: {
  15518. source: "./media/characters/jamesy/front.svg",
  15519. extra: 440 / 382,
  15520. bottom: 0.005
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Micro",
  15527. height: math.unit(3, "inches")
  15528. },
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(6 + 2 / 12, "feet"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Macro",
  15536. height: math.unit(300, "feet")
  15537. },
  15538. {
  15539. name: "Megamacro",
  15540. height: math.unit(700, "miles")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(160, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/mark/front.svg",
  15553. extra: 3300 / 3100,
  15554. bottom: 136.42 / 3440.47
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Macro",
  15561. height: math.unit(120, "meters")
  15562. },
  15563. {
  15564. name: "Bigger Macro",
  15565. height: math.unit(350, "meters")
  15566. },
  15567. {
  15568. name: "Megamacro",
  15569. height: math.unit(8, "km"),
  15570. default: true
  15571. },
  15572. {
  15573. name: "Continental",
  15574. height: math.unit(4550, "km")
  15575. },
  15576. {
  15577. name: "Planetary",
  15578. height: math.unit(65000, "km")
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(400, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/mac/front.svg",
  15591. extra: 1048 / 987.7,
  15592. bottom: 60 / 1107.6,
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Macro",
  15599. height: math.unit(500, "feet"),
  15600. default: true
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15606. {
  15607. front: {
  15608. height: math.unit(5 + 2 / 12, "feet"),
  15609. weight: math.unit(190, "lb"),
  15610. name: "Front",
  15611. image: {
  15612. source: "./media/characters/bari/front.svg",
  15613. extra: 3156 / 2880,
  15614. bottom: 0.03
  15615. }
  15616. },
  15617. back: {
  15618. height: math.unit(5 + 2 / 12, "feet"),
  15619. weight: math.unit(190, "lb"),
  15620. name: "Back",
  15621. image: {
  15622. source: "./media/characters/bari/back.svg",
  15623. extra: 3260 / 2834,
  15624. bottom: 0.025
  15625. }
  15626. },
  15627. frontPlush: {
  15628. height: math.unit(5 + 2 / 12, "feet"),
  15629. weight: math.unit(190, "lb"),
  15630. name: "Front (Plush)",
  15631. image: {
  15632. source: "./media/characters/bari/front-plush.svg",
  15633. extra: 1112 / 1061,
  15634. bottom: 0.002
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Micro",
  15641. height: math.unit(3, "inches")
  15642. },
  15643. {
  15644. name: "Normal",
  15645. height: math.unit(5 + 2 / 12, "feet"),
  15646. default: true
  15647. },
  15648. {
  15649. name: "Macro",
  15650. height: math.unit(20, "feet")
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(6 + 1 / 12, "feet"),
  15659. weight: math.unit(275, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/hunter-misha-raven/front.svg"
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Mortal",
  15669. height: math.unit(6 + 1 / 12, "feet")
  15670. },
  15671. {
  15672. name: "Divine",
  15673. height: math.unit(1.12134e34, "parsecs"),
  15674. default: true
  15675. },
  15676. ]
  15677. ))
  15678. characterMakers.push(() => makeCharacter(
  15679. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15680. {
  15681. front: {
  15682. height: math.unit(6 + 3 / 12, "feet"),
  15683. weight: math.unit(220, "lb"),
  15684. name: "Front",
  15685. image: {
  15686. source: "./media/characters/max-calore/front.svg",
  15687. extra: 1700 / 1648,
  15688. bottom: 0.01
  15689. }
  15690. },
  15691. back: {
  15692. height: math.unit(6 + 3 / 12, "feet"),
  15693. weight: math.unit(220, "lb"),
  15694. name: "Back",
  15695. image: {
  15696. source: "./media/characters/max-calore/back.svg",
  15697. extra: 1700 / 1648,
  15698. bottom: 0.01
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(6 + 3 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15712. {
  15713. side: {
  15714. height: math.unit(2 + 8 / 12, "feet"),
  15715. weight: math.unit(99, "lb"),
  15716. name: "Side",
  15717. image: {
  15718. source: "./media/characters/aspen/side.svg",
  15719. extra: 152 / 138,
  15720. bottom: 0.032
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(2 + 8 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15734. {
  15735. side: {
  15736. height: math.unit(3 + 2 / 12, "feet"),
  15737. weight: math.unit(224, "lb"),
  15738. name: "Side",
  15739. image: {
  15740. source: "./media/characters/sheila-feral-wolf/side.svg",
  15741. extra: 179 / 166,
  15742. bottom: 0.03
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(3 + 2 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15756. {
  15757. side: {
  15758. height: math.unit(1 + 9 / 12, "feet"),
  15759. weight: math.unit(38, "lb"),
  15760. name: "Side",
  15761. image: {
  15762. source: "./media/characters/michelle/side.svg",
  15763. extra: 147 / 136.7,
  15764. bottom: 0.03
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(1 + 9 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(1 + 1 / 12, "feet"),
  15781. weight: math.unit(18, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/nino/front.svg"
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(1 + 1 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(1, "feet"),
  15801. weight: math.unit(16, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/viola/front.svg"
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(1, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15818. {
  15819. front: {
  15820. height: math.unit(6 + 5 / 12, "feet"),
  15821. weight: math.unit(580, "lb"),
  15822. name: "Front",
  15823. image: {
  15824. source: "./media/characters/atlas/front.svg",
  15825. extra: 298.5 / 290,
  15826. bottom: 0.015
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(6 + 5 / 12, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15840. {
  15841. side: {
  15842. height: math.unit(1 + 10 / 12, "feet"),
  15843. weight: math.unit(25, "lb"),
  15844. name: "Side",
  15845. image: {
  15846. source: "./media/characters/davy/side.svg",
  15847. extra: 200 / 170,
  15848. bottom: 0.01
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(1 + 10 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15862. {
  15863. side: {
  15864. height: math.unit(4 + 8 / 12, "feet"),
  15865. weight: math.unit(166, "lb"),
  15866. name: "Side",
  15867. image: {
  15868. source: "./media/characters/fiona/side.svg",
  15869. extra: 232 / 220,
  15870. bottom: 0.03
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(4 + 8 / 12, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15884. {
  15885. front: {
  15886. height: math.unit(2, "feet"),
  15887. weight: math.unit(62, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/lyla/front.svg",
  15891. bottom: 0.1
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(2, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15905. {
  15906. side: {
  15907. height: math.unit(1.8, "feet"),
  15908. weight: math.unit(44, "lb"),
  15909. name: "Side",
  15910. image: {
  15911. source: "./media/characters/perseus/side.svg",
  15912. bottom: 0.21
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(1.8, "feet"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15926. {
  15927. side: {
  15928. height: math.unit(4 + 2 / 12, "feet"),
  15929. weight: math.unit(20, "lb"),
  15930. name: "Side",
  15931. image: {
  15932. source: "./media/characters/remus/side.svg"
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(4 + 2 / 12, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(4 + 11 / 12, "feet"),
  15949. weight: math.unit(114, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/raf/front.svg",
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. side: {
  15957. height: math.unit(4 + 11 / 12, "feet"),
  15958. weight: math.unit(114, "lb"),
  15959. name: "Side",
  15960. image: {
  15961. source: "./media/characters/raf/side.svg",
  15962. bottom: 0.005
  15963. }
  15964. },
  15965. },
  15966. [
  15967. {
  15968. name: "Micro",
  15969. height: math.unit(2, "inches")
  15970. },
  15971. {
  15972. name: "Normal",
  15973. height: math.unit(4 + 11 / 12, "feet"),
  15974. default: true
  15975. },
  15976. {
  15977. name: "Macro",
  15978. height: math.unit(70, "feet")
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(1.5, "meters"),
  15987. weight: math.unit(68, "kg"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/liam-einarr/front.svg",
  15991. extra: 2822 / 2666
  15992. }
  15993. },
  15994. back: {
  15995. height: math.unit(1.5, "meters"),
  15996. weight: math.unit(68, "kg"),
  15997. name: "Back",
  15998. image: {
  15999. source: "./media/characters/liam-einarr/back.svg",
  16000. extra: 2822 / 2666,
  16001. bottom: 0.015
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(1.5, "meters"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Macro",
  16013. height: math.unit(150, "meters")
  16014. },
  16015. {
  16016. name: "Megamacro",
  16017. height: math.unit(35, "km")
  16018. },
  16019. ]
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16023. {
  16024. front: {
  16025. height: math.unit(6, "feet"),
  16026. weight: math.unit(75, "kg"),
  16027. name: "Front",
  16028. image: {
  16029. source: "./media/characters/linda/front.svg",
  16030. extra: 930 / 874,
  16031. bottom: 0.004
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(6, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6 + 8 / 12, "feet"),
  16048. weight: math.unit(220, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/caylex/front.svg",
  16052. extra: 821 / 772,
  16053. bottom: 0.07
  16054. }
  16055. },
  16056. back: {
  16057. height: math.unit(6 + 8 / 12, "feet"),
  16058. weight: math.unit(220, "lb"),
  16059. name: "Back",
  16060. image: {
  16061. source: "./media/characters/caylex/back.svg",
  16062. extra: 821 / 772,
  16063. bottom: 0.022
  16064. }
  16065. },
  16066. hand: {
  16067. height: math.unit(1.25, "feet"),
  16068. name: "Hand",
  16069. image: {
  16070. source: "./media/characters/caylex/hand.svg"
  16071. }
  16072. },
  16073. foot: {
  16074. height: math.unit(1.6, "feet"),
  16075. name: "Foot",
  16076. image: {
  16077. source: "./media/characters/caylex/foot.svg"
  16078. }
  16079. },
  16080. armored: {
  16081. height: math.unit(6 + 8 / 12, "feet"),
  16082. weight: math.unit(250, "lb"),
  16083. name: "Armored",
  16084. image: {
  16085. source: "./media/characters/caylex/armored.svg",
  16086. extra: 1420 / 1310,
  16087. bottom: 0.045
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(6 + 8 / 12, "feet"),
  16095. default: true
  16096. },
  16097. {
  16098. name: "Normal+",
  16099. height: math.unit(12, "feet")
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(7 + 6 / 12, "feet"),
  16108. weight: math.unit(288, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/alana/front.svg",
  16112. extra: 679 / 653,
  16113. bottom: 22.5 / 701
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(7 + 6 / 12, "feet")
  16121. },
  16122. {
  16123. name: "Large",
  16124. height: math.unit(50, "feet")
  16125. },
  16126. {
  16127. name: "Macro",
  16128. height: math.unit(100, "feet"),
  16129. default: true
  16130. },
  16131. {
  16132. name: "Macro+",
  16133. height: math.unit(200, "feet")
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16139. {
  16140. front: {
  16141. height: math.unit(6 + 1 / 12, "feet"),
  16142. weight: math.unit(210, "lb"),
  16143. name: "Front",
  16144. image: {
  16145. source: "./media/characters/hasani/front.svg",
  16146. extra: 244 / 232,
  16147. bottom: 0.01
  16148. }
  16149. },
  16150. back: {
  16151. height: math.unit(6 + 1 / 12, "feet"),
  16152. weight: math.unit(210, "lb"),
  16153. name: "Back",
  16154. image: {
  16155. source: "./media/characters/hasani/back.svg",
  16156. extra: 244 / 232,
  16157. bottom: 0.01
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(6 + 1 / 12, "feet")
  16165. },
  16166. {
  16167. name: "Macro",
  16168. height: math.unit(175, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(1.82, "meters"),
  16178. weight: math.unit(140, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/nita/front.svg",
  16182. extra: 2473 / 2363,
  16183. bottom: 0.01
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(1.82, "m")
  16191. },
  16192. {
  16193. name: "Macro",
  16194. height: math.unit(300, "m")
  16195. },
  16196. {
  16197. name: "Mistake Canon",
  16198. height: math.unit(0.5, "miles"),
  16199. default: true
  16200. },
  16201. {
  16202. name: "Big Mistake",
  16203. height: math.unit(13, "miles")
  16204. },
  16205. {
  16206. name: "Playing God",
  16207. height: math.unit(2450, "miles")
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16213. {
  16214. front: {
  16215. height: math.unit(4, "feet"),
  16216. weight: math.unit(120, "lb"),
  16217. name: "Front",
  16218. image: {
  16219. source: "./media/characters/shiriko/front.svg",
  16220. extra: 195 / 188
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(4, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. name: "front",
  16238. image: {
  16239. source: "./media/characters/deja/front.svg",
  16240. extra: 926 / 840,
  16241. bottom: 0.07
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Planck Length",
  16248. height: math.unit(1.6e-35, "meters")
  16249. },
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(30.48, "meters"),
  16253. default: true
  16254. },
  16255. {
  16256. name: "Universal",
  16257. height: math.unit(8.8e26, "meters")
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16263. {
  16264. side: {
  16265. height: math.unit(8, "feet"),
  16266. weight: math.unit(6300, "lb"),
  16267. name: "Side",
  16268. image: {
  16269. source: "./media/characters/anima/side.svg",
  16270. bottom: 0.035
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(8, "feet"),
  16278. default: true
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(8, "feet"),
  16287. weight: math.unit(350, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/bianca/front.svg",
  16291. extra: 234 / 225,
  16292. bottom: 0.03
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(8, "feet"),
  16300. default: true
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(6, "feet"),
  16309. weight: math.unit(150, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/adinia/front.svg",
  16313. extra: 1845 / 1672,
  16314. bottom: 0.02
  16315. }
  16316. },
  16317. back: {
  16318. height: math.unit(6, "feet"),
  16319. weight: math.unit(150, "lb"),
  16320. name: "Back",
  16321. image: {
  16322. source: "./media/characters/adinia/back.svg",
  16323. extra: 1845 / 1672,
  16324. bottom: 0.002
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(11 + 5 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(3, "meters"),
  16341. weight: math.unit(200, "kg"),
  16342. name: "Front",
  16343. image: {
  16344. source: "./media/characters/lykasa/front.svg",
  16345. extra: 1076 / 976,
  16346. bottom: 0.06
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(3, "meters")
  16354. },
  16355. {
  16356. name: "Kaiju",
  16357. height: math.unit(120, "meters"),
  16358. default: true
  16359. },
  16360. {
  16361. name: "Mega Kaiju",
  16362. height: math.unit(240, "km")
  16363. },
  16364. {
  16365. name: "Giga Kaiju",
  16366. height: math.unit(400, "megameters")
  16367. },
  16368. {
  16369. name: "Tera Kaiju",
  16370. height: math.unit(800, "gigameters")
  16371. },
  16372. {
  16373. name: "Kaiju Dragon Goddess",
  16374. height: math.unit(26, "zettaparsecs")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16380. {
  16381. side: {
  16382. height: math.unit(283 / 124 * 6, "feet"),
  16383. weight: math.unit(35000, "lb"),
  16384. name: "Side",
  16385. image: {
  16386. source: "./media/characters/malfaren/side.svg",
  16387. extra: 2500 / 1010,
  16388. bottom: 0.01
  16389. }
  16390. },
  16391. front: {
  16392. height: math.unit(22.36, "feet"),
  16393. weight: math.unit(35000, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/malfaren/front.svg",
  16397. extra: 1631 / 1476,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. maw: {
  16402. height: math.unit(6.9, "feet"),
  16403. name: "Maw",
  16404. image: {
  16405. source: "./media/characters/malfaren/maw.svg"
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Big",
  16412. height: math.unit(283 / 162 * 6, "feet"),
  16413. },
  16414. {
  16415. name: "Bigger",
  16416. height: math.unit(283 / 124 * 6, "feet")
  16417. },
  16418. {
  16419. name: "Massive",
  16420. height: math.unit(283 / 92 * 6, "feet"),
  16421. default: true
  16422. },
  16423. {
  16424. name: "👀💦",
  16425. height: math.unit(283 / 73 * 6, "feet"),
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16431. {
  16432. front: {
  16433. height: math.unit(1.7, "m"),
  16434. weight: math.unit(70, "kg"),
  16435. name: "Front",
  16436. image: {
  16437. source: "./media/characters/kernel/front.svg",
  16438. extra: 222 / 210,
  16439. bottom: 0.007
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Nano",
  16446. height: math.unit(17, "micrometers")
  16447. },
  16448. {
  16449. name: "Micro",
  16450. height: math.unit(1.7, "mm")
  16451. },
  16452. {
  16453. name: "Small",
  16454. height: math.unit(1.7, "cm")
  16455. },
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(1.7, "m"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(1.75, "meters"),
  16468. weight: math.unit(65, "kg"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/jayne-folest/front.svg",
  16472. extra: 2115 / 2007,
  16473. bottom: 0.02
  16474. }
  16475. },
  16476. back: {
  16477. height: math.unit(1.75, "meters"),
  16478. weight: math.unit(65, "kg"),
  16479. name: "Back",
  16480. image: {
  16481. source: "./media/characters/jayne-folest/back.svg",
  16482. extra: 2115 / 2007,
  16483. bottom: 0.005
  16484. }
  16485. },
  16486. frontClothed: {
  16487. height: math.unit(1.75, "meters"),
  16488. weight: math.unit(65, "kg"),
  16489. name: "Front (Clothed)",
  16490. image: {
  16491. source: "./media/characters/jayne-folest/front-clothed.svg",
  16492. extra: 2115 / 2007,
  16493. bottom: 0.035
  16494. }
  16495. },
  16496. hand: {
  16497. height: math.unit(1 / 1.260, "feet"),
  16498. name: "Hand",
  16499. image: {
  16500. source: "./media/characters/jayne-folest/hand.svg"
  16501. }
  16502. },
  16503. foot: {
  16504. height: math.unit(1 / 0.918, "feet"),
  16505. name: "Foot",
  16506. image: {
  16507. source: "./media/characters/jayne-folest/foot.svg"
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Micro",
  16514. height: math.unit(4, "cm")
  16515. },
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(1.75, "meters")
  16519. },
  16520. {
  16521. name: "Macro",
  16522. height: math.unit(47.5, "meters"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(180, "cm"),
  16532. weight: math.unit(70, "kg"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/algier/front.svg",
  16536. extra: 596 / 572,
  16537. bottom: 0.04
  16538. }
  16539. },
  16540. back: {
  16541. height: math.unit(180, "cm"),
  16542. weight: math.unit(70, "kg"),
  16543. name: "Back",
  16544. image: {
  16545. source: "./media/characters/algier/back.svg",
  16546. extra: 596 / 572,
  16547. bottom: 0.025
  16548. }
  16549. },
  16550. frontdressed: {
  16551. height: math.unit(180, "cm"),
  16552. weight: math.unit(150, "kg"),
  16553. name: "Front-dressed",
  16554. image: {
  16555. source: "./media/characters/algier/front-dressed.svg",
  16556. extra: 596 / 572,
  16557. bottom: 0.038
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(5, "cm")
  16565. },
  16566. {
  16567. name: "Normal",
  16568. height: math.unit(180, "cm"),
  16569. default: true
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(64, "m")
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16579. {
  16580. upright: {
  16581. height: math.unit(7, "feet"),
  16582. weight: math.unit(300, "lb"),
  16583. name: "Upright",
  16584. image: {
  16585. source: "./media/characters/pretzel/upright.svg",
  16586. extra: 534 / 522,
  16587. bottom: 0.065
  16588. }
  16589. },
  16590. sprawling: {
  16591. height: math.unit(3.75, "feet"),
  16592. weight: math.unit(300, "lb"),
  16593. name: "Sprawling",
  16594. image: {
  16595. source: "./media/characters/pretzel/sprawling.svg",
  16596. extra: 314 / 281,
  16597. bottom: 0.1
  16598. }
  16599. },
  16600. tongue: {
  16601. height: math.unit(2, "feet"),
  16602. name: "Tongue",
  16603. image: {
  16604. source: "./media/characters/pretzel/tongue.svg"
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(7, "feet"),
  16612. default: true
  16613. },
  16614. {
  16615. name: "Oversized",
  16616. height: math.unit(15, "feet")
  16617. },
  16618. {
  16619. name: "Huge",
  16620. height: math.unit(30, "feet")
  16621. },
  16622. {
  16623. name: "Macro",
  16624. height: math.unit(250, "feet")
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16630. {
  16631. sideFront: {
  16632. height: math.unit(5 + 2 / 12, "feet"),
  16633. weight: math.unit(120, "lb"),
  16634. name: "Front Side",
  16635. image: {
  16636. source: "./media/characters/roxi/side-front.svg",
  16637. extra: 2924 / 2717,
  16638. bottom: 0.08
  16639. }
  16640. },
  16641. sideBack: {
  16642. height: math.unit(5 + 2 / 12, "feet"),
  16643. weight: math.unit(120, "lb"),
  16644. name: "Back Side",
  16645. image: {
  16646. source: "./media/characters/roxi/side-back.svg",
  16647. extra: 2904 / 2693,
  16648. bottom: 0.06
  16649. }
  16650. },
  16651. front: {
  16652. height: math.unit(5 + 2 / 12, "feet"),
  16653. weight: math.unit(120, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/roxi/front.svg",
  16657. extra: 2028 / 1907,
  16658. bottom: 0.01
  16659. }
  16660. },
  16661. frontAlt: {
  16662. height: math.unit(5 + 2 / 12, "feet"),
  16663. weight: math.unit(120, "lb"),
  16664. name: "Front (Alt)",
  16665. image: {
  16666. source: "./media/characters/roxi/front-alt.svg",
  16667. extra: 1828 / 1798,
  16668. bottom: 0.01
  16669. }
  16670. },
  16671. sitting: {
  16672. height: math.unit(2.8, "feet"),
  16673. weight: math.unit(120, "lb"),
  16674. name: "Sitting",
  16675. image: {
  16676. source: "./media/characters/roxi/sitting.svg",
  16677. extra: 2660 / 2462,
  16678. bottom: 0.1
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(5 + 2 / 12, "feet"),
  16686. default: true
  16687. },
  16688. ]
  16689. ))
  16690. characterMakers.push(() => makeCharacter(
  16691. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16692. {
  16693. side: {
  16694. height: math.unit(55, "feet"),
  16695. weight: math.unit(153, "tons"),
  16696. name: "Side",
  16697. image: {
  16698. source: "./media/characters/shadow/side.svg",
  16699. extra: 701 / 628,
  16700. bottom: 0.02
  16701. }
  16702. },
  16703. flying: {
  16704. height: math.unit(145, "feet"),
  16705. weight: math.unit(153, "tons"),
  16706. name: "Flying",
  16707. image: {
  16708. source: "./media/characters/shadow/flying.svg"
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(55, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(200, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/marcie/front.svg",
  16729. extra: 960 / 876,
  16730. bottom: 58 / 1017.87
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(1, "mile"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(7, "feet"),
  16747. weight: math.unit(200, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/kachina/front.svg",
  16751. extra: 1290.68 / 1119,
  16752. bottom: 36.5 / 1327.18
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(7, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16766. {
  16767. looking: {
  16768. height: math.unit(2, "meters"),
  16769. weight: math.unit(300, "kg"),
  16770. name: "Looking",
  16771. image: {
  16772. source: "./media/characters/kash/looking.svg",
  16773. extra: 474 / 344,
  16774. bottom: 0.03
  16775. }
  16776. },
  16777. side: {
  16778. height: math.unit(2, "meters"),
  16779. weight: math.unit(300, "kg"),
  16780. name: "Side",
  16781. image: {
  16782. source: "./media/characters/kash/side.svg",
  16783. extra: 302 / 251,
  16784. bottom: 0.03
  16785. }
  16786. },
  16787. front: {
  16788. height: math.unit(2, "meters"),
  16789. weight: math.unit(300, "kg"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/kash/front.svg",
  16793. extra: 495 / 360,
  16794. bottom: 0.015
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Normal",
  16801. height: math.unit(2, "meters"),
  16802. default: true
  16803. },
  16804. {
  16805. name: "Big",
  16806. height: math.unit(3, "meters")
  16807. },
  16808. {
  16809. name: "Large",
  16810. height: math.unit(5, "meters")
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16816. {
  16817. feeding: {
  16818. height: math.unit(6.7, "feet"),
  16819. weight: math.unit(350, "lb"),
  16820. name: "Feeding",
  16821. image: {
  16822. source: "./media/characters/lalim/feeding.svg",
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(6.7, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(9.5, "feet"),
  16839. weight: math.unit(600, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/de'vout/front.svg",
  16843. extra: 1443 / 1328,
  16844. bottom: 0.025
  16845. }
  16846. },
  16847. back: {
  16848. height: math.unit(9.5, "feet"),
  16849. weight: math.unit(600, "lb"),
  16850. name: "Back",
  16851. image: {
  16852. source: "./media/characters/de'vout/back.svg",
  16853. extra: 1443 / 1328
  16854. }
  16855. },
  16856. frontDressed: {
  16857. height: math.unit(9.5, "feet"),
  16858. weight: math.unit(600, "lb"),
  16859. name: "Front (Dressed",
  16860. image: {
  16861. source: "./media/characters/de'vout/front-dressed.svg",
  16862. extra: 1443 / 1328,
  16863. bottom: 0.025
  16864. }
  16865. },
  16866. backDressed: {
  16867. height: math.unit(9.5, "feet"),
  16868. weight: math.unit(600, "lb"),
  16869. name: "Back (Dressed",
  16870. image: {
  16871. source: "./media/characters/de'vout/back-dressed.svg",
  16872. extra: 1443 / 1328
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(9.5, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(8, "feet"),
  16889. weight: math.unit(225, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/talana/front.svg",
  16893. extra: 1410 / 1300,
  16894. bottom: 0.015
  16895. }
  16896. },
  16897. frontDressed: {
  16898. height: math.unit(8, "feet"),
  16899. weight: math.unit(225, "lb"),
  16900. name: "Front (Dressed",
  16901. image: {
  16902. source: "./media/characters/talana/front-dressed.svg",
  16903. extra: 1410 / 1300,
  16904. bottom: 0.015
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(8, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16918. {
  16919. side: {
  16920. height: math.unit(7.2, "feet"),
  16921. weight: math.unit(150, "lb"),
  16922. name: "Side",
  16923. image: {
  16924. source: "./media/characters/xeauvok/side.svg",
  16925. extra: 1975 / 1523,
  16926. bottom: 0.07
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(7.2, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16940. {
  16941. side: {
  16942. height: math.unit(10, "feet"),
  16943. weight: math.unit(900, "kg"),
  16944. name: "Side",
  16945. image: {
  16946. source: "./media/characters/zara/side.svg",
  16947. extra: 504 / 498
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(10, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16961. {
  16962. side: {
  16963. height: math.unit(6, "feet"),
  16964. weight: math.unit(150, "lb"),
  16965. name: "Side",
  16966. image: {
  16967. source: "./media/characters/richard-dragon/side.svg",
  16968. extra: 845 / 340,
  16969. bottom: 0.017
  16970. }
  16971. },
  16972. maw: {
  16973. height: math.unit(2.97, "feet"),
  16974. name: "Maw",
  16975. image: {
  16976. source: "./media/characters/richard-dragon/maw.svg"
  16977. }
  16978. },
  16979. },
  16980. [
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(4, "feet"),
  16988. weight: math.unit(100, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/richard-smeargle/front.svg",
  16992. extra: 2952 / 2820,
  16993. bottom: 0.028
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(4, "feet"),
  17001. default: true
  17002. },
  17003. {
  17004. name: "Dynamax",
  17005. height: math.unit(20, "meters")
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(6, "feet"),
  17014. weight: math.unit(110, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/klay/front.svg",
  17018. extra: 962 / 883,
  17019. bottom: 0.04
  17020. }
  17021. },
  17022. back: {
  17023. height: math.unit(6, "feet"),
  17024. weight: math.unit(110, "lb"),
  17025. name: "Back",
  17026. image: {
  17027. source: "./media/characters/klay/back.svg",
  17028. extra: 962 / 883
  17029. }
  17030. },
  17031. beans: {
  17032. height: math.unit(1.15, "feet"),
  17033. name: "Beans",
  17034. image: {
  17035. source: "./media/characters/klay/beans.svg"
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Micro",
  17042. height: math.unit(6, "inches")
  17043. },
  17044. {
  17045. name: "Mini",
  17046. height: math.unit(3, "feet")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(6, "feet"),
  17051. default: true
  17052. },
  17053. {
  17054. name: "Big",
  17055. height: math.unit(25, "feet")
  17056. },
  17057. {
  17058. name: "Macro",
  17059. height: math.unit(100, "feet")
  17060. },
  17061. {
  17062. name: "Megamacro",
  17063. height: math.unit(400, "feet")
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(6, "feet"),
  17072. weight: math.unit(160, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/marcus/front.svg",
  17076. extra: 734 / 676,
  17077. bottom: 0.03
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Little",
  17084. height: math.unit(6, "feet")
  17085. },
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(110, "feet"),
  17089. default: true
  17090. },
  17091. {
  17092. name: "Macro",
  17093. height: math.unit(250, "feet")
  17094. },
  17095. {
  17096. name: "Megamacro",
  17097. height: math.unit(1000, "feet")
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(7, "feet"),
  17106. weight: math.unit(275, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/claude-delroute/front.svg",
  17110. extra: 230 / 214,
  17111. bottom: 0.007
  17112. }
  17113. },
  17114. side: {
  17115. height: math.unit(7, "feet"),
  17116. weight: math.unit(275, "lb"),
  17117. name: "Side",
  17118. image: {
  17119. source: "./media/characters/claude-delroute/side.svg",
  17120. extra: 222 / 214,
  17121. bottom: 0.01
  17122. }
  17123. },
  17124. back: {
  17125. height: math.unit(7, "feet"),
  17126. weight: math.unit(275, "lb"),
  17127. name: "Back",
  17128. image: {
  17129. source: "./media/characters/claude-delroute/back.svg",
  17130. extra: 230 / 214,
  17131. bottom: 0.015
  17132. }
  17133. },
  17134. maw: {
  17135. height: math.unit(0.6407, "meters"),
  17136. name: "Maw",
  17137. image: {
  17138. source: "./media/characters/claude-delroute/maw.svg"
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Normal",
  17145. height: math.unit(7, "feet"),
  17146. default: true
  17147. },
  17148. {
  17149. name: "Lorge",
  17150. height: math.unit(20, "feet")
  17151. },
  17152. ]
  17153. ))
  17154. characterMakers.push(() => makeCharacter(
  17155. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17156. {
  17157. front: {
  17158. height: math.unit(8 + 4 / 12, "feet"),
  17159. weight: math.unit(600, "lb"),
  17160. name: "Front",
  17161. image: {
  17162. source: "./media/characters/dragonien/front.svg",
  17163. extra: 100 / 94,
  17164. bottom: 3.3 / 103.3445
  17165. }
  17166. },
  17167. back: {
  17168. height: math.unit(8 + 4 / 12, "feet"),
  17169. weight: math.unit(600, "lb"),
  17170. name: "Back",
  17171. image: {
  17172. source: "./media/characters/dragonien/back.svg",
  17173. extra: 776 / 746,
  17174. bottom: 6.4 / 782.0616
  17175. }
  17176. },
  17177. foot: {
  17178. height: math.unit(1.54, "feet"),
  17179. name: "Foot",
  17180. image: {
  17181. source: "./media/characters/dragonien/foot.svg",
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(8 + 4 / 12, "feet"),
  17189. default: true
  17190. },
  17191. {
  17192. name: "Macro",
  17193. height: math.unit(200, "feet")
  17194. },
  17195. {
  17196. name: "Megamacro",
  17197. height: math.unit(1, "mile")
  17198. },
  17199. {
  17200. name: "Gigamacro",
  17201. height: math.unit(1000, "miles")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(5 + 2 / 12, "feet"),
  17210. weight: math.unit(110, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/desta/front.svg",
  17214. extra: 1482 / 1417
  17215. }
  17216. },
  17217. side: {
  17218. height: math.unit(5 + 2 / 12, "feet"),
  17219. weight: math.unit(110, "lb"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/desta/side.svg",
  17223. extra: 2579 / 2491,
  17224. bottom: 0.053
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Micro",
  17231. height: math.unit(6, "inches")
  17232. },
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(5 + 2 / 12, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(62, "feet")
  17241. },
  17242. {
  17243. name: "Megamacro",
  17244. height: math.unit(1800, "feet")
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(10, "feet"),
  17253. weight: math.unit(700, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/storm-alystar/front.svg",
  17257. extra: 2112 / 1898,
  17258. bottom: 0.034
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Micro",
  17265. height: math.unit(3.5, "inches")
  17266. },
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(10, "feet"),
  17270. default: true
  17271. },
  17272. {
  17273. name: "Macro",
  17274. height: math.unit(400, "feet")
  17275. },
  17276. {
  17277. name: "Deific",
  17278. height: math.unit(60, "miles")
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(2.35, "meters"),
  17287. weight: math.unit(119, "kg"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/ilia/front.svg",
  17291. extra: 1285 / 1255,
  17292. bottom: 0.06
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(2.35, "meters")
  17300. },
  17301. {
  17302. name: "Macro",
  17303. height: math.unit(140, "meters"),
  17304. default: true
  17305. },
  17306. {
  17307. name: "Megamacro",
  17308. height: math.unit(100, "miles")
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17314. {
  17315. front: {
  17316. height: math.unit(6 + 5 / 12, "feet"),
  17317. weight: math.unit(190, "lb"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/kingdead/front.svg",
  17321. extra: 1228 / 1177
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Micro",
  17328. height: math.unit(7, "inches")
  17329. },
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(6 + 5 / 12, "feet")
  17333. },
  17334. {
  17335. name: "Macro",
  17336. height: math.unit(150, "feet"),
  17337. default: true
  17338. },
  17339. {
  17340. name: "Megamacro",
  17341. height: math.unit(200, "miles")
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(8, "feet"),
  17350. weight: math.unit(600, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/kyrehx/front.svg",
  17354. extra: 1195 / 1095,
  17355. bottom: 0.034
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Micro",
  17362. height: math.unit(2, "inches")
  17363. },
  17364. {
  17365. name: "Normal",
  17366. height: math.unit(8, "feet"),
  17367. default: true
  17368. },
  17369. {
  17370. name: "Macro",
  17371. height: math.unit(255, "feet")
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17380. weight: math.unit(184, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/xang/front.svg",
  17384. extra: 845 / 755
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17392. default: true
  17393. },
  17394. {
  17395. name: "Macro",
  17396. height: math.unit(0.935 * 146, "feet")
  17397. },
  17398. {
  17399. name: "Megamacro",
  17400. height: math.unit(0.935 * 3, "miles")
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17406. {
  17407. frontDressed: {
  17408. height: math.unit(5 + 7 / 12, "feet"),
  17409. weight: math.unit(140, "lb"),
  17410. name: "Front (Dressed)",
  17411. image: {
  17412. source: "./media/characters/doc-weardno/front-dressed.svg",
  17413. extra: 263 / 234
  17414. }
  17415. },
  17416. backDressed: {
  17417. height: math.unit(5 + 7 / 12, "feet"),
  17418. weight: math.unit(140, "lb"),
  17419. name: "Back (Dressed)",
  17420. image: {
  17421. source: "./media/characters/doc-weardno/back-dressed.svg",
  17422. extra: 266 / 238
  17423. }
  17424. },
  17425. front: {
  17426. height: math.unit(5 + 7 / 12, "feet"),
  17427. weight: math.unit(140, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/doc-weardno/front.svg",
  17431. extra: 254 / 233
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Micro",
  17438. height: math.unit(3, "inches")
  17439. },
  17440. {
  17441. name: "Normal",
  17442. height: math.unit(5 + 7 / 12, "feet"),
  17443. default: true
  17444. },
  17445. {
  17446. name: "Macro",
  17447. height: math.unit(25, "feet")
  17448. },
  17449. {
  17450. name: "Megamacro",
  17451. height: math.unit(2, "miles")
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(6 + 2 / 12, "feet"),
  17460. weight: math.unit(153, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/seth-whilst/front.svg",
  17464. bottom: 0.07
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Micro",
  17471. height: math.unit(5, "inches")
  17472. },
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(6 + 2 / 12, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(3, "inches"),
  17485. weight: math.unit(8, "grams"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/pocket-jabari/front.svg",
  17489. extra: 1024 / 974,
  17490. bottom: 0.039
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Minimicro",
  17497. height: math.unit(8, "mm")
  17498. },
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(3, "inches"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(3, "feet")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(15, "feet"),
  17515. weight: math.unit(3280, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/sapphy/front.svg",
  17519. extra: 671 / 577,
  17520. bottom: 0.085
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(15, "feet"),
  17525. weight: math.unit(3280, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/sapphy/back.svg",
  17529. extra: 631 / 607,
  17530. bottom: 0.045
  17531. }
  17532. },
  17533. },
  17534. [
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(15, "feet")
  17538. },
  17539. {
  17540. name: "Casual Macro",
  17541. height: math.unit(120, "feet")
  17542. },
  17543. {
  17544. name: "Macro",
  17545. height: math.unit(2150, "feet"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Megamacro",
  17550. height: math.unit(8, "miles")
  17551. },
  17552. {
  17553. name: "Galaxy Mom",
  17554. height: math.unit(6, "megalightyears")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(6, "feet"),
  17563. weight: math.unit(170, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/kiro/front.svg",
  17567. extra: 1064 / 1012,
  17568. bottom: 0.052
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Micro",
  17575. height: math.unit(6, "inches")
  17576. },
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(6, "feet"),
  17580. default: true
  17581. },
  17582. {
  17583. name: "Macro",
  17584. height: math.unit(72, "feet")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(5 + 9 / 12, "feet"),
  17593. weight: math.unit(175, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/irishfox/front.svg",
  17597. extra: 1912 / 1680,
  17598. bottom: 0.02
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Nano",
  17605. height: math.unit(1, "mm")
  17606. },
  17607. {
  17608. name: "Micro",
  17609. height: math.unit(2, "inches")
  17610. },
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(5 + 9 / 12, "feet"),
  17614. default: true
  17615. },
  17616. {
  17617. name: "Macro",
  17618. height: math.unit(45, "feet")
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(6 + 1 / 12, "feet"),
  17627. weight: math.unit(150, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/aronai-sieyes/front.svg",
  17631. extra: 1556 / 1480,
  17632. bottom: 0.015
  17633. }
  17634. },
  17635. side: {
  17636. height: math.unit(6 + 1 / 12, "feet"),
  17637. weight: math.unit(150, "lb"),
  17638. name: "Side",
  17639. image: {
  17640. source: "./media/characters/aronai-sieyes/side.svg",
  17641. extra: 1433 / 1390,
  17642. bottom: 0.0393
  17643. }
  17644. },
  17645. back: {
  17646. height: math.unit(6 + 1 / 12, "feet"),
  17647. weight: math.unit(150, "lb"),
  17648. name: "Back",
  17649. image: {
  17650. source: "./media/characters/aronai-sieyes/back.svg",
  17651. extra: 1544 / 1494,
  17652. bottom: 0.02
  17653. }
  17654. },
  17655. frontClothed: {
  17656. height: math.unit(6 + 1 / 12, "feet"),
  17657. weight: math.unit(150, "lb"),
  17658. name: "Front (Clothed)",
  17659. image: {
  17660. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17661. extra: 1582 / 1527
  17662. }
  17663. },
  17664. feral: {
  17665. height: math.unit(18, "feet"),
  17666. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17667. name: "Feral",
  17668. image: {
  17669. source: "./media/characters/aronai-sieyes/feral.svg",
  17670. extra: 1530 / 1240,
  17671. bottom: 0.035
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Micro",
  17678. height: math.unit(2, "inches")
  17679. },
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(6 + 1 / 12, "feet"),
  17683. default: true
  17684. }
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(12, "feet"),
  17692. weight: math.unit(410, "kg"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/xuna/front.svg",
  17696. extra: 2184 / 1980
  17697. }
  17698. },
  17699. side: {
  17700. height: math.unit(12, "feet"),
  17701. weight: math.unit(410, "kg"),
  17702. name: "Side",
  17703. image: {
  17704. source: "./media/characters/xuna/side.svg",
  17705. extra: 2184 / 1980
  17706. }
  17707. },
  17708. back: {
  17709. height: math.unit(12, "feet"),
  17710. weight: math.unit(410, "kg"),
  17711. name: "Back",
  17712. image: {
  17713. source: "./media/characters/xuna/back.svg",
  17714. extra: 2184 / 1980
  17715. }
  17716. },
  17717. },
  17718. [
  17719. {
  17720. name: "Nano glow",
  17721. height: math.unit(10, "nm")
  17722. },
  17723. {
  17724. name: "Micro floof",
  17725. height: math.unit(0.3, "m")
  17726. },
  17727. {
  17728. name: "Huggable softy boi",
  17729. height: math.unit(3.6576, "m"),
  17730. default: true
  17731. },
  17732. {
  17733. name: "Admirable floof",
  17734. height: math.unit(80, "meters")
  17735. },
  17736. {
  17737. name: "Gentle macro",
  17738. height: math.unit(300, "meters")
  17739. },
  17740. {
  17741. name: "Very careful floof",
  17742. height: math.unit(3200, "meters")
  17743. },
  17744. {
  17745. name: "The mega floof",
  17746. height: math.unit(36000, "meters")
  17747. },
  17748. {
  17749. name: "Giga-fur-Wicker",
  17750. height: math.unit(4800000, "meters")
  17751. },
  17752. {
  17753. name: "Licky world",
  17754. height: math.unit(20000000, "meters")
  17755. },
  17756. {
  17757. name: "Floofy cyan sun",
  17758. height: math.unit(1500000000, "meters")
  17759. },
  17760. {
  17761. name: "Milky Wicker",
  17762. height: math.unit(1000000000000000000000, "meters")
  17763. },
  17764. {
  17765. name: "The observing Wicker",
  17766. height: math.unit(999999999999999999999999999, "meters")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(5 + 9 / 12, "feet"),
  17775. weight: math.unit(150, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/arokha-sieyes/front.svg",
  17779. extra: 1425 / 1284,
  17780. bottom: 0.05
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(5 + 9 / 12, "feet")
  17788. },
  17789. {
  17790. name: "Macro",
  17791. height: math.unit(30, "meters"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(6, "feet"),
  17801. weight: math.unit(180, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/arokh-sieyes/front.svg",
  17805. extra: 1830 / 1769,
  17806. bottom: 0.01
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(6, "feet")
  17814. },
  17815. {
  17816. name: "Macro",
  17817. height: math.unit(30, "meters"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17824. {
  17825. side: {
  17826. height: math.unit(13 + 1 / 12, "feet"),
  17827. weight: math.unit(8.5, "tonnes"),
  17828. name: "Side",
  17829. image: {
  17830. source: "./media/characters/goldeneye/side.svg",
  17831. extra: 1182 / 778,
  17832. bottom: 0.067
  17833. }
  17834. },
  17835. paw: {
  17836. height: math.unit(3.4, "feet"),
  17837. name: "Paw",
  17838. image: {
  17839. source: "./media/characters/goldeneye/paw.svg"
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(13 + 1 / 12, "feet"),
  17847. default: true
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17853. {
  17854. front: {
  17855. height: math.unit(6 + 1 / 12, "feet"),
  17856. weight: math.unit(210, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/leonardo-lycheborne/front.svg",
  17860. extra: 390 / 365,
  17861. bottom: 0.032
  17862. }
  17863. },
  17864. side: {
  17865. height: math.unit(6 + 1 / 12, "feet"),
  17866. weight: math.unit(210, "lb"),
  17867. name: "Side",
  17868. image: {
  17869. source: "./media/characters/leonardo-lycheborne/side.svg",
  17870. extra: 390 / 365,
  17871. bottom: 0.005
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(6 + 1 / 12, "feet"),
  17876. weight: math.unit(210, "lb"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/leonardo-lycheborne/back.svg",
  17880. extra: 392 / 366,
  17881. bottom: 0.01
  17882. }
  17883. },
  17884. hand: {
  17885. height: math.unit(1.08, "feet"),
  17886. name: "Hand",
  17887. image: {
  17888. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17889. }
  17890. },
  17891. foot: {
  17892. height: math.unit(1.32, "feet"),
  17893. name: "Foot",
  17894. image: {
  17895. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17896. }
  17897. },
  17898. were: {
  17899. height: math.unit(20, "feet"),
  17900. weight: math.unit(7800, "lb"),
  17901. name: "Were",
  17902. image: {
  17903. source: "./media/characters/leonardo-lycheborne/were.svg",
  17904. extra: 308 / 294,
  17905. bottom: 0.048
  17906. }
  17907. },
  17908. feral: {
  17909. height: math.unit(7.5, "feet"),
  17910. weight: math.unit(600, "lb"),
  17911. name: "Feral",
  17912. image: {
  17913. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17914. extra: 210 / 186,
  17915. bottom: 0.108
  17916. }
  17917. },
  17918. taur: {
  17919. height: math.unit(11, "feet"),
  17920. weight: math.unit(3300, "lb"),
  17921. name: "Taur",
  17922. image: {
  17923. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17924. extra: 320 / 303,
  17925. bottom: 0.025
  17926. }
  17927. },
  17928. barghest: {
  17929. height: math.unit(11, "feet"),
  17930. weight: math.unit(1300, "lb"),
  17931. name: "Barghest",
  17932. image: {
  17933. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17934. extra: 323 / 302,
  17935. bottom: 0.027
  17936. }
  17937. },
  17938. dick: {
  17939. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17940. name: "Dick",
  17941. image: {
  17942. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17943. }
  17944. },
  17945. dickWere: {
  17946. height: math.unit((20) / 3.8, "feet"),
  17947. name: "Dick (Were)",
  17948. image: {
  17949. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(6 + 1 / 12, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(10, "feet"),
  17966. weight: math.unit(350, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/jet/front.svg",
  17970. extra: 2050 / 1980,
  17971. bottom: 0.013
  17972. }
  17973. },
  17974. back: {
  17975. height: math.unit(10, "feet"),
  17976. weight: math.unit(350, "lb"),
  17977. name: "Back",
  17978. image: {
  17979. source: "./media/characters/jet/back.svg",
  17980. extra: 2050 / 1980,
  17981. bottom: 0.013
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Micro",
  17988. height: math.unit(6, "inches")
  17989. },
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(10, "feet"),
  17993. default: true
  17994. },
  17995. {
  17996. name: "Macro",
  17997. height: math.unit(100, "feet")
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18003. {
  18004. front: {
  18005. height: math.unit(15, "feet"),
  18006. weight: math.unit(2800, "lb"),
  18007. name: "Front",
  18008. image: {
  18009. source: "./media/characters/tanarath/front.svg",
  18010. extra: 2392 / 2220,
  18011. bottom: 0.03
  18012. }
  18013. },
  18014. back: {
  18015. height: math.unit(15, "feet"),
  18016. weight: math.unit(2800, "lb"),
  18017. name: "Back",
  18018. image: {
  18019. source: "./media/characters/tanarath/back.svg",
  18020. extra: 2392 / 2220,
  18021. bottom: 0.03
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(15, "feet"),
  18029. default: true
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(7 + 1 / 12, "feet"),
  18038. weight: math.unit(175, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/patty-cattybatty/front.svg",
  18042. extra: 908 / 874,
  18043. bottom: 0.025
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Micro",
  18050. height: math.unit(1, "inch")
  18051. },
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(7 + 1 / 12, "feet")
  18055. },
  18056. {
  18057. name: "Mini Macro",
  18058. height: math.unit(155, "feet")
  18059. },
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(1077, "feet")
  18063. },
  18064. {
  18065. name: "Mega Macro",
  18066. height: math.unit(47650, "feet"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Giga Macro",
  18071. height: math.unit(440, "miles")
  18072. },
  18073. {
  18074. name: "Tera Macro",
  18075. height: math.unit(8700, "miles")
  18076. },
  18077. {
  18078. name: "Planetary Macro",
  18079. height: math.unit(32700, "miles")
  18080. },
  18081. {
  18082. name: "Solar Macro",
  18083. height: math.unit(550000, "miles")
  18084. },
  18085. {
  18086. name: "Celestial Macro",
  18087. height: math.unit(2.5, "AU")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(4 + 5 / 12, "feet"),
  18096. weight: math.unit(90, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/cappu/front.svg",
  18100. extra: 1247 / 1152,
  18101. bottom: 0.012
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(4 + 5 / 12, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18115. {
  18116. frontDressed: {
  18117. height: math.unit(70, "cm"),
  18118. weight: math.unit(6, "kg"),
  18119. name: "Front (Dressed)",
  18120. image: {
  18121. source: "./media/characters/sebi/front-dressed.svg",
  18122. extra: 713.5 / 686.5,
  18123. bottom: 0.003
  18124. }
  18125. },
  18126. front: {
  18127. height: math.unit(70, "cm"),
  18128. weight: math.unit(5, "kg"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/sebi/front.svg",
  18132. extra: 713.5 / 686.5,
  18133. bottom: 0.003
  18134. }
  18135. }
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(70, "cm"),
  18141. default: true
  18142. },
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(8, "meters")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(6, "feet"),
  18154. weight: math.unit(150, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/typhek/front.svg",
  18158. extra: 1948 / 1929,
  18159. bottom: 0.025
  18160. }
  18161. },
  18162. side: {
  18163. height: math.unit(6, "feet"),
  18164. weight: math.unit(150, "lb"),
  18165. name: "Side",
  18166. image: {
  18167. source: "./media/characters/typhek/side.svg",
  18168. extra: 2034 / 2010,
  18169. bottom: 0.003
  18170. }
  18171. },
  18172. back: {
  18173. height: math.unit(6, "feet"),
  18174. weight: math.unit(150, "lb"),
  18175. name: "Back",
  18176. image: {
  18177. source: "./media/characters/typhek/back.svg",
  18178. extra: 2005 / 1978,
  18179. bottom: 0.004
  18180. }
  18181. },
  18182. palm: {
  18183. height: math.unit(1.2, "feet"),
  18184. name: "Palm",
  18185. image: {
  18186. source: "./media/characters/typhek/palm.svg"
  18187. }
  18188. },
  18189. fist: {
  18190. height: math.unit(1.1, "feet"),
  18191. name: "Fist",
  18192. image: {
  18193. source: "./media/characters/typhek/fist.svg"
  18194. }
  18195. },
  18196. foot: {
  18197. height: math.unit(1.57, "feet"),
  18198. name: "Foot",
  18199. image: {
  18200. source: "./media/characters/typhek/foot.svg"
  18201. }
  18202. },
  18203. sole: {
  18204. height: math.unit(2.05, "feet"),
  18205. name: "Sole",
  18206. image: {
  18207. source: "./media/characters/typhek/sole.svg"
  18208. }
  18209. },
  18210. },
  18211. [
  18212. {
  18213. name: "Macro",
  18214. height: math.unit(40, "stories"),
  18215. default: true
  18216. },
  18217. {
  18218. name: "Megamacro",
  18219. height: math.unit(1, "mile")
  18220. },
  18221. {
  18222. name: "Gigamacro",
  18223. height: math.unit(4000, "solarradii")
  18224. },
  18225. {
  18226. name: "Universal",
  18227. height: math.unit(1.1, "universes")
  18228. }
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18233. {
  18234. side: {
  18235. height: math.unit(5 + 7 / 12, "feet"),
  18236. weight: math.unit(150, "lb"),
  18237. name: "Side",
  18238. image: {
  18239. source: "./media/characters/kassy/side.svg",
  18240. extra: 1280 / 1225,
  18241. bottom: 0.002
  18242. }
  18243. },
  18244. front: {
  18245. height: math.unit(5 + 7 / 12, "feet"),
  18246. weight: math.unit(150, "lb"),
  18247. name: "Front",
  18248. image: {
  18249. source: "./media/characters/kassy/front.svg",
  18250. extra: 1280 / 1225,
  18251. bottom: 0.025
  18252. }
  18253. },
  18254. back: {
  18255. height: math.unit(5 + 7 / 12, "feet"),
  18256. weight: math.unit(150, "lb"),
  18257. name: "Back",
  18258. image: {
  18259. source: "./media/characters/kassy/back.svg",
  18260. extra: 1280 / 1225,
  18261. bottom: 0.002
  18262. }
  18263. },
  18264. foot: {
  18265. height: math.unit(1.266, "feet"),
  18266. name: "Foot",
  18267. image: {
  18268. source: "./media/characters/kassy/foot.svg"
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Normal",
  18275. height: math.unit(5 + 7 / 12, "feet")
  18276. },
  18277. {
  18278. name: "Macro",
  18279. height: math.unit(137, "feet"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Megamacro",
  18284. height: math.unit(1, "mile")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(6 + 1 / 12, "feet"),
  18293. weight: math.unit(200, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/neil/front.svg",
  18297. extra: 1326 / 1250,
  18298. bottom: 0.023
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(6 + 1 / 12, "feet"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Macro",
  18310. height: math.unit(200, "feet")
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(5 + 9 / 12, "feet"),
  18319. weight: math.unit(190, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/atticus/front.svg",
  18323. extra: 2934 / 2785,
  18324. bottom: 0.025
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(5 + 9 / 12, "feet"),
  18332. default: true
  18333. },
  18334. {
  18335. name: "Macro",
  18336. height: math.unit(180, "feet")
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18342. {
  18343. side: {
  18344. height: math.unit(9, "feet"),
  18345. weight: math.unit(650, "lb"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/milo/side.svg",
  18349. extra: 2644 / 2310,
  18350. bottom: 0.032
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(9, "feet"),
  18358. default: true
  18359. },
  18360. {
  18361. name: "Macro",
  18362. height: math.unit(300, "feet")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18368. {
  18369. side: {
  18370. height: math.unit(8, "meters"),
  18371. weight: math.unit(90000, "kg"),
  18372. name: "Side",
  18373. image: {
  18374. source: "./media/characters/ijzer/side.svg",
  18375. extra: 2756 / 1600,
  18376. bottom: 0.01
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Small",
  18383. height: math.unit(3, "meters")
  18384. },
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(8, "meters"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Normal+",
  18392. height: math.unit(10, "meters")
  18393. },
  18394. {
  18395. name: "Bigger",
  18396. height: math.unit(24, "meters")
  18397. },
  18398. {
  18399. name: "Huge",
  18400. height: math.unit(80, "meters")
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18406. {
  18407. front: {
  18408. height: math.unit(6 + 2 / 12, "feet"),
  18409. weight: math.unit(153, "lb"),
  18410. name: "Front",
  18411. image: {
  18412. source: "./media/characters/luca-cervicum/front.svg",
  18413. extra: 370 / 327,
  18414. bottom: 0.015
  18415. }
  18416. },
  18417. back: {
  18418. height: math.unit(6 + 2 / 12, "feet"),
  18419. weight: math.unit(153, "lb"),
  18420. name: "Back",
  18421. image: {
  18422. source: "./media/characters/luca-cervicum/back.svg",
  18423. extra: 367 / 333,
  18424. bottom: 0.005
  18425. }
  18426. },
  18427. frontGear: {
  18428. height: math.unit(6 + 2 / 12, "feet"),
  18429. weight: math.unit(173, "lb"),
  18430. name: "Front (Gear)",
  18431. image: {
  18432. source: "./media/characters/luca-cervicum/front-gear.svg",
  18433. extra: 377 / 333,
  18434. bottom: 0.006
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Normal",
  18441. height: math.unit(6 + 2 / 12, "feet"),
  18442. default: true
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(6 + 1 / 12, "feet"),
  18451. weight: math.unit(304, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/oliver/front.svg",
  18455. extra: 157 / 143,
  18456. bottom: 0.08
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Normal",
  18463. height: math.unit(6 + 1 / 12, "feet"),
  18464. default: true
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(5 + 7 / 12, "feet"),
  18473. weight: math.unit(140, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/shane/front.svg",
  18477. extra: 304 / 289,
  18478. bottom: 0.005
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(5 + 7 / 12, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 9 / 12, "feet"),
  18495. weight: math.unit(178, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/shin/front.svg",
  18499. extra: 159 / 151,
  18500. bottom: 0.015
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(5 + 9 / 12, "feet"),
  18508. default: true
  18509. },
  18510. ]
  18511. ))
  18512. characterMakers.push(() => makeCharacter(
  18513. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18514. {
  18515. front: {
  18516. height: math.unit(5 + 10 / 12, "feet"),
  18517. weight: math.unit(168, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/xerxes/front.svg",
  18521. extra: 282 / 260,
  18522. bottom: 0.045
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(5 + 10 / 12, "feet"),
  18530. default: true
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(6 + 7 / 12, "feet"),
  18539. weight: math.unit(208, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/chaska/front.svg",
  18543. extra: 332 / 319,
  18544. bottom: 0.015
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(6 + 7 / 12, "feet"),
  18552. default: true
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(5 + 8 / 12, "feet"),
  18561. weight: math.unit(208, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/enuk/front.svg",
  18565. extra: 437 / 406,
  18566. bottom: 0.02
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(5 + 8 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(5 + 10 / 12, "feet"),
  18583. weight: math.unit(252, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/bruun/front.svg",
  18587. extra: 197 / 187,
  18588. bottom: 0.012
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(5 + 10 / 12, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(6 + 10 / 12, "feet"),
  18605. weight: math.unit(255, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/alexeev/front.svg",
  18609. extra: 213 / 200,
  18610. bottom: 0.05
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Normal",
  18617. height: math.unit(6 + 10 / 12, "feet"),
  18618. default: true
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(2 + 8 / 12, "feet"),
  18627. weight: math.unit(22, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/evelyn/front.svg",
  18631. extra: 208 / 180
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(2 + 8 / 12, "feet"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18645. {
  18646. front: {
  18647. height: math.unit(5 + 9 / 12, "feet"),
  18648. weight: math.unit(139, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/inca/front.svg",
  18652. extra: 294 / 291,
  18653. bottom: 0.03
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(5 + 9 / 12, "feet"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(5 + 1 / 12, "feet"),
  18670. weight: math.unit(84, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/magdalene/front.svg",
  18674. extra: 293 / 273
  18675. }
  18676. },
  18677. },
  18678. [
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(5 + 1 / 12, "feet"),
  18682. default: true
  18683. },
  18684. ]
  18685. ))
  18686. characterMakers.push(() => makeCharacter(
  18687. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18688. {
  18689. front: {
  18690. height: math.unit(6 + 3 / 12, "feet"),
  18691. weight: math.unit(185, "lb"),
  18692. name: "Front",
  18693. image: {
  18694. source: "./media/characters/mera/front.svg",
  18695. extra: 291 / 277,
  18696. bottom: 0.03
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(6 + 3 / 12, "feet"),
  18704. default: true
  18705. },
  18706. ]
  18707. ))
  18708. characterMakers.push(() => makeCharacter(
  18709. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18710. {
  18711. front: {
  18712. height: math.unit(6 + 7 / 12, "feet"),
  18713. weight: math.unit(160, "lb"),
  18714. name: "Front",
  18715. image: {
  18716. source: "./media/characters/ceres/front.svg",
  18717. extra: 1023 / 950,
  18718. bottom: 0.027
  18719. }
  18720. },
  18721. back: {
  18722. height: math.unit(6 + 7 / 12, "feet"),
  18723. weight: math.unit(160, "lb"),
  18724. name: "Back",
  18725. image: {
  18726. source: "./media/characters/ceres/back.svg",
  18727. extra: 1023 / 950
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(6 + 7 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(5 + 10 / 12, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/kris/front.svg",
  18748. extra: 885 / 803,
  18749. bottom: 0.03
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5 + 10 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(7, "feet"),
  18766. weight: math.unit(120, "kg"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/taluthus/front.svg",
  18770. extra: 903 / 833,
  18771. bottom: 0.015
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(7, "feet"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(300, "feet")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(5 + 9 / 12, "feet"),
  18792. weight: math.unit(145, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/dawn/front.svg",
  18796. extra: 2094 / 2016,
  18797. bottom: 0.025
  18798. }
  18799. },
  18800. back: {
  18801. height: math.unit(5 + 9 / 12, "feet"),
  18802. weight: math.unit(160, "lb"),
  18803. name: "Back",
  18804. image: {
  18805. source: "./media/characters/dawn/back.svg",
  18806. extra: 2112 / 2080,
  18807. bottom: 0.005
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(6 + 7 / 12, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18821. {
  18822. anthro: {
  18823. height: math.unit(8 + 3 / 12, "feet"),
  18824. weight: math.unit(450, "lb"),
  18825. name: "Anthro",
  18826. image: {
  18827. source: "./media/characters/arador/anthro.svg",
  18828. extra: 1835 / 1718,
  18829. bottom: 0.025
  18830. }
  18831. },
  18832. feral: {
  18833. height: math.unit(4, "feet"),
  18834. weight: math.unit(200, "lb"),
  18835. name: "Feral",
  18836. image: {
  18837. source: "./media/characters/arador/feral.svg",
  18838. extra: 1683 / 1514,
  18839. bottom: 0.07
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(8 + 3 / 12, "feet")
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(82.5, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18857. {
  18858. front: {
  18859. height: math.unit(5 + 10 / 12, "feet"),
  18860. weight: math.unit(125, "lb"),
  18861. name: "Front",
  18862. image: {
  18863. source: "./media/characters/dharsi/front.svg",
  18864. extra: 716 / 630,
  18865. bottom: 0.035
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Nano",
  18872. height: math.unit(100, "nm")
  18873. },
  18874. {
  18875. name: "Micro",
  18876. height: math.unit(2, "inches")
  18877. },
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(5 + 10 / 12, "feet"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Macro",
  18885. height: math.unit(1000, "feet")
  18886. },
  18887. {
  18888. name: "Megamacro",
  18889. height: math.unit(10, "miles")
  18890. },
  18891. {
  18892. name: "Gigamacro",
  18893. height: math.unit(3000, "miles")
  18894. },
  18895. {
  18896. name: "Teramacro",
  18897. height: math.unit(500000, "miles")
  18898. },
  18899. {
  18900. name: "Teramacro+",
  18901. height: math.unit(30, "galaxies")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(6, "feet"),
  18910. weight: math.unit(150, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/deathy/front.svg",
  18914. extra: 1552 / 1463,
  18915. bottom: 0.025
  18916. }
  18917. },
  18918. side: {
  18919. height: math.unit(6, "feet"),
  18920. weight: math.unit(150, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/deathy/side.svg",
  18924. extra: 1604 / 1455,
  18925. bottom: 0.025
  18926. }
  18927. },
  18928. back: {
  18929. height: math.unit(6, "feet"),
  18930. weight: math.unit(150, "lb"),
  18931. name: "Back",
  18932. image: {
  18933. source: "./media/characters/deathy/back.svg",
  18934. extra: 1580 / 1463,
  18935. bottom: 0.005
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Micro",
  18942. height: math.unit(5, "millimeters")
  18943. },
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(6 + 5 / 12, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18953. {
  18954. front: {
  18955. height: math.unit(16, "feet"),
  18956. weight: math.unit(4000, "lb"),
  18957. name: "Front",
  18958. image: {
  18959. source: "./media/characters/juniper/front.svg",
  18960. bottom: 0.04
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(16, "feet"),
  18968. default: true
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6, "feet"),
  18977. weight: math.unit(150, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/hipster/front.svg",
  18981. extra: 1312 / 1209,
  18982. bottom: 0.025
  18983. }
  18984. },
  18985. back: {
  18986. height: math.unit(6, "feet"),
  18987. weight: math.unit(150, "lb"),
  18988. name: "Back",
  18989. image: {
  18990. source: "./media/characters/hipster/back.svg",
  18991. extra: 1281 / 1196,
  18992. bottom: 0.01
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Micro",
  18999. height: math.unit(1, "mm")
  19000. },
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(4, "inches"),
  19004. default: true
  19005. },
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(500, "feet")
  19009. },
  19010. {
  19011. name: "Megamacro",
  19012. height: math.unit(1000, "miles")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(6, "feet"),
  19021. weight: math.unit(150, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/tendirmuldr/front.svg",
  19025. extra: 1878 / 1772,
  19026. bottom: 0.015
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Megamacro",
  19033. height: math.unit(1500, "miles"),
  19034. default: true
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19040. {
  19041. front: {
  19042. height: math.unit(14, "feet"),
  19043. weight: math.unit(12000, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/mort/front.svg",
  19047. extra: 365 / 318,
  19048. bottom: 0.01
  19049. }
  19050. },
  19051. side: {
  19052. height: math.unit(14, "feet"),
  19053. weight: math.unit(12000, "lb"),
  19054. name: "Side",
  19055. image: {
  19056. source: "./media/characters/mort/side.svg",
  19057. extra: 365 / 318,
  19058. bottom: 0.052
  19059. },
  19060. default: true
  19061. },
  19062. back: {
  19063. height: math.unit(14, "feet"),
  19064. weight: math.unit(12000, "lb"),
  19065. name: "Back",
  19066. image: {
  19067. source: "./media/characters/mort/back.svg",
  19068. extra: 371 / 332,
  19069. bottom: 0.18
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Normal",
  19076. height: math.unit(14, "feet"),
  19077. default: true
  19078. },
  19079. ]
  19080. ))
  19081. characterMakers.push(() => makeCharacter(
  19082. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19083. {
  19084. front: {
  19085. height: math.unit(8, "feet"),
  19086. weight: math.unit(1, "ton"),
  19087. name: "Front",
  19088. image: {
  19089. source: "./media/characters/lycoa/front.svg",
  19090. extra: 1875 / 1789,
  19091. bottom: 0.022
  19092. }
  19093. },
  19094. back: {
  19095. height: math.unit(8, "feet"),
  19096. weight: math.unit(1, "ton"),
  19097. name: "Back",
  19098. image: {
  19099. source: "./media/characters/lycoa/back.svg",
  19100. extra: 1835 / 1781,
  19101. bottom: 0.03
  19102. }
  19103. },
  19104. head: {
  19105. height: math.unit(2.1, "feet"),
  19106. name: "Head",
  19107. image: {
  19108. source: "./media/characters/lycoa/head.svg"
  19109. }
  19110. },
  19111. tailmaw: {
  19112. height: math.unit(1.9, "feet"),
  19113. name: "Tailmaw",
  19114. image: {
  19115. source: "./media/characters/lycoa/tailmaw.svg"
  19116. }
  19117. },
  19118. tentacles: {
  19119. height: math.unit(2.1, "feet"),
  19120. name: "Tentacles",
  19121. image: {
  19122. source: "./media/characters/lycoa/tentacles.svg"
  19123. }
  19124. },
  19125. dick: {
  19126. height: math.unit(1.73, "feet"),
  19127. name: "Dick",
  19128. image: {
  19129. source: "./media/characters/lycoa/dick.svg"
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(8, "feet"),
  19137. default: true
  19138. },
  19139. {
  19140. name: "Macro",
  19141. height: math.unit(30, "feet")
  19142. },
  19143. ]
  19144. ))
  19145. characterMakers.push(() => makeCharacter(
  19146. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19147. {
  19148. front: {
  19149. height: math.unit(4 + 2 / 12, "feet"),
  19150. weight: math.unit(70, "lb"),
  19151. name: "Front",
  19152. image: {
  19153. source: "./media/characters/naldara/front.svg",
  19154. extra: 841 / 720,
  19155. bottom: 0.04
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(4 + 2 / 12, "feet"),
  19163. default: true
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(13 + 7 / 12, "feet"),
  19172. weight: math.unit(1500, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/briar/front.svg",
  19176. extra: 626 / 596,
  19177. bottom: 0.08
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(13 + 7 / 12, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19191. {
  19192. side: {
  19193. height: math.unit(10, "feet"),
  19194. weight: math.unit(500, "lb"),
  19195. name: "Side",
  19196. image: {
  19197. source: "./media/characters/vanguard/side.svg",
  19198. extra: 502 / 425,
  19199. bottom: 0.087
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(10, "feet"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(7.5, "feet"),
  19216. weight: math.unit(2, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/artemis/front.svg",
  19220. extra: 1192 / 1075,
  19221. bottom: 0.07
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(7.5, "feet"),
  19229. default: true
  19230. },
  19231. {
  19232. name: "Enlarged",
  19233. height: math.unit(12, "feet")
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19239. {
  19240. front: {
  19241. height: math.unit(5 + 3 / 12, "feet"),
  19242. weight: math.unit(160, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/kira/front.svg",
  19246. extra: 906 / 786,
  19247. bottom: 0.01
  19248. }
  19249. },
  19250. back: {
  19251. height: math.unit(5 + 3 / 12, "feet"),
  19252. weight: math.unit(160, "lb"),
  19253. name: "Back",
  19254. image: {
  19255. source: "./media/characters/kira/back.svg",
  19256. extra: 882 / 757,
  19257. bottom: 0.005
  19258. }
  19259. },
  19260. frontDressed: {
  19261. height: math.unit(5 + 3 / 12, "feet"),
  19262. weight: math.unit(160, "lb"),
  19263. name: "Front (Dressed)",
  19264. image: {
  19265. source: "./media/characters/kira/front-dressed.svg",
  19266. extra: 906 / 786,
  19267. bottom: 0.01
  19268. }
  19269. },
  19270. beans: {
  19271. height: math.unit(0.92, "feet"),
  19272. name: "Beans",
  19273. image: {
  19274. source: "./media/characters/kira/beans.svg"
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(5 + 3 / 12, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19288. {
  19289. front: {
  19290. height: math.unit(5 + 4 / 12, "feet"),
  19291. weight: math.unit(145, "lb"),
  19292. name: "Front",
  19293. image: {
  19294. source: "./media/characters/scramble/front.svg",
  19295. extra: 763 / 727,
  19296. bottom: 0.05
  19297. }
  19298. },
  19299. back: {
  19300. height: math.unit(5 + 4 / 12, "feet"),
  19301. weight: math.unit(145, "lb"),
  19302. name: "Back",
  19303. image: {
  19304. source: "./media/characters/scramble/back.svg",
  19305. extra: 826 / 737,
  19306. bottom: 0.002
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(5 + 4 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19320. {
  19321. side: {
  19322. height: math.unit(6 + 2 / 12, "feet"),
  19323. weight: math.unit(190, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/biscuit/side.svg",
  19327. extra: 858 / 791,
  19328. bottom: 0.044
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(6 + 2 / 12, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(5 + 2 / 12, "feet"),
  19345. weight: math.unit(120, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/poffin/front.svg",
  19349. extra: 786 / 680,
  19350. bottom: 0.005
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(5 + 2 / 12, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(6 + 3 / 12, "feet"),
  19367. weight: math.unit(519, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/dhari/front.svg",
  19371. extra: 1048 / 946,
  19372. bottom: 0.015
  19373. }
  19374. },
  19375. back: {
  19376. height: math.unit(6 + 3 / 12, "feet"),
  19377. weight: math.unit(519, "lb"),
  19378. name: "Back",
  19379. image: {
  19380. source: "./media/characters/dhari/back.svg",
  19381. extra: 1048 / 931,
  19382. bottom: 0.005
  19383. }
  19384. },
  19385. frontDressed: {
  19386. height: math.unit(6 + 3 / 12, "feet"),
  19387. weight: math.unit(519, "lb"),
  19388. name: "Front (Dressed)",
  19389. image: {
  19390. source: "./media/characters/dhari/front-dressed.svg",
  19391. extra: 1713 / 1546,
  19392. bottom: 0.02
  19393. }
  19394. },
  19395. backDressed: {
  19396. height: math.unit(6 + 3 / 12, "feet"),
  19397. weight: math.unit(519, "lb"),
  19398. name: "Back (Dressed)",
  19399. image: {
  19400. source: "./media/characters/dhari/back-dressed.svg",
  19401. extra: 1699 / 1537,
  19402. bottom: 0.01
  19403. }
  19404. },
  19405. maw: {
  19406. height: math.unit(0.95, "feet"),
  19407. name: "Maw",
  19408. image: {
  19409. source: "./media/characters/dhari/maw.svg"
  19410. }
  19411. },
  19412. wereFront: {
  19413. height: math.unit(12 + 8 / 12, "feet"),
  19414. weight: math.unit(4000, "lb"),
  19415. name: "Front (Were)",
  19416. image: {
  19417. source: "./media/characters/dhari/were-front.svg",
  19418. extra: 1065 / 969,
  19419. bottom: 0.015
  19420. }
  19421. },
  19422. wereBack: {
  19423. height: math.unit(12 + 8 / 12, "feet"),
  19424. weight: math.unit(4000, "lb"),
  19425. name: "Back (Were)",
  19426. image: {
  19427. source: "./media/characters/dhari/were-back.svg",
  19428. extra: 1065 / 969,
  19429. bottom: 0.012
  19430. }
  19431. },
  19432. wereMaw: {
  19433. height: math.unit(0.625, "meters"),
  19434. name: "Maw (Were)",
  19435. image: {
  19436. source: "./media/characters/dhari/were-maw.svg"
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(6 + 3 / 12, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19450. {
  19451. anthro: {
  19452. height: math.unit(5 + 7 / 12, "feet"),
  19453. weight: math.unit(175, "lb"),
  19454. name: "Anthro",
  19455. image: {
  19456. source: "./media/characters/rena-dyne/anthro.svg",
  19457. extra: 1849 / 1785,
  19458. bottom: 0.005
  19459. }
  19460. },
  19461. taur: {
  19462. height: math.unit(15 + 6 / 12, "feet"),
  19463. weight: math.unit(8000, "lb"),
  19464. name: "Taur",
  19465. image: {
  19466. source: "./media/characters/rena-dyne/taur.svg",
  19467. extra: 2315 / 2234,
  19468. bottom: 0.033
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(5 + 7 / 12, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(8, "feet"),
  19485. weight: math.unit(600, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/weremeep/front.svg",
  19489. extra: 967 / 862,
  19490. bottom: 0.01
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(8, "feet"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "Lorg",
  19502. height: math.unit(12, "feet")
  19503. },
  19504. {
  19505. name: "Oh Lawd She Comin'",
  19506. height: math.unit(20, "feet")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19512. {
  19513. front: {
  19514. height: math.unit(4, "feet"),
  19515. weight: math.unit(90, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/reza/front.svg",
  19519. extra: 1183 / 1111,
  19520. bottom: 0.017
  19521. }
  19522. },
  19523. back: {
  19524. height: math.unit(4, "feet"),
  19525. weight: math.unit(90, "lb"),
  19526. name: "Back",
  19527. image: {
  19528. source: "./media/characters/reza/back.svg",
  19529. extra: 1183 / 1111,
  19530. bottom: 0.01
  19531. }
  19532. },
  19533. drake: {
  19534. height: math.unit(30, "feet"),
  19535. weight: math.unit(246960, "lb"),
  19536. name: "Drake",
  19537. image: {
  19538. source: "./media/characters/reza/drake.svg",
  19539. extra: 2350 / 2024,
  19540. bottom: 60.7 / 2403
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(4, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19554. {
  19555. side: {
  19556. height: math.unit(15, "feet"),
  19557. weight: math.unit(14, "tons"),
  19558. name: "Side",
  19559. image: {
  19560. source: "./media/characters/athea/side.svg",
  19561. extra: 960 / 540,
  19562. bottom: 0.003
  19563. }
  19564. },
  19565. sitting: {
  19566. height: math.unit(6 * 2.85, "feet"),
  19567. weight: math.unit(14, "tons"),
  19568. name: "Sitting",
  19569. image: {
  19570. source: "./media/characters/athea/sitting.svg",
  19571. extra: 621 / 581,
  19572. bottom: 0.075
  19573. }
  19574. },
  19575. maw: {
  19576. height: math.unit(7.59498031496063, "feet"),
  19577. name: "Maw",
  19578. image: {
  19579. source: "./media/characters/athea/maw.svg"
  19580. }
  19581. },
  19582. },
  19583. [
  19584. {
  19585. name: "Lap Cat",
  19586. height: math.unit(2.5, "feet")
  19587. },
  19588. {
  19589. name: "Minimacro",
  19590. height: math.unit(15, "feet"),
  19591. default: true
  19592. },
  19593. {
  19594. name: "Macro",
  19595. height: math.unit(120, "feet")
  19596. },
  19597. {
  19598. name: "Macro+",
  19599. height: math.unit(640, "feet")
  19600. },
  19601. {
  19602. name: "Colossus",
  19603. height: math.unit(2.2, "miles")
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(8 + 8 / 12, "feet"),
  19612. weight: math.unit(130, "kg"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/seroko/front.svg",
  19616. extra: 1385 / 1280,
  19617. bottom: 0.025
  19618. }
  19619. },
  19620. back: {
  19621. height: math.unit(8 + 8 / 12, "feet"),
  19622. weight: math.unit(130, "kg"),
  19623. name: "Back",
  19624. image: {
  19625. source: "./media/characters/seroko/back.svg",
  19626. extra: 1369 / 1238,
  19627. bottom: 0.018
  19628. }
  19629. },
  19630. frontDressed: {
  19631. height: math.unit(8 + 8 / 12, "feet"),
  19632. weight: math.unit(130, "kg"),
  19633. name: "Front (Dressed)",
  19634. image: {
  19635. source: "./media/characters/seroko/front-dressed.svg",
  19636. extra: 1366 / 1275,
  19637. bottom: 0.03
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Normal",
  19644. height: math.unit(8 + 8 / 12, "feet"),
  19645. default: true
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19651. {
  19652. front: {
  19653. height: math.unit(5.5, "feet"),
  19654. weight: math.unit(160, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/quatzi/front.svg",
  19658. extra: 2346 / 2242,
  19659. bottom: 0.015
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(5.5, "feet"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Big",
  19671. height: math.unit(7.7, "feet")
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(5 + 11 / 12, "feet"),
  19680. weight: math.unit(180, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/sen/front.svg",
  19684. extra: 1321 / 1254,
  19685. bottom: 0.015
  19686. }
  19687. },
  19688. side: {
  19689. height: math.unit(5 + 11 / 12, "feet"),
  19690. weight: math.unit(180, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/sen/side.svg",
  19694. extra: 1321 / 1254,
  19695. bottom: 0.007
  19696. }
  19697. },
  19698. back: {
  19699. height: math.unit(5 + 11 / 12, "feet"),
  19700. weight: math.unit(180, "lb"),
  19701. name: "Back",
  19702. image: {
  19703. source: "./media/characters/sen/back.svg",
  19704. extra: 1321 / 1254
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(5 + 11 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(166.6, "cm"),
  19721. weight: math.unit(66.6, "kg"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/fruity/front.svg",
  19725. extra: 1510 / 1386,
  19726. bottom: 0.04
  19727. }
  19728. },
  19729. back: {
  19730. height: math.unit(166.6, "cm"),
  19731. weight: math.unit(66.6, "lb"),
  19732. name: "Back",
  19733. image: {
  19734. source: "./media/characters/fruity/back.svg",
  19735. extra: 1563 / 1435,
  19736. bottom: 0.005
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(166.6, "cm"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Demonic",
  19748. height: math.unit(166.6, "feet")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19754. {
  19755. side: {
  19756. height: math.unit(10, "feet"),
  19757. weight: math.unit(500, "lb"),
  19758. name: "Side",
  19759. image: {
  19760. source: "./media/characters/zost/side.svg",
  19761. extra: 966 / 880,
  19762. bottom: 0.075
  19763. }
  19764. },
  19765. mawFront: {
  19766. height: math.unit(1.08, "meters"),
  19767. name: "Maw (Front)",
  19768. image: {
  19769. source: "./media/characters/zost/maw-front.svg"
  19770. }
  19771. },
  19772. mawSide: {
  19773. height: math.unit(2.66, "feet"),
  19774. name: "Maw (Side)",
  19775. image: {
  19776. source: "./media/characters/zost/maw-side.svg"
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(10, "feet"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19790. {
  19791. front: {
  19792. height: math.unit(5 + 4 / 12, "feet"),
  19793. weight: math.unit(120, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/luci/front.svg",
  19797. extra: 1985 / 1884,
  19798. bottom: 0.04
  19799. }
  19800. },
  19801. back: {
  19802. height: math.unit(5 + 4 / 12, "feet"),
  19803. weight: math.unit(120, "lb"),
  19804. name: "Back",
  19805. image: {
  19806. source: "./media/characters/luci/back.svg",
  19807. extra: 1892 / 1791,
  19808. bottom: 0.002
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(5 + 4 / 12, "feet"),
  19816. default: true
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19822. {
  19823. front: {
  19824. height: math.unit(1500, "feet"),
  19825. weight: math.unit(3.8e6, "tons"),
  19826. name: "Front",
  19827. image: {
  19828. source: "./media/characters/2th/front.svg",
  19829. extra: 3489 / 3350,
  19830. bottom: 0.1
  19831. }
  19832. },
  19833. foot: {
  19834. height: math.unit(461, "feet"),
  19835. name: "Foot",
  19836. image: {
  19837. source: "./media/characters/2th/foot.svg"
  19838. }
  19839. },
  19840. },
  19841. [
  19842. {
  19843. name: "\"Micro\"",
  19844. height: math.unit(15 + 7 / 12, "feet")
  19845. },
  19846. {
  19847. name: "Normal",
  19848. height: math.unit(1500, "feet"),
  19849. default: true
  19850. },
  19851. {
  19852. name: "Macro",
  19853. height: math.unit(5000, "feet")
  19854. },
  19855. {
  19856. name: "Megamacro",
  19857. height: math.unit(15, "miles")
  19858. },
  19859. {
  19860. name: "Gigamacro",
  19861. height: math.unit(4000, "miles")
  19862. },
  19863. {
  19864. name: "Galactic",
  19865. height: math.unit(50, "AU")
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(5 + 6 / 12, "feet"),
  19874. weight: math.unit(220, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/amethyst/front.svg",
  19878. extra: 2078 / 2040,
  19879. bottom: 0.045
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(5 + 6 / 12, "feet"),
  19884. weight: math.unit(220, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/amethyst/back.svg",
  19888. extra: 2021 / 1989,
  19889. bottom: 0.02
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(5 + 6 / 12, "feet"),
  19897. default: true
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19903. {
  19904. front: {
  19905. height: math.unit(4 + 11 / 12, "feet"),
  19906. weight: math.unit(120, "lb"),
  19907. name: "Front",
  19908. image: {
  19909. source: "./media/characters/yumi-akiyama/front.svg",
  19910. extra: 1327 / 1235,
  19911. bottom: 0.02
  19912. }
  19913. },
  19914. back: {
  19915. height: math.unit(4 + 11 / 12, "feet"),
  19916. weight: math.unit(120, "lb"),
  19917. name: "Back",
  19918. image: {
  19919. source: "./media/characters/yumi-akiyama/back.svg",
  19920. extra: 1287 / 1245,
  19921. bottom: 0.002
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Galactic",
  19928. height: math.unit(50, "galaxies"),
  19929. default: true
  19930. },
  19931. {
  19932. name: "Universal",
  19933. height: math.unit(100, "universes")
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(8, "feet"),
  19942. weight: math.unit(500, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/rifter-yrmori/front.svg",
  19946. extra: 1180 / 1125,
  19947. bottom: 0.02
  19948. }
  19949. },
  19950. back: {
  19951. height: math.unit(8, "feet"),
  19952. weight: math.unit(500, "lb"),
  19953. name: "Back",
  19954. image: {
  19955. source: "./media/characters/rifter-yrmori/back.svg",
  19956. extra: 1190 / 1145,
  19957. bottom: 0.001
  19958. }
  19959. },
  19960. wings: {
  19961. height: math.unit(7.75, "feet"),
  19962. weight: math.unit(500, "lb"),
  19963. name: "Wings",
  19964. image: {
  19965. source: "./media/characters/rifter-yrmori/wings.svg",
  19966. extra: 1357 / 1285
  19967. }
  19968. },
  19969. maw: {
  19970. height: math.unit(0.8, "feet"),
  19971. name: "Maw",
  19972. image: {
  19973. source: "./media/characters/rifter-yrmori/maw.svg"
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(8, "feet"),
  19981. default: true
  19982. },
  19983. {
  19984. name: "Macro",
  19985. height: math.unit(42, "meters")
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19991. {
  19992. were: {
  19993. height: math.unit(25 + 6 / 12, "feet"),
  19994. weight: math.unit(10000, "lb"),
  19995. name: "Were",
  19996. image: {
  19997. source: "./media/characters/tahajin/were.svg",
  19998. extra: 801 / 770,
  19999. bottom: 0.042
  20000. }
  20001. },
  20002. aquatic: {
  20003. height: math.unit(6 + 4 / 12, "feet"),
  20004. weight: math.unit(160, "lb"),
  20005. name: "Aquatic",
  20006. image: {
  20007. source: "./media/characters/tahajin/aquatic.svg",
  20008. extra: 572 / 542,
  20009. bottom: 0.04
  20010. }
  20011. },
  20012. chow: {
  20013. height: math.unit(8 + 11 / 12, "feet"),
  20014. weight: math.unit(450, "lb"),
  20015. name: "Chow",
  20016. image: {
  20017. source: "./media/characters/tahajin/chow.svg",
  20018. extra: 660 / 640,
  20019. bottom: 0.015
  20020. }
  20021. },
  20022. demiNaga: {
  20023. height: math.unit(6 + 8 / 12, "feet"),
  20024. weight: math.unit(300, "lb"),
  20025. name: "Demi Naga",
  20026. image: {
  20027. source: "./media/characters/tahajin/demi-naga.svg",
  20028. extra: 643 / 615,
  20029. bottom: 0.1
  20030. }
  20031. },
  20032. data: {
  20033. height: math.unit(5, "inches"),
  20034. weight: math.unit(0.1, "lb"),
  20035. name: "Data",
  20036. image: {
  20037. source: "./media/characters/tahajin/data.svg"
  20038. }
  20039. },
  20040. fluu: {
  20041. height: math.unit(5 + 7 / 12, "feet"),
  20042. weight: math.unit(140, "lb"),
  20043. name: "Fluu",
  20044. image: {
  20045. source: "./media/characters/tahajin/fluu.svg",
  20046. extra: 628 / 592,
  20047. bottom: 0.02
  20048. }
  20049. },
  20050. starWarrior: {
  20051. height: math.unit(4 + 5 / 12, "feet"),
  20052. weight: math.unit(50, "lb"),
  20053. name: "Star Warrior",
  20054. image: {
  20055. source: "./media/characters/tahajin/star-warrior.svg"
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(25 + 6 / 12, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(8, "feet"),
  20072. weight: math.unit(350, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/gabira/front.svg",
  20076. extra: 608 / 580,
  20077. bottom: 0.03
  20078. }
  20079. },
  20080. back: {
  20081. height: math.unit(8, "feet"),
  20082. weight: math.unit(350, "lb"),
  20083. name: "Back",
  20084. image: {
  20085. source: "./media/characters/gabira/back.svg",
  20086. extra: 608 / 580,
  20087. bottom: 0.03
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(8, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(5 + 3 / 12, "feet"),
  20104. weight: math.unit(137, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/sasha-katraine/front.svg",
  20108. bottom: 0.045
  20109. }
  20110. },
  20111. },
  20112. [
  20113. {
  20114. name: "Micro",
  20115. height: math.unit(5, "inches")
  20116. },
  20117. {
  20118. name: "Normal",
  20119. height: math.unit(5 + 3 / 12, "feet"),
  20120. default: true
  20121. },
  20122. ]
  20123. ))
  20124. characterMakers.push(() => makeCharacter(
  20125. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20126. {
  20127. side: {
  20128. height: math.unit(4, "inches"),
  20129. weight: math.unit(200, "grams"),
  20130. name: "Side",
  20131. image: {
  20132. source: "./media/characters/der/side.svg",
  20133. extra: 719 / 400,
  20134. bottom: 30.6 / 749.9187
  20135. }
  20136. },
  20137. },
  20138. [
  20139. {
  20140. name: "Micro",
  20141. height: math.unit(4, "inches"),
  20142. default: true
  20143. },
  20144. ]
  20145. ))
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20148. {
  20149. side: {
  20150. height: math.unit(30, "meters"),
  20151. weight: math.unit(700, "tonnes"),
  20152. name: "Side",
  20153. image: {
  20154. source: "./media/characters/fixerdragon/side.svg",
  20155. extra: (1293.0514 - 116.03) / 1106.86,
  20156. bottom: 116.03 / 1293.0514
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Planck",
  20163. height: math.unit(1.6e-35, "meters")
  20164. },
  20165. {
  20166. name: "Micro",
  20167. height: math.unit(0.4, "meters")
  20168. },
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(30, "meters"),
  20172. default: true
  20173. },
  20174. {
  20175. name: "Megamacro",
  20176. height: math.unit(1.2, "megameters")
  20177. },
  20178. {
  20179. name: "Teramacro",
  20180. height: math.unit(130, "terameters")
  20181. },
  20182. {
  20183. name: "Yottamacro",
  20184. height: math.unit(6200, "yottameters")
  20185. },
  20186. ]
  20187. ));
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20190. {
  20191. front: {
  20192. height: math.unit(8, "feet"),
  20193. weight: math.unit(250, "lb"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/kite/front.svg",
  20197. extra: 2796 / 2659,
  20198. bottom: 0.002
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Normal",
  20205. height: math.unit(8, "feet"),
  20206. default: true
  20207. },
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(360, "feet")
  20211. },
  20212. {
  20213. name: "Megamacro",
  20214. height: math.unit(1500, "feet")
  20215. },
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20220. {
  20221. front: {
  20222. height: math.unit(5 + 10 / 12, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/poojawa-vynar/front.svg",
  20227. extra: (1506.1547 - 55) / 1356.6,
  20228. bottom: 55 / 1506.1547
  20229. }
  20230. },
  20231. frontTailless: {
  20232. height: math.unit(5 + 10 / 12, "feet"),
  20233. weight: math.unit(150, "lb"),
  20234. name: "Front (Tailless)",
  20235. image: {
  20236. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20237. extra: (1506.1547 - 55) / 1356.6,
  20238. bottom: 55 / 1506.1547
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(5 + 10 / 12, "feet"),
  20246. default: true
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(293, "meters"),
  20255. weight: math.unit(70400, "tons"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/violette/front.svg",
  20259. extra: 1227 / 1180,
  20260. bottom: 0.005
  20261. }
  20262. },
  20263. back: {
  20264. height: math.unit(293, "meters"),
  20265. weight: math.unit(70400, "tons"),
  20266. name: "Back",
  20267. image: {
  20268. source: "./media/characters/violette/back.svg",
  20269. extra: 1227 / 1180,
  20270. bottom: 0.005
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(293, "meters"),
  20278. default: true
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20284. {
  20285. front: {
  20286. height: math.unit(1050, "feet"),
  20287. weight: math.unit(200000, "tons"),
  20288. name: "Front",
  20289. image: {
  20290. source: "./media/characters/alessandra/front.svg",
  20291. extra: 960 / 912,
  20292. bottom: 0.06
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Macro",
  20299. height: math.unit(1050, "feet")
  20300. },
  20301. {
  20302. name: "Macro+",
  20303. height: math.unit(900, "meters"),
  20304. default: true
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20310. {
  20311. front: {
  20312. height: math.unit(5, "feet"),
  20313. weight: math.unit(187, "lb"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/person/front.svg",
  20317. extra: 3087 / 2945,
  20318. bottom: 91 / 3181
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Micro",
  20325. height: math.unit(3, "inches")
  20326. },
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(5, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Macro",
  20334. height: math.unit(90, "feet")
  20335. },
  20336. {
  20337. name: "Max Size",
  20338. height: math.unit(280, "feet")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(4.5, "meters"),
  20347. weight: math.unit(3200, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/ty/front.svg",
  20351. extra: 1038 / 960,
  20352. bottom: 31.156 / 1068
  20353. }
  20354. },
  20355. back: {
  20356. height: math.unit(4.5, "meters"),
  20357. weight: math.unit(3200, "lb"),
  20358. name: "Back",
  20359. image: {
  20360. source: "./media/characters/ty/back.svg",
  20361. extra: 1044 / 966,
  20362. bottom: 7.48 / 1049
  20363. }
  20364. },
  20365. },
  20366. [
  20367. {
  20368. name: "Normal",
  20369. height: math.unit(4.5, "meters"),
  20370. default: true
  20371. },
  20372. ]
  20373. ))
  20374. characterMakers.push(() => makeCharacter(
  20375. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20376. {
  20377. front: {
  20378. height: math.unit(5 + 4 / 12, "feet"),
  20379. weight: math.unit(115, "lb"),
  20380. name: "Front",
  20381. image: {
  20382. source: "./media/characters/rocky/front.svg",
  20383. extra: 1012 / 975,
  20384. bottom: 54 / 1066
  20385. }
  20386. },
  20387. },
  20388. [
  20389. {
  20390. name: "Normal",
  20391. height: math.unit(5 + 4 / 12, "feet"),
  20392. default: true
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20398. {
  20399. upright: {
  20400. height: math.unit(6, "meters"),
  20401. weight: math.unit(4000, "kg"),
  20402. name: "Upright",
  20403. image: {
  20404. source: "./media/characters/ruin/upright.svg",
  20405. extra: 668 / 661,
  20406. bottom: 42 / 799.8396
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(6, "meters"),
  20414. default: true
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(5, "feet"),
  20423. weight: math.unit(106, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/robin/front.svg",
  20427. extra: 862 / 799,
  20428. bottom: 42.4 / 914.8856
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(5, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20442. {
  20443. side: {
  20444. height: math.unit(3, "feet"),
  20445. weight: math.unit(225, "lb"),
  20446. name: "Side",
  20447. image: {
  20448. source: "./media/characters/saian/side.svg",
  20449. extra: 566 / 356,
  20450. bottom: 79.7 / 643
  20451. }
  20452. },
  20453. maw: {
  20454. height: math.unit(2.85, "feet"),
  20455. name: "Maw",
  20456. image: {
  20457. source: "./media/characters/saian/maw.svg"
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(3, "feet"),
  20465. default: true
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20471. {
  20472. side: {
  20473. height: math.unit(8, "feet"),
  20474. weight: math.unit(300, "lb"),
  20475. name: "Side",
  20476. image: {
  20477. source: "./media/characters/equus-silvermane/side.svg",
  20478. extra: 2176 / 2050,
  20479. bottom: 65.7 / 2245
  20480. }
  20481. },
  20482. front: {
  20483. height: math.unit(8, "feet"),
  20484. weight: math.unit(300, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/equus-silvermane/front.svg",
  20488. extra: 4633 / 4400,
  20489. bottom: 71.3 / 4706.915
  20490. }
  20491. },
  20492. sideStepping: {
  20493. height: math.unit(8, "feet"),
  20494. weight: math.unit(300, "lb"),
  20495. name: "Side (Stepping)",
  20496. image: {
  20497. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20498. extra: 1968 / 1860,
  20499. bottom: 16.4 / 1989
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(8, "feet")
  20507. },
  20508. {
  20509. name: "Minimacro",
  20510. height: math.unit(75, "feet"),
  20511. default: true
  20512. },
  20513. {
  20514. name: "Macro",
  20515. height: math.unit(150, "feet")
  20516. },
  20517. {
  20518. name: "Macro+",
  20519. height: math.unit(1000, "feet")
  20520. },
  20521. {
  20522. name: "Megamacro",
  20523. height: math.unit(1, "mile")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20529. {
  20530. side: {
  20531. height: math.unit(20, "feet"),
  20532. weight: math.unit(30000, "kg"),
  20533. name: "Side",
  20534. image: {
  20535. source: "./media/characters/windar/side.svg",
  20536. extra: 1491 / 1248,
  20537. bottom: 82.56 / 1568
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(20, "feet"),
  20545. default: true
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20551. {
  20552. side: {
  20553. height: math.unit(15.66, "feet"),
  20554. weight: math.unit(150, "lb"),
  20555. name: "Side",
  20556. image: {
  20557. source: "./media/characters/melody/side.svg",
  20558. extra: 1097 / 944,
  20559. bottom: 11.8 / 1109
  20560. }
  20561. },
  20562. sideOutfit: {
  20563. height: math.unit(15.66, "feet"),
  20564. weight: math.unit(150, "lb"),
  20565. name: "Side (Outfit)",
  20566. image: {
  20567. source: "./media/characters/melody/side-outfit.svg",
  20568. extra: 1097 / 944,
  20569. bottom: 11.8 / 1109
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(15.66, "feet"),
  20577. default: true
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20583. {
  20584. front: {
  20585. height: math.unit(8, "feet"),
  20586. weight: math.unit(325, "lb"),
  20587. name: "Front",
  20588. image: {
  20589. source: "./media/characters/windera/front.svg",
  20590. extra: 3180 / 2845,
  20591. bottom: 178 / 3365
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(8, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20605. {
  20606. front: {
  20607. height: math.unit(28.75, "feet"),
  20608. weight: math.unit(2000, "kg"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/sonear/front.svg",
  20612. extra: 1041.1 / 964.9,
  20613. bottom: 53.7 / 1096.6
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(28.75, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20627. {
  20628. side: {
  20629. height: math.unit(25.5, "feet"),
  20630. weight: math.unit(23000, "kg"),
  20631. name: "Side",
  20632. image: {
  20633. source: "./media/characters/kanara/side.svg"
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(25.5, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20647. {
  20648. side: {
  20649. height: math.unit(10, "feet"),
  20650. weight: math.unit(1000, "kg"),
  20651. name: "Side",
  20652. image: {
  20653. source: "./media/characters/ereus/side.svg",
  20654. extra: 1157 / 959,
  20655. bottom: 153 / 1312.5
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(10, "feet"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20669. {
  20670. side: {
  20671. height: math.unit(4.5, "feet"),
  20672. weight: math.unit(500, "lb"),
  20673. name: "Side",
  20674. image: {
  20675. source: "./media/characters/e-ter/side.svg",
  20676. extra: 1550 / 1248,
  20677. bottom: 146 / 1694
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(4.5, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20691. {
  20692. side: {
  20693. height: math.unit(9.7, "feet"),
  20694. weight: math.unit(4000, "kg"),
  20695. name: "Side",
  20696. image: {
  20697. source: "./media/characters/yamie/side.svg"
  20698. }
  20699. },
  20700. },
  20701. [
  20702. {
  20703. name: "Normal",
  20704. height: math.unit(9.7, "feet"),
  20705. default: true
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(50, "feet"),
  20714. weight: math.unit(50000, "kg"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/anders/front.svg",
  20718. extra: 570 / 539,
  20719. bottom: 14.7 / 586.7
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Large",
  20726. height: math.unit(50, "feet")
  20727. },
  20728. {
  20729. name: "Macro",
  20730. height: math.unit(2000, "feet"),
  20731. default: true
  20732. },
  20733. {
  20734. name: "Megamacro",
  20735. height: math.unit(12, "miles")
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20741. {
  20742. front: {
  20743. height: math.unit(7 + 2 / 12, "feet"),
  20744. weight: math.unit(300, "lb"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/reban/front.svg",
  20748. extra: 516 / 487,
  20749. bottom: 42.82 / 558.356
  20750. }
  20751. },
  20752. dick: {
  20753. height: math.unit(7 / 5, "feet"),
  20754. name: "Dick",
  20755. image: {
  20756. source: "./media/characters/reban/dick.svg"
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Natural Height",
  20763. height: math.unit(7 + 2 / 12, "feet")
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(500, "feet"),
  20768. default: true
  20769. },
  20770. {
  20771. name: "Canon Height",
  20772. height: math.unit(50, "AU")
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(6, "feet"),
  20781. weight: math.unit(150, "lb"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/terrance-keayes/front.svg",
  20785. extra: 1.005,
  20786. bottom: 151 / 1615
  20787. }
  20788. },
  20789. side: {
  20790. height: math.unit(6, "feet"),
  20791. weight: math.unit(150, "lb"),
  20792. name: "Side",
  20793. image: {
  20794. source: "./media/characters/terrance-keayes/side.svg",
  20795. extra: 1.005,
  20796. bottom: 129.4 / 1544
  20797. }
  20798. },
  20799. back: {
  20800. height: math.unit(6, "feet"),
  20801. weight: math.unit(150, "lb"),
  20802. name: "Back",
  20803. image: {
  20804. source: "./media/characters/terrance-keayes/back.svg",
  20805. extra: 1.005,
  20806. bottom: 58.4 / 1557.3
  20807. }
  20808. },
  20809. dick: {
  20810. height: math.unit(6 * 0.208, "feet"),
  20811. name: "Dick",
  20812. image: {
  20813. source: "./media/characters/terrance-keayes/dick.svg"
  20814. }
  20815. },
  20816. },
  20817. [
  20818. {
  20819. name: "Canon Height",
  20820. height: math.unit(35, "miles"),
  20821. default: true
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(6, "feet"),
  20830. weight: math.unit(150, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/ofelia/front.svg",
  20834. extra: 546 / 541,
  20835. bottom: 39 / 583
  20836. }
  20837. },
  20838. back: {
  20839. height: math.unit(6, "feet"),
  20840. weight: math.unit(150, "lb"),
  20841. name: "Back",
  20842. image: {
  20843. source: "./media/characters/ofelia/back.svg",
  20844. extra: 564 / 559.5,
  20845. bottom: 8.69 / 573.02
  20846. }
  20847. },
  20848. maw: {
  20849. height: math.unit(1, "feet"),
  20850. name: "Maw",
  20851. image: {
  20852. source: "./media/characters/ofelia/maw.svg"
  20853. }
  20854. },
  20855. foot: {
  20856. height: math.unit(1.949, "feet"),
  20857. name: "Foot",
  20858. image: {
  20859. source: "./media/characters/ofelia/foot.svg"
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Canon Height",
  20866. height: math.unit(2000, "miles"),
  20867. default: true
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(6, "feet"),
  20876. weight: math.unit(150, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/samuel/front.svg",
  20880. extra: 265 / 258,
  20881. bottom: 2 / 266.1566
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Macro",
  20888. height: math.unit(100, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Full Size",
  20893. height: math.unit(1000, "miles")
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20899. {
  20900. front: {
  20901. height: math.unit(6, "feet"),
  20902. weight: math.unit(300, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/beishir-kiel/front.svg",
  20906. extra: 569 / 547,
  20907. bottom: 41.9 / 609
  20908. }
  20909. },
  20910. maw: {
  20911. height: math.unit(6 * 0.202, "feet"),
  20912. name: "Maw",
  20913. image: {
  20914. source: "./media/characters/beishir-kiel/maw.svg"
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Macro",
  20921. height: math.unit(300, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(5 + 8 / 12, "feet"),
  20931. weight: math.unit(120, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/logan-grey/front.svg",
  20935. extra: 2539 / 2393,
  20936. bottom: 97.6 / 2636.37
  20937. }
  20938. },
  20939. frontAlt: {
  20940. height: math.unit(5 + 8 / 12, "feet"),
  20941. weight: math.unit(120, "lb"),
  20942. name: "Front (Alt)",
  20943. image: {
  20944. source: "./media/characters/logan-grey/front-alt.svg",
  20945. extra: 958 / 893,
  20946. bottom: 15 / 970.768
  20947. }
  20948. },
  20949. back: {
  20950. height: math.unit(5 + 8 / 12, "feet"),
  20951. weight: math.unit(120, "lb"),
  20952. name: "Back",
  20953. image: {
  20954. source: "./media/characters/logan-grey/back.svg",
  20955. extra: 958 / 893,
  20956. bottom: 2.1881 / 970.9788
  20957. }
  20958. },
  20959. dick: {
  20960. height: math.unit(1.437, "feet"),
  20961. name: "Dick",
  20962. image: {
  20963. source: "./media/characters/logan-grey/dick.svg"
  20964. }
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Normal",
  20970. height: math.unit(5 + 8 / 12, "feet")
  20971. },
  20972. {
  20973. name: "The 500 Foot Femboy",
  20974. height: math.unit(500, "feet"),
  20975. default: true
  20976. },
  20977. {
  20978. name: "Megmacro",
  20979. height: math.unit(20, "miles")
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(8 + 2 / 12, "feet"),
  20988. weight: math.unit(275, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/draganta/front.svg",
  20992. extra: 1177 / 1135,
  20993. bottom: 33.46 / 1212.1
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(8 + 6 / 12, "feet"),
  21001. default: true
  21002. },
  21003. {
  21004. name: "Macro",
  21005. height: math.unit(150, "feet")
  21006. },
  21007. {
  21008. name: "Megamacro",
  21009. height: math.unit(1000, "miles")
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(1.72, "m"),
  21018. weight: math.unit(80, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/voski/front.svg",
  21022. extra: 2076.22 / 2022.4,
  21023. bottom: 102.7 / 2177.3866
  21024. }
  21025. },
  21026. frontNsfw: {
  21027. height: math.unit(1.72, "m"),
  21028. weight: math.unit(80, "lb"),
  21029. name: "Front (NSFW)",
  21030. image: {
  21031. source: "./media/characters/voski/front-nsfw.svg",
  21032. extra: 2076.22 / 2022.4,
  21033. bottom: 102.7 / 2177.3866
  21034. }
  21035. },
  21036. back: {
  21037. height: math.unit(1.72, "m"),
  21038. weight: math.unit(80, "lb"),
  21039. name: "Back",
  21040. image: {
  21041. source: "./media/characters/voski/back.svg",
  21042. extra: 2104 / 2051,
  21043. bottom: 10.45 / 2113.63
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(1.72, "m")
  21051. },
  21052. {
  21053. name: "Macro",
  21054. height: math.unit(55, "m"),
  21055. default: true
  21056. },
  21057. {
  21058. name: "Macro+",
  21059. height: math.unit(300, "m")
  21060. },
  21061. {
  21062. name: "Macro++",
  21063. height: math.unit(700, "m")
  21064. },
  21065. {
  21066. name: "Macro+++",
  21067. height: math.unit(4500, "m")
  21068. },
  21069. {
  21070. name: "Macro++++",
  21071. height: math.unit(45, "km")
  21072. },
  21073. {
  21074. name: "Macro+++++",
  21075. height: math.unit(1220, "km")
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21081. {
  21082. front: {
  21083. height: math.unit(2.3, "m"),
  21084. weight: math.unit(304, "kg"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/icowom-lee/front.svg",
  21088. extra: 985 / 955,
  21089. bottom: 25.4 / 1012
  21090. }
  21091. },
  21092. fronttentacles: {
  21093. height: math.unit(2.3, "m"),
  21094. weight: math.unit(304, "kg"),
  21095. name: "Front-tentacles",
  21096. image: {
  21097. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21098. extra: 985 / 955,
  21099. bottom: 25.4 / 1012
  21100. }
  21101. },
  21102. back: {
  21103. height: math.unit(2.3, "m"),
  21104. weight: math.unit(304, "kg"),
  21105. name: "Back",
  21106. image: {
  21107. source: "./media/characters/icowom-lee/back.svg",
  21108. extra: 975 / 954,
  21109. bottom: 9.5 / 985
  21110. }
  21111. },
  21112. backtentacles: {
  21113. height: math.unit(2.3, "m"),
  21114. weight: math.unit(304, "kg"),
  21115. name: "Back-tentacles",
  21116. image: {
  21117. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21118. extra: 975 / 954,
  21119. bottom: 9.5 / 985
  21120. }
  21121. },
  21122. frontDressed: {
  21123. height: math.unit(2.3, "m"),
  21124. weight: math.unit(304, "kg"),
  21125. name: "Front (Dressed)",
  21126. image: {
  21127. source: "./media/characters/icowom-lee/front-dressed.svg",
  21128. extra: 3076 / 2933,
  21129. bottom: 51.4 / 3125.1889
  21130. }
  21131. },
  21132. rump: {
  21133. height: math.unit(0.776, "meters"),
  21134. name: "Rump",
  21135. image: {
  21136. source: "./media/characters/icowom-lee/rump.svg"
  21137. }
  21138. },
  21139. genitals: {
  21140. height: math.unit(0.78, "meters"),
  21141. name: "Genitals",
  21142. image: {
  21143. source: "./media/characters/icowom-lee/genitals.svg"
  21144. }
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(2.3, "meters"),
  21151. default: true
  21152. },
  21153. {
  21154. name: "Macro",
  21155. height: math.unit(94, "meters"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(22, "meters"),
  21165. weight: math.unit(21000, "kg"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/shock-diamond/front.svg",
  21169. extra: 2204 / 2053,
  21170. bottom: 65 / 2239.47
  21171. }
  21172. },
  21173. frontNude: {
  21174. height: math.unit(22, "meters"),
  21175. weight: math.unit(21000, "kg"),
  21176. name: "Front (Nude)",
  21177. image: {
  21178. source: "./media/characters/shock-diamond/front-nude.svg",
  21179. extra: 2514 / 2285,
  21180. bottom: 13 / 2527.56
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(3, "meters")
  21188. },
  21189. {
  21190. name: "Macro",
  21191. height: math.unit(22, "meters"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(5 + 4 / 12, "feet"),
  21201. weight: math.unit(120, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/rory/front.svg",
  21205. extra: 589 / 556,
  21206. bottom: 45.7 / 635.76
  21207. }
  21208. },
  21209. frontNude: {
  21210. height: math.unit(5 + 4 / 12, "feet"),
  21211. weight: math.unit(120, "lb"),
  21212. name: "Front (Nude)",
  21213. image: {
  21214. source: "./media/characters/rory/front-nude.svg",
  21215. extra: 589 / 556,
  21216. bottom: 45.7 / 635.76
  21217. }
  21218. },
  21219. side: {
  21220. height: math.unit(5 + 4 / 12, "feet"),
  21221. weight: math.unit(120, "lb"),
  21222. name: "Side",
  21223. image: {
  21224. source: "./media/characters/rory/side.svg",
  21225. extra: 597 / 564,
  21226. bottom: 55 / 653
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(5 + 4 / 12, "feet"),
  21231. weight: math.unit(120, "lb"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/rory/back.svg",
  21235. extra: 620 / 585,
  21236. bottom: 8.86 / 630.43
  21237. }
  21238. },
  21239. dick: {
  21240. height: math.unit(0.86, "feet"),
  21241. name: "Dick",
  21242. image: {
  21243. source: "./media/characters/rory/dick.svg"
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(5 + 4 / 12, "feet"),
  21251. default: true
  21252. },
  21253. {
  21254. name: "Macro",
  21255. height: math.unit(100, "feet")
  21256. },
  21257. {
  21258. name: "Macro+",
  21259. height: math.unit(140, "feet")
  21260. },
  21261. {
  21262. name: "Macro++",
  21263. height: math.unit(300, "feet")
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21269. {
  21270. front: {
  21271. height: math.unit(5 + 9 / 12, "feet"),
  21272. weight: math.unit(190, "lb"),
  21273. name: "Front",
  21274. image: {
  21275. source: "./media/characters/sprisk/front.svg",
  21276. extra: 1225 / 1180,
  21277. bottom: 42.7 / 1266.4
  21278. }
  21279. },
  21280. frontNsfw: {
  21281. height: math.unit(5 + 9 / 12, "feet"),
  21282. weight: math.unit(190, "lb"),
  21283. name: "Front (NSFW)",
  21284. image: {
  21285. source: "./media/characters/sprisk/front-nsfw.svg",
  21286. extra: 1225 / 1180,
  21287. bottom: 42.7 / 1266.4
  21288. }
  21289. },
  21290. back: {
  21291. height: math.unit(5 + 9 / 12, "feet"),
  21292. weight: math.unit(190, "lb"),
  21293. name: "Back",
  21294. image: {
  21295. source: "./media/characters/sprisk/back.svg",
  21296. extra: 1247 / 1200,
  21297. bottom: 5.6 / 1253.04
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Tiny",
  21304. height: math.unit(2, "inches")
  21305. },
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(5 + 9 / 12, "feet"),
  21309. default: true
  21310. },
  21311. {
  21312. name: "Mini Macro",
  21313. height: math.unit(18, "feet")
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(100, "feet")
  21318. },
  21319. {
  21320. name: "MACRO",
  21321. height: math.unit(50, "miles")
  21322. },
  21323. {
  21324. name: "M A C R O",
  21325. height: math.unit(300, "miles")
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21331. {
  21332. side: {
  21333. height: math.unit(15.6, "meters"),
  21334. weight: math.unit(700000, "kg"),
  21335. name: "Side",
  21336. image: {
  21337. source: "./media/characters/bunsen/side.svg",
  21338. extra: 1644 / 358
  21339. }
  21340. },
  21341. foot: {
  21342. height: math.unit(1.611 * 1644 / 358, "meter"),
  21343. name: "Foot",
  21344. image: {
  21345. source: "./media/characters/bunsen/foot.svg"
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Small",
  21352. height: math.unit(10, "feet")
  21353. },
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(15.6, "meters"),
  21357. default: true
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(4 + 11 / 12, "feet"),
  21366. weight: math.unit(140, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/sesh/front.svg",
  21370. extra: 3420 / 3231,
  21371. bottom: 72 / 3949.5
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(4 + 11 / 12, "feet")
  21379. },
  21380. {
  21381. name: "Grown",
  21382. height: math.unit(15, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(1500, "feet")
  21388. },
  21389. {
  21390. name: "Megamacro",
  21391. height: math.unit(30, "miles")
  21392. },
  21393. {
  21394. name: "Continental",
  21395. height: math.unit(3000, "miles")
  21396. },
  21397. {
  21398. name: "Gravity Mass",
  21399. height: math.unit(300000, "miles")
  21400. },
  21401. {
  21402. name: "Planet Buster",
  21403. height: math.unit(30000000, "miles")
  21404. },
  21405. {
  21406. name: "Big",
  21407. height: math.unit(3000000000, "miles")
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(9, "feet"),
  21416. weight: math.unit(350, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/pepper/front.svg",
  21420. extra: 1448 / 1312,
  21421. bottom: 9.4 / 1457.88
  21422. }
  21423. },
  21424. back: {
  21425. height: math.unit(9, "feet"),
  21426. weight: math.unit(350, "lb"),
  21427. name: "Back",
  21428. image: {
  21429. source: "./media/characters/pepper/back.svg",
  21430. extra: 1423 / 1300,
  21431. bottom: 4.6 / 1429
  21432. }
  21433. },
  21434. maw: {
  21435. height: math.unit(0.932, "feet"),
  21436. name: "Maw",
  21437. image: {
  21438. source: "./media/characters/pepper/maw.svg"
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(9, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(6, "feet"),
  21455. weight: math.unit(150, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/maelstrom/front.svg",
  21459. extra: 2100 / 1883,
  21460. bottom: 94 / 2196.7
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Less Kaiju",
  21467. height: math.unit(200, "feet")
  21468. },
  21469. {
  21470. name: "Kaiju",
  21471. height: math.unit(400, "feet"),
  21472. default: true
  21473. },
  21474. {
  21475. name: "Kaiju-er",
  21476. height: math.unit(600, "feet")
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21482. {
  21483. front: {
  21484. height: math.unit(6 + 5 / 12, "feet"),
  21485. weight: math.unit(180, "lb"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/lexir/front.svg",
  21489. extra: 180 / 172,
  21490. bottom: 12 / 192
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(6 + 5 / 12, "feet"),
  21495. weight: math.unit(180, "lb"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/lexir/back.svg",
  21499. extra: 183.84 / 175.5,
  21500. bottom: 3.1 / 187
  21501. }
  21502. },
  21503. },
  21504. [
  21505. {
  21506. name: "Very Smal",
  21507. height: math.unit(1, "nm")
  21508. },
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(6 + 5 / 12, "feet"),
  21512. default: true
  21513. },
  21514. {
  21515. name: "Macro",
  21516. height: math.unit(1, "mile")
  21517. },
  21518. {
  21519. name: "Megamacro",
  21520. height: math.unit(50, "miles")
  21521. },
  21522. ]
  21523. ))
  21524. characterMakers.push(() => makeCharacter(
  21525. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21526. {
  21527. front: {
  21528. height: math.unit(1.5, "meters"),
  21529. weight: math.unit(100, "lb"),
  21530. name: "Front",
  21531. image: {
  21532. source: "./media/characters/maksio/front.svg",
  21533. extra: 1549 / 1531,
  21534. bottom: 123.7 / 1674.5429
  21535. }
  21536. },
  21537. back: {
  21538. height: math.unit(1.5, "meters"),
  21539. weight: math.unit(100, "lb"),
  21540. name: "Back",
  21541. image: {
  21542. source: "./media/characters/maksio/back.svg",
  21543. extra: 1541 / 1509,
  21544. bottom: 97 / 1639
  21545. }
  21546. },
  21547. hand: {
  21548. height: math.unit(0.621, "feet"),
  21549. name: "Hand",
  21550. image: {
  21551. source: "./media/characters/maksio/hand.svg"
  21552. }
  21553. },
  21554. foot: {
  21555. height: math.unit(1.611, "feet"),
  21556. name: "Foot",
  21557. image: {
  21558. source: "./media/characters/maksio/foot.svg"
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Shrunken",
  21565. height: math.unit(10, "cm")
  21566. },
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(150, "cm"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(100, "feet"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/erza-bear/front.svg",
  21582. extra: 2449 / 2390,
  21583. bottom: 46 / 2494
  21584. }
  21585. },
  21586. back: {
  21587. height: math.unit(100, "feet"),
  21588. name: "Back",
  21589. image: {
  21590. source: "./media/characters/erza-bear/back.svg",
  21591. extra: 2489 / 2430,
  21592. bottom: 85.4 / 2480
  21593. }
  21594. },
  21595. tail: {
  21596. height: math.unit(42, "feet"),
  21597. name: "Tail",
  21598. image: {
  21599. source: "./media/characters/erza-bear/tail.svg"
  21600. }
  21601. },
  21602. tongue: {
  21603. height: math.unit(8, "feet"),
  21604. name: "Tongue",
  21605. image: {
  21606. source: "./media/characters/erza-bear/tongue.svg"
  21607. }
  21608. },
  21609. dick: {
  21610. height: math.unit(10.5, "feet"),
  21611. name: "Dick",
  21612. image: {
  21613. source: "./media/characters/erza-bear/dick.svg"
  21614. }
  21615. },
  21616. dickVertical: {
  21617. height: math.unit(16.9, "feet"),
  21618. name: "Dick (Vertical)",
  21619. image: {
  21620. source: "./media/characters/erza-bear/dick-vertical.svg"
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Macro",
  21627. height: math.unit(100, "feet"),
  21628. default: true
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21634. {
  21635. front: {
  21636. height: math.unit(172, "cm"),
  21637. weight: math.unit(73, "kg"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/violet-flor/front.svg",
  21641. extra: 1530 / 1442,
  21642. bottom: 61.9 / 1588.8
  21643. }
  21644. },
  21645. back: {
  21646. height: math.unit(180, "cm"),
  21647. weight: math.unit(73, "kg"),
  21648. name: "Back",
  21649. image: {
  21650. source: "./media/characters/violet-flor/back.svg",
  21651. extra: 1692 / 1630,
  21652. bottom: 20 / 1712
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Normal",
  21659. height: math.unit(172, "cm"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(6, "feet"),
  21669. weight: math.unit(220, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/lynn-rhea/front.svg",
  21673. extra: 310 / 273
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(6, "feet"),
  21678. weight: math.unit(220, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/lynn-rhea/back.svg",
  21682. extra: 310 / 273
  21683. }
  21684. },
  21685. dicks: {
  21686. height: math.unit(0.9, "feet"),
  21687. name: "Dicks",
  21688. image: {
  21689. source: "./media/characters/lynn-rhea/dicks.svg"
  21690. }
  21691. },
  21692. slit: {
  21693. height: math.unit(0.4, "feet"),
  21694. name: "Slit",
  21695. image: {
  21696. source: "./media/characters/lynn-rhea/slit.svg"
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Micro",
  21703. height: math.unit(1, "inch")
  21704. },
  21705. {
  21706. name: "Macro",
  21707. height: math.unit(60, "feet"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Megamacro",
  21712. height: math.unit(2, "miles")
  21713. },
  21714. {
  21715. name: "Gigamacro",
  21716. height: math.unit(3, "earths")
  21717. },
  21718. {
  21719. name: "Galactic",
  21720. height: math.unit(0.8, "galaxies")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21726. {
  21727. front: {
  21728. height: math.unit(1600, "feet"),
  21729. weight: math.unit(85758785169, "kg"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/valathos/front.svg",
  21733. extra: 1451 / 1339
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Macro",
  21740. height: math.unit(1600, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(7 + 5 / 12, "feet"),
  21750. weight: math.unit(300, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/azula/front.svg",
  21754. extra: 3208 / 2880,
  21755. bottom: 80.2 / 3277
  21756. }
  21757. },
  21758. back: {
  21759. height: math.unit(7 + 5 / 12, "feet"),
  21760. weight: math.unit(300, "lb"),
  21761. name: "Back",
  21762. image: {
  21763. source: "./media/characters/azula/back.svg",
  21764. extra: 3169 / 2822,
  21765. bottom: 150.6 / 3321
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(7 + 5 / 12, "feet"),
  21773. default: true
  21774. },
  21775. {
  21776. name: "Big",
  21777. height: math.unit(20, "feet")
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(5 + 1 / 12, "feet"),
  21786. weight: math.unit(110, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/rupert/front.svg",
  21790. extra: 1549 / 1495,
  21791. bottom: 54.2 / 1604.4
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(5 + 1 / 12, "feet"),
  21799. default: true
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21805. {
  21806. front: {
  21807. height: math.unit(8 + 4 / 12, "feet"),
  21808. weight: math.unit(350, "lb"),
  21809. name: "Front",
  21810. image: {
  21811. source: "./media/characters/sheera-castellar/front.svg",
  21812. extra: 1957 / 1894,
  21813. bottom: 26.97 / 1975.017
  21814. }
  21815. },
  21816. side: {
  21817. height: math.unit(8 + 4 / 12, "feet"),
  21818. weight: math.unit(350, "lb"),
  21819. name: "Side",
  21820. image: {
  21821. source: "./media/characters/sheera-castellar/side.svg",
  21822. extra: 1957 / 1894
  21823. }
  21824. },
  21825. back: {
  21826. height: math.unit(8 + 4 / 12, "feet"),
  21827. weight: math.unit(350, "lb"),
  21828. name: "Back",
  21829. image: {
  21830. source: "./media/characters/sheera-castellar/back.svg",
  21831. extra: 1957 / 1894
  21832. }
  21833. },
  21834. angled: {
  21835. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21836. weight: math.unit(350, "lb"),
  21837. name: "Angled",
  21838. image: {
  21839. source: "./media/characters/sheera-castellar/angled.svg",
  21840. extra: 1807 / 1707,
  21841. bottom: 68 / 1875
  21842. }
  21843. },
  21844. genitals: {
  21845. height: math.unit(2.2, "feet"),
  21846. name: "Genitals",
  21847. image: {
  21848. source: "./media/characters/sheera-castellar/genitals.svg"
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(8 + 4 / 12, "feet")
  21856. },
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(150, "feet"),
  21860. default: true
  21861. },
  21862. {
  21863. name: "Macro+",
  21864. height: math.unit(800, "feet")
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(6, "feet"),
  21873. weight: math.unit(150, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/jaipur/front.svg",
  21877. extra: 3860 / 3731,
  21878. bottom: 287 / 4140
  21879. }
  21880. },
  21881. back: {
  21882. height: math.unit(6, "feet"),
  21883. weight: math.unit(150, "lb"),
  21884. name: "Back",
  21885. image: {
  21886. source: "./media/characters/jaipur/back.svg",
  21887. extra: 4060 / 3930,
  21888. bottom: 151 / 4200
  21889. }
  21890. },
  21891. },
  21892. [
  21893. {
  21894. name: "Normal",
  21895. height: math.unit(1.85, "meters"),
  21896. default: true
  21897. },
  21898. {
  21899. name: "Macro",
  21900. height: math.unit(150, "meters")
  21901. },
  21902. {
  21903. name: "Macro+",
  21904. height: math.unit(0.5, "miles")
  21905. },
  21906. {
  21907. name: "Macro++",
  21908. height: math.unit(2.5, "miles")
  21909. },
  21910. {
  21911. name: "Macro+++",
  21912. height: math.unit(12, "miles")
  21913. },
  21914. {
  21915. name: "Macro++++",
  21916. height: math.unit(120, "miles")
  21917. },
  21918. {
  21919. name: "Macro+++++",
  21920. height: math.unit(1200, "miles")
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(6, "feet"),
  21929. weight: math.unit(150, "lb"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/sheila-wolf/front.svg",
  21933. extra: 1931 / 1808,
  21934. bottom: 29.5 / 1960
  21935. }
  21936. },
  21937. dick: {
  21938. height: math.unit(1.464, "feet"),
  21939. name: "Dick",
  21940. image: {
  21941. source: "./media/characters/sheila-wolf/dick.svg"
  21942. }
  21943. },
  21944. muzzle: {
  21945. height: math.unit(0.513, "feet"),
  21946. name: "Muzzle",
  21947. image: {
  21948. source: "./media/characters/sheila-wolf/muzzle.svg"
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Macro",
  21955. height: math.unit(70, "feet"),
  21956. default: true
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(32, "meters"),
  21965. weight: math.unit(300000, "kg"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/almor/front.svg",
  21969. extra: 1408 / 1322,
  21970. bottom: 94.6 / 1506.5
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(32, "meters"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(7, "feet"),
  21987. weight: math.unit(200, "lb"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/silver/front.svg",
  21991. extra: 472.1 / 450.5,
  21992. bottom: 26.5 / 499.424
  21993. }
  21994. },
  21995. },
  21996. [
  21997. {
  21998. name: "Normal",
  21999. height: math.unit(7, "feet"),
  22000. default: true
  22001. },
  22002. {
  22003. name: "Macro",
  22004. height: math.unit(800, "feet")
  22005. },
  22006. {
  22007. name: "Megamacro",
  22008. height: math.unit(250, "miles")
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(6, "feet"),
  22017. weight: math.unit(150, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/pliskin/front.svg",
  22021. extra: 1469 / 1359,
  22022. bottom: 70 / 1540
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Micro",
  22029. height: math.unit(3, "inches")
  22030. },
  22031. {
  22032. name: "Normal",
  22033. height: math.unit(5 + 11 / 12, "feet"),
  22034. default: true
  22035. },
  22036. {
  22037. name: "Macro",
  22038. height: math.unit(120, "feet")
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(6, "feet"),
  22047. weight: math.unit(150, "lb"),
  22048. name: "Front",
  22049. image: {
  22050. source: "./media/characters/sammy/front.svg",
  22051. extra: 1193 / 1089,
  22052. bottom: 30.5 / 1226
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Macro",
  22059. height: math.unit(1700, "feet"),
  22060. default: true
  22061. },
  22062. {
  22063. name: "Examacro",
  22064. height: math.unit(2.5e9, "lightyears")
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(21, "meters"),
  22073. weight: math.unit(12, "tonnes"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/kuru/front.svg",
  22077. extra: 4301 / 3785,
  22078. bottom: 371.3 / 4691
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Macro",
  22085. height: math.unit(21, "meters"),
  22086. default: true
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(23, "meters"),
  22095. weight: math.unit(12.2, "tonnes"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/rakka/front.svg",
  22099. extra: 4670 / 4169,
  22100. bottom: 301 / 4968.7
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(23, "meters"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(6, "feet"),
  22117. weight: math.unit(150, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/rhys-feline/front.svg",
  22121. extra: 2488 / 2308,
  22122. bottom: 35.67 / 2519.19
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Really Small",
  22129. height: math.unit(1, "nm")
  22130. },
  22131. {
  22132. name: "Micro",
  22133. height: math.unit(4, "inches")
  22134. },
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(4 + 10 / 12, "feet"),
  22138. default: true
  22139. },
  22140. {
  22141. name: "Macro",
  22142. height: math.unit(100, "feet")
  22143. },
  22144. {
  22145. name: "Megamacto",
  22146. height: math.unit(50, "miles")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22152. {
  22153. side: {
  22154. height: math.unit(30, "feet"),
  22155. weight: math.unit(35000, "kg"),
  22156. name: "Side",
  22157. image: {
  22158. source: "./media/characters/alydar/side.svg",
  22159. extra: 234 / 222,
  22160. bottom: 6.5 / 241
  22161. }
  22162. },
  22163. front: {
  22164. height: math.unit(30, "feet"),
  22165. weight: math.unit(35000, "kg"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/alydar/front.svg",
  22169. extra: 223.37 / 210.2,
  22170. bottom: 22.3 / 246.76
  22171. }
  22172. },
  22173. top: {
  22174. height: math.unit(64.54, "feet"),
  22175. weight: math.unit(35000, "kg"),
  22176. name: "Top",
  22177. image: {
  22178. source: "./media/characters/alydar/top.svg"
  22179. }
  22180. },
  22181. anthro: {
  22182. height: math.unit(30, "feet"),
  22183. weight: math.unit(9000, "kg"),
  22184. name: "Anthro",
  22185. image: {
  22186. source: "./media/characters/alydar/anthro.svg",
  22187. extra: 432 / 421,
  22188. bottom: 7.18 / 440
  22189. }
  22190. },
  22191. maw: {
  22192. height: math.unit(11.693, "feet"),
  22193. name: "Maw",
  22194. image: {
  22195. source: "./media/characters/alydar/maw.svg"
  22196. }
  22197. },
  22198. head: {
  22199. height: math.unit(11.693, "feet"),
  22200. name: "Head",
  22201. image: {
  22202. source: "./media/characters/alydar/head.svg"
  22203. }
  22204. },
  22205. headAlt: {
  22206. height: math.unit(12.861, "feet"),
  22207. name: "Head (Alt)",
  22208. image: {
  22209. source: "./media/characters/alydar/head-alt.svg"
  22210. }
  22211. },
  22212. wing: {
  22213. height: math.unit(20.712, "feet"),
  22214. name: "Wing",
  22215. image: {
  22216. source: "./media/characters/alydar/wing.svg"
  22217. }
  22218. },
  22219. wingFeather: {
  22220. height: math.unit(9.662, "feet"),
  22221. name: "Wing Feather",
  22222. image: {
  22223. source: "./media/characters/alydar/wing-feather.svg"
  22224. }
  22225. },
  22226. countourFeather: {
  22227. height: math.unit(4.154, "feet"),
  22228. name: "Contour Feather",
  22229. image: {
  22230. source: "./media/characters/alydar/contour-feather.svg"
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Diplomatic",
  22237. height: math.unit(13, "feet"),
  22238. default: true
  22239. },
  22240. {
  22241. name: "Small",
  22242. height: math.unit(30, "feet")
  22243. },
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(95, "feet"),
  22247. default: true
  22248. },
  22249. {
  22250. name: "Large",
  22251. height: math.unit(285, "feet")
  22252. },
  22253. {
  22254. name: "Incomprehensible",
  22255. height: math.unit(450, "megameters")
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22261. {
  22262. side: {
  22263. height: math.unit(11, "feet"),
  22264. weight: math.unit(1750, "kg"),
  22265. name: "Side",
  22266. image: {
  22267. source: "./media/characters/selicia/side.svg",
  22268. extra: 440 / 396,
  22269. bottom: 24.8 / 465.979
  22270. }
  22271. },
  22272. maw: {
  22273. height: math.unit(4.665, "feet"),
  22274. name: "Maw",
  22275. image: {
  22276. source: "./media/characters/selicia/maw.svg"
  22277. }
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(11, "feet"),
  22284. default: true
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22290. {
  22291. side: {
  22292. height: math.unit(2 + 6 / 12, "feet"),
  22293. weight: math.unit(30, "lb"),
  22294. name: "Side",
  22295. image: {
  22296. source: "./media/characters/layla/side.svg",
  22297. extra: 244 / 188,
  22298. bottom: 18.2 / 262.1
  22299. }
  22300. },
  22301. back: {
  22302. height: math.unit(2 + 6 / 12, "feet"),
  22303. weight: math.unit(30, "lb"),
  22304. name: "Back",
  22305. image: {
  22306. source: "./media/characters/layla/back.svg",
  22307. extra: 308 / 241.5,
  22308. bottom: 8.9 / 316.8
  22309. }
  22310. },
  22311. cumming: {
  22312. height: math.unit(2 + 6 / 12, "feet"),
  22313. weight: math.unit(30, "lb"),
  22314. name: "Cumming",
  22315. image: {
  22316. source: "./media/characters/layla/cumming.svg",
  22317. extra: 342 / 279,
  22318. bottom: 595 / 938
  22319. }
  22320. },
  22321. dickFlaccid: {
  22322. height: math.unit(2.595, "feet"),
  22323. name: "Flaccid Genitals",
  22324. image: {
  22325. source: "./media/characters/layla/dick-flaccid.svg"
  22326. }
  22327. },
  22328. dickErect: {
  22329. height: math.unit(2.359, "feet"),
  22330. name: "Erect Genitals",
  22331. image: {
  22332. source: "./media/characters/layla/dick-erect.svg"
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Micro",
  22339. height: math.unit(1, "inch")
  22340. },
  22341. {
  22342. name: "Small",
  22343. height: math.unit(1, "foot")
  22344. },
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(2 + 6 / 12, "feet"),
  22348. default: true
  22349. },
  22350. {
  22351. name: "Macro",
  22352. height: math.unit(200, "feet")
  22353. },
  22354. {
  22355. name: "Megamacro",
  22356. height: math.unit(1000, "miles")
  22357. },
  22358. {
  22359. name: "Planetary",
  22360. height: math.unit(8000, "miles")
  22361. },
  22362. {
  22363. name: "True Layla",
  22364. height: math.unit(200000 * 7, "multiverses")
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22370. {
  22371. back: {
  22372. height: math.unit(10.5, "feet"),
  22373. weight: math.unit(800, "lb"),
  22374. name: "Back",
  22375. image: {
  22376. source: "./media/characters/knox/back.svg",
  22377. extra: 1486 / 1089,
  22378. bottom: 107 / 1601.4
  22379. }
  22380. },
  22381. side: {
  22382. height: math.unit(10.5, "feet"),
  22383. weight: math.unit(800, "lb"),
  22384. name: "Side",
  22385. image: {
  22386. source: "./media/characters/knox/side.svg",
  22387. extra: 244 / 218,
  22388. bottom: 14 / 260
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Compact",
  22395. height: math.unit(10.5, "feet"),
  22396. default: true
  22397. },
  22398. {
  22399. name: "Dynamax",
  22400. height: math.unit(210, "feet")
  22401. },
  22402. {
  22403. name: "Full Macro",
  22404. height: math.unit(850, "feet")
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(6, "feet"),
  22413. weight: math.unit(152, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/shin-pikachu/front.svg",
  22417. extra: 1574 / 1480,
  22418. bottom: 53.3 / 1626
  22419. }
  22420. },
  22421. hand: {
  22422. height: math.unit(1.055, "feet"),
  22423. name: "Hand",
  22424. image: {
  22425. source: "./media/characters/shin-pikachu/hand.svg"
  22426. }
  22427. },
  22428. foot: {
  22429. height: math.unit(1.1, "feet"),
  22430. name: "Foot",
  22431. image: {
  22432. source: "./media/characters/shin-pikachu/foot.svg"
  22433. }
  22434. },
  22435. collar: {
  22436. height: math.unit(0.386, "feet"),
  22437. name: "Collar",
  22438. image: {
  22439. source: "./media/characters/shin-pikachu/collar.svg"
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Smallest",
  22446. height: math.unit(0.5, "inches")
  22447. },
  22448. {
  22449. name: "Micro",
  22450. height: math.unit(6, "inches")
  22451. },
  22452. {
  22453. name: "Normal",
  22454. height: math.unit(6, "feet"),
  22455. default: true
  22456. },
  22457. {
  22458. name: "Macro",
  22459. height: math.unit(150, "feet")
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(28, "feet"),
  22468. weight: math.unit(10500, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/kayda/front.svg",
  22472. extra: 1536 / 1428,
  22473. bottom: 68.7 / 1603
  22474. }
  22475. },
  22476. back: {
  22477. height: math.unit(28, "feet"),
  22478. weight: math.unit(10500, "lb"),
  22479. name: "Back",
  22480. image: {
  22481. source: "./media/characters/kayda/back.svg",
  22482. extra: 1557 / 1464,
  22483. bottom: 39.5 / 1597.49
  22484. }
  22485. },
  22486. dick: {
  22487. height: math.unit(3.858, "feet"),
  22488. name: "Dick",
  22489. image: {
  22490. source: "./media/characters/kayda/dick.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Macro",
  22497. height: math.unit(28, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(10 + 11 / 12, "feet"),
  22507. weight: math.unit(1400, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/brian/front.svg",
  22511. extra: 737 / 692,
  22512. bottom: 55.4 / 785
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(10 + 11 / 12, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(5 + 8 / 12, "feet"),
  22529. weight: math.unit(140, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/khemri/front.svg",
  22533. extra: 4780 / 4059,
  22534. bottom: 80.1 / 4859.25
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Micro",
  22541. height: math.unit(6, "inches")
  22542. },
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(5 + 8 / 12, "feet"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22552. {
  22553. front: {
  22554. height: math.unit(13, "feet"),
  22555. weight: math.unit(1700, "lb"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/felix-braveheart/front.svg",
  22559. extra: 1222 / 1157,
  22560. bottom: 53.2 / 1280
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(13, "feet"),
  22565. weight: math.unit(1700, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/felix-braveheart/back.svg",
  22569. extra: 1277 / 1203,
  22570. bottom: 50.2 / 1327
  22571. }
  22572. },
  22573. feral: {
  22574. height: math.unit(6, "feet"),
  22575. weight: math.unit(400, "lb"),
  22576. name: "Feral",
  22577. image: {
  22578. source: "./media/characters/felix-braveheart/feral.svg",
  22579. extra: 682 / 625,
  22580. bottom: 6.9 / 688
  22581. }
  22582. },
  22583. },
  22584. [
  22585. {
  22586. name: "Normal",
  22587. height: math.unit(13, "feet"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22594. {
  22595. side: {
  22596. height: math.unit(5 + 11 / 12, "feet"),
  22597. weight: math.unit(1400, "lb"),
  22598. name: "Side",
  22599. image: {
  22600. source: "./media/characters/shadow-blade/side.svg",
  22601. extra: 1726 / 1267,
  22602. bottom: 58.4 / 1785
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Normal",
  22609. height: math.unit(5 + 11 / 12, "feet"),
  22610. default: true
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(1 + 6 / 12, "feet"),
  22619. weight: math.unit(25, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/karla-halldor/front.svg",
  22623. extra: 1459 / 1383,
  22624. bottom: 12 / 1472
  22625. }
  22626. },
  22627. },
  22628. [
  22629. {
  22630. name: "Normal",
  22631. height: math.unit(1 + 6 / 12, "feet"),
  22632. default: true
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(6 + 2 / 12, "feet"),
  22641. weight: math.unit(160, "lb"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/ariam/front.svg",
  22645. extra: 714 / 617,
  22646. bottom: 23.4 / 737,
  22647. }
  22648. },
  22649. squatting: {
  22650. height: math.unit(4.1, "feet"),
  22651. weight: math.unit(160, "lb"),
  22652. name: "Squatting",
  22653. image: {
  22654. source: "./media/characters/ariam/squatting.svg",
  22655. extra: 2617 / 2112,
  22656. bottom: 61.2 / 2681,
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(6 + 2 / 12, "feet"),
  22664. default: true
  22665. },
  22666. {
  22667. name: "Normal+",
  22668. height: math.unit(4, "meters")
  22669. },
  22670. {
  22671. name: "Macro",
  22672. height: math.unit(50, "meters")
  22673. },
  22674. {
  22675. name: "Macro+",
  22676. height: math.unit(100, "meters")
  22677. },
  22678. {
  22679. name: "Megamacro",
  22680. height: math.unit(20, "km")
  22681. },
  22682. ]
  22683. ))
  22684. characterMakers.push(() => makeCharacter(
  22685. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22686. {
  22687. front: {
  22688. height: math.unit(1.67, "meters"),
  22689. weight: math.unit(140, "lb"),
  22690. name: "Front",
  22691. image: {
  22692. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22693. extra: 438 / 410,
  22694. bottom: 0.75 / 439
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Shrunken",
  22701. height: math.unit(7.6, "cm")
  22702. },
  22703. {
  22704. name: "Human Scale",
  22705. height: math.unit(1.67, "meters")
  22706. },
  22707. {
  22708. name: "Wolxi Scale",
  22709. height: math.unit(36.7, "meters"),
  22710. default: true
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(1.73, "meters"),
  22719. weight: math.unit(240, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/izue-two-mothers/front.svg",
  22723. extra: 469 / 437,
  22724. bottom: 1.24 / 470.6
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Shrunken",
  22731. height: math.unit(7.86, "cm")
  22732. },
  22733. {
  22734. name: "Human Scale",
  22735. height: math.unit(1.73, "meters")
  22736. },
  22737. {
  22738. name: "Wolxi Scale",
  22739. height: math.unit(38, "meters"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(1.55, "meters"),
  22749. weight: math.unit(120, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/teeku-love-shack/front.svg",
  22753. extra: 387 / 362,
  22754. bottom: 1.51 / 388
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Shrunken",
  22761. height: math.unit(7, "cm")
  22762. },
  22763. {
  22764. name: "Human Scale",
  22765. height: math.unit(1.55, "meters")
  22766. },
  22767. {
  22768. name: "Wolxi Scale",
  22769. height: math.unit(34.1, "meters"),
  22770. default: true
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(1.83, "meters"),
  22779. weight: math.unit(135, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/dejma-the-red/front.svg",
  22783. extra: 480 / 458,
  22784. bottom: 1.8 / 482
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Shrunken",
  22791. height: math.unit(8.3, "cm")
  22792. },
  22793. {
  22794. name: "Human Scale",
  22795. height: math.unit(1.83, "meters")
  22796. },
  22797. {
  22798. name: "Wolxi Scale",
  22799. height: math.unit(40, "meters"),
  22800. default: true
  22801. },
  22802. ]
  22803. ))
  22804. characterMakers.push(() => makeCharacter(
  22805. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22806. {
  22807. front: {
  22808. height: math.unit(1.78, "meters"),
  22809. weight: math.unit(65, "kg"),
  22810. name: "Front",
  22811. image: {
  22812. source: "./media/characters/aki/front.svg",
  22813. extra: 452 / 415
  22814. }
  22815. },
  22816. frontNsfw: {
  22817. height: math.unit(1.78, "meters"),
  22818. weight: math.unit(65, "kg"),
  22819. name: "Front (NSFW)",
  22820. image: {
  22821. source: "./media/characters/aki/front-nsfw.svg",
  22822. extra: 452 / 415
  22823. }
  22824. },
  22825. back: {
  22826. height: math.unit(1.78, "meters"),
  22827. weight: math.unit(65, "kg"),
  22828. name: "Back",
  22829. image: {
  22830. source: "./media/characters/aki/back.svg",
  22831. extra: 452 / 415
  22832. }
  22833. },
  22834. rump: {
  22835. height: math.unit(2.05, "feet"),
  22836. name: "Rump",
  22837. image: {
  22838. source: "./media/characters/aki/rump.svg"
  22839. }
  22840. },
  22841. dick: {
  22842. height: math.unit(0.95, "feet"),
  22843. name: "Dick",
  22844. image: {
  22845. source: "./media/characters/aki/dick.svg"
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Micro",
  22852. height: math.unit(15, "cm")
  22853. },
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(178, "cm"),
  22857. default: true
  22858. },
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(214, "m")
  22862. },
  22863. {
  22864. name: "Macro+",
  22865. height: math.unit(534, "m")
  22866. },
  22867. ]
  22868. ))
  22869. characterMakers.push(() => makeCharacter(
  22870. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22871. {
  22872. front: {
  22873. height: math.unit(5 + 5 / 12, "feet"),
  22874. weight: math.unit(120, "lb"),
  22875. name: "Front",
  22876. image: {
  22877. source: "./media/characters/ari/front.svg",
  22878. extra: 714.5 / 682,
  22879. bottom: 8 / 722.5
  22880. }
  22881. },
  22882. },
  22883. [
  22884. {
  22885. name: "Normal",
  22886. height: math.unit(5 + 5 / 12, "feet")
  22887. },
  22888. {
  22889. name: "Macro",
  22890. height: math.unit(100, "feet"),
  22891. default: true
  22892. },
  22893. {
  22894. name: "Megamacro",
  22895. height: math.unit(100, "miles")
  22896. },
  22897. {
  22898. name: "Gigamacro",
  22899. height: math.unit(80000, "miles")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22905. {
  22906. side: {
  22907. height: math.unit(9, "feet"),
  22908. weight: math.unit(400, "kg"),
  22909. name: "Side",
  22910. image: {
  22911. source: "./media/characters/bolt/side.svg",
  22912. extra: 1126 / 896,
  22913. bottom: 60 / 1187.3,
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Micro",
  22920. height: math.unit(5, "inches")
  22921. },
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(9, "feet"),
  22925. default: true
  22926. },
  22927. {
  22928. name: "Macro",
  22929. height: math.unit(700, "feet")
  22930. },
  22931. {
  22932. name: "Max Size",
  22933. height: math.unit(1.52e22, "yottameters")
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(4.53, "meters"),
  22942. weight: math.unit(3, "tons"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/draekon-sylviar/front.svg",
  22946. extra: 1228 / 1068,
  22947. bottom: 41 / 1270
  22948. }
  22949. },
  22950. tail: {
  22951. height: math.unit(1.772, "meter"),
  22952. name: "Tail",
  22953. image: {
  22954. source: "./media/characters/draekon-sylviar/tail.svg"
  22955. }
  22956. },
  22957. head: {
  22958. height: math.unit(1.331, "meter"),
  22959. name: "Head",
  22960. image: {
  22961. source: "./media/characters/draekon-sylviar/head.svg"
  22962. }
  22963. },
  22964. hand: {
  22965. height: math.unit(0.564, "meter"),
  22966. name: "Hand",
  22967. image: {
  22968. source: "./media/characters/draekon-sylviar/hand.svg"
  22969. }
  22970. },
  22971. foot: {
  22972. height: math.unit(0.621, "meter"),
  22973. name: "Foot",
  22974. image: {
  22975. source: "./media/characters/draekon-sylviar/foot.svg",
  22976. bottom: 32 / 324
  22977. }
  22978. },
  22979. dick: {
  22980. height: math.unit(61, "cm"),
  22981. name: "Dick",
  22982. image: {
  22983. source: "./media/characters/draekon-sylviar/dick.svg"
  22984. }
  22985. },
  22986. dickseparated: {
  22987. height: math.unit(61, "cm"),
  22988. name: "Dick-separated",
  22989. image: {
  22990. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Small",
  22997. height: math.unit(4.53 / 2, "meters"),
  22998. default: true
  22999. },
  23000. {
  23001. name: "Normal",
  23002. height: math.unit(4.53, "meters"),
  23003. default: true
  23004. },
  23005. {
  23006. name: "Large",
  23007. height: math.unit(4.53 * 2, "meters"),
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23013. {
  23014. front: {
  23015. height: math.unit(6 + 2 / 12, "feet"),
  23016. weight: math.unit(180, "lb"),
  23017. name: "Front",
  23018. image: {
  23019. source: "./media/characters/brawler/front.svg",
  23020. extra: 3301 / 3027,
  23021. bottom: 138 / 3439
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(6 + 2 / 12, "feet"),
  23029. default: true
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23035. {
  23036. front: {
  23037. height: math.unit(11, "feet"),
  23038. weight: math.unit(1000, "lb"),
  23039. name: "Front",
  23040. image: {
  23041. source: "./media/characters/alex/front.svg",
  23042. bottom: 44.5 / 620
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Micro",
  23049. height: math.unit(5, "inches")
  23050. },
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(11, "feet"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Macro",
  23058. height: math.unit(9.5e9, "feet")
  23059. },
  23060. {
  23061. name: "Max Size",
  23062. height: math.unit(1.4e283, "yottameters")
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23068. {
  23069. female: {
  23070. height: math.unit(29.9, "m"),
  23071. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23072. name: "Female",
  23073. image: {
  23074. source: "./media/characters/zenari/female.svg",
  23075. extra: 3281.6 / 3217,
  23076. bottom: 72.2 / 3353
  23077. }
  23078. },
  23079. male: {
  23080. height: math.unit(27.7, "m"),
  23081. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23082. name: "Male",
  23083. image: {
  23084. source: "./media/characters/zenari/male.svg",
  23085. extra: 3008 / 2991,
  23086. bottom: 54.6 / 3069
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(29.7, "meters"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23100. {
  23101. female: {
  23102. height: math.unit(23.8, "m"),
  23103. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23104. name: "Female",
  23105. image: {
  23106. source: "./media/characters/mactarian/female.svg",
  23107. extra: 2662 / 2569,
  23108. bottom: 73 / 2736
  23109. }
  23110. },
  23111. male: {
  23112. height: math.unit(23.8, "m"),
  23113. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23114. name: "Male",
  23115. image: {
  23116. source: "./media/characters/mactarian/male.svg",
  23117. extra: 2673 / 2600,
  23118. bottom: 76 / 2750
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Macro",
  23125. height: math.unit(23.8, "meters"),
  23126. default: true
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23132. {
  23133. female: {
  23134. height: math.unit(19.3, "m"),
  23135. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23136. name: "Female",
  23137. image: {
  23138. source: "./media/characters/umok/female.svg",
  23139. extra: 2186 / 2078,
  23140. bottom: 87 / 2277
  23141. }
  23142. },
  23143. male: {
  23144. height: math.unit(19.5, "m"),
  23145. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23146. name: "Male",
  23147. image: {
  23148. source: "./media/characters/umok/male.svg",
  23149. extra: 2233 / 2140,
  23150. bottom: 24.4 / 2258
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Macro",
  23157. height: math.unit(19.3, "meters"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23164. {
  23165. female: {
  23166. height: math.unit(26.15, "m"),
  23167. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23168. name: "Female",
  23169. image: {
  23170. source: "./media/characters/joraxian/female.svg",
  23171. extra: 2943 / 2831,
  23172. bottom: 27 / 2972
  23173. }
  23174. },
  23175. male: {
  23176. height: math.unit(25.4, "m"),
  23177. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23178. name: "Male",
  23179. image: {
  23180. source: "./media/characters/joraxian/male.svg",
  23181. extra: 2835 / 2741,
  23182. bottom: 27 / 2862
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Macro",
  23189. height: math.unit(26.15, "meters"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23196. {
  23197. female: {
  23198. height: math.unit(21.6, "m"),
  23199. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23200. name: "Female",
  23201. image: {
  23202. source: "./media/characters/sthara/female.svg",
  23203. extra: 2516 / 2347,
  23204. bottom: 21.5 / 2537
  23205. }
  23206. },
  23207. male: {
  23208. height: math.unit(24, "m"),
  23209. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23210. name: "Male",
  23211. image: {
  23212. source: "./media/characters/sthara/male.svg",
  23213. extra: 2732 / 2607,
  23214. bottom: 23 / 2732
  23215. }
  23216. },
  23217. },
  23218. [
  23219. {
  23220. name: "Macro",
  23221. height: math.unit(21.6, "meters"),
  23222. default: true
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23228. {
  23229. front: {
  23230. height: math.unit(6 + 4 / 12, "feet"),
  23231. weight: math.unit(175, "lb"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/luka-bryzant/front.svg",
  23235. extra: 311 / 289,
  23236. bottom: 4 / 315
  23237. }
  23238. },
  23239. back: {
  23240. height: math.unit(6 + 4 / 12, "feet"),
  23241. weight: math.unit(175, "lb"),
  23242. name: "Back",
  23243. image: {
  23244. source: "./media/characters/luka-bryzant/back.svg",
  23245. extra: 311 / 289,
  23246. bottom: 3.8 / 313.7
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Micro",
  23253. height: math.unit(10, "inches")
  23254. },
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(6 + 4 / 12, "feet"),
  23258. default: true
  23259. },
  23260. {
  23261. name: "Large",
  23262. height: math.unit(12, "feet")
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(5 + 7 / 12, "feet"),
  23271. weight: math.unit(185, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/aman-aquila/front.svg",
  23275. extra: 1013 / 976,
  23276. bottom: 45.6 / 1057
  23277. }
  23278. },
  23279. side: {
  23280. height: math.unit(5 + 7 / 12, "feet"),
  23281. weight: math.unit(185, "lb"),
  23282. name: "Side",
  23283. image: {
  23284. source: "./media/characters/aman-aquila/side.svg",
  23285. extra: 1054 / 1011,
  23286. bottom: 15 / 1070
  23287. }
  23288. },
  23289. back: {
  23290. height: math.unit(5 + 7 / 12, "feet"),
  23291. weight: math.unit(185, "lb"),
  23292. name: "Back",
  23293. image: {
  23294. source: "./media/characters/aman-aquila/back.svg",
  23295. extra: 1026 / 970,
  23296. bottom: 12 / 1039
  23297. }
  23298. },
  23299. head: {
  23300. height: math.unit(1.211, "feet"),
  23301. name: "Head",
  23302. image: {
  23303. source: "./media/characters/aman-aquila/head.svg",
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Minimicro",
  23310. height: math.unit(0.057, "inches")
  23311. },
  23312. {
  23313. name: "Micro",
  23314. height: math.unit(7, "inches")
  23315. },
  23316. {
  23317. name: "Mini",
  23318. height: math.unit(3 + 7 / 12, "feet")
  23319. },
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(5 + 7 / 12, "feet"),
  23323. default: true
  23324. },
  23325. {
  23326. name: "Macro",
  23327. height: math.unit(157 + 7 / 12, "feet")
  23328. },
  23329. {
  23330. name: "Megamacro",
  23331. height: math.unit(1557 + 7 / 12, "feet")
  23332. },
  23333. {
  23334. name: "Gigamacro",
  23335. height: math.unit(15557 + 7 / 12, "feet")
  23336. },
  23337. ]
  23338. ))
  23339. characterMakers.push(() => makeCharacter(
  23340. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23341. {
  23342. front: {
  23343. height: math.unit(3 + 2 / 12, "inches"),
  23344. weight: math.unit(0.3, "ounces"),
  23345. name: "Front",
  23346. image: {
  23347. source: "./media/characters/hiphae/front.svg",
  23348. extra: 1931 / 1683,
  23349. bottom: 24 / 1955
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(3 + 1 / 2, "inches"),
  23357. default: true
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23363. {
  23364. front: {
  23365. height: math.unit(5 + 10 / 12, "feet"),
  23366. weight: math.unit(165, "lb"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/nicky/front.svg",
  23370. extra: 3144 / 2886,
  23371. bottom: 45.6 / 3192
  23372. }
  23373. },
  23374. back: {
  23375. height: math.unit(5 + 10 / 12, "feet"),
  23376. weight: math.unit(165, "lb"),
  23377. name: "Back",
  23378. image: {
  23379. source: "./media/characters/nicky/back.svg",
  23380. extra: 3055 / 2804,
  23381. bottom: 28.4 / 3087
  23382. }
  23383. },
  23384. frontclothed: {
  23385. height: math.unit(5 + 10 / 12, "feet"),
  23386. weight: math.unit(165, "lb"),
  23387. name: "Front-clothed",
  23388. image: {
  23389. source: "./media/characters/nicky/front-clothed.svg",
  23390. extra: 3184.9 / 2926.9,
  23391. bottom: 86.5 / 3239.9
  23392. }
  23393. },
  23394. foot: {
  23395. height: math.unit(1.16, "feet"),
  23396. name: "Foot",
  23397. image: {
  23398. source: "./media/characters/nicky/foot.svg"
  23399. }
  23400. },
  23401. feet: {
  23402. height: math.unit(1.34, "feet"),
  23403. name: "Feet",
  23404. image: {
  23405. source: "./media/characters/nicky/feet.svg"
  23406. }
  23407. },
  23408. maw: {
  23409. height: math.unit(0.9, "feet"),
  23410. name: "Maw",
  23411. image: {
  23412. source: "./media/characters/nicky/maw.svg"
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(5 + 10 / 12, "feet"),
  23420. default: true
  23421. },
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(60, "feet")
  23425. },
  23426. {
  23427. name: "Megamacro",
  23428. height: math.unit(1, "mile")
  23429. },
  23430. ]
  23431. ))
  23432. characterMakers.push(() => makeCharacter(
  23433. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23434. {
  23435. side: {
  23436. height: math.unit(10, "feet"),
  23437. weight: math.unit(600, "lb"),
  23438. name: "Side",
  23439. image: {
  23440. source: "./media/characters/blair/side.svg",
  23441. bottom: 16.6 / 475,
  23442. extra: 458 / 431
  23443. }
  23444. },
  23445. },
  23446. [
  23447. {
  23448. name: "Micro",
  23449. height: math.unit(8, "inches")
  23450. },
  23451. {
  23452. name: "Normal",
  23453. height: math.unit(10, "feet"),
  23454. default: true
  23455. },
  23456. {
  23457. name: "Macro",
  23458. height: math.unit(180, "feet")
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(5 + 4 / 12, "feet"),
  23467. weight: math.unit(125, "lb"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/fisher/front.svg",
  23471. extra: 444 / 390,
  23472. bottom: 2 / 444.8
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Micro",
  23479. height: math.unit(4, "inches")
  23480. },
  23481. {
  23482. name: "Normal",
  23483. height: math.unit(5 + 4 / 12, "feet"),
  23484. default: true
  23485. },
  23486. {
  23487. name: "Macro",
  23488. height: math.unit(100, "feet")
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23494. {
  23495. front: {
  23496. height: math.unit(6.71, "feet"),
  23497. weight: math.unit(200, "lb"),
  23498. capacity: math.unit(1000000, "people"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/gliss/front.svg",
  23502. extra: 2347 / 2231,
  23503. bottom: 113 / 2462
  23504. }
  23505. },
  23506. hammerspaceSize: {
  23507. height: math.unit(6.71 * 717, "feet"),
  23508. weight: math.unit(200, "lb"),
  23509. capacity: math.unit(1000000, "people"),
  23510. name: "Hammerspace Size",
  23511. image: {
  23512. source: "./media/characters/gliss/front.svg",
  23513. extra: 2347 / 2231,
  23514. bottom: 113 / 2462
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Normal",
  23521. height: math.unit(6.71, "feet"),
  23522. default: true
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23528. {
  23529. side: {
  23530. height: math.unit(1.44, "m"),
  23531. weight: math.unit(80, "kg"),
  23532. name: "Side",
  23533. image: {
  23534. source: "./media/characters/dune-anderson/side.svg",
  23535. bottom: 49 / 1426
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Wolf-sized",
  23542. height: math.unit(1.44, "meters")
  23543. },
  23544. {
  23545. name: "Normal",
  23546. height: math.unit(5.05, "meters"),
  23547. default: true
  23548. },
  23549. {
  23550. name: "Big",
  23551. height: math.unit(14.4, "meters")
  23552. },
  23553. {
  23554. name: "Huge",
  23555. height: math.unit(144, "meters")
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(7, "feet"),
  23564. weight: math.unit(425, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/hind/front.svg",
  23568. extra: 2091 / 1860,
  23569. bottom: 129 / 2220
  23570. }
  23571. },
  23572. back: {
  23573. height: math.unit(7, "feet"),
  23574. weight: math.unit(425, "lb"),
  23575. name: "Back",
  23576. image: {
  23577. source: "./media/characters/hind/back.svg",
  23578. extra: 2091 / 1860,
  23579. bottom: 24.6 / 2309
  23580. }
  23581. },
  23582. tail: {
  23583. height: math.unit(2.8, "feet"),
  23584. name: "Tail",
  23585. image: {
  23586. source: "./media/characters/hind/tail.svg"
  23587. }
  23588. },
  23589. head: {
  23590. height: math.unit(2.55, "feet"),
  23591. name: "Head",
  23592. image: {
  23593. source: "./media/characters/hind/head.svg"
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "XS",
  23600. height: math.unit(0.7, "feet")
  23601. },
  23602. {
  23603. name: "Normal",
  23604. height: math.unit(7, "feet"),
  23605. default: true
  23606. },
  23607. {
  23608. name: "XL",
  23609. height: math.unit(70, "feet")
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23615. {
  23616. front: {
  23617. height: math.unit(6, "feet"),
  23618. weight: math.unit(150, "lb"),
  23619. name: "Front",
  23620. image: {
  23621. source: "./media/characters/dylan-skaven/front.svg",
  23622. extra: 2318 / 2063,
  23623. bottom: 93.4 / 2410
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Nano",
  23630. height: math.unit(1, "mm")
  23631. },
  23632. {
  23633. name: "Micro",
  23634. height: math.unit(1, "cm")
  23635. },
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(2.1, "meters"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(7 + 5 / 12, "feet"),
  23648. weight: math.unit(357, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/solex-draconov/front.svg",
  23652. extra: 1993 / 1865,
  23653. bottom: 117 / 2111
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Natural Height",
  23660. height: math.unit(7 + 5 / 12, "feet"),
  23661. default: true
  23662. },
  23663. {
  23664. name: "Macro",
  23665. height: math.unit(350, "feet")
  23666. },
  23667. {
  23668. name: "Macro+",
  23669. height: math.unit(1000, "feet")
  23670. },
  23671. {
  23672. name: "Megamacro",
  23673. height: math.unit(20, "km")
  23674. },
  23675. {
  23676. name: "Megamacro+",
  23677. height: math.unit(1000, "km")
  23678. },
  23679. {
  23680. name: "Gigamacro",
  23681. height: math.unit(2.5, "Gm")
  23682. },
  23683. {
  23684. name: "Teramacro",
  23685. height: math.unit(15, "Tm")
  23686. },
  23687. {
  23688. name: "Galactic",
  23689. height: math.unit(30, "Zm")
  23690. },
  23691. {
  23692. name: "Universal",
  23693. height: math.unit(21000, "Ym")
  23694. },
  23695. {
  23696. name: "Omniversal",
  23697. height: math.unit(9.861e50, "Ym")
  23698. },
  23699. {
  23700. name: "Existential",
  23701. height: math.unit(1e300, "meters")
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23707. {
  23708. side: {
  23709. height: math.unit(25, "feet"),
  23710. weight: math.unit(90000, "lb"),
  23711. name: "Side",
  23712. image: {
  23713. source: "./media/characters/mandarax/side.svg",
  23714. extra: 614 / 332,
  23715. bottom: 55 / 630
  23716. }
  23717. },
  23718. head: {
  23719. height: math.unit(11.4, "feet"),
  23720. name: "Head",
  23721. image: {
  23722. source: "./media/characters/mandarax/head.svg"
  23723. }
  23724. },
  23725. belly: {
  23726. height: math.unit(33, "feet"),
  23727. name: "Belly",
  23728. capacity: math.unit(500, "people"),
  23729. image: {
  23730. source: "./media/characters/mandarax/belly.svg"
  23731. }
  23732. },
  23733. dick: {
  23734. height: math.unit(8.46, "feet"),
  23735. name: "Dick",
  23736. image: {
  23737. source: "./media/characters/mandarax/dick.svg"
  23738. }
  23739. },
  23740. top: {
  23741. height: math.unit(28, "meters"),
  23742. name: "Top",
  23743. image: {
  23744. source: "./media/characters/mandarax/top.svg"
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(25, "feet"),
  23752. default: true
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23758. {
  23759. front: {
  23760. height: math.unit(5, "feet"),
  23761. weight: math.unit(90, "lb"),
  23762. name: "Front",
  23763. image: {
  23764. source: "./media/characters/pixil/front.svg",
  23765. extra: 2000 / 1618,
  23766. bottom: 12.3 / 2011
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Normal",
  23773. height: math.unit(5, "feet"),
  23774. default: true
  23775. },
  23776. {
  23777. name: "Megamacro",
  23778. height: math.unit(10, "miles"),
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23784. {
  23785. front: {
  23786. height: math.unit(7 + 2 / 12, "feet"),
  23787. weight: math.unit(200, "lb"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/angel/front.svg",
  23791. extra: 1830 / 1737,
  23792. bottom: 22.6 / 1854,
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Normal",
  23799. height: math.unit(7 + 2 / 12, "feet"),
  23800. default: true
  23801. },
  23802. {
  23803. name: "Macro",
  23804. height: math.unit(1000, "feet")
  23805. },
  23806. {
  23807. name: "Megamacro",
  23808. height: math.unit(2, "miles")
  23809. },
  23810. {
  23811. name: "Gigamacro",
  23812. height: math.unit(20, "earths")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23818. {
  23819. front: {
  23820. height: math.unit(5, "feet"),
  23821. weight: math.unit(180, "lb"),
  23822. name: "Front",
  23823. image: {
  23824. source: "./media/characters/mekana/front.svg",
  23825. extra: 1671 / 1605,
  23826. bottom: 3.5 / 1691
  23827. }
  23828. },
  23829. side: {
  23830. height: math.unit(5, "feet"),
  23831. weight: math.unit(180, "lb"),
  23832. name: "Side",
  23833. image: {
  23834. source: "./media/characters/mekana/side.svg",
  23835. extra: 1671 / 1605,
  23836. bottom: 3.5 / 1691
  23837. }
  23838. },
  23839. back: {
  23840. height: math.unit(5, "feet"),
  23841. weight: math.unit(180, "lb"),
  23842. name: "Back",
  23843. image: {
  23844. source: "./media/characters/mekana/back.svg",
  23845. extra: 1671 / 1605,
  23846. bottom: 3.5 / 1691
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(5, "feet"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(4 + 6 / 12, "feet"),
  23863. weight: math.unit(80, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/pixie/front.svg",
  23867. extra: 1924 / 1825,
  23868. bottom: 22.4 / 1946
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(4 + 6 / 12, "feet"),
  23876. default: true
  23877. },
  23878. {
  23879. name: "Macro",
  23880. height: math.unit(40, "feet")
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23886. {
  23887. front: {
  23888. height: math.unit(2.1, "meters"),
  23889. weight: math.unit(200, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/the-lascivious/front.svg",
  23893. extra: 1 / 0.893,
  23894. bottom: 3.5 / 573.7
  23895. }
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Human Scale",
  23901. height: math.unit(2.1, "meters")
  23902. },
  23903. {
  23904. name: "Wolxi Scale",
  23905. height: math.unit(46.2, "m"),
  23906. default: true
  23907. },
  23908. {
  23909. name: "Boinker of Buildings",
  23910. height: math.unit(10, "km")
  23911. },
  23912. {
  23913. name: "Shagger of Skyscrapers",
  23914. height: math.unit(40, "km")
  23915. },
  23916. {
  23917. name: "Banger of Boroughs",
  23918. height: math.unit(4000, "km")
  23919. },
  23920. {
  23921. name: "Screwer of States",
  23922. height: math.unit(100000, "km")
  23923. },
  23924. {
  23925. name: "Pounder of Planets",
  23926. height: math.unit(2000000, "km")
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(6, "feet"),
  23935. weight: math.unit(150, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/aj/front.svg",
  23939. extra: 2039 / 1562,
  23940. bottom: 40 / 2079
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(11 + 6 / 12, "feet"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Megamacro",
  23952. height: math.unit(60, "megameters")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Koros" },
  23958. {
  23959. side: {
  23960. height: math.unit(31 + 8/12, "feet"),
  23961. weight: math.unit(75000, "kg"),
  23962. name: "Side",
  23963. image: {
  23964. source: "./media/characters/koros/side.svg",
  23965. extra: 1442/1297,
  23966. bottom: 122.7/1562
  23967. }
  23968. },
  23969. dicksKingsCrown: {
  23970. height: math.unit(6, "feet"),
  23971. name: "Dicks (King's Crown)",
  23972. image: {
  23973. source: "./media/characters/koros/dicks-kings-crown.svg"
  23974. }
  23975. },
  23976. dicksTailSet: {
  23977. height: math.unit(3, "feet"),
  23978. name: "Dicks (Tail Set)",
  23979. image: {
  23980. source: "./media/characters/koros/dicks-tail-set.svg"
  23981. }
  23982. },
  23983. dickCumming: {
  23984. height: math.unit(7.98, "feet"),
  23985. name: "Dick (Cumming)",
  23986. image: {
  23987. source: "./media/characters/koros/dick-cumming.svg"
  23988. }
  23989. },
  23990. dicksBack: {
  23991. height: math.unit(5.9, "feet"),
  23992. name: "Dicks (Back)",
  23993. image: {
  23994. source: "./media/characters/koros/dicks-back.svg"
  23995. }
  23996. },
  23997. dicksFront: {
  23998. height: math.unit(3.72, "feet"),
  23999. name: "Dicks (Front)",
  24000. image: {
  24001. source: "./media/characters/koros/dicks-front.svg"
  24002. }
  24003. },
  24004. dicksPeeking: {
  24005. height: math.unit(3.0, "feet"),
  24006. name: "Dicks (Peeking)",
  24007. image: {
  24008. source: "./media/characters/koros/dicks-peeking.svg"
  24009. }
  24010. },
  24011. eye: {
  24012. height: math.unit(1.7, "feet"),
  24013. name: "Eye",
  24014. image: {
  24015. source: "./media/characters/koros/eye.svg"
  24016. }
  24017. },
  24018. headFront: {
  24019. height: math.unit(11.69, "feet"),
  24020. name: "Head (Front)",
  24021. image: {
  24022. source: "./media/characters/koros/head-front.svg"
  24023. }
  24024. },
  24025. headSide: {
  24026. height: math.unit(14, "feet"),
  24027. name: "Head (Side)",
  24028. image: {
  24029. source: "./media/characters/koros/head-side.svg"
  24030. }
  24031. },
  24032. leg: {
  24033. height: math.unit(17, "feet"),
  24034. name: "Leg",
  24035. image: {
  24036. source: "./media/characters/koros/leg.svg"
  24037. }
  24038. },
  24039. mawSide: {
  24040. height: math.unit(12.8, "feet"),
  24041. name: "Maw (Side)",
  24042. image: {
  24043. source: "./media/characters/koros/maw-side.svg"
  24044. }
  24045. },
  24046. mawSpitting: {
  24047. height: math.unit(17, "feet"),
  24048. name: "Maw (Spitting)",
  24049. image: {
  24050. source: "./media/characters/koros/maw-spitting.svg"
  24051. }
  24052. },
  24053. slit: {
  24054. height: math.unit(2.8, "feet"),
  24055. name: "Slit",
  24056. image: {
  24057. source: "./media/characters/koros/slit.svg"
  24058. }
  24059. },
  24060. stomach: {
  24061. height: math.unit(6.8, "feet"),
  24062. capacity: math.unit(20, "people"),
  24063. name: "Stomach",
  24064. image: {
  24065. source: "./media/characters/koros/stomach.svg"
  24066. }
  24067. },
  24068. wingspanBottom: {
  24069. height: math.unit(114, "feet"),
  24070. name: "Wingspan (Bottom)",
  24071. image: {
  24072. source: "./media/characters/koros/wingspan-bottom.svg"
  24073. }
  24074. },
  24075. wingspanTop: {
  24076. height: math.unit(104, "feet"),
  24077. name: "Wingspan (Top)",
  24078. image: {
  24079. source: "./media/characters/koros/wingspan-top.svg"
  24080. }
  24081. },
  24082. },
  24083. [
  24084. ]
  24085. ))
  24086. //characters
  24087. function makeCharacters() {
  24088. const results = [];
  24089. characterMakers.forEach(character => {
  24090. results.push(character());
  24091. });
  24092. return results;
  24093. }