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

25275 строки
627 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. }
  1264. //species
  1265. function getSpeciesInfo(speciesList) {
  1266. let result = new Set();
  1267. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1268. result.add(entry)
  1269. });
  1270. return Array.from(result);
  1271. };
  1272. function getSpeciesInfoHelper(species) {
  1273. if (!speciesData[species]) {
  1274. console.warn(species + " doesn't exist");
  1275. return [];
  1276. }
  1277. if (speciesData[species].parents) {
  1278. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1279. } else {
  1280. return [species];
  1281. }
  1282. }
  1283. characterMakers.push(() => makeCharacter(
  1284. {
  1285. name: "Fen",
  1286. species: ["crux"],
  1287. description: {
  1288. title: "Bio",
  1289. text: "Very furry. Sheds on everything."
  1290. },
  1291. tags: [
  1292. "anthro",
  1293. "goo"
  1294. ]
  1295. },
  1296. {
  1297. back: {
  1298. height: math.unit(2.2428, "meter"),
  1299. weight: math.unit(124.738, "kg"),
  1300. name: "Back",
  1301. image: {
  1302. source: "./media/characters/fen/back.svg",
  1303. extra: 1025 / 935,
  1304. bottom: 0.01
  1305. },
  1306. info: {
  1307. description: {
  1308. mode: "append",
  1309. text: "\n\nHe is not currently looking at you."
  1310. }
  1311. }
  1312. },
  1313. full: {
  1314. height: math.unit(1.34, "meter"),
  1315. weight: math.unit(225, "kg"),
  1316. name: "Full",
  1317. image: {
  1318. source: "./media/characters/fen/full.svg"
  1319. },
  1320. info: {
  1321. description: {
  1322. mode: "append",
  1323. text: "\n\nMunch."
  1324. }
  1325. }
  1326. },
  1327. kneeling: {
  1328. height: math.unit(5.4, "feet"),
  1329. weight: math.unit(124.738, "kg"),
  1330. name: "Kneeling",
  1331. image: {
  1332. source: "./media/characters/fen/kneeling.svg",
  1333. extra: 563 / 507
  1334. }
  1335. },
  1336. goo: {
  1337. height: math.unit(2.8, "feet"),
  1338. weight: math.unit(125, "kg"),
  1339. capacity: math.unit(1, "people"),
  1340. name: "Goo",
  1341. image: {
  1342. source: "./media/characters/fen/goo.svg",
  1343. bottom: 116 / 613
  1344. }
  1345. },
  1346. lounging: {
  1347. height: math.unit(6.5, "feet"),
  1348. weight: math.unit(125, "kg"),
  1349. name: "Lounging",
  1350. image: {
  1351. source: "./media/characters/fen/lounging.svg"
  1352. }
  1353. },
  1354. },
  1355. [
  1356. {
  1357. name: "Normal",
  1358. height: math.unit(2.2428, "meter")
  1359. },
  1360. {
  1361. name: "Big",
  1362. height: math.unit(12, "feet")
  1363. },
  1364. {
  1365. name: "Minimacro",
  1366. height: math.unit(40, "feet"),
  1367. default: true,
  1368. info: {
  1369. description: {
  1370. mode: "append",
  1371. text: "\n\nTOO DAMN BIG"
  1372. }
  1373. }
  1374. },
  1375. {
  1376. name: "Macro",
  1377. height: math.unit(100, "feet"),
  1378. info: {
  1379. description: {
  1380. mode: "append",
  1381. text: "\n\nTOO DAMN BIG"
  1382. }
  1383. }
  1384. },
  1385. {
  1386. name: "Macro+",
  1387. height: math.unit(300, "feet")
  1388. },
  1389. {
  1390. name: "Megamacro",
  1391. height: math.unit(2, "miles")
  1392. }
  1393. ]
  1394. ))
  1395. characterMakers.push(() => makeCharacter(
  1396. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1397. {
  1398. front: {
  1399. height: math.unit(183, "cm"),
  1400. weight: math.unit(80, "kg"),
  1401. name: "Front",
  1402. image: {
  1403. source: "./media/characters/sofia-fluttertail/front.svg",
  1404. bottom: 0.01,
  1405. extra: 2154 / 2081
  1406. }
  1407. },
  1408. frontAlt: {
  1409. height: math.unit(183, "cm"),
  1410. weight: math.unit(80, "kg"),
  1411. name: "Front (alt)",
  1412. image: {
  1413. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1414. }
  1415. },
  1416. back: {
  1417. height: math.unit(183, "cm"),
  1418. weight: math.unit(80, "kg"),
  1419. name: "Back",
  1420. image: {
  1421. source: "./media/characters/sofia-fluttertail/back.svg"
  1422. }
  1423. },
  1424. kneeling: {
  1425. height: math.unit(125, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Kneeling",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1430. extra: 1033 / 977,
  1431. bottom: 23.7 / 1057
  1432. }
  1433. },
  1434. maw: {
  1435. height: math.unit(183 / 5, "cm"),
  1436. name: "Maw",
  1437. image: {
  1438. source: "./media/characters/sofia-fluttertail/maw.svg"
  1439. }
  1440. },
  1441. mawcloseup: {
  1442. height: math.unit(183 / 5 * 0.41, "cm"),
  1443. name: "Maw (Closeup)",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1446. }
  1447. },
  1448. },
  1449. [
  1450. {
  1451. name: "Normal",
  1452. height: math.unit(1.83, "meter")
  1453. },
  1454. {
  1455. name: "Size Thief",
  1456. height: math.unit(18, "feet")
  1457. },
  1458. {
  1459. name: "50 Foot Collie",
  1460. height: math.unit(50, "feet")
  1461. },
  1462. {
  1463. name: "Macro",
  1464. height: math.unit(96, "feet"),
  1465. default: true
  1466. },
  1467. {
  1468. name: "Megamerger",
  1469. height: math.unit(650, "feet")
  1470. },
  1471. ]
  1472. ))
  1473. characterMakers.push(() => makeCharacter(
  1474. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1475. {
  1476. front: {
  1477. height: math.unit(7, "feet"),
  1478. weight: math.unit(100, "kg"),
  1479. name: "Front",
  1480. image: {
  1481. source: "./media/characters/march/front.svg",
  1482. extra: 1,
  1483. bottom: 0.015
  1484. }
  1485. },
  1486. foot: {
  1487. height: math.unit(0.9, "feet"),
  1488. name: "Foot",
  1489. image: {
  1490. source: "./media/characters/march/foot.svg"
  1491. }
  1492. },
  1493. },
  1494. [
  1495. {
  1496. name: "Normal",
  1497. height: math.unit(7.9, "feet")
  1498. },
  1499. {
  1500. name: "Macro",
  1501. height: math.unit(220, "meters")
  1502. },
  1503. {
  1504. name: "Megamacro",
  1505. height: math.unit(2.98, "km"),
  1506. default: true
  1507. },
  1508. {
  1509. name: "Gigamacro",
  1510. height: math.unit(15963, "km")
  1511. },
  1512. {
  1513. name: "Teramacro",
  1514. height: math.unit(2980000000, "km")
  1515. },
  1516. {
  1517. name: "Examacro",
  1518. height: math.unit(250, "parsecs")
  1519. },
  1520. ]
  1521. ))
  1522. characterMakers.push(() => makeCharacter(
  1523. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1524. {
  1525. front: {
  1526. height: math.unit(6, "feet"),
  1527. weight: math.unit(60, "kg"),
  1528. name: "Front",
  1529. image: {
  1530. source: "./media/characters/noir/front.svg",
  1531. extra: 1,
  1532. bottom: 0.032
  1533. }
  1534. },
  1535. },
  1536. [
  1537. {
  1538. name: "Normal",
  1539. height: math.unit(6.6, "feet")
  1540. },
  1541. {
  1542. name: "Macro",
  1543. height: math.unit(500, "feet")
  1544. },
  1545. {
  1546. name: "Megamacro",
  1547. height: math.unit(2.5, "km"),
  1548. default: true
  1549. },
  1550. {
  1551. name: "Gigamacro",
  1552. height: math.unit(22500, "km")
  1553. },
  1554. {
  1555. name: "Teramacro",
  1556. height: math.unit(2500000000, "km")
  1557. },
  1558. {
  1559. name: "Examacro",
  1560. height: math.unit(200, "parsecs")
  1561. },
  1562. ]
  1563. ))
  1564. characterMakers.push(() => makeCharacter(
  1565. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1566. {
  1567. front: {
  1568. height: math.unit(7, "feet"),
  1569. weight: math.unit(100, "kg"),
  1570. name: "Front",
  1571. image: {
  1572. source: "./media/characters/okuri/front.svg",
  1573. extra: 1,
  1574. bottom: 0.037
  1575. }
  1576. },
  1577. back: {
  1578. height: math.unit(7, "feet"),
  1579. weight: math.unit(100, "kg"),
  1580. name: "Back",
  1581. image: {
  1582. source: "./media/characters/okuri/back.svg",
  1583. extra: 1,
  1584. bottom: 0.007
  1585. }
  1586. },
  1587. },
  1588. [
  1589. {
  1590. name: "Megamacro",
  1591. height: math.unit(100, "miles"),
  1592. default: true
  1593. },
  1594. ]
  1595. ))
  1596. characterMakers.push(() => makeCharacter(
  1597. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1598. {
  1599. front: {
  1600. height: math.unit(7, "feet"),
  1601. weight: math.unit(100, "kg"),
  1602. name: "Front",
  1603. image: {
  1604. source: "./media/characters/manny/front.svg",
  1605. extra: 1,
  1606. bottom: 0.06
  1607. }
  1608. },
  1609. back: {
  1610. height: math.unit(7, "feet"),
  1611. weight: math.unit(100, "kg"),
  1612. name: "Back",
  1613. image: {
  1614. source: "./media/characters/manny/back.svg",
  1615. extra: 1,
  1616. bottom: 0.014
  1617. }
  1618. },
  1619. },
  1620. [
  1621. {
  1622. name: "Normal",
  1623. height: math.unit(7, "feet"),
  1624. },
  1625. {
  1626. name: "Macro",
  1627. height: math.unit(78, "feet"),
  1628. default: true
  1629. },
  1630. {
  1631. name: "Macro+",
  1632. height: math.unit(300, "meters")
  1633. },
  1634. {
  1635. name: "Macro++",
  1636. height: math.unit(2400, "meters")
  1637. },
  1638. {
  1639. name: "Megamacro",
  1640. height: math.unit(5167, "meters")
  1641. },
  1642. {
  1643. name: "Gigamacro",
  1644. height: math.unit(41769, "miles")
  1645. },
  1646. ]
  1647. ))
  1648. characterMakers.push(() => makeCharacter(
  1649. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1650. {
  1651. front: {
  1652. height: math.unit(7, "feet"),
  1653. weight: math.unit(100, "kg"),
  1654. name: "Front",
  1655. image: {
  1656. source: "./media/characters/adake/front-1.svg"
  1657. }
  1658. },
  1659. frontAlt: {
  1660. height: math.unit(7, "feet"),
  1661. weight: math.unit(100, "kg"),
  1662. name: "Front (Alt)",
  1663. image: {
  1664. source: "./media/characters/adake/front-2.svg",
  1665. extra: 1,
  1666. bottom: 0.01
  1667. }
  1668. },
  1669. back: {
  1670. height: math.unit(7, "feet"),
  1671. weight: math.unit(100, "kg"),
  1672. name: "Back",
  1673. image: {
  1674. source: "./media/characters/adake/back.svg",
  1675. }
  1676. },
  1677. kneel: {
  1678. height: math.unit(5.385, "feet"),
  1679. weight: math.unit(100, "kg"),
  1680. name: "Kneeling",
  1681. image: {
  1682. source: "./media/characters/adake/kneel.svg",
  1683. bottom: 0.052
  1684. }
  1685. },
  1686. },
  1687. [
  1688. {
  1689. name: "Normal",
  1690. height: math.unit(7, "feet"),
  1691. },
  1692. {
  1693. name: "Macro",
  1694. height: math.unit(78, "feet"),
  1695. default: true
  1696. },
  1697. {
  1698. name: "Macro+",
  1699. height: math.unit(300, "meters")
  1700. },
  1701. {
  1702. name: "Macro++",
  1703. height: math.unit(2400, "meters")
  1704. },
  1705. {
  1706. name: "Megamacro",
  1707. height: math.unit(5167, "meters")
  1708. },
  1709. {
  1710. name: "Gigamacro",
  1711. height: math.unit(41769, "miles")
  1712. },
  1713. ]
  1714. ))
  1715. characterMakers.push(() => makeCharacter(
  1716. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1717. {
  1718. front: {
  1719. height: math.unit(1.65, "meters"),
  1720. weight: math.unit(50, "kg"),
  1721. name: "Front",
  1722. image: {
  1723. source: "./media/characters/elijah/front.svg",
  1724. extra: 858 / 830,
  1725. bottom: 95.5 / 953.8559
  1726. }
  1727. },
  1728. back: {
  1729. height: math.unit(1.65, "meters"),
  1730. weight: math.unit(50, "kg"),
  1731. name: "Back",
  1732. image: {
  1733. source: "./media/characters/elijah/back.svg",
  1734. extra: 895 / 850,
  1735. bottom: 5.3 / 897.956
  1736. }
  1737. },
  1738. frontNsfw: {
  1739. height: math.unit(1.65, "meters"),
  1740. weight: math.unit(50, "kg"),
  1741. name: "Front (NSFW)",
  1742. image: {
  1743. source: "./media/characters/elijah/front-nsfw.svg",
  1744. extra: 858 / 830,
  1745. bottom: 95.5 / 953.8559
  1746. }
  1747. },
  1748. backNsfw: {
  1749. height: math.unit(1.65, "meters"),
  1750. weight: math.unit(50, "kg"),
  1751. name: "Back (NSFW)",
  1752. image: {
  1753. source: "./media/characters/elijah/back-nsfw.svg",
  1754. extra: 895 / 850,
  1755. bottom: 5.3 / 897.956
  1756. }
  1757. },
  1758. dick: {
  1759. height: math.unit(1, "feet"),
  1760. name: "Dick",
  1761. image: {
  1762. source: "./media/characters/elijah/dick.svg"
  1763. }
  1764. },
  1765. beakOpen: {
  1766. height: math.unit(1.25, "feet"),
  1767. name: "Beak (Open)",
  1768. image: {
  1769. source: "./media/characters/elijah/beak-open.svg"
  1770. }
  1771. },
  1772. beakShut: {
  1773. height: math.unit(1.25, "feet"),
  1774. name: "Beak (Shut)",
  1775. image: {
  1776. source: "./media/characters/elijah/beak-shut.svg"
  1777. }
  1778. },
  1779. footFlexing: {
  1780. height: math.unit(1.61, "feet"),
  1781. name: "Foot (Flexing)",
  1782. image: {
  1783. source: "./media/characters/elijah/foot-flexing.svg"
  1784. }
  1785. },
  1786. footStepping: {
  1787. height: math.unit(1.44, "feet"),
  1788. name: "Foot (Stepping)",
  1789. image: {
  1790. source: "./media/characters/elijah/foot-stepping.svg"
  1791. }
  1792. },
  1793. plantigradeLeg: {
  1794. height: math.unit(2.34, "feet"),
  1795. name: "Plantigrade Leg",
  1796. image: {
  1797. source: "./media/characters/elijah/plantigrade-leg.svg"
  1798. }
  1799. },
  1800. plantigradeFootLeft: {
  1801. height: math.unit(0.9, "feet"),
  1802. name: "Plantigrade Foot (Left)",
  1803. image: {
  1804. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1805. }
  1806. },
  1807. plantigradeFootRight: {
  1808. height: math.unit(0.9, "feet"),
  1809. name: "Plantigrade Foot (Right)",
  1810. image: {
  1811. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1812. }
  1813. },
  1814. },
  1815. [
  1816. {
  1817. name: "Normal",
  1818. height: math.unit(1.65, "meters")
  1819. },
  1820. {
  1821. name: "Macro",
  1822. height: math.unit(55, "meters"),
  1823. default: true
  1824. },
  1825. {
  1826. name: "Macro+",
  1827. height: math.unit(105, "meters")
  1828. },
  1829. ]
  1830. ))
  1831. characterMakers.push(() => makeCharacter(
  1832. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1833. {
  1834. front: {
  1835. height: math.unit(11, "feet"),
  1836. weight: math.unit(80, "kg"),
  1837. name: "Front",
  1838. image: {
  1839. source: "./media/characters/rai/front.svg",
  1840. extra: 1,
  1841. bottom: 0.03
  1842. }
  1843. },
  1844. side: {
  1845. height: math.unit(11, "feet"),
  1846. weight: math.unit(80, "kg"),
  1847. name: "Side",
  1848. image: {
  1849. source: "./media/characters/rai/side.svg"
  1850. }
  1851. },
  1852. back: {
  1853. height: math.unit(11, "feet"),
  1854. weight: math.unit(80, "lb"),
  1855. name: "Back",
  1856. image: {
  1857. source: "./media/characters/rai/back.svg",
  1858. extra: 1,
  1859. bottom: 0.01
  1860. }
  1861. },
  1862. feral: {
  1863. height: math.unit(11, "feet"),
  1864. weight: math.unit(800, "lb"),
  1865. name: "Feral",
  1866. image: {
  1867. source: "./media/characters/rai/feral.svg",
  1868. extra: 1050 / 659,
  1869. bottom: 0.07
  1870. }
  1871. },
  1872. dragon: {
  1873. height: math.unit(23, "feet"),
  1874. weight: math.unit(50000, "lb"),
  1875. name: "Dragon",
  1876. image: {
  1877. source: "./media/characters/rai/dragon.svg",
  1878. extra: 2498 / 2030,
  1879. bottom: 85.2 / 2584
  1880. }
  1881. },
  1882. maw: {
  1883. height: math.unit(6 / 3.81416, "feet"),
  1884. name: "Maw",
  1885. image: {
  1886. source: "./media/characters/rai/maw.svg"
  1887. }
  1888. },
  1889. },
  1890. [
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(11, "feet")
  1894. },
  1895. {
  1896. name: "Macro",
  1897. height: math.unit(302, "feet"),
  1898. default: true
  1899. },
  1900. ]
  1901. ))
  1902. characterMakers.push(() => makeCharacter(
  1903. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1904. {
  1905. frontDressed: {
  1906. height: math.unit(216, "feet"),
  1907. weight: math.unit(7000000, "lb"),
  1908. name: "Front (Dressed)",
  1909. image: {
  1910. source: "./media/characters/jazzy/front-dressed.svg",
  1911. extra: 2738 / 2651,
  1912. bottom: 41.8 / 2786
  1913. }
  1914. },
  1915. backDressed: {
  1916. height: math.unit(216, "feet"),
  1917. weight: math.unit(7000000, "lb"),
  1918. name: "Back (Dressed)",
  1919. image: {
  1920. source: "./media/characters/jazzy/back-dressed.svg",
  1921. extra: 2775 / 2673,
  1922. bottom: 36.8 / 2817
  1923. }
  1924. },
  1925. front: {
  1926. height: math.unit(216, "feet"),
  1927. weight: math.unit(7000000, "lb"),
  1928. name: "Front",
  1929. image: {
  1930. source: "./media/characters/jazzy/front.svg",
  1931. extra: 2738 / 2651,
  1932. bottom: 41.8 / 2786
  1933. }
  1934. },
  1935. back: {
  1936. height: math.unit(216, "feet"),
  1937. weight: math.unit(7000000, "lb"),
  1938. name: "Back",
  1939. image: {
  1940. source: "./media/characters/jazzy/back.svg",
  1941. extra: 2775 / 2673,
  1942. bottom: 36.8 / 2817
  1943. }
  1944. },
  1945. maw: {
  1946. height: math.unit(20, "feet"),
  1947. name: "Maw",
  1948. image: {
  1949. source: "./media/characters/jazzy/maw.svg"
  1950. }
  1951. },
  1952. paws: {
  1953. height: math.unit(27.5, "feet"),
  1954. name: "Paws",
  1955. image: {
  1956. source: "./media/characters/jazzy/paws.svg"
  1957. }
  1958. },
  1959. eye: {
  1960. height: math.unit(4.4, "feet"),
  1961. name: "Eye",
  1962. image: {
  1963. source: "./media/characters/jazzy/eye.svg"
  1964. }
  1965. },
  1966. droneOffense: {
  1967. height: math.unit(9.5, "inches"),
  1968. name: "Drone (Offense)",
  1969. image: {
  1970. source: "./media/characters/jazzy/drone-offense.svg"
  1971. }
  1972. },
  1973. droneRecon: {
  1974. height: math.unit(9.5, "inches"),
  1975. name: "Drone (Recon)",
  1976. image: {
  1977. source: "./media/characters/jazzy/drone-recon.svg"
  1978. }
  1979. },
  1980. droneDefense: {
  1981. height: math.unit(9.5, "inches"),
  1982. name: "Drone (Defense)",
  1983. image: {
  1984. source: "./media/characters/jazzy/drone-defense.svg"
  1985. }
  1986. },
  1987. },
  1988. [
  1989. {
  1990. name: "Macro",
  1991. height: math.unit(216, "feet"),
  1992. default: true
  1993. },
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1998. {
  1999. front: {
  2000. height: math.unit(7, "feet"),
  2001. weight: math.unit(80, "kg"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/flamm/front.svg",
  2005. extra: 1794 / 1677,
  2006. bottom: 31.7 / 1828.5
  2007. }
  2008. },
  2009. },
  2010. [
  2011. {
  2012. name: "Normal",
  2013. height: math.unit(9.5, "feet")
  2014. },
  2015. {
  2016. name: "Macro",
  2017. height: math.unit(200, "feet"),
  2018. default: true
  2019. },
  2020. ]
  2021. ))
  2022. characterMakers.push(() => makeCharacter(
  2023. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2024. {
  2025. front: {
  2026. height: math.unit(7, "feet"),
  2027. weight: math.unit(80, "kg"),
  2028. name: "Front",
  2029. image: {
  2030. source: "./media/characters/zephiro/front.svg",
  2031. extra: 2309 / 2162,
  2032. bottom: 0.069
  2033. }
  2034. },
  2035. side: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(80, "kg"),
  2038. name: "Side",
  2039. image: {
  2040. source: "./media/characters/zephiro/side.svg",
  2041. extra: 2403 / 2279,
  2042. bottom: 0.015
  2043. }
  2044. },
  2045. back: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(80, "kg"),
  2048. name: "Back",
  2049. image: {
  2050. source: "./media/characters/zephiro/back.svg",
  2051. extra: 2373 / 2244,
  2052. bottom: 0.013
  2053. }
  2054. },
  2055. },
  2056. [
  2057. {
  2058. name: "Micro",
  2059. height: math.unit(3, "inches")
  2060. },
  2061. {
  2062. name: "Normal",
  2063. height: math.unit(5 + 3 / 12, "feet"),
  2064. default: true
  2065. },
  2066. {
  2067. name: "Macro",
  2068. height: math.unit(118, "feet")
  2069. },
  2070. ]
  2071. ))
  2072. characterMakers.push(() => makeCharacter(
  2073. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2074. {
  2075. front: {
  2076. height: math.unit(5, "feet"),
  2077. weight: math.unit(90, "kg"),
  2078. name: "Front",
  2079. image: {
  2080. source: "./media/characters/fory/front.svg",
  2081. extra: 2862 / 2674,
  2082. bottom: 180 / 3043.8
  2083. }
  2084. },
  2085. back: {
  2086. height: math.unit(5, "feet"),
  2087. weight: math.unit(90, "kg"),
  2088. name: "Back",
  2089. image: {
  2090. source: "./media/characters/fory/back.svg",
  2091. extra: 2962 / 2791,
  2092. bottom: 106 / 3071.8
  2093. }
  2094. },
  2095. foot: {
  2096. height: math.unit(2.14, "feet"),
  2097. name: "Foot",
  2098. image: {
  2099. source: "./media/characters/fory/foot.svg"
  2100. }
  2101. },
  2102. },
  2103. [
  2104. {
  2105. name: "Normal",
  2106. height: math.unit(5, "feet")
  2107. },
  2108. {
  2109. name: "Macro",
  2110. height: math.unit(50, "feet"),
  2111. default: true
  2112. },
  2113. {
  2114. name: "Megamacro",
  2115. height: math.unit(10, "miles")
  2116. },
  2117. {
  2118. name: "Gigamacro",
  2119. height: math.unit(5, "earths")
  2120. },
  2121. ]
  2122. ))
  2123. characterMakers.push(() => makeCharacter(
  2124. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2125. {
  2126. front: {
  2127. height: math.unit(7, "feet"),
  2128. weight: math.unit(90, "kg"),
  2129. name: "Front",
  2130. image: {
  2131. source: "./media/characters/kurrikage/front.svg",
  2132. extra: 1,
  2133. bottom: 0.035
  2134. }
  2135. },
  2136. back: {
  2137. height: math.unit(7, "feet"),
  2138. weight: math.unit(90, "lb"),
  2139. name: "Back",
  2140. image: {
  2141. source: "./media/characters/kurrikage/back.svg"
  2142. }
  2143. },
  2144. paw: {
  2145. height: math.unit(1.5, "feet"),
  2146. name: "Paw",
  2147. image: {
  2148. source: "./media/characters/kurrikage/paw.svg"
  2149. }
  2150. },
  2151. staff: {
  2152. height: math.unit(6.7, "feet"),
  2153. name: "Staff",
  2154. image: {
  2155. source: "./media/characters/kurrikage/staff.svg"
  2156. }
  2157. },
  2158. peek: {
  2159. height: math.unit(1.05, "feet"),
  2160. name: "Peeking",
  2161. image: {
  2162. source: "./media/characters/kurrikage/peek.svg",
  2163. bottom: 0.08
  2164. }
  2165. },
  2166. },
  2167. [
  2168. {
  2169. name: "Normal",
  2170. height: math.unit(12, "feet"),
  2171. default: true
  2172. },
  2173. {
  2174. name: "Big",
  2175. height: math.unit(20, "feet")
  2176. },
  2177. {
  2178. name: "Macro",
  2179. height: math.unit(500, "feet")
  2180. },
  2181. {
  2182. name: "Megamacro",
  2183. height: math.unit(20, "miles")
  2184. },
  2185. ]
  2186. ))
  2187. characterMakers.push(() => makeCharacter(
  2188. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2189. {
  2190. front: {
  2191. height: math.unit(6, "feet"),
  2192. weight: math.unit(75, "kg"),
  2193. name: "Front",
  2194. image: {
  2195. source: "./media/characters/shingo/front.svg",
  2196. extra: 3511 / 3338,
  2197. bottom: 0.005
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Micro",
  2204. height: math.unit(4, "inches")
  2205. },
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(6, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro",
  2213. height: math.unit(108, "feet")
  2214. }
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2219. {
  2220. side: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(75, "kg"),
  2223. name: "Side",
  2224. image: {
  2225. source: "./media/characters/aigey/side.svg"
  2226. }
  2227. },
  2228. },
  2229. [
  2230. {
  2231. name: "Macro",
  2232. height: math.unit(200, "feet"),
  2233. default: true
  2234. },
  2235. {
  2236. name: "Megamacro",
  2237. height: math.unit(100, "miles")
  2238. },
  2239. ]
  2240. )
  2241. )
  2242. characterMakers.push(() => makeCharacter(
  2243. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2244. {
  2245. front: {
  2246. height: math.unit(5 + 5 / 12, "feet"),
  2247. weight: math.unit(75, "kg"),
  2248. name: "Front",
  2249. image: {
  2250. source: "./media/characters/natasha/front.svg",
  2251. extra: 859 / 824,
  2252. bottom: 23 / 879.6
  2253. }
  2254. },
  2255. frontNsfw: {
  2256. height: math.unit(5 + 5 / 12, "feet"),
  2257. weight: math.unit(75, "kg"),
  2258. name: "Front (NSFW)",
  2259. image: {
  2260. source: "./media/characters/natasha/front-nsfw.svg",
  2261. extra: 859 / 824,
  2262. bottom: 23 / 879.6
  2263. }
  2264. },
  2265. frontErect: {
  2266. height: math.unit(5 + 5 / 12, "feet"),
  2267. weight: math.unit(75, "kg"),
  2268. name: "Front (Erect)",
  2269. image: {
  2270. source: "./media/characters/natasha/front-erect.svg",
  2271. extra: 859 / 824,
  2272. bottom: 23 / 879.6
  2273. }
  2274. },
  2275. back: {
  2276. height: math.unit(5 + 5 / 12, "feet"),
  2277. weight: math.unit(75, "kg"),
  2278. name: "Back",
  2279. image: {
  2280. source: "./media/characters/natasha/back.svg",
  2281. extra: 887.9 / 852.6,
  2282. bottom: 9.7 / 896.4
  2283. }
  2284. },
  2285. backAlt: {
  2286. height: math.unit(5 + 5 / 12, "feet"),
  2287. weight: math.unit(75, "kg"),
  2288. name: "Back (Alt)",
  2289. image: {
  2290. source: "./media/characters/natasha/back-alt.svg",
  2291. extra: 1236.7 / 1192,
  2292. bottom: 22.3 / 1258.2
  2293. }
  2294. },
  2295. dick: {
  2296. height: math.unit(1.772, "feet"),
  2297. name: "Dick",
  2298. image: {
  2299. source: "./media/characters/natasha/dick.svg"
  2300. }
  2301. },
  2302. },
  2303. [
  2304. {
  2305. name: "Normal",
  2306. height: math.unit(5 + 5 / 12, "feet")
  2307. },
  2308. {
  2309. name: "Large",
  2310. height: math.unit(12, "feet")
  2311. },
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(100, "feet"),
  2315. default: true
  2316. },
  2317. {
  2318. name: "Macro+",
  2319. height: math.unit(260, "feet")
  2320. },
  2321. {
  2322. name: "Macro++",
  2323. height: math.unit(1, "mile")
  2324. },
  2325. ]
  2326. ))
  2327. characterMakers.push(() => makeCharacter(
  2328. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2329. {
  2330. front: {
  2331. height: math.unit(6, "feet"),
  2332. weight: math.unit(75, "kg"),
  2333. name: "Front",
  2334. image: {
  2335. source: "./media/characters/malik/front.svg"
  2336. }
  2337. },
  2338. side: {
  2339. height: math.unit(6, "feet"),
  2340. weight: math.unit(75, "kg"),
  2341. name: "Side",
  2342. image: {
  2343. source: "./media/characters/malik/side.svg",
  2344. extra: 1.1539
  2345. }
  2346. },
  2347. back: {
  2348. height: math.unit(6, "feet"),
  2349. weight: math.unit(75, "kg"),
  2350. name: "Back",
  2351. image: {
  2352. source: "./media/characters/malik/back.svg"
  2353. }
  2354. },
  2355. },
  2356. [
  2357. {
  2358. name: "Macro",
  2359. height: math.unit(156, "feet"),
  2360. default: true
  2361. },
  2362. {
  2363. name: "Macro+",
  2364. height: math.unit(1188, "feet")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(6, "feet"),
  2373. weight: math.unit(75, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/sefer/front.svg",
  2377. extra: 848 / 659,
  2378. bottom: 28.3 / 876.442
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(6, "feet"),
  2383. weight: math.unit(75, "kg"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/sefer/back.svg",
  2387. extra: 864 / 695,
  2388. bottom: 10 / 871
  2389. }
  2390. },
  2391. frontDressed: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(75, "kg"),
  2394. name: "Front (Dressed)",
  2395. image: {
  2396. source: "./media/characters/sefer/front-dressed.svg",
  2397. extra: 839 / 653,
  2398. bottom: 37.6 / 878
  2399. }
  2400. },
  2401. },
  2402. [
  2403. {
  2404. name: "Normal",
  2405. height: math.unit(6, "feet"),
  2406. default: true
  2407. },
  2408. ]
  2409. ))
  2410. characterMakers.push(() => makeCharacter(
  2411. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2412. {
  2413. body: {
  2414. height: math.unit(2.2428, "meter"),
  2415. weight: math.unit(124.738, "kg"),
  2416. name: "Body",
  2417. image: {
  2418. extra: 1225 / 1050,
  2419. source: "./media/characters/north/front.svg"
  2420. }
  2421. }
  2422. },
  2423. [
  2424. {
  2425. name: "Micro",
  2426. height: math.unit(4, "inches")
  2427. },
  2428. {
  2429. name: "Macro",
  2430. height: math.unit(63, "meters")
  2431. },
  2432. {
  2433. name: "Megamacro",
  2434. height: math.unit(101, "miles"),
  2435. default: true
  2436. }
  2437. ]
  2438. ))
  2439. characterMakers.push(() => makeCharacter(
  2440. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2441. {
  2442. angled: {
  2443. height: math.unit(4, "meter"),
  2444. weight: math.unit(150, "kg"),
  2445. name: "Angled",
  2446. image: {
  2447. source: "./media/characters/talan/angled-sfw.svg",
  2448. bottom: 29 / 3734
  2449. }
  2450. },
  2451. angledNsfw: {
  2452. height: math.unit(4, "meter"),
  2453. weight: math.unit(150, "kg"),
  2454. name: "Angled (NSFW)",
  2455. image: {
  2456. source: "./media/characters/talan/angled-nsfw.svg",
  2457. bottom: 29 / 3734
  2458. }
  2459. },
  2460. frontNsfw: {
  2461. height: math.unit(4, "meter"),
  2462. weight: math.unit(150, "kg"),
  2463. name: "Front (NSFW)",
  2464. image: {
  2465. source: "./media/characters/talan/front-nsfw.svg",
  2466. bottom: 29 / 3734
  2467. }
  2468. },
  2469. sideNsfw: {
  2470. height: math.unit(4, "meter"),
  2471. weight: math.unit(150, "kg"),
  2472. name: "Side (NSFW)",
  2473. image: {
  2474. source: "./media/characters/talan/side-nsfw.svg",
  2475. bottom: 29 / 3734
  2476. }
  2477. },
  2478. back: {
  2479. height: math.unit(4, "meter"),
  2480. weight: math.unit(150, "kg"),
  2481. name: "Back",
  2482. image: {
  2483. source: "./media/characters/talan/back.svg"
  2484. }
  2485. },
  2486. dickBottom: {
  2487. height: math.unit(0.621, "meter"),
  2488. name: "Dick (Bottom)",
  2489. image: {
  2490. source: "./media/characters/talan/dick-bottom.svg"
  2491. }
  2492. },
  2493. dickTop: {
  2494. height: math.unit(0.621, "meter"),
  2495. name: "Dick (Top)",
  2496. image: {
  2497. source: "./media/characters/talan/dick-top.svg"
  2498. }
  2499. },
  2500. dickSide: {
  2501. height: math.unit(0.305, "meter"),
  2502. name: "Dick (Side)",
  2503. image: {
  2504. source: "./media/characters/talan/dick-side.svg"
  2505. }
  2506. },
  2507. dickFront: {
  2508. height: math.unit(0.305, "meter"),
  2509. name: "Dick (Front)",
  2510. image: {
  2511. source: "./media/characters/talan/dick-front.svg"
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Normal",
  2518. height: math.unit(4, "meters")
  2519. },
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(100, "meters")
  2523. },
  2524. {
  2525. name: "Megamacro",
  2526. height: math.unit(2, "miles"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Gigamacro",
  2531. height: math.unit(5000, "miles")
  2532. },
  2533. {
  2534. name: "Teramacro",
  2535. height: math.unit(100, "parsecs")
  2536. }
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(2, "meter"),
  2544. weight: math.unit(90, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/gael'rathus/front.svg"
  2548. }
  2549. },
  2550. frontAlt: {
  2551. height: math.unit(2, "meter"),
  2552. weight: math.unit(90, "kg"),
  2553. name: "Front (alt)",
  2554. image: {
  2555. source: "./media/characters/gael'rathus/front-alt.svg"
  2556. }
  2557. },
  2558. frontAlt2: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front (alt 2)",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2564. }
  2565. }
  2566. },
  2567. [
  2568. {
  2569. name: "Normal",
  2570. height: math.unit(9, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Large",
  2575. height: math.unit(25, "feet")
  2576. },
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(0.25, "miles")
  2580. },
  2581. {
  2582. name: "Megamacro",
  2583. height: math.unit(10, "miles")
  2584. }
  2585. ]
  2586. ))
  2587. characterMakers.push(() => makeCharacter(
  2588. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2589. {
  2590. side: {
  2591. height: math.unit(2, "meter"),
  2592. weight: math.unit(140, "kg"),
  2593. name: "Side",
  2594. image: {
  2595. source: "./media/characters/sosha/side.svg",
  2596. bottom: 0.042
  2597. }
  2598. },
  2599. },
  2600. [
  2601. {
  2602. name: "Normal",
  2603. height: math.unit(12, "feet"),
  2604. default: true
  2605. }
  2606. ]
  2607. ))
  2608. characterMakers.push(() => makeCharacter(
  2609. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2610. {
  2611. side: {
  2612. height: math.unit(5 + 5 / 12, "feet"),
  2613. weight: math.unit(170, "kg"),
  2614. name: "Side",
  2615. image: {
  2616. source: "./media/characters/runnola/side.svg",
  2617. extra: 741 / 448,
  2618. bottom: 0.05
  2619. }
  2620. },
  2621. },
  2622. [
  2623. {
  2624. name: "Small",
  2625. height: math.unit(3, "feet")
  2626. },
  2627. {
  2628. name: "Normal",
  2629. height: math.unit(5 + 5 / 12, "feet"),
  2630. default: true
  2631. },
  2632. {
  2633. name: "Big",
  2634. height: math.unit(10, "feet")
  2635. },
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2640. {
  2641. front: {
  2642. height: math.unit(2, "meter"),
  2643. weight: math.unit(50, "kg"),
  2644. name: "Front",
  2645. image: {
  2646. source: "./media/characters/kurribird/front.svg",
  2647. bottom: 0.015
  2648. }
  2649. },
  2650. frontAlt: {
  2651. height: math.unit(1.5, "meter"),
  2652. weight: math.unit(50, "kg"),
  2653. name: "Front (Alt)",
  2654. image: {
  2655. source: "./media/characters/kurribird/front-alt.svg",
  2656. extra: 1.45
  2657. }
  2658. },
  2659. },
  2660. [
  2661. {
  2662. name: "Normal",
  2663. height: math.unit(7, "feet")
  2664. },
  2665. {
  2666. name: "Big",
  2667. height: math.unit(12, "feet"),
  2668. default: true
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(1500, "feet")
  2673. },
  2674. {
  2675. name: "Megamacro",
  2676. height: math.unit(2, "miles")
  2677. }
  2678. ]
  2679. ))
  2680. characterMakers.push(() => makeCharacter(
  2681. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2682. {
  2683. front: {
  2684. height: math.unit(2, "meter"),
  2685. weight: math.unit(80, "kg"),
  2686. name: "Front",
  2687. image: {
  2688. source: "./media/characters/elbial/front.svg",
  2689. extra: 1643 / 1556,
  2690. bottom: 60.2 / 1696
  2691. }
  2692. },
  2693. side: {
  2694. height: math.unit(2, "meter"),
  2695. weight: math.unit(80, "kg"),
  2696. name: "Side",
  2697. image: {
  2698. source: "./media/characters/elbial/side.svg",
  2699. extra: 1630 / 1565,
  2700. bottom: 71.5 / 1697
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(2, "meter"),
  2705. weight: math.unit(80, "kg"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/elbial/back.svg",
  2709. extra: 1668 / 1595,
  2710. bottom: 5.6 / 1672
  2711. }
  2712. },
  2713. frontDressed: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Front (Dressed)",
  2717. image: {
  2718. source: "./media/characters/elbial/front-dressed.svg",
  2719. extra: 1653 / 1584,
  2720. bottom: 57 / 1708
  2721. }
  2722. },
  2723. genitals: {
  2724. height: math.unit(2 / 3.367, "meter"),
  2725. name: "Genitals",
  2726. image: {
  2727. source: "./media/characters/elbial/genitals.svg"
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Large",
  2734. height: math.unit(100, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(500, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(10, "miles")
  2744. },
  2745. {
  2746. name: "Gigamacro",
  2747. height: math.unit(25000, "miles")
  2748. },
  2749. {
  2750. name: "Full-Size",
  2751. height: math.unit(8000000, "gigaparsecs")
  2752. }
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(2, "meter"),
  2760. weight: math.unit(60, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/noah/front.svg"
  2764. }
  2765. },
  2766. talons: {
  2767. height: math.unit(0.315, "meter"),
  2768. name: "Talons",
  2769. image: {
  2770. source: "./media/characters/noah/talons.svg"
  2771. }
  2772. }
  2773. },
  2774. [
  2775. {
  2776. name: "Large",
  2777. height: math.unit(50, "feet")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(750, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(50, "miles")
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(100000, "miles")
  2791. },
  2792. {
  2793. name: "Full-Size",
  2794. height: math.unit(3000000000, "miles")
  2795. }
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(2, "meter"),
  2803. weight: math.unit(80, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/natalya/front.svg"
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(2, "meter"),
  2811. weight: math.unit(80, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/natalya/back.svg"
  2815. }
  2816. }
  2817. },
  2818. [
  2819. {
  2820. name: "Normal",
  2821. height: math.unit(150, "feet"),
  2822. default: true
  2823. },
  2824. {
  2825. name: "Megamacro",
  2826. height: math.unit(5, "miles")
  2827. },
  2828. {
  2829. name: "Full-Size",
  2830. height: math.unit(600, "kiloparsecs")
  2831. }
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2836. {
  2837. front: {
  2838. height: math.unit(2, "meter"),
  2839. weight: math.unit(50, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/erestrebah/front.svg",
  2843. extra: 208 / 193,
  2844. bottom: 0.055
  2845. }
  2846. },
  2847. back: {
  2848. height: math.unit(2, "meter"),
  2849. weight: math.unit(50, "kg"),
  2850. name: "Back",
  2851. image: {
  2852. source: "./media/characters/erestrebah/back.svg",
  2853. extra: 1.3
  2854. }
  2855. }
  2856. },
  2857. [
  2858. {
  2859. name: "Normal",
  2860. height: math.unit(10, "feet")
  2861. },
  2862. {
  2863. name: "Large",
  2864. height: math.unit(50, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Macro",
  2869. height: math.unit(300, "feet")
  2870. },
  2871. {
  2872. name: "Macro+",
  2873. height: math.unit(750, "feet")
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(3, "miles")
  2878. }
  2879. ]
  2880. ))
  2881. characterMakers.push(() => makeCharacter(
  2882. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2883. {
  2884. front: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(80, "kg"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/jennifer/front.svg",
  2890. bottom: 0.11,
  2891. extra: 1.16
  2892. }
  2893. },
  2894. frontAlt: {
  2895. height: math.unit(2, "meter"),
  2896. weight: math.unit(80, "kg"),
  2897. name: "Front (Alt)",
  2898. image: {
  2899. source: "./media/characters/jennifer/front-alt.svg"
  2900. }
  2901. }
  2902. },
  2903. [
  2904. {
  2905. name: "Canon Height",
  2906. height: math.unit(120, "feet"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Macro+",
  2911. height: math.unit(300, "feet")
  2912. },
  2913. {
  2914. name: "Megamacro",
  2915. height: math.unit(20000, "feet")
  2916. }
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(2, "meter"),
  2924. weight: math.unit(50, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/kalista/front.svg",
  2928. extra: 1947 / 1700,
  2929. bottom: 76.6 / 1412.98
  2930. }
  2931. },
  2932. back: {
  2933. height: math.unit(2, "meter"),
  2934. weight: math.unit(50, "kg"),
  2935. name: "Back",
  2936. image: {
  2937. source: "./media/characters/kalista/back.svg",
  2938. extra: 1366 / 1156,
  2939. bottom: 33.9 / 1362.78
  2940. }
  2941. }
  2942. },
  2943. [
  2944. {
  2945. name: "Uncomfortably Small",
  2946. height: math.unit(10, "feet")
  2947. },
  2948. {
  2949. name: "Small",
  2950. height: math.unit(30, "feet")
  2951. },
  2952. {
  2953. name: "Macro",
  2954. height: math.unit(100, "feet"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Macro+",
  2959. height: math.unit(2000, "feet")
  2960. },
  2961. {
  2962. name: "True Form",
  2963. height: math.unit(8924, "miles")
  2964. }
  2965. ]
  2966. ))
  2967. characterMakers.push(() => makeCharacter(
  2968. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2969. {
  2970. front: {
  2971. height: math.unit(2, "meter"),
  2972. weight: math.unit(120, "kg"),
  2973. name: "Front",
  2974. image: {
  2975. source: "./media/characters/ggv/front.svg"
  2976. }
  2977. },
  2978. side: {
  2979. height: math.unit(2, "meter"),
  2980. weight: math.unit(120, "kg"),
  2981. name: "Side",
  2982. image: {
  2983. source: "./media/characters/ggv/side.svg"
  2984. }
  2985. }
  2986. },
  2987. [
  2988. {
  2989. name: "Extremely Puny",
  2990. height: math.unit(9 + 5 / 12, "feet")
  2991. },
  2992. {
  2993. name: "Horribly Small",
  2994. height: math.unit(47.7, "miles"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Reasonably Sized",
  2999. height: math.unit(25000, "parsecs")
  3000. },
  3001. {
  3002. name: "Slightly Uncompressed",
  3003. height: math.unit(7.77e31, "parsecs")
  3004. },
  3005. {
  3006. name: "Omniversal",
  3007. height: math.unit(1e300, "meters")
  3008. },
  3009. ]
  3010. ))
  3011. characterMakers.push(() => makeCharacter(
  3012. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3013. {
  3014. front: {
  3015. height: math.unit(2, "meter"),
  3016. weight: math.unit(75, "lb"),
  3017. name: "Front",
  3018. image: {
  3019. source: "./media/characters/napalm/front.svg"
  3020. }
  3021. },
  3022. back: {
  3023. height: math.unit(2, "meter"),
  3024. weight: math.unit(75, "lb"),
  3025. name: "Back",
  3026. image: {
  3027. source: "./media/characters/napalm/back.svg"
  3028. }
  3029. }
  3030. },
  3031. [
  3032. {
  3033. name: "Standard",
  3034. height: math.unit(55, "feet"),
  3035. default: true
  3036. }
  3037. ]
  3038. ))
  3039. characterMakers.push(() => makeCharacter(
  3040. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3041. {
  3042. front: {
  3043. height: math.unit(7 + 5 / 6, "feet"),
  3044. weight: math.unit(325, "lb"),
  3045. name: "Front",
  3046. image: {
  3047. source: "./media/characters/asana/front.svg",
  3048. extra: 1128 / 1068
  3049. }
  3050. },
  3051. back: {
  3052. height: math.unit(7 + 5 / 6, "feet"),
  3053. weight: math.unit(325, "lb"),
  3054. name: "Back",
  3055. image: {
  3056. source: "./media/characters/asana/back.svg",
  3057. extra: 1128 / 1068
  3058. }
  3059. },
  3060. },
  3061. [
  3062. {
  3063. name: "Standard",
  3064. height: math.unit(7 + 5 / 6, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Large",
  3069. height: math.unit(10, "meters")
  3070. },
  3071. {
  3072. name: "Macro",
  3073. height: math.unit(2500, "meters")
  3074. },
  3075. {
  3076. name: "Megamacro",
  3077. height: math.unit(5e6, "meters")
  3078. },
  3079. {
  3080. name: "Examacro",
  3081. height: math.unit(5e12, "lightyears")
  3082. },
  3083. {
  3084. name: "Max Size",
  3085. height: math.unit(1e31, "lightyears")
  3086. }
  3087. ]
  3088. ))
  3089. characterMakers.push(() => makeCharacter(
  3090. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3091. {
  3092. front: {
  3093. height: math.unit(2, "meter"),
  3094. weight: math.unit(60, "kg"),
  3095. name: "Front",
  3096. image: {
  3097. source: "./media/characters/ebony/front.svg",
  3098. bottom: 0.03,
  3099. extra: 1045 / 810 + 0.03
  3100. }
  3101. },
  3102. side: {
  3103. height: math.unit(2, "meter"),
  3104. weight: math.unit(60, "kg"),
  3105. name: "Side",
  3106. image: {
  3107. source: "./media/characters/ebony/side.svg",
  3108. bottom: 0.03,
  3109. extra: 1045 / 810 + 0.03
  3110. }
  3111. },
  3112. back: {
  3113. height: math.unit(2, "meter"),
  3114. weight: math.unit(60, "kg"),
  3115. name: "Back",
  3116. image: {
  3117. source: "./media/characters/ebony/back.svg",
  3118. bottom: 0.01,
  3119. extra: 1045 / 810 + 0.01
  3120. }
  3121. },
  3122. },
  3123. [
  3124. // TODO check why I did this lol
  3125. {
  3126. name: "Standard",
  3127. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3128. default: true
  3129. },
  3130. {
  3131. name: "Macro",
  3132. height: math.unit(200, "feet")
  3133. },
  3134. {
  3135. name: "Gigamacro",
  3136. height: math.unit(13000, "km")
  3137. }
  3138. ]
  3139. ))
  3140. characterMakers.push(() => makeCharacter(
  3141. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3142. {
  3143. front: {
  3144. height: math.unit(6, "feet"),
  3145. weight: math.unit(175, "lb"),
  3146. name: "Front",
  3147. image: {
  3148. source: "./media/characters/mountain/front.svg"
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(175, "lb"),
  3154. name: "Back",
  3155. image: {
  3156. source: "./media/characters/mountain/back.svg"
  3157. }
  3158. },
  3159. },
  3160. [
  3161. {
  3162. name: "Large",
  3163. height: math.unit(20, "meters")
  3164. },
  3165. {
  3166. name: "Macro",
  3167. height: math.unit(300, "meters")
  3168. },
  3169. {
  3170. name: "Gigamacro",
  3171. height: math.unit(10000, "km"),
  3172. default: true
  3173. },
  3174. {
  3175. name: "Examacro",
  3176. height: math.unit(10e9, "lightyears")
  3177. }
  3178. ]
  3179. ))
  3180. characterMakers.push(() => makeCharacter(
  3181. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3182. {
  3183. front: {
  3184. height: math.unit(8, "feet"),
  3185. weight: math.unit(500, "lb"),
  3186. name: "Front",
  3187. image: {
  3188. source: "./media/characters/rick/front.svg"
  3189. }
  3190. }
  3191. },
  3192. [
  3193. {
  3194. name: "Normal",
  3195. height: math.unit(8, "feet"),
  3196. default: true
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(5, "km")
  3201. }
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(8, "feet"),
  3209. weight: math.unit(120, "lb"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/ona/front.svg"
  3213. }
  3214. },
  3215. frontAlt: {
  3216. height: math.unit(8, "feet"),
  3217. weight: math.unit(120, "lb"),
  3218. name: "Front (Alt)",
  3219. image: {
  3220. source: "./media/characters/ona/front-alt.svg"
  3221. }
  3222. },
  3223. back: {
  3224. height: math.unit(8, "feet"),
  3225. weight: math.unit(120, "lb"),
  3226. name: "Back",
  3227. image: {
  3228. source: "./media/characters/ona/back.svg"
  3229. }
  3230. },
  3231. foot: {
  3232. height: math.unit(1.1, "feet"),
  3233. name: "Foot",
  3234. image: {
  3235. source: "./media/characters/ona/foot.svg"
  3236. }
  3237. }
  3238. },
  3239. [
  3240. {
  3241. name: "Megamacro",
  3242. height: math.unit(70, "km"),
  3243. default: true
  3244. },
  3245. {
  3246. name: "Gigamacro",
  3247. height: math.unit(681818, "miles")
  3248. },
  3249. {
  3250. name: "Examacro",
  3251. height: math.unit(3800000, "lightyears")
  3252. },
  3253. ]
  3254. ))
  3255. characterMakers.push(() => makeCharacter(
  3256. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3257. {
  3258. front: {
  3259. height: math.unit(12, "feet"),
  3260. weight: math.unit(3000, "lb"),
  3261. name: "Front",
  3262. image: {
  3263. source: "./media/characters/mech/front.svg",
  3264. bottom: 0.025,
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(12, "feet"),
  3269. weight: math.unit(3000, "lb"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/mech/back.svg",
  3273. bottom: 0.03,
  3274. }
  3275. }
  3276. },
  3277. [
  3278. {
  3279. name: "Normal",
  3280. height: math.unit(12, "feet")
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(300, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Macro+",
  3289. height: math.unit(1500, "feet")
  3290. },
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(1.3, "meter"),
  3298. weight: math.unit(30, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/gregory/front.svg",
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(1.3, "meter"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Macro",
  3313. height: math.unit(20, "meter")
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(2.8, "meter"),
  3322. weight: math.unit(200, "kg"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/elory/front.svg",
  3326. }
  3327. }
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(2.8, "meter"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(38, "meter")
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(470, "feet"),
  3346. weight: math.unit(924, "tons"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/angelpatamon/front.svg",
  3350. }
  3351. }
  3352. },
  3353. [
  3354. {
  3355. name: "Normal",
  3356. height: math.unit(470, "feet"),
  3357. default: true
  3358. },
  3359. {
  3360. name: "Deity Size I",
  3361. height: math.unit(28651.2, "km")
  3362. },
  3363. {
  3364. name: "Deity Size II",
  3365. height: math.unit(171907.2, "km")
  3366. }
  3367. ]
  3368. ))
  3369. characterMakers.push(() => makeCharacter(
  3370. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3371. {
  3372. side: {
  3373. height: math.unit(7.2, "meter"),
  3374. weight: math.unit(8.2, "tons"),
  3375. name: "Side",
  3376. image: {
  3377. source: "./media/characters/cryae/side.svg",
  3378. extra: 3500 / 1500
  3379. }
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(7.2, "meter"),
  3386. default: true
  3387. }
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(6, "feet"),
  3395. weight: math.unit(175, "lb"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/xera/front.svg",
  3399. extra: 2300 / 2061
  3400. }
  3401. },
  3402. side: {
  3403. height: math.unit(6, "feet"),
  3404. weight: math.unit(175, "lb"),
  3405. name: "Side",
  3406. image: {
  3407. source: "./media/characters/xera/side.svg",
  3408. extra: 2300 / 2061
  3409. }
  3410. },
  3411. back: {
  3412. height: math.unit(6, "feet"),
  3413. weight: math.unit(175, "lb"),
  3414. name: "Back",
  3415. image: {
  3416. source: "./media/characters/xera/back.svg"
  3417. }
  3418. },
  3419. },
  3420. [
  3421. {
  3422. name: "Small",
  3423. height: math.unit(10, "feet")
  3424. },
  3425. {
  3426. name: "Macro",
  3427. height: math.unit(500, "meters"),
  3428. default: true
  3429. },
  3430. {
  3431. name: "Macro+",
  3432. height: math.unit(10, "km")
  3433. },
  3434. {
  3435. name: "Gigamacro",
  3436. height: math.unit(25000, "km")
  3437. },
  3438. {
  3439. name: "Teramacro",
  3440. height: math.unit(3e6, "km")
  3441. }
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3446. {
  3447. front: {
  3448. height: math.unit(6, "feet"),
  3449. weight: math.unit(175, "lb"),
  3450. name: "Front",
  3451. image: {
  3452. source: "./media/characters/nebula/front.svg",
  3453. extra: 2600 / 2450
  3454. }
  3455. }
  3456. },
  3457. [
  3458. {
  3459. name: "Small",
  3460. height: math.unit(4.5, "meters")
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(1500, "meters"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(150, "km")
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(27000, "km")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(6, "feet"),
  3482. weight: math.unit(225, "lb"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/abysgar/front.svg"
  3486. }
  3487. }
  3488. },
  3489. [
  3490. {
  3491. name: "Small",
  3492. height: math.unit(4.5, "meters")
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(1250, "meters"),
  3497. default: true
  3498. },
  3499. {
  3500. name: "Megamacro",
  3501. height: math.unit(125, "km")
  3502. },
  3503. {
  3504. name: "Gigamacro",
  3505. height: math.unit(26000, "km")
  3506. }
  3507. ]
  3508. ))
  3509. characterMakers.push(() => makeCharacter(
  3510. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3511. {
  3512. front: {
  3513. height: math.unit(6, "feet"),
  3514. weight: math.unit(180, "lb"),
  3515. name: "Front",
  3516. image: {
  3517. source: "./media/characters/yakuz/front.svg"
  3518. }
  3519. }
  3520. },
  3521. [
  3522. {
  3523. name: "Small",
  3524. height: math.unit(5, "meters")
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(1500, "meters"),
  3529. default: true
  3530. },
  3531. {
  3532. name: "Megamacro",
  3533. height: math.unit(200, "km")
  3534. },
  3535. {
  3536. name: "Gigamacro",
  3537. height: math.unit(100000, "km")
  3538. }
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3543. {
  3544. front: {
  3545. height: math.unit(6, "feet"),
  3546. weight: math.unit(175, "lb"),
  3547. name: "Front",
  3548. image: {
  3549. source: "./media/characters/mirova/front.svg"
  3550. }
  3551. }
  3552. },
  3553. [
  3554. {
  3555. name: "Small",
  3556. height: math.unit(5, "meters")
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(900, "meters"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Megamacro",
  3565. height: math.unit(135, "km")
  3566. },
  3567. {
  3568. name: "Gigamacro",
  3569. height: math.unit(20000, "km")
  3570. }
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3575. {
  3576. side: {
  3577. height: math.unit(28.35, "feet"),
  3578. weight: math.unit(99.75, "tons"),
  3579. name: "Side",
  3580. image: {
  3581. source: "./media/characters/asana-mech/side.svg"
  3582. }
  3583. }
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(28.35, "feet"),
  3589. default: true
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(2500, "feet")
  3594. },
  3595. {
  3596. name: "Megamacro",
  3597. height: math.unit(25, "miles")
  3598. },
  3599. {
  3600. name: "Examacro",
  3601. height: math.unit(6e8, "lightyears")
  3602. },
  3603. ]
  3604. ))
  3605. characterMakers.push(() => makeCharacter(
  3606. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3607. {
  3608. front: {
  3609. height: math.unit(2, "meters"),
  3610. weight: math.unit(70, "kg"),
  3611. name: "Front",
  3612. image: {
  3613. source: "./media/characters/ashtrek/front.svg",
  3614. extra: 560 / 524,
  3615. bottom: 0.01
  3616. }
  3617. },
  3618. frontArmor: {
  3619. height: math.unit(2, "meters"),
  3620. weight: math.unit(76, "kg"),
  3621. name: "Front (Armor)",
  3622. image: {
  3623. source: "./media/characters/ashtrek/front-armor.svg",
  3624. extra: 561 / 527,
  3625. bottom: 0.01
  3626. }
  3627. },
  3628. side: {
  3629. height: math.unit(2, "meters"),
  3630. weight: math.unit(70, "kg"),
  3631. name: "Side",
  3632. image: {
  3633. source: "./media/characters/ashtrek/side.svg",
  3634. extra: 1717 / 1609,
  3635. bottom: 0.005
  3636. }
  3637. },
  3638. back: {
  3639. height: math.unit(2, "meters"),
  3640. weight: math.unit(70, "kg"),
  3641. name: "Back",
  3642. image: {
  3643. source: "./media/characters/ashtrek/back.svg",
  3644. extra: 1570 / 1501
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "DEFCON 5",
  3651. height: math.unit(5, "meters")
  3652. },
  3653. {
  3654. name: "DEFCON 4",
  3655. height: math.unit(500, "meters"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "DEFCON 3",
  3660. height: math.unit(5, "km")
  3661. },
  3662. {
  3663. name: "DEFCON 2",
  3664. height: math.unit(500, "km")
  3665. },
  3666. {
  3667. name: "DEFCON 1",
  3668. height: math.unit(500000, "km")
  3669. },
  3670. {
  3671. name: "DEFCON 0",
  3672. height: math.unit(3, "gigaparsecs")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meters"),
  3681. weight: math.unit(76, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/gale/front.svg"
  3685. }
  3686. },
  3687. frontAlt1: {
  3688. height: math.unit(2, "meters"),
  3689. weight: math.unit(76, "kg"),
  3690. name: "Front (Alt 1)",
  3691. image: {
  3692. source: "./media/characters/gale/front-alt-1.svg"
  3693. }
  3694. },
  3695. frontAlt2: {
  3696. height: math.unit(2, "meters"),
  3697. weight: math.unit(76, "kg"),
  3698. name: "Front (Alt 2)",
  3699. image: {
  3700. source: "./media/characters/gale/front-alt-2.svg"
  3701. }
  3702. },
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(7, "feet")
  3708. },
  3709. {
  3710. name: "Macro",
  3711. height: math.unit(150, "feet"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Macro+",
  3716. height: math.unit(300, "feet")
  3717. },
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(2, "meters"),
  3725. weight: math.unit(76, "kg"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/draylen/front.svg"
  3729. }
  3730. }
  3731. },
  3732. [
  3733. {
  3734. name: "Macro",
  3735. height: math.unit(150, "feet"),
  3736. default: true
  3737. }
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(7 + 9 / 12, "feet"),
  3745. weight: math.unit(379, "lbs"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/chez/front.svg"
  3749. }
  3750. },
  3751. side: {
  3752. height: math.unit(7 + 9 / 12, "feet"),
  3753. weight: math.unit(379, "lbs"),
  3754. name: "Side",
  3755. image: {
  3756. source: "./media/characters/chez/side.svg"
  3757. }
  3758. }
  3759. },
  3760. [
  3761. {
  3762. name: "Normal",
  3763. height: math.unit(7 + 9 / 12, "feet"),
  3764. default: true
  3765. },
  3766. {
  3767. name: "God King",
  3768. height: math.unit(9750000, "meters")
  3769. }
  3770. ]
  3771. ))
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(6, "feet"),
  3777. weight: math.unit(275, "lbs"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/kaylum/front.svg",
  3781. bottom: 0.01,
  3782. extra: 1166 / 1031
  3783. }
  3784. },
  3785. frontWingless: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(275, "lbs"),
  3788. name: "Front (Wingless)",
  3789. image: {
  3790. source: "./media/characters/kaylum/front-wingless.svg",
  3791. bottom: 0.01,
  3792. extra: 1117 / 1031
  3793. }
  3794. }
  3795. },
  3796. [
  3797. {
  3798. name: "Normal",
  3799. height: math.unit(3.05, "meters")
  3800. },
  3801. {
  3802. name: "Master",
  3803. height: math.unit(5.5, "meters")
  3804. },
  3805. {
  3806. name: "Rampage",
  3807. height: math.unit(19, "meters")
  3808. },
  3809. {
  3810. name: "Macro Lite",
  3811. height: math.unit(37, "meters")
  3812. },
  3813. {
  3814. name: "Hyper Predator",
  3815. height: math.unit(61, "meters")
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(138, "meters"),
  3820. default: true
  3821. }
  3822. ]
  3823. ))
  3824. characterMakers.push(() => makeCharacter(
  3825. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3826. {
  3827. front: {
  3828. height: math.unit(6, "feet"),
  3829. weight: math.unit(150, "lbs"),
  3830. name: "Front",
  3831. image: {
  3832. source: "./media/characters/geta/front.svg"
  3833. }
  3834. }
  3835. },
  3836. [
  3837. {
  3838. name: "Micro",
  3839. height: math.unit(3, "inches"),
  3840. default: true
  3841. },
  3842. {
  3843. name: "Normal",
  3844. height: math.unit(5 + 5 / 12, "feet")
  3845. }
  3846. ]
  3847. ))
  3848. characterMakers.push(() => makeCharacter(
  3849. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3850. {
  3851. front: {
  3852. height: math.unit(6, "feet"),
  3853. weight: math.unit(300, "lbs"),
  3854. name: "Front",
  3855. image: {
  3856. source: "./media/characters/tyrnn/front.svg"
  3857. }
  3858. }
  3859. },
  3860. [
  3861. {
  3862. name: "Main Height",
  3863. height: math.unit(355, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Fave. Height",
  3868. height: math.unit(2400, "feet")
  3869. }
  3870. ]
  3871. ))
  3872. characterMakers.push(() => makeCharacter(
  3873. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3874. {
  3875. front: {
  3876. height: math.unit(6, "feet"),
  3877. weight: math.unit(300, "lbs"),
  3878. name: "Front",
  3879. image: {
  3880. source: "./media/characters/appledectomy/front.svg"
  3881. }
  3882. }
  3883. },
  3884. [
  3885. {
  3886. name: "Macro",
  3887. height: math.unit(2500, "feet")
  3888. },
  3889. {
  3890. name: "Megamacro",
  3891. height: math.unit(50, "miles"),
  3892. default: true
  3893. },
  3894. {
  3895. name: "Gigamacro",
  3896. height: math.unit(5000, "miles")
  3897. },
  3898. {
  3899. name: "Teramacro",
  3900. height: math.unit(250000, "miles")
  3901. },
  3902. ]
  3903. ))
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(200, "lbs"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/vulpes/front.svg",
  3913. extra: 573 / 543,
  3914. bottom: 0.033
  3915. }
  3916. },
  3917. side: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(200, "lbs"),
  3920. name: "Side",
  3921. image: {
  3922. source: "./media/characters/vulpes/side.svg",
  3923. extra: 573 / 543,
  3924. bottom: 0.01
  3925. }
  3926. },
  3927. back: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(200, "lbs"),
  3930. name: "Back",
  3931. image: {
  3932. source: "./media/characters/vulpes/back.svg",
  3933. extra: 573 / 543,
  3934. }
  3935. },
  3936. feet: {
  3937. height: math.unit(1.276, "feet"),
  3938. name: "Feet",
  3939. image: {
  3940. source: "./media/characters/vulpes/feet.svg"
  3941. }
  3942. },
  3943. maw: {
  3944. height: math.unit(1.18, "feet"),
  3945. name: "Maw",
  3946. image: {
  3947. source: "./media/characters/vulpes/maw.svg"
  3948. }
  3949. },
  3950. },
  3951. [
  3952. {
  3953. name: "Micro",
  3954. height: math.unit(2, "inches")
  3955. },
  3956. {
  3957. name: "Normal",
  3958. height: math.unit(6.3, "feet")
  3959. },
  3960. {
  3961. name: "Macro",
  3962. height: math.unit(850, "feet")
  3963. },
  3964. {
  3965. name: "Megamacro",
  3966. height: math.unit(7500, "feet"),
  3967. default: true
  3968. },
  3969. {
  3970. name: "Gigamacro",
  3971. height: math.unit(570000, "miles")
  3972. }
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3977. {
  3978. front: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(210, "lbs"),
  3981. name: "Front",
  3982. image: {
  3983. source: "./media/characters/rain-fallen/front.svg"
  3984. }
  3985. },
  3986. side: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(210, "lbs"),
  3989. name: "Side",
  3990. image: {
  3991. source: "./media/characters/rain-fallen/side.svg"
  3992. }
  3993. },
  3994. back: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(210, "lbs"),
  3997. name: "Back",
  3998. image: {
  3999. source: "./media/characters/rain-fallen/back.svg"
  4000. }
  4001. },
  4002. feral: {
  4003. height: math.unit(9, "feet"),
  4004. weight: math.unit(700, "lbs"),
  4005. name: "Feral",
  4006. image: {
  4007. source: "./media/characters/rain-fallen/feral.svg"
  4008. }
  4009. },
  4010. },
  4011. [
  4012. {
  4013. name: "Normal",
  4014. height: math.unit(5, "meter")
  4015. },
  4016. {
  4017. name: "Macro",
  4018. height: math.unit(150, "meter"),
  4019. default: true
  4020. },
  4021. {
  4022. name: "Megamacro",
  4023. height: math.unit(278e6, "meter")
  4024. },
  4025. {
  4026. name: "Gigamacro",
  4027. height: math.unit(2e9, "meter")
  4028. },
  4029. {
  4030. name: "Teramacro",
  4031. height: math.unit(8e12, "meter")
  4032. },
  4033. {
  4034. name: "Devourer",
  4035. height: math.unit(14, "zettameters")
  4036. },
  4037. {
  4038. name: "Scarlet King",
  4039. height: math.unit(18, "yottameters")
  4040. },
  4041. {
  4042. name: "Void",
  4043. height: math.unit(6.66e66, "yottameters")
  4044. }
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4049. {
  4050. standing: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(180, "lbs"),
  4053. name: "Standing",
  4054. image: {
  4055. source: "./media/characters/zaakira/standing.svg"
  4056. }
  4057. },
  4058. laying: {
  4059. height: math.unit(3, "feet"),
  4060. weight: math.unit(180, "lbs"),
  4061. name: "Laying",
  4062. image: {
  4063. source: "./media/characters/zaakira/laying.svg"
  4064. }
  4065. },
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(12, "feet")
  4071. },
  4072. {
  4073. name: "Macro",
  4074. height: math.unit(279, "feet"),
  4075. default: true
  4076. }
  4077. ]
  4078. ))
  4079. characterMakers.push(() => makeCharacter(
  4080. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4081. {
  4082. front: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(250, "lbs"),
  4085. name: "Front",
  4086. image: {
  4087. source: "./media/characters/sigvald/front.svg",
  4088. extra: 1000 / 850
  4089. }
  4090. },
  4091. back: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(250, "lbs"),
  4094. name: "Back",
  4095. image: {
  4096. source: "./media/characters/sigvald/back.svg"
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(8, "feet")
  4104. },
  4105. {
  4106. name: "Large",
  4107. height: math.unit(12, "feet")
  4108. },
  4109. {
  4110. name: "Larger",
  4111. height: math.unit(20, "feet")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(150, "feet")
  4116. },
  4117. {
  4118. name: "Macro+",
  4119. height: math.unit(200, "feet"),
  4120. default: true
  4121. },
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4126. {
  4127. side: {
  4128. height: math.unit(12, "feet"),
  4129. weight: math.unit(2000, "kg"),
  4130. name: "Side",
  4131. image: {
  4132. source: "./media/characters/scott/side.svg",
  4133. extra: 754 / 724,
  4134. bottom: 0.069
  4135. }
  4136. },
  4137. upright: {
  4138. height: math.unit(12, "feet"),
  4139. weight: math.unit(2000, "kg"),
  4140. name: "Upright",
  4141. image: {
  4142. source: "./media/characters/scott/upright.svg",
  4143. extra: 3881 / 3722,
  4144. bottom: 0.05
  4145. }
  4146. },
  4147. },
  4148. [
  4149. {
  4150. name: "Normal",
  4151. height: math.unit(12, "feet"),
  4152. default: true
  4153. },
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4158. {
  4159. side: {
  4160. height: math.unit(8, "meters"),
  4161. weight: math.unit(84755, "lbs"),
  4162. name: "Side",
  4163. image: {
  4164. source: "./media/characters/tobias/side.svg",
  4165. extra: 1474 / 1096,
  4166. bottom: 38.9 / 1513.1235
  4167. }
  4168. },
  4169. },
  4170. [
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(8, "meters"),
  4174. default: true
  4175. },
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4180. {
  4181. front: {
  4182. height: math.unit(5.5, "feet"),
  4183. weight: math.unit(400, "lbs"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/kieran/front.svg",
  4187. extra: 2694 / 2364,
  4188. bottom: 217 / 2908
  4189. }
  4190. },
  4191. side: {
  4192. height: math.unit(5.5, "feet"),
  4193. weight: math.unit(400, "lbs"),
  4194. name: "Side",
  4195. image: {
  4196. source: "./media/characters/kieran/side.svg",
  4197. extra: 875 / 777,
  4198. bottom: 84.6 / 959
  4199. }
  4200. },
  4201. },
  4202. [
  4203. {
  4204. name: "Normal",
  4205. height: math.unit(5.5, "feet"),
  4206. default: true
  4207. },
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4212. {
  4213. side: {
  4214. height: math.unit(2, "meters"),
  4215. weight: math.unit(70, "kg"),
  4216. name: "Side",
  4217. image: {
  4218. source: "./media/characters/sanya/side.svg",
  4219. bottom: 0.02,
  4220. extra: 1.02
  4221. }
  4222. },
  4223. },
  4224. [
  4225. {
  4226. name: "Small",
  4227. height: math.unit(2, "meters")
  4228. },
  4229. {
  4230. name: "Normal",
  4231. height: math.unit(3, "meters")
  4232. },
  4233. {
  4234. name: "Macro",
  4235. height: math.unit(16, "meters"),
  4236. default: true
  4237. },
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4242. {
  4243. side: {
  4244. height: math.unit(2, "meters"),
  4245. weight: math.unit(120, "kg"),
  4246. name: "Front",
  4247. image: {
  4248. source: "./media/characters/miranda/front.svg",
  4249. extra: 10.6 / 10
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(10, "feet"),
  4257. default: true
  4258. }
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "James", species: ["deer"], tags: ["anthro"] },
  4263. {
  4264. side: {
  4265. height: math.unit(2, "meters"),
  4266. weight: math.unit(100, "kg"),
  4267. name: "Front",
  4268. image: {
  4269. source: "./media/characters/james/front.svg",
  4270. extra: 10 / 8.5
  4271. }
  4272. },
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(8.5, "feet"),
  4278. default: true
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4284. {
  4285. side: {
  4286. height: math.unit(9.5, "feet"),
  4287. weight: math.unit(2500, "lbs"),
  4288. name: "Side",
  4289. image: {
  4290. source: "./media/characters/heather/side.svg"
  4291. }
  4292. },
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(9.5, "feet"),
  4298. default: true
  4299. }
  4300. ]
  4301. ))
  4302. characterMakers.push(() => makeCharacter(
  4303. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4304. {
  4305. side: {
  4306. height: math.unit(6.5, "feet"),
  4307. weight: math.unit(400, "lbs"),
  4308. name: "Side",
  4309. image: {
  4310. source: "./media/characters/lukas/side.svg",
  4311. extra: 7.25 / 6.5
  4312. }
  4313. },
  4314. },
  4315. [
  4316. {
  4317. name: "Normal",
  4318. height: math.unit(6.5, "feet"),
  4319. default: true
  4320. }
  4321. ]
  4322. ))
  4323. characterMakers.push(() => makeCharacter(
  4324. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4325. {
  4326. side: {
  4327. height: math.unit(5, "feet"),
  4328. weight: math.unit(3000, "lbs"),
  4329. name: "Side",
  4330. image: {
  4331. source: "./media/characters/louise/side.svg"
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(5, "feet"),
  4339. default: true
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4345. {
  4346. side: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(150, "lbs"),
  4349. name: "Side",
  4350. image: {
  4351. source: "./media/characters/ramona/side.svg"
  4352. }
  4353. },
  4354. },
  4355. [
  4356. {
  4357. name: "Normal",
  4358. height: math.unit(5.3, "meters"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(20, "stories")
  4364. },
  4365. {
  4366. name: "Macro+",
  4367. height: math.unit(50, "stories")
  4368. },
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4373. {
  4374. standing: {
  4375. height: math.unit(5.75, "feet"),
  4376. weight: math.unit(160, "lbs"),
  4377. name: "Standing",
  4378. image: {
  4379. source: "./media/characters/deerpuff/standing.svg",
  4380. extra: 682 / 624
  4381. }
  4382. },
  4383. sitting: {
  4384. height: math.unit(5.75 / 1.79, "feet"),
  4385. weight: math.unit(160, "lbs"),
  4386. name: "Sitting",
  4387. image: {
  4388. source: "./media/characters/deerpuff/sitting.svg",
  4389. bottom: 44 / 400,
  4390. extra: 1
  4391. }
  4392. },
  4393. taurLaying: {
  4394. height: math.unit(6, "feet"),
  4395. weight: math.unit(400, "lbs"),
  4396. name: "Taur (Laying)",
  4397. image: {
  4398. source: "./media/characters/deerpuff/taur-laying.svg"
  4399. }
  4400. },
  4401. },
  4402. [
  4403. {
  4404. name: "Puffball",
  4405. height: math.unit(6, "inches")
  4406. },
  4407. {
  4408. name: "Normalpuff",
  4409. height: math.unit(5.75, "feet")
  4410. },
  4411. {
  4412. name: "Macropuff",
  4413. height: math.unit(1500, "feet"),
  4414. default: true
  4415. },
  4416. {
  4417. name: "Megapuff",
  4418. height: math.unit(500, "miles")
  4419. },
  4420. {
  4421. name: "Gigapuff",
  4422. height: math.unit(250000, "miles")
  4423. },
  4424. {
  4425. name: "Omegapuff",
  4426. height: math.unit(1000, "lightyears")
  4427. },
  4428. ]
  4429. ))
  4430. characterMakers.push(() => makeCharacter(
  4431. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4432. {
  4433. stomping: {
  4434. height: math.unit(6, "feet"),
  4435. weight: math.unit(170, "lbs"),
  4436. name: "Stomping",
  4437. image: {
  4438. source: "./media/characters/vivian/stomping.svg"
  4439. }
  4440. },
  4441. sitting: {
  4442. height: math.unit(6 / 1.75, "feet"),
  4443. weight: math.unit(170, "lbs"),
  4444. name: "Sitting",
  4445. image: {
  4446. source: "./media/characters/vivian/sitting.svg",
  4447. bottom: 1 / 6.4,
  4448. extra: 1,
  4449. }
  4450. },
  4451. },
  4452. [
  4453. {
  4454. name: "Normal",
  4455. height: math.unit(7, "feet"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(10, "stories")
  4461. },
  4462. {
  4463. name: "Macro+",
  4464. height: math.unit(30, "stories")
  4465. },
  4466. {
  4467. name: "Megamacro",
  4468. height: math.unit(10, "miles")
  4469. },
  4470. {
  4471. name: "Megamacro+",
  4472. height: math.unit(2750000, "meters")
  4473. },
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4478. {
  4479. front: {
  4480. height: math.unit(6, "feet"),
  4481. weight: math.unit(160, "lbs"),
  4482. name: "Front",
  4483. image: {
  4484. source: "./media/characters/prince/front.svg",
  4485. extra: 3400 / 3000
  4486. }
  4487. },
  4488. jumping: {
  4489. height: math.unit(6, "feet"),
  4490. weight: math.unit(160, "lbs"),
  4491. name: "Jumping",
  4492. image: {
  4493. source: "./media/characters/prince/jump.svg",
  4494. extra: 2555 / 2134
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(7.75, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Not cute",
  4506. height: math.unit(17, "feet")
  4507. },
  4508. {
  4509. name: "I said NOT",
  4510. height: math.unit(91, "feet")
  4511. },
  4512. {
  4513. name: "Please stop",
  4514. height: math.unit(560, "feet")
  4515. },
  4516. {
  4517. name: "What have you done",
  4518. height: math.unit(2200, "feet")
  4519. },
  4520. {
  4521. name: "Deer God",
  4522. height: math.unit(3.6, "miles")
  4523. },
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4528. {
  4529. standing: {
  4530. height: math.unit(6, "feet"),
  4531. weight: math.unit(300, "lbs"),
  4532. name: "Standing",
  4533. image: {
  4534. source: "./media/characters/psymon/standing.svg",
  4535. extra: 1888 / 1810,
  4536. bottom: 0.05
  4537. }
  4538. },
  4539. slithering: {
  4540. height: math.unit(6, "feet"),
  4541. weight: math.unit(300, "lbs"),
  4542. name: "Slithering",
  4543. image: {
  4544. source: "./media/characters/psymon/slithering.svg",
  4545. extra: 1330 / 1224
  4546. }
  4547. },
  4548. slitheringAlt: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(300, "lbs"),
  4551. name: "Slithering (Alt)",
  4552. image: {
  4553. source: "./media/characters/psymon/slithering-alt.svg",
  4554. extra: 1330 / 1224
  4555. }
  4556. },
  4557. },
  4558. [
  4559. {
  4560. name: "Normal",
  4561. height: math.unit(11.25, "feet"),
  4562. default: true
  4563. },
  4564. {
  4565. name: "Large",
  4566. height: math.unit(27, "feet")
  4567. },
  4568. {
  4569. name: "Giant",
  4570. height: math.unit(87, "feet")
  4571. },
  4572. {
  4573. name: "Macro",
  4574. height: math.unit(365, "feet")
  4575. },
  4576. {
  4577. name: "Megamacro",
  4578. height: math.unit(3, "miles")
  4579. },
  4580. {
  4581. name: "World Serpent",
  4582. height: math.unit(8000, "miles")
  4583. },
  4584. ]
  4585. ))
  4586. characterMakers.push(() => makeCharacter(
  4587. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4588. {
  4589. front: {
  4590. height: math.unit(6, "feet"),
  4591. weight: math.unit(180, "lbs"),
  4592. name: "Front",
  4593. image: {
  4594. source: "./media/characters/daimos/front.svg",
  4595. extra: 4160 / 3897,
  4596. bottom: 0.021
  4597. }
  4598. }
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(8, "feet"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "Big Dog",
  4608. height: math.unit(22, "feet")
  4609. },
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(127, "feet")
  4613. },
  4614. {
  4615. name: "Megamacro",
  4616. height: math.unit(3600, "feet")
  4617. },
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4622. {
  4623. side: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(180, "lbs"),
  4626. name: "Side",
  4627. image: {
  4628. source: "./media/characters/blake/side.svg",
  4629. extra: 1212 / 1120,
  4630. bottom: 0.05
  4631. }
  4632. },
  4633. crouched: {
  4634. height: math.unit(6 * 0.57, "feet"),
  4635. weight: math.unit(180, "lbs"),
  4636. name: "Crouched",
  4637. image: {
  4638. source: "./media/characters/blake/crouched.svg",
  4639. extra: 840 / 587,
  4640. bottom: 0.04
  4641. }
  4642. },
  4643. bent: {
  4644. height: math.unit(6 * 0.75, "feet"),
  4645. weight: math.unit(180, "lbs"),
  4646. name: "Bent",
  4647. image: {
  4648. source: "./media/characters/blake/bent.svg",
  4649. extra: 592 / 544,
  4650. bottom: 0.035
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(8 + 1 / 6, "feet"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "Big Backside",
  4662. height: math.unit(37, "feet")
  4663. },
  4664. {
  4665. name: "Subway Shredder",
  4666. height: math.unit(72, "feet")
  4667. },
  4668. {
  4669. name: "City Carver",
  4670. height: math.unit(1675, "feet")
  4671. },
  4672. {
  4673. name: "Tectonic Tweaker",
  4674. height: math.unit(2300, "miles")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(180, "lbs"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/guisetto/front.svg",
  4687. extra: 856 / 817,
  4688. bottom: 0.06
  4689. }
  4690. },
  4691. airborne: {
  4692. height: math.unit(6, "feet"),
  4693. weight: math.unit(180, "lbs"),
  4694. name: "Airborne",
  4695. image: {
  4696. source: "./media/characters/guisetto/airborne.svg",
  4697. extra: 584 / 525
  4698. }
  4699. },
  4700. },
  4701. [
  4702. {
  4703. name: "Normal",
  4704. height: math.unit(10 + 11 / 12, "feet"),
  4705. default: true
  4706. },
  4707. {
  4708. name: "Large",
  4709. height: math.unit(35, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(475, "feet")
  4714. },
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4719. {
  4720. front: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(180, "lbs"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/luxor/front.svg",
  4726. extra: 2940 / 2152
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(6, "feet"),
  4731. weight: math.unit(180, "lbs"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/luxor/back.svg",
  4735. extra: 1083 / 960
  4736. }
  4737. },
  4738. },
  4739. [
  4740. {
  4741. name: "Normal",
  4742. height: math.unit(5 + 5 / 6, "feet"),
  4743. default: true
  4744. },
  4745. {
  4746. name: "Lamp",
  4747. height: math.unit(50, "feet")
  4748. },
  4749. {
  4750. name: "Lämp",
  4751. height: math.unit(300, "feet")
  4752. },
  4753. {
  4754. name: "The sun is a lamp",
  4755. height: math.unit(250000, "miles")
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4761. {
  4762. front: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(50, "lbs"),
  4765. name: "Front",
  4766. image: {
  4767. source: "./media/characters/huoyan/front.svg"
  4768. }
  4769. },
  4770. side: {
  4771. height: math.unit(6, "feet"),
  4772. weight: math.unit(180, "lbs"),
  4773. name: "Side",
  4774. image: {
  4775. source: "./media/characters/huoyan/side.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Chef",
  4782. height: math.unit(9, "feet")
  4783. },
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(65, "feet"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(780, "feet")
  4792. },
  4793. {
  4794. name: "Flaming Mountain",
  4795. height: math.unit(4.8, "miles")
  4796. },
  4797. {
  4798. name: "Celestial",
  4799. height: math.unit(765000, "miles")
  4800. },
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4805. {
  4806. front: {
  4807. height: math.unit(5 + 3 / 4, "feet"),
  4808. weight: math.unit(120, "lbs"),
  4809. name: "Front",
  4810. image: {
  4811. source: "./media/characters/tails/front.svg"
  4812. }
  4813. }
  4814. },
  4815. [
  4816. {
  4817. name: "Normal",
  4818. height: math.unit(5 + 3 / 4, "feet"),
  4819. default: true
  4820. }
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(4, "feet"),
  4828. weight: math.unit(50, "lbs"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/rainy/front.svg"
  4832. }
  4833. }
  4834. },
  4835. [
  4836. {
  4837. name: "Macro",
  4838. height: math.unit(800, "feet"),
  4839. default: true
  4840. }
  4841. ]
  4842. ))
  4843. characterMakers.push(() => makeCharacter(
  4844. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4845. {
  4846. front: {
  4847. height: math.unit(6, "feet"),
  4848. weight: math.unit(150, "lbs"),
  4849. name: "Front",
  4850. image: {
  4851. source: "./media/characters/rainier/front.svg"
  4852. }
  4853. }
  4854. },
  4855. [
  4856. {
  4857. name: "Micro",
  4858. height: math.unit(2, "mm"),
  4859. default: true
  4860. }
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4865. {
  4866. front: {
  4867. height: math.unit(6, "feet"),
  4868. weight: math.unit(180, "lbs"),
  4869. name: "Front",
  4870. image: {
  4871. source: "./media/characters/andy/front.svg"
  4872. }
  4873. }
  4874. },
  4875. [
  4876. {
  4877. name: "Normal",
  4878. height: math.unit(8, "feet"),
  4879. default: true
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(1000, "feet")
  4884. },
  4885. {
  4886. name: "Megamacro",
  4887. height: math.unit(5, "miles")
  4888. },
  4889. {
  4890. name: "Gigamacro",
  4891. height: math.unit(5000, "miles")
  4892. },
  4893. ]
  4894. ))
  4895. characterMakers.push(() => makeCharacter(
  4896. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4897. {
  4898. front: {
  4899. height: math.unit(6, "feet"),
  4900. weight: math.unit(210, "lbs"),
  4901. name: "Front",
  4902. image: {
  4903. source: "./media/characters/cimmaron/front-sfw.svg",
  4904. extra: 701 / 676,
  4905. bottom: 0.046
  4906. }
  4907. },
  4908. back: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(210, "lbs"),
  4911. name: "Back",
  4912. image: {
  4913. source: "./media/characters/cimmaron/back-sfw.svg",
  4914. extra: 701 / 676,
  4915. bottom: 0.046
  4916. }
  4917. },
  4918. frontNsfw: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(210, "lbs"),
  4921. name: "Front (NSFW)",
  4922. image: {
  4923. source: "./media/characters/cimmaron/front-nsfw.svg",
  4924. extra: 701 / 676,
  4925. bottom: 0.046
  4926. }
  4927. },
  4928. backNsfw: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(210, "lbs"),
  4931. name: "Back (NSFW)",
  4932. image: {
  4933. source: "./media/characters/cimmaron/back-nsfw.svg",
  4934. extra: 701 / 676,
  4935. bottom: 0.046
  4936. }
  4937. },
  4938. dick: {
  4939. height: math.unit(1.714, "feet"),
  4940. name: "Dick",
  4941. image: {
  4942. source: "./media/characters/cimmaron/dick.svg"
  4943. }
  4944. },
  4945. },
  4946. [
  4947. {
  4948. name: "Normal",
  4949. height: math.unit(6, "feet"),
  4950. default: true
  4951. },
  4952. {
  4953. name: "Macro Mayor",
  4954. height: math.unit(350, "meters")
  4955. },
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4960. {
  4961. front: {
  4962. height: math.unit(6, "feet"),
  4963. weight: math.unit(200, "lbs"),
  4964. name: "Front",
  4965. image: {
  4966. source: "./media/characters/akari/front.svg",
  4967. extra: 962 / 901,
  4968. bottom: 0.04
  4969. }
  4970. }
  4971. },
  4972. [
  4973. {
  4974. name: "Micro",
  4975. height: math.unit(5, "inches"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(7, "feet")
  4981. },
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(140, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/cynosura/front.svg",
  4993. extra: 896 / 847
  4994. }
  4995. },
  4996. back: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(140, "lbs"),
  4999. name: "Back",
  5000. image: {
  5001. source: "./media/characters/cynosura/back.svg",
  5002. extra: 1365 / 1250
  5003. }
  5004. },
  5005. },
  5006. [
  5007. {
  5008. name: "Micro",
  5009. height: math.unit(4, "inches")
  5010. },
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(5.75, "feet"),
  5014. default: true
  5015. },
  5016. {
  5017. name: "Tall",
  5018. height: math.unit(10, "feet")
  5019. },
  5020. {
  5021. name: "Big",
  5022. height: math.unit(20, "feet")
  5023. },
  5024. {
  5025. name: "Macro",
  5026. height: math.unit(50, "feet")
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5032. {
  5033. front: {
  5034. height: math.unit(6, "feet"),
  5035. weight: math.unit(170, "lbs"),
  5036. name: "Front",
  5037. image: {
  5038. source: "./media/characters/gin/front.svg",
  5039. extra: 1.053,
  5040. bottom: 0.025
  5041. }
  5042. },
  5043. foot: {
  5044. height: math.unit(6 / 4.25, "feet"),
  5045. name: "Foot",
  5046. image: {
  5047. source: "./media/characters/gin/foot.svg"
  5048. }
  5049. },
  5050. sole: {
  5051. height: math.unit(6 / 4.40, "feet"),
  5052. name: "Sole",
  5053. image: {
  5054. source: "./media/characters/gin/sole.svg"
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(13 + 2 / 12, "feet")
  5062. },
  5063. {
  5064. name: "Macro",
  5065. height: math.unit(1500, "feet")
  5066. },
  5067. {
  5068. name: "Megamacro",
  5069. height: math.unit(200, "miles"),
  5070. default: true
  5071. },
  5072. {
  5073. name: "Gigamacro",
  5074. height: math.unit(500, "megameters")
  5075. },
  5076. {
  5077. name: "Teramacro",
  5078. height: math.unit(15, "lightyears")
  5079. }
  5080. ]
  5081. ))
  5082. characterMakers.push(() => makeCharacter(
  5083. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5084. {
  5085. front: {
  5086. height: math.unit(6 + 1 / 6, "feet"),
  5087. weight: math.unit(178, "lbs"),
  5088. name: "Front",
  5089. image: {
  5090. source: "./media/characters/guy/front.svg"
  5091. }
  5092. }
  5093. },
  5094. [
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(6 + 1 / 6, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Large",
  5102. height: math.unit(25 + 7 / 12, "feet")
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(60 + 9 / 12, "feet")
  5107. },
  5108. {
  5109. name: "Macro+",
  5110. height: math.unit(246, "feet")
  5111. },
  5112. {
  5113. name: "Macro++",
  5114. height: math.unit(878, "feet")
  5115. }
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5120. {
  5121. front: {
  5122. height: math.unit(9, "feet"),
  5123. weight: math.unit(800, "lbs"),
  5124. name: "Front",
  5125. image: {
  5126. source: "./media/characters/tiberius/front.svg",
  5127. extra: 2295 / 2071
  5128. }
  5129. },
  5130. back: {
  5131. height: math.unit(9, "feet"),
  5132. weight: math.unit(800, "lbs"),
  5133. name: "Back",
  5134. image: {
  5135. source: "./media/characters/tiberius/back.svg",
  5136. extra: 2373 / 2160
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(9, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5150. {
  5151. front: {
  5152. height: math.unit(6, "feet"),
  5153. weight: math.unit(600, "lbs"),
  5154. name: "Front",
  5155. image: {
  5156. source: "./media/characters/surgo/front.svg",
  5157. extra: 3591 / 2227
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(600, "lbs"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/surgo/back.svg",
  5166. extra: 3557 / 2228
  5167. }
  5168. },
  5169. laying: {
  5170. height: math.unit(6 * 0.85, "feet"),
  5171. weight: math.unit(600, "lbs"),
  5172. name: "Laying",
  5173. image: {
  5174. source: "./media/characters/surgo/laying.svg"
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Normal",
  5181. height: math.unit(6, "feet"),
  5182. default: true
  5183. }
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5188. {
  5189. side: {
  5190. height: math.unit(6, "feet"),
  5191. weight: math.unit(150, "lbs"),
  5192. name: "Side",
  5193. image: {
  5194. source: "./media/characters/cibus/side.svg",
  5195. extra: 800 / 400
  5196. }
  5197. },
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(6, "feet"),
  5203. default: true
  5204. }
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5209. {
  5210. front: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(240, "lbs"),
  5213. name: "Front",
  5214. image: {
  5215. source: "./media/characters/nibbles/front.svg"
  5216. }
  5217. },
  5218. side: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(240, "lbs"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/nibbles/side.svg"
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(9, "feet"),
  5231. default: true
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5237. {
  5238. side: {
  5239. height: math.unit(5 + 1 / 6, "feet"),
  5240. weight: math.unit(130, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/rikky/side.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(5 + 1 / 6, "feet")
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(152, "feet"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Megamacro",
  5259. height: math.unit(7, "miles")
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5265. {
  5266. side: {
  5267. height: math.unit(370, "cm"),
  5268. weight: math.unit(350, "lbs"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/malfressa/side.svg"
  5272. }
  5273. },
  5274. walking: {
  5275. height: math.unit(370, "cm"),
  5276. weight: math.unit(350, "lbs"),
  5277. name: "Walking",
  5278. image: {
  5279. source: "./media/characters/malfressa/walking.svg"
  5280. }
  5281. },
  5282. feral: {
  5283. height: math.unit(2500, "cm"),
  5284. weight: math.unit(100000, "lbs"),
  5285. name: "Feral",
  5286. image: {
  5287. source: "./media/characters/malfressa/feral.svg",
  5288. extra: 2108 / 837,
  5289. bottom: 0.02
  5290. }
  5291. },
  5292. },
  5293. [
  5294. {
  5295. name: "Normal",
  5296. height: math.unit(370, "cm")
  5297. },
  5298. {
  5299. name: "Macro",
  5300. height: math.unit(300, "meters"),
  5301. default: true
  5302. }
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5307. {
  5308. front: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(60, "kg"),
  5311. name: "Front",
  5312. image: {
  5313. source: "./media/characters/jaro/front.svg"
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(60, "kg"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/jaro/back.svg"
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Micro",
  5328. height: math.unit(7, "inches")
  5329. },
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(5.5, "feet"),
  5333. default: true
  5334. },
  5335. {
  5336. name: "Minimacro",
  5337. height: math.unit(20, "feet")
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(200, "meters")
  5342. }
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5347. {
  5348. front: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(195, "lb"),
  5351. name: "Front",
  5352. image: {
  5353. source: "./media/characters/rogue/front.svg"
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Macro",
  5360. height: math.unit(90, "feet"),
  5361. default: true
  5362. },
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5367. {
  5368. front: {
  5369. height: math.unit(5 + 8 / 12, "feet"),
  5370. weight: math.unit(140, "lb"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/piper/front.svg",
  5374. extra: 3928 / 3681
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Micro",
  5381. height: math.unit(2, "inches")
  5382. },
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(5 + 8 / 12, "feet")
  5386. },
  5387. {
  5388. name: "Macro",
  5389. height: math.unit(250, "feet"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Megamacro",
  5394. height: math.unit(7, "miles")
  5395. },
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5400. {
  5401. front: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(220, "lb"),
  5404. name: "Front",
  5405. image: {
  5406. source: "./media/characters/gemini/front.svg"
  5407. }
  5408. },
  5409. back: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(220, "lb"),
  5412. name: "Back",
  5413. image: {
  5414. source: "./media/characters/gemini/back.svg"
  5415. }
  5416. },
  5417. kneeling: {
  5418. height: math.unit(6 / 1.5, "feet"),
  5419. weight: math.unit(220, "lb"),
  5420. name: "Kneeling",
  5421. image: {
  5422. source: "./media/characters/gemini/kneeling.svg",
  5423. bottom: 0.02
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Macro",
  5430. height: math.unit(300, "meters"),
  5431. default: true
  5432. },
  5433. {
  5434. name: "Megamacro",
  5435. height: math.unit(6900, "meters")
  5436. },
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5441. {
  5442. anthro: {
  5443. height: math.unit(2.35, "meters"),
  5444. weight: math.unit(73, "kg"),
  5445. name: "Anthro",
  5446. image: {
  5447. source: "./media/characters/alicia/anthro.svg",
  5448. extra: 2571 / 2385,
  5449. bottom: 75 / 2648
  5450. }
  5451. },
  5452. paw: {
  5453. height: math.unit(1.32, "feet"),
  5454. name: "Paw",
  5455. image: {
  5456. source: "./media/characters/alicia/paw.svg"
  5457. }
  5458. },
  5459. feral: {
  5460. height: math.unit(1.69, "meters"),
  5461. weight: math.unit(73, "kg"),
  5462. name: "Feral",
  5463. image: {
  5464. source: "./media/characters/alicia/feral.svg",
  5465. extra: 2123 / 1715,
  5466. bottom: 222 / 2349
  5467. }
  5468. },
  5469. },
  5470. [
  5471. {
  5472. name: "Normal",
  5473. height: math.unit(2.35, "meters")
  5474. },
  5475. {
  5476. name: "Macro",
  5477. height: math.unit(60, "meters"),
  5478. default: true
  5479. },
  5480. {
  5481. name: "Megamacro",
  5482. height: math.unit(10000, "kilometers")
  5483. },
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5488. {
  5489. front: {
  5490. height: math.unit(7, "feet"),
  5491. weight: math.unit(250, "lbs"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/archy/front.svg"
  5495. }
  5496. }
  5497. },
  5498. [
  5499. {
  5500. name: "Micro",
  5501. height: math.unit(1, "inch")
  5502. },
  5503. {
  5504. name: "Shorty",
  5505. height: math.unit(5, "feet")
  5506. },
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(7, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(600, "meters"),
  5514. default: true
  5515. },
  5516. {
  5517. name: "Megamacro",
  5518. height: math.unit(1, "mile")
  5519. },
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5524. {
  5525. front: {
  5526. height: math.unit(1.65, "meters"),
  5527. weight: math.unit(74, "kg"),
  5528. name: "Front",
  5529. image: {
  5530. source: "./media/characters/berri/front.svg",
  5531. extra: 857 / 837,
  5532. bottom: 18 / 877
  5533. }
  5534. },
  5535. bum: {
  5536. height: math.unit(1.46, "feet"),
  5537. name: "Bum",
  5538. image: {
  5539. source: "./media/characters/berri/bum.svg"
  5540. }
  5541. },
  5542. mouth: {
  5543. height: math.unit(0.44, "feet"),
  5544. name: "Mouth",
  5545. image: {
  5546. source: "./media/characters/berri/mouth.svg"
  5547. }
  5548. },
  5549. paw: {
  5550. height: math.unit(0.826, "feet"),
  5551. name: "Paw",
  5552. image: {
  5553. source: "./media/characters/berri/paw.svg"
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(1.65, "meters")
  5561. },
  5562. {
  5563. name: "Macro",
  5564. height: math.unit(60, "m"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Megamacro",
  5569. height: math.unit(9.213, "km")
  5570. },
  5571. {
  5572. name: "Planet Eater",
  5573. height: math.unit(489, "megameters")
  5574. },
  5575. {
  5576. name: "Teramacro",
  5577. height: math.unit(2471635000000, "meters")
  5578. },
  5579. {
  5580. name: "Examacro",
  5581. height: math.unit(8.0624e+26, "meters")
  5582. }
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5587. {
  5588. front: {
  5589. height: math.unit(1.72, "meters"),
  5590. weight: math.unit(68, "kg"),
  5591. name: "Front",
  5592. image: {
  5593. source: "./media/characters/lexi/front.svg"
  5594. }
  5595. }
  5596. },
  5597. [
  5598. {
  5599. name: "Very Smol",
  5600. height: math.unit(10, "mm")
  5601. },
  5602. {
  5603. name: "Micro",
  5604. height: math.unit(6.8, "cm"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(1.72, "m")
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(1.69, "meters"),
  5618. weight: math.unit(68, "kg"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/martin/front.svg",
  5622. extra: 596 / 581
  5623. }
  5624. }
  5625. },
  5626. [
  5627. {
  5628. name: "Micro",
  5629. height: math.unit(6.85, "cm"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Normal",
  5634. height: math.unit(1.69, "m")
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(1.69, "meters"),
  5643. weight: math.unit(68, "kg"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/juno/front.svg"
  5647. }
  5648. }
  5649. },
  5650. [
  5651. {
  5652. name: "Micro",
  5653. height: math.unit(7, "cm")
  5654. },
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(1.89, "m")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(353, "meters"),
  5662. default: true
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5668. {
  5669. front: {
  5670. height: math.unit(1.93, "meters"),
  5671. weight: math.unit(83, "kg"),
  5672. name: "Front",
  5673. image: {
  5674. source: "./media/characters/samantha/front.svg"
  5675. }
  5676. },
  5677. frontClothed: {
  5678. height: math.unit(1.93, "meters"),
  5679. weight: math.unit(83, "kg"),
  5680. name: "Front (Clothed)",
  5681. image: {
  5682. source: "./media/characters/samantha/front-clothed.svg"
  5683. }
  5684. },
  5685. back: {
  5686. height: math.unit(1.93, "meters"),
  5687. weight: math.unit(83, "kg"),
  5688. name: "Back",
  5689. image: {
  5690. source: "./media/characters/samantha/back.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(1.93, "m")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(74, "meters"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Macro+",
  5706. height: math.unit(223, "meters"),
  5707. },
  5708. {
  5709. name: "Megamacro",
  5710. height: math.unit(8381, "meters"),
  5711. },
  5712. {
  5713. name: "Megamacro+",
  5714. height: math.unit(12000, "kilometers")
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(1.92, "meters"),
  5723. weight: math.unit(80, "kg"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/dr-clay/front.svg"
  5727. }
  5728. },
  5729. frontClothed: {
  5730. height: math.unit(1.92, "meters"),
  5731. weight: math.unit(80, "kg"),
  5732. name: "Front (Clothed)",
  5733. image: {
  5734. source: "./media/characters/dr-clay/front-clothed.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(1.92, "m")
  5742. },
  5743. {
  5744. name: "Macro",
  5745. height: math.unit(214, "meters"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Macro+",
  5750. height: math.unit(12.237, "meters"),
  5751. },
  5752. {
  5753. name: "Megamacro",
  5754. height: math.unit(557, "megameters"),
  5755. },
  5756. {
  5757. name: "Unimaginable",
  5758. height: math.unit(120e9, "lightyears")
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(2, "meters"),
  5767. weight: math.unit(80, "kg"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Teramacro",
  5777. height: math.unit(500000, "lightyears"),
  5778. default: true
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5784. {
  5785. front: {
  5786. height: math.unit(2, "meters"),
  5787. weight: math.unit(150, "kg"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/vemus/front.svg",
  5791. extra: 2384 / 2084,
  5792. bottom: 0.0123
  5793. }
  5794. }
  5795. },
  5796. [
  5797. {
  5798. name: "Normal",
  5799. height: math.unit(3.75, "meters"),
  5800. default: true
  5801. },
  5802. {
  5803. name: "Big",
  5804. height: math.unit(8, "meters")
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(100, "meters")
  5809. },
  5810. {
  5811. name: "Macro+",
  5812. height: math.unit(1500, "meters")
  5813. },
  5814. {
  5815. name: "Stellar",
  5816. height: math.unit(14e8, "meters")
  5817. },
  5818. ]
  5819. ))
  5820. characterMakers.push(() => makeCharacter(
  5821. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5822. {
  5823. front: {
  5824. height: math.unit(2, "meters"),
  5825. weight: math.unit(70, "kg"),
  5826. name: "Front",
  5827. image: {
  5828. source: "./media/characters/beherit/front.svg",
  5829. extra: 1408 / 1242
  5830. }
  5831. }
  5832. },
  5833. [
  5834. {
  5835. name: "Normal",
  5836. height: math.unit(6, "feet")
  5837. },
  5838. {
  5839. name: "Lorg",
  5840. height: math.unit(25, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Lorger",
  5845. height: math.unit(75, "feet")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(200, "meters")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(2, "meters"),
  5858. weight: math.unit(150, "kg"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/everett/front.svg",
  5862. extra: 2038 / 1737,
  5863. bottom: 0.03
  5864. }
  5865. },
  5866. paw: {
  5867. height: math.unit(2 / 3.6, "meters"),
  5868. name: "Paw",
  5869. image: {
  5870. source: "./media/characters/everett/paw.svg"
  5871. }
  5872. },
  5873. },
  5874. [
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(15, "feet"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Lorg",
  5882. height: math.unit(70, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Lorger",
  5887. height: math.unit(250, "feet")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(500, "meters")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(2, "meters"),
  5900. weight: math.unit(86, "kg"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/rose-lion/front.svg"
  5904. }
  5905. },
  5906. bent: {
  5907. height: math.unit(2 / 1.4288, "meters"),
  5908. weight: math.unit(86, "kg"),
  5909. name: "Bent",
  5910. image: {
  5911. source: "./media/characters/rose-lion/bent.svg"
  5912. }
  5913. }
  5914. },
  5915. [
  5916. {
  5917. name: "Mini-Micro",
  5918. height: math.unit(1, "cm")
  5919. },
  5920. {
  5921. name: "Micro",
  5922. height: math.unit(3.5, "inches"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Normal",
  5927. height: math.unit(6 + 1 / 6, "feet")
  5928. },
  5929. {
  5930. name: "Mini-Macro",
  5931. height: math.unit(9 + 10 / 12, "feet")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(2, "meters"),
  5940. weight: math.unit(350, "lbs"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/regal/front.svg"
  5944. }
  5945. },
  5946. back: {
  5947. height: math.unit(2, "meters"),
  5948. weight: math.unit(350, "lbs"),
  5949. name: "Back",
  5950. image: {
  5951. source: "./media/characters/regal/back.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(350, "feet"),
  5959. default: true
  5960. }
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(4 + 11 / 12, "feet"),
  5968. weight: math.unit(100, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/opal/front.svg"
  5972. }
  5973. },
  5974. frontAlt: {
  5975. height: math.unit(4 + 11 / 12, "feet"),
  5976. weight: math.unit(100, "lbs"),
  5977. name: "Front (Alt)",
  5978. image: {
  5979. source: "./media/characters/opal/front-alt.svg"
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Small",
  5986. height: math.unit(4 + 11 / 12, "feet")
  5987. },
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(20, "feet"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Macro",
  5995. height: math.unit(120, "feet")
  5996. },
  5997. {
  5998. name: "Megamacro",
  5999. height: math.unit(80, "miles")
  6000. },
  6001. {
  6002. name: "True Size",
  6003. height: math.unit(100000, "lightyears")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(6, "feet"),
  6012. weight: math.unit(200, "lbs"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/vector-wuff/front.svg"
  6016. }
  6017. }
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(2.8, "meters")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(450, "meters"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Megamacro",
  6031. height: math.unit(15, "kilometers")
  6032. }
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(256, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/dannik/front.svg"
  6044. }
  6045. }
  6046. },
  6047. [
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(69.57, "meters"),
  6051. default: true
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(120, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/azura-saharah/front.svg"
  6064. }
  6065. },
  6066. back: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(120, "lbs"),
  6069. name: "Back",
  6070. image: {
  6071. source: "./media/characters/azura-saharah/back.svg"
  6072. }
  6073. },
  6074. },
  6075. [
  6076. {
  6077. name: "Macro",
  6078. height: math.unit(100, "feet"),
  6079. default: true
  6080. },
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6085. {
  6086. side: {
  6087. height: math.unit(5 + 4 / 12, "feet"),
  6088. weight: math.unit(163, "lbs"),
  6089. name: "Side",
  6090. image: {
  6091. source: "./media/characters/kennedy/side.svg"
  6092. }
  6093. }
  6094. },
  6095. [
  6096. {
  6097. name: "Standard Doggo",
  6098. height: math.unit(5 + 4 / 12, "feet")
  6099. },
  6100. {
  6101. name: "Big Doggo",
  6102. height: math.unit(25 + 3 / 12, "feet"),
  6103. default: true
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(90, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/odi-lunar/front.svg"
  6116. }
  6117. }
  6118. },
  6119. [
  6120. {
  6121. name: "Micro",
  6122. height: math.unit(3, "inches"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(5.5, "feet")
  6128. }
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6133. {
  6134. back: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(220, "lbs"),
  6137. name: "Back",
  6138. image: {
  6139. source: "./media/characters/mandake/back.svg"
  6140. }
  6141. }
  6142. },
  6143. [
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(7, "feet"),
  6147. default: true
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(78, "feet")
  6152. },
  6153. {
  6154. name: "Macro+",
  6155. height: math.unit(300, "meters")
  6156. },
  6157. {
  6158. name: "Macro++",
  6159. height: math.unit(2400, "feet")
  6160. },
  6161. {
  6162. name: "Megamacro",
  6163. height: math.unit(5167, "meters")
  6164. },
  6165. {
  6166. name: "Gigamacro",
  6167. height: math.unit(41769, "miles")
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6173. {
  6174. front: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(120, "lbs"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/yozey/front.svg"
  6180. }
  6181. },
  6182. frontAlt: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(120, "lbs"),
  6185. name: "Front (Alt)",
  6186. image: {
  6187. source: "./media/characters/yozey/front-alt.svg"
  6188. }
  6189. },
  6190. side: {
  6191. height: math.unit(6, "feet"),
  6192. weight: math.unit(120, "lbs"),
  6193. name: "Side",
  6194. image: {
  6195. source: "./media/characters/yozey/side.svg"
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Micro",
  6202. height: math.unit(3, "inches"),
  6203. default: true
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(6, "feet")
  6208. }
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6213. {
  6214. front: {
  6215. height: math.unit(6, "feet"),
  6216. weight: math.unit(103, "lbs"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/valeska-voss/front.svg"
  6220. }
  6221. }
  6222. },
  6223. [
  6224. {
  6225. name: "Mini-Sized Sub",
  6226. height: math.unit(3.1, "inches")
  6227. },
  6228. {
  6229. name: "Mid-Sized Sub",
  6230. height: math.unit(6.2, "inches")
  6231. },
  6232. {
  6233. name: "Full-Sized Sub",
  6234. height: math.unit(9.3, "inches")
  6235. },
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(5 + 2 / 12, "foot"),
  6239. default: true
  6240. },
  6241. ]
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6245. {
  6246. front: {
  6247. height: math.unit(6, "feet"),
  6248. weight: math.unit(160, "lbs"),
  6249. name: "Front",
  6250. image: {
  6251. source: "./media/characters/gene-zeta/front.svg",
  6252. bottom: 0.03,
  6253. extra: 1
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(6.25, "foot"),
  6261. default: true
  6262. },
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(350, "lbs"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/razinox/front.svg",
  6274. extra: 1686 / 1548,
  6275. bottom: 28.2 / 1868
  6276. }
  6277. },
  6278. back: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(350, "lbs"),
  6281. name: "Back",
  6282. image: {
  6283. source: "./media/characters/razinox/back.svg",
  6284. extra: 1660 / 1590,
  6285. bottom: 15 / 1665
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(10 + 8 / 12, "foot")
  6293. },
  6294. {
  6295. name: "Minimacro",
  6296. height: math.unit(15, "foot")
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(60, "foot"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Megamacro",
  6305. height: math.unit(5, "miles")
  6306. },
  6307. {
  6308. name: "Gigamacro",
  6309. height: math.unit(6000, "miles")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(6, "feet"),
  6318. weight: math.unit(150, "lbs"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/cobalt/front.svg"
  6322. }
  6323. }
  6324. },
  6325. [
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(8 + 1 / 12, "foot")
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(111, "foot"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Supracosmic",
  6337. height: math.unit(1e42, "feet")
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(140, "lbs"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/amanda/front.svg"
  6350. }
  6351. }
  6352. },
  6353. [
  6354. {
  6355. name: "Micro",
  6356. height: math.unit(5, "inches"),
  6357. default: true
  6358. },
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(5.59, "feet"),
  6366. weight: math.unit(250, "lbs"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/teal/front.svg"
  6370. }
  6371. },
  6372. frontAlt: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(250, "lbs"),
  6375. name: "Front (Alt)",
  6376. image: {
  6377. source: "./media/characters/teal/front-alt.svg",
  6378. bottom: 0.04,
  6379. extra: 1
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(12, "feet"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(300, "feet")
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6397. {
  6398. frontCat: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(180, "lbs"),
  6401. name: "Front (Cat)",
  6402. image: {
  6403. source: "./media/characters/ravin-amulet/front-cat.svg"
  6404. }
  6405. },
  6406. frontCatAlt: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(180, "lbs"),
  6409. name: "Front (Alt, Cat)",
  6410. image: {
  6411. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6412. }
  6413. },
  6414. frontWerewolf: {
  6415. height: math.unit(6 * 1.2, "feet"),
  6416. weight: math.unit(225, "lbs"),
  6417. name: "Front (Werewolf)",
  6418. image: {
  6419. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6420. }
  6421. },
  6422. backWerewolf: {
  6423. height: math.unit(6 * 1.2, "feet"),
  6424. weight: math.unit(225, "lbs"),
  6425. name: "Back (Werewolf)",
  6426. image: {
  6427. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Nano",
  6434. height: math.unit(1, "micrometer")
  6435. },
  6436. {
  6437. name: "Micro",
  6438. height: math.unit(1, "inch")
  6439. },
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(6, "feet"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(60, "feet")
  6448. }
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(165, "lbs"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/fluoresce/front.svg"
  6460. }
  6461. }
  6462. },
  6463. [
  6464. {
  6465. name: "Micro",
  6466. height: math.unit(6, "cm")
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(5 + 7 / 12, "feet"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Macro",
  6475. height: math.unit(56, "feet")
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(1.9, "miles")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(9 + 6 / 12, "feet"),
  6488. weight: math.unit(523, "lbs"),
  6489. name: "Side",
  6490. image: {
  6491. source: "./media/characters/aurora/side.svg"
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(9 + 6 / 12, "feet")
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(96, "feet"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Macro+",
  6507. height: math.unit(243, "feet")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(194, "cm"),
  6516. weight: math.unit(90, "kg"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/ranek/front.svg"
  6520. }
  6521. },
  6522. side: {
  6523. height: math.unit(194, "cm"),
  6524. weight: math.unit(90, "kg"),
  6525. name: "Side",
  6526. image: {
  6527. source: "./media/characters/ranek/side.svg"
  6528. }
  6529. },
  6530. back: {
  6531. height: math.unit(194, "cm"),
  6532. weight: math.unit(90, "kg"),
  6533. name: "Back",
  6534. image: {
  6535. source: "./media/characters/ranek/back.svg"
  6536. }
  6537. },
  6538. feral: {
  6539. height: math.unit(30, "cm"),
  6540. weight: math.unit(1.6, "lbs"),
  6541. name: "Feral",
  6542. image: {
  6543. source: "./media/characters/ranek/feral.svg"
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(194, "cm"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(100, "meters")
  6556. },
  6557. ]
  6558. ))
  6559. characterMakers.push(() => makeCharacter(
  6560. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6561. {
  6562. front: {
  6563. height: math.unit(5 + 6 / 12, "feet"),
  6564. weight: math.unit(153, "lbs"),
  6565. name: "Front",
  6566. image: {
  6567. source: "./media/characters/andrew-cooper/front.svg"
  6568. }
  6569. },
  6570. },
  6571. [
  6572. {
  6573. name: "Nano",
  6574. height: math.unit(1, "mm")
  6575. },
  6576. {
  6577. name: "Micro",
  6578. height: math.unit(2, "inches")
  6579. },
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(5 + 6 / 12, "feet"),
  6583. default: true
  6584. }
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(180, "lbs"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/akane-sato/front.svg",
  6596. extra: 1219 / 1140
  6597. }
  6598. },
  6599. back: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(180, "lbs"),
  6602. name: "Back",
  6603. image: {
  6604. source: "./media/characters/akane-sato/back.svg",
  6605. extra: 1219 / 1170
  6606. }
  6607. },
  6608. },
  6609. [
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(2.5, "meters")
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(250, "meters"),
  6617. default: true
  6618. },
  6619. {
  6620. name: "Megamacro",
  6621. height: math.unit(25, "km")
  6622. },
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6627. {
  6628. front: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(65, "kg"),
  6631. name: "Front",
  6632. image: {
  6633. source: "./media/characters/rook/front.svg",
  6634. extra: 960 / 950
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(8.8, "feet")
  6642. },
  6643. {
  6644. name: "Macro",
  6645. height: math.unit(88, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Megamacro",
  6650. height: math.unit(8, "miles")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(12 + 2 / 12, "feet"),
  6659. weight: math.unit(808, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/prodigy/front.svg"
  6663. }
  6664. }
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(12 + 2 / 12, "feet"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(143, "feet")
  6675. },
  6676. {
  6677. name: "Macro+",
  6678. height: math.unit(400, "feet")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(225, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/daniel/front.svg"
  6691. }
  6692. },
  6693. leaning: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(225, "lbs"),
  6696. name: "Leaning",
  6697. image: {
  6698. source: "./media/characters/daniel/leaning.svg"
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Macro",
  6705. height: math.unit(1000, "feet"),
  6706. default: true
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(88, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/chiros/front.svg",
  6719. extra: 306 / 226
  6720. }
  6721. },
  6722. side: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(88, "lbs"),
  6725. name: "Side",
  6726. image: {
  6727. source: "./media/characters/chiros/side.svg",
  6728. extra: 306 / 226
  6729. }
  6730. },
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(6, "cm"),
  6736. default: true
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(100, "lbs"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/selka/front.svg",
  6749. extra: 947 / 887
  6750. }
  6751. }
  6752. },
  6753. [
  6754. {
  6755. name: "Normal",
  6756. height: math.unit(5, "cm"),
  6757. default: true
  6758. },
  6759. ]
  6760. ))
  6761. characterMakers.push(() => makeCharacter(
  6762. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6763. {
  6764. front: {
  6765. height: math.unit(8 + 3 / 12, "feet"),
  6766. weight: math.unit(424, "lbs"),
  6767. name: "Front",
  6768. image: {
  6769. source: "./media/characters/verin/front.svg",
  6770. extra: 1845 / 1550
  6771. }
  6772. },
  6773. frontArmored: {
  6774. height: math.unit(8 + 3 / 12, "feet"),
  6775. weight: math.unit(424, "lbs"),
  6776. name: "Front (Armored)",
  6777. image: {
  6778. source: "./media/characters/verin/front-armor.svg",
  6779. extra: 1845 / 1550,
  6780. bottom: 0.01
  6781. }
  6782. },
  6783. back: {
  6784. height: math.unit(8 + 3 / 12, "feet"),
  6785. weight: math.unit(424, "lbs"),
  6786. name: "Back",
  6787. image: {
  6788. source: "./media/characters/verin/back.svg",
  6789. bottom: 0.1,
  6790. extra: 1
  6791. }
  6792. },
  6793. foot: {
  6794. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6795. name: "Foot",
  6796. image: {
  6797. source: "./media/characters/verin/foot.svg"
  6798. }
  6799. },
  6800. },
  6801. [
  6802. {
  6803. name: "Normal",
  6804. height: math.unit(8 + 3 / 12, "feet")
  6805. },
  6806. {
  6807. name: "Minimacro",
  6808. height: math.unit(21, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Macro",
  6813. height: math.unit(626, "feet")
  6814. },
  6815. ]
  6816. ))
  6817. characterMakers.push(() => makeCharacter(
  6818. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6819. {
  6820. front: {
  6821. height: math.unit(2.718, "meters"),
  6822. weight: math.unit(150, "lbs"),
  6823. name: "Front",
  6824. image: {
  6825. source: "./media/characters/sovrim-terraquian/front.svg"
  6826. }
  6827. },
  6828. back: {
  6829. height: math.unit(2.718, "meters"),
  6830. weight: math.unit(150, "lbs"),
  6831. name: "Back",
  6832. image: {
  6833. source: "./media/characters/sovrim-terraquian/back.svg"
  6834. }
  6835. }
  6836. },
  6837. [
  6838. {
  6839. name: "Micro",
  6840. height: math.unit(2, "inches")
  6841. },
  6842. {
  6843. name: "Small",
  6844. height: math.unit(1, "meter")
  6845. },
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(Math.E, "meters"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(20, "meters")
  6854. },
  6855. {
  6856. name: "Macro+",
  6857. height: math.unit(400, "meters")
  6858. },
  6859. ]
  6860. ))
  6861. characterMakers.push(() => makeCharacter(
  6862. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6863. {
  6864. front: {
  6865. height: math.unit(7, "feet"),
  6866. weight: math.unit(489, "lbs"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/reece-silvermane/front.svg",
  6870. bottom: 0.02,
  6871. extra: 1
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(1.5, "miles"),
  6879. default: true
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(78, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/kane/front.svg",
  6892. extra: 978 / 899
  6893. }
  6894. },
  6895. },
  6896. [
  6897. {
  6898. name: "Normal",
  6899. height: math.unit(2.1, "m"),
  6900. },
  6901. {
  6902. name: "Macro",
  6903. height: math.unit(1, "km"),
  6904. default: true
  6905. },
  6906. ]
  6907. ))
  6908. characterMakers.push(() => makeCharacter(
  6909. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6910. {
  6911. front: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(200, "kg"),
  6914. name: "Front",
  6915. image: {
  6916. source: "./media/characters/tegon/front.svg",
  6917. bottom: 0.01,
  6918. extra: 1
  6919. }
  6920. },
  6921. },
  6922. [
  6923. {
  6924. name: "Micro",
  6925. height: math.unit(1, "inch")
  6926. },
  6927. {
  6928. name: "Normal",
  6929. height: math.unit(6 + 3 / 12, "feet"),
  6930. default: true
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(300, "feet")
  6935. },
  6936. {
  6937. name: "Megamacro",
  6938. height: math.unit(69, "miles")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6944. {
  6945. side: {
  6946. height: math.unit(6, "feet"),
  6947. weight: math.unit(2304, "lbs"),
  6948. name: "Side",
  6949. image: {
  6950. source: "./media/characters/arcturax/side.svg",
  6951. extra: 790 / 376,
  6952. bottom: 0.01
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Micro",
  6959. height: math.unit(2, "inch")
  6960. },
  6961. {
  6962. name: "Normal",
  6963. height: math.unit(6, "feet")
  6964. },
  6965. {
  6966. name: "Macro",
  6967. height: math.unit(39, "feet"),
  6968. default: true
  6969. },
  6970. {
  6971. name: "Megamacro",
  6972. height: math.unit(7, "miles")
  6973. },
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6978. {
  6979. front: {
  6980. height: math.unit(6, "feet"),
  6981. weight: math.unit(50, "lbs"),
  6982. name: "Front",
  6983. image: {
  6984. source: "./media/characters/sentri/front.svg",
  6985. extra: 1750 / 1570,
  6986. bottom: 0.025
  6987. }
  6988. },
  6989. frontAlt: {
  6990. height: math.unit(6, "feet"),
  6991. weight: math.unit(50, "lbs"),
  6992. name: "Front (Alt)",
  6993. image: {
  6994. source: "./media/characters/sentri/front-alt.svg",
  6995. extra: 1750 / 1570,
  6996. bottom: 0.025
  6997. }
  6998. },
  6999. },
  7000. [
  7001. {
  7002. name: "Normal",
  7003. height: math.unit(15, "feet"),
  7004. default: true
  7005. },
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(2500, "feet")
  7009. }
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7014. {
  7015. front: {
  7016. height: math.unit(5 + 8 / 12, "feet"),
  7017. weight: math.unit(130, "lbs"),
  7018. name: "Front",
  7019. image: {
  7020. source: "./media/characters/corvin/front.svg",
  7021. extra: 1803 / 1629
  7022. }
  7023. },
  7024. frontShirt: {
  7025. height: math.unit(5 + 8 / 12, "feet"),
  7026. weight: math.unit(130, "lbs"),
  7027. name: "Front (Shirt)",
  7028. image: {
  7029. source: "./media/characters/corvin/front-shirt.svg",
  7030. extra: 1803 / 1629
  7031. }
  7032. },
  7033. frontPoncho: {
  7034. height: math.unit(5 + 8 / 12, "feet"),
  7035. weight: math.unit(130, "lbs"),
  7036. name: "Front (Poncho)",
  7037. image: {
  7038. source: "./media/characters/corvin/front-poncho.svg",
  7039. extra: 1803 / 1629
  7040. }
  7041. },
  7042. side: {
  7043. height: math.unit(5 + 8 / 12, "feet"),
  7044. weight: math.unit(130, "lbs"),
  7045. name: "Side",
  7046. image: {
  7047. source: "./media/characters/corvin/side.svg",
  7048. extra: 1012 / 945
  7049. }
  7050. },
  7051. back: {
  7052. height: math.unit(5 + 8 / 12, "feet"),
  7053. weight: math.unit(130, "lbs"),
  7054. name: "Back",
  7055. image: {
  7056. source: "./media/characters/corvin/back.svg",
  7057. extra: 1803 / 1629
  7058. }
  7059. },
  7060. },
  7061. [
  7062. {
  7063. name: "Micro",
  7064. height: math.unit(3, "inches")
  7065. },
  7066. {
  7067. name: "Normal",
  7068. height: math.unit(5 + 8 / 12, "feet")
  7069. },
  7070. {
  7071. name: "Macro",
  7072. height: math.unit(300, "feet"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Megamacro",
  7077. height: math.unit(500, "miles")
  7078. }
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(6, "feet"),
  7086. weight: math.unit(135, "lbs"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/q/front.svg",
  7090. extra: 854 / 752,
  7091. bottom: 0.005
  7092. }
  7093. },
  7094. back: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(130, "lbs"),
  7097. name: "Back",
  7098. image: {
  7099. source: "./media/characters/q/back.svg",
  7100. extra: 854 / 752
  7101. }
  7102. },
  7103. },
  7104. [
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(90, "feet"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Extra Macro",
  7112. height: math.unit(300, "feet"),
  7113. },
  7114. {
  7115. name: "BIG WALF",
  7116. height: math.unit(750, "feet"),
  7117. },
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7122. {
  7123. front: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(150, "lbs"),
  7126. name: "Front",
  7127. image: {
  7128. source: "./media/characters/carley/front.svg",
  7129. extra: 3927 / 3540,
  7130. bottom: 0.03
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(6 + 3 / 12, "feet")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(185, "feet"),
  7142. default: true
  7143. },
  7144. {
  7145. name: "Megamacro",
  7146. height: math.unit(8, "miles"),
  7147. },
  7148. ]
  7149. ))
  7150. characterMakers.push(() => makeCharacter(
  7151. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7152. {
  7153. front: {
  7154. height: math.unit(3, "feet"),
  7155. weight: math.unit(28, "lbs"),
  7156. name: "Front",
  7157. image: {
  7158. source: "./media/characters/citrine/front.svg"
  7159. }
  7160. }
  7161. },
  7162. [
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(3, "feet"),
  7166. default: true
  7167. }
  7168. ]
  7169. ))
  7170. characterMakers.push(() => makeCharacter(
  7171. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7172. {
  7173. front: {
  7174. height: math.unit(14, "feet"),
  7175. weight: math.unit(1450, "kg"),
  7176. capacity: math.unit(15, "people"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/aura-starwind/front.svg",
  7180. extra: 1455 / 1335
  7181. }
  7182. },
  7183. side: {
  7184. height: math.unit(14, "feet"),
  7185. weight: math.unit(1450, "kg"),
  7186. capacity: math.unit(15, "people"),
  7187. name: "Side",
  7188. image: {
  7189. source: "./media/characters/aura-starwind/side.svg",
  7190. extra: 1654 / 1497
  7191. }
  7192. },
  7193. taur: {
  7194. height: math.unit(18, "feet"),
  7195. weight: math.unit(5500, "kg"),
  7196. capacity: math.unit(50, "people"),
  7197. name: "Taur",
  7198. image: {
  7199. source: "./media/characters/aura-starwind/taur.svg",
  7200. extra: 1760 / 1650
  7201. }
  7202. },
  7203. feral: {
  7204. height: math.unit(46, "feet"),
  7205. weight: math.unit(25000, "kg"),
  7206. capacity: math.unit(120, "people"),
  7207. name: "Feral",
  7208. image: {
  7209. source: "./media/characters/aura-starwind/feral.svg"
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(14, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(50, "meters")
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(5000, "meters")
  7226. },
  7227. {
  7228. name: "Gigamacro",
  7229. height: math.unit(100000, "kilometers")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(2 + 7 / 12, "feet"),
  7238. weight: math.unit(32, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/rivet/front.svg",
  7242. extra: 1716 / 1658,
  7243. bottom: 0.03
  7244. }
  7245. },
  7246. foot: {
  7247. height: math.unit(0.551, "feet"),
  7248. name: "Rivet's Foot",
  7249. image: {
  7250. source: "./media/characters/rivet/foot.svg"
  7251. },
  7252. rename: true
  7253. }
  7254. },
  7255. [
  7256. {
  7257. name: "Micro",
  7258. height: math.unit(1.5, "inches"),
  7259. },
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(2 + 7 / 12, "feet"),
  7263. default: true
  7264. },
  7265. {
  7266. name: "Macro",
  7267. height: math.unit(85, "feet")
  7268. },
  7269. {
  7270. name: "Megamacro",
  7271. height: math.unit(2.2, "km")
  7272. }
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(5 + 9 / 12, "feet"),
  7280. weight: math.unit(150, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/coffee/front.svg",
  7284. extra: 3666 / 3032,
  7285. bottom: 0.04
  7286. }
  7287. },
  7288. foot: {
  7289. height: math.unit(1.29, "feet"),
  7290. name: "Foot",
  7291. image: {
  7292. source: "./media/characters/coffee/foot.svg"
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Micro",
  7299. height: math.unit(2, "inches"),
  7300. },
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(5 + 9 / 12, "feet"),
  7304. default: true
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(800, "feet")
  7309. },
  7310. {
  7311. name: "Megamacro",
  7312. height: math.unit(25, "miles")
  7313. }
  7314. ]
  7315. ))
  7316. characterMakers.push(() => makeCharacter(
  7317. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7318. {
  7319. front: {
  7320. height: math.unit(6, "feet"),
  7321. weight: math.unit(200, "lbs"),
  7322. name: "Front",
  7323. image: {
  7324. source: "./media/characters/chari-gal/front.svg",
  7325. extra: 1568 / 1385,
  7326. bottom: 0.047
  7327. }
  7328. },
  7329. gigantamax: {
  7330. height: math.unit(6 * 16, "feet"),
  7331. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7332. name: "Gigantamax",
  7333. image: {
  7334. source: "./media/characters/chari-gal/gigantamax.svg",
  7335. extra: 1124 / 888,
  7336. bottom: 0.03
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(5 + 7 / 12, "feet")
  7344. },
  7345. {
  7346. name: "Macro",
  7347. height: math.unit(200, "feet"),
  7348. default: true
  7349. }
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(150, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/nova/front.svg",
  7361. extra: 5000 / 4722,
  7362. bottom: 0.02
  7363. }
  7364. }
  7365. },
  7366. [
  7367. {
  7368. name: "Micro-",
  7369. height: math.unit(0.8, "inches")
  7370. },
  7371. {
  7372. name: "Micro",
  7373. height: math.unit(2, "inches"),
  7374. default: true
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7380. {
  7381. front: {
  7382. height: math.unit(3 + 1 / 12, "feet"),
  7383. weight: math.unit(21.7, "lbs"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/argent/front.svg",
  7387. extra: 1471 / 1331,
  7388. bottom: 100.8 / 1575.5
  7389. }
  7390. }
  7391. },
  7392. [
  7393. {
  7394. name: "Micro",
  7395. height: math.unit(2, "inches")
  7396. },
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(3 + 1 / 12, "feet"),
  7400. default: true
  7401. },
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(120, "feet")
  7405. },
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7410. {
  7411. lamp: {
  7412. height: math.unit(7 * 1559 / 989, "feet"),
  7413. name: "Magic Lamp",
  7414. image: {
  7415. source: "./media/characters/mira-al-cul/lamp.svg",
  7416. extra: 1617 / 1559
  7417. }
  7418. },
  7419. front: {
  7420. height: math.unit(7, "feet"),
  7421. name: "Front",
  7422. image: {
  7423. source: "./media/characters/mira-al-cul/front.svg",
  7424. extra: 1044 / 990
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Heavily Restricted",
  7431. height: math.unit(7 * 1559 / 989, "feet")
  7432. },
  7433. {
  7434. name: "Freshly Freed",
  7435. height: math.unit(50 * 1559 / 989, "feet")
  7436. },
  7437. {
  7438. name: "World Encompassing",
  7439. height: math.unit(10000 * 1559 / 989, "miles")
  7440. },
  7441. {
  7442. name: "Galactic",
  7443. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7444. },
  7445. {
  7446. name: "Palmed Universe",
  7447. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Multiversal Matriarch",
  7452. height: math.unit(8.87e10, "yottameters")
  7453. },
  7454. {
  7455. name: "Void Mother",
  7456. height: math.unit(3.14e110, "yottaparsecs")
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7462. {
  7463. front: {
  7464. height: math.unit(17 + 1 / 12, "feet"),
  7465. weight: math.unit(476.2 * 5, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/kuro-shi-uchū/front.svg",
  7469. extra: 2329 / 1835,
  7470. bottom: 0.02
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(2, "inches")
  7478. },
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(12, "meters")
  7482. },
  7483. {
  7484. name: "Planetary",
  7485. height: math.unit(0.00929, "AU"),
  7486. default: true
  7487. },
  7488. {
  7489. name: "Universal",
  7490. height: math.unit(20, "gigaparsecs")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(5 + 2 / 12, "feet"),
  7499. weight: math.unit(120, "lbs"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/katherine/front.svg",
  7503. extra: 2075 / 1969
  7504. }
  7505. },
  7506. dress: {
  7507. height: math.unit(5 + 2 / 12, "feet"),
  7508. weight: math.unit(120, "lbs"),
  7509. name: "Dress",
  7510. image: {
  7511. source: "./media/characters/katherine/dress.svg",
  7512. extra: 2258 / 2064
  7513. }
  7514. },
  7515. },
  7516. [
  7517. {
  7518. name: "Micro",
  7519. height: math.unit(1, "inches"),
  7520. default: true
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5 + 2 / 12, "feet")
  7525. },
  7526. {
  7527. name: "Macro",
  7528. height: math.unit(100, "meters")
  7529. },
  7530. {
  7531. name: "Megamacro",
  7532. height: math.unit(80, "miles")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(7 + 8 / 12, "feet"),
  7541. weight: math.unit(250, "lbs"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/yevis/front.svg",
  7545. extra: 1938 / 1755
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Mortal",
  7552. height: math.unit(7 + 8 / 12, "feet")
  7553. },
  7554. {
  7555. name: "Battle",
  7556. height: math.unit(25 + 11 / 12, "feet")
  7557. },
  7558. {
  7559. name: "Wrath",
  7560. height: math.unit(1654 + 11 / 12, "feet")
  7561. },
  7562. {
  7563. name: "Planet Destroyer",
  7564. height: math.unit(12000, "miles")
  7565. },
  7566. {
  7567. name: "Galaxy Conqueror",
  7568. height: math.unit(1.45, "zettameters"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Universal War",
  7573. height: math.unit(184, "gigaparsecs")
  7574. },
  7575. {
  7576. name: "Eternity War",
  7577. height: math.unit(1.98e55, "yottaparsecs")
  7578. },
  7579. ]
  7580. ))
  7581. characterMakers.push(() => makeCharacter(
  7582. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7583. {
  7584. front: {
  7585. height: math.unit(5 + 8 / 12, "feet"),
  7586. weight: math.unit(63, "kg"),
  7587. name: "Front",
  7588. image: {
  7589. source: "./media/characters/xavier/front.svg",
  7590. extra: 944 / 883
  7591. }
  7592. },
  7593. frontStretch: {
  7594. height: math.unit(5 + 8 / 12, "feet"),
  7595. weight: math.unit(63, "kg"),
  7596. name: "Stretching",
  7597. image: {
  7598. source: "./media/characters/xavier/front-stretch.svg",
  7599. extra: 962 / 820
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(5 + 8 / 12, "feet")
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(100, "meters"),
  7611. default: true
  7612. },
  7613. {
  7614. name: "McLargeHuge",
  7615. height: math.unit(10, "miles")
  7616. },
  7617. ]
  7618. ))
  7619. characterMakers.push(() => makeCharacter(
  7620. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7621. {
  7622. front: {
  7623. height: math.unit(5 + 5 / 12, "feet"),
  7624. weight: math.unit(150, "lb"),
  7625. name: "Front",
  7626. image: {
  7627. source: "./media/characters/joshii/front.svg"
  7628. }
  7629. },
  7630. foot: {
  7631. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7632. name: "Foot",
  7633. image: {
  7634. source: "./media/characters/joshii/foot.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(2, "inches")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(5 + 5 / 12, "feet"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(785, "feet")
  7651. },
  7652. {
  7653. name: "Megamacro",
  7654. height: math.unit(24.5, "miles")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(150, "lb"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/goddess-elizabeth/front.svg",
  7667. extra: 1800 / 1525,
  7668. bottom: 0.005
  7669. }
  7670. },
  7671. foot: {
  7672. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7673. name: "Foot",
  7674. image: {
  7675. source: "./media/characters/goddess-elizabeth/foot.svg"
  7676. }
  7677. },
  7678. mouth: {
  7679. height: math.unit(6, "feet"),
  7680. name: "Mouth",
  7681. image: {
  7682. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Micro",
  7689. height: math.unit(12, "feet")
  7690. },
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(80, "miles"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(15000, "parsecs")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(5 + 9 / 12, "feet"),
  7707. weight: math.unit(144, "lb"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/kara/front.svg"
  7711. }
  7712. },
  7713. feet: {
  7714. height: math.unit(6 / 6.765, "feet"),
  7715. name: "Kara's Feet",
  7716. rename: true,
  7717. image: {
  7718. source: "./media/characters/kara/feet.svg"
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(5 + 9 / 12, "feet")
  7726. },
  7727. {
  7728. name: "Macro",
  7729. height: math.unit(174, "feet"),
  7730. default: true
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(18, "feet"),
  7739. weight: math.unit(4050, "lb"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/tyrone/front.svg",
  7743. extra: 2520 / 2402,
  7744. bottom: 0.025
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(18, "feet"),
  7752. default: true
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(300, "feet")
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(7 + 8 / 12, "feet"),
  7765. weight: math.unit(120, "lb"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/danny/front.svg",
  7769. extra: 1490 / 1350
  7770. }
  7771. },
  7772. back: {
  7773. height: math.unit(7 + 8 / 12, "feet"),
  7774. weight: math.unit(120, "lb"),
  7775. name: "Back",
  7776. image: {
  7777. source: "./media/characters/danny/back.svg",
  7778. extra: 1490 / 1350
  7779. }
  7780. },
  7781. },
  7782. [
  7783. {
  7784. name: "Normal",
  7785. height: math.unit(7 + 8 / 12, "feet"),
  7786. default: true
  7787. },
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(3.5, "inches"),
  7795. weight: math.unit(19, "grams"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/mallow/front.svg",
  7799. extra: 471 / 431
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(3.5, "inches"),
  7804. weight: math.unit(19, "grams"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/mallow/back.svg",
  7808. extra: 471 / 431
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(3.5, "inches"),
  7816. default: true
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(9, "feet"),
  7825. weight: math.unit(230, "kg"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/starry-aqua/front.svg"
  7829. }
  7830. },
  7831. back: {
  7832. height: math.unit(9, "feet"),
  7833. weight: math.unit(230, "kg"),
  7834. name: "Back",
  7835. image: {
  7836. source: "./media/characters/starry-aqua/back.svg"
  7837. }
  7838. },
  7839. hand: {
  7840. height: math.unit(9 * 0.1168, "feet"),
  7841. name: "Hand",
  7842. image: {
  7843. source: "./media/characters/starry-aqua/hand.svg"
  7844. }
  7845. },
  7846. foot: {
  7847. height: math.unit(9 * 0.18, "feet"),
  7848. name: "Foot",
  7849. image: {
  7850. source: "./media/characters/starry-aqua/foot.svg"
  7851. }
  7852. }
  7853. },
  7854. [
  7855. {
  7856. name: "Micro",
  7857. height: math.unit(3, "inches")
  7858. },
  7859. {
  7860. name: "Normal",
  7861. height: math.unit(9, "feet")
  7862. },
  7863. {
  7864. name: "Macro",
  7865. height: math.unit(300, "feet"),
  7866. default: true
  7867. },
  7868. {
  7869. name: "Megamacro",
  7870. height: math.unit(3200, "feet")
  7871. }
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7876. {
  7877. front: {
  7878. height: math.unit(6, "feet"),
  7879. weight: math.unit(230, "lb"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/luka/front.svg",
  7883. extra: 1,
  7884. bottom: 0.025
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(12 + 8 / 12, "feet"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Minimacro",
  7896. height: math.unit(20, "feet")
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(250, "feet")
  7901. },
  7902. {
  7903. name: "Megamacro",
  7904. height: math.unit(5, "miles")
  7905. },
  7906. {
  7907. name: "Gigamacro",
  7908. height: math.unit(8000, "miles")
  7909. },
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(6, "feet"),
  7917. weight: math.unit(150, "lb"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/natalie-nightring/front.svg",
  7921. extra: 1,
  7922. bottom: 0.06
  7923. }
  7924. },
  7925. },
  7926. [
  7927. {
  7928. name: "Uh Oh",
  7929. height: math.unit(0.1, "mm")
  7930. },
  7931. {
  7932. name: "Small",
  7933. height: math.unit(3, "inches")
  7934. },
  7935. {
  7936. name: "Human Scale",
  7937. height: math.unit(6, "feet")
  7938. },
  7939. {
  7940. name: "Librarian",
  7941. height: math.unit(50, "feet"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Immense",
  7946. height: math.unit(200, "miles")
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7952. {
  7953. front: {
  7954. height: math.unit(6, "feet"),
  7955. weight: math.unit(180, "lbs"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/danni-rosie/front.svg",
  7959. extra: 1260 / 1128,
  7960. bottom: 0.022
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Micro",
  7967. height: math.unit(2, "inches"),
  7968. default: true
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(5 + 9 / 12, "feet"),
  7977. weight: math.unit(220, "lb"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/samantha-kruse/front.svg",
  7981. extra: (985 / 935),
  7982. bottom: 0.03
  7983. }
  7984. },
  7985. frontUndressed: {
  7986. height: math.unit(5 + 9 / 12, "feet"),
  7987. weight: math.unit(220, "lb"),
  7988. name: "Front (Undressed)",
  7989. image: {
  7990. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7991. extra: (973 / 923),
  7992. bottom: 0.025
  7993. }
  7994. },
  7995. fat: {
  7996. height: math.unit(5 + 9 / 12, "feet"),
  7997. weight: math.unit(900, "lb"),
  7998. name: "Front (Fat)",
  7999. image: {
  8000. source: "./media/characters/samantha-kruse/fat.svg",
  8001. extra: 2688 / 2561
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(5 + 9 / 12, "feet"),
  8009. default: true
  8010. }
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8015. {
  8016. back: {
  8017. height: math.unit(5 + 4 / 12, "feet"),
  8018. weight: math.unit(4963, "lb"),
  8019. name: "Back",
  8020. image: {
  8021. source: "./media/characters/amelia-rosie/back.svg",
  8022. extra: 1113 / 963,
  8023. bottom: 0.01
  8024. }
  8025. },
  8026. },
  8027. [
  8028. {
  8029. name: "Level 0",
  8030. height: math.unit(5 + 4 / 12, "feet")
  8031. },
  8032. {
  8033. name: "Level 1",
  8034. height: math.unit(164597, "feet"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Level 2",
  8039. height: math.unit(956243, "miles")
  8040. },
  8041. {
  8042. name: "Level 3",
  8043. height: math.unit(29421709423, "miles")
  8044. },
  8045. {
  8046. name: "Level 4",
  8047. height: math.unit(154, "lightyears")
  8048. },
  8049. {
  8050. name: "Level 5",
  8051. height: math.unit(4738272, "lightyears")
  8052. },
  8053. {
  8054. name: "Level 6",
  8055. height: math.unit(145787152896, "lightyears")
  8056. },
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8061. {
  8062. front: {
  8063. height: math.unit(5 + 11 / 12, "feet"),
  8064. weight: math.unit(65, "kg"),
  8065. name: "Front",
  8066. image: {
  8067. source: "./media/characters/rook-kitara/front.svg",
  8068. extra: 1347 / 1274,
  8069. bottom: 0.005
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Totally Unfair",
  8076. height: math.unit(1.8, "mm")
  8077. },
  8078. {
  8079. name: "Lap Rookie",
  8080. height: math.unit(1.4, "feet")
  8081. },
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(5 + 11 / 12, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "How Did This Happen",
  8089. height: math.unit(80, "miles")
  8090. }
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(7, "feet"),
  8098. weight: math.unit(300, "lb"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/pisces/front.svg",
  8102. extra: 2255 / 2115,
  8103. bottom: 0.03
  8104. }
  8105. },
  8106. back: {
  8107. height: math.unit(7, "feet"),
  8108. weight: math.unit(300, "lb"),
  8109. name: "Back",
  8110. image: {
  8111. source: "./media/characters/pisces/back.svg",
  8112. extra: 2146 / 2055,
  8113. bottom: 0.04
  8114. }
  8115. },
  8116. },
  8117. [
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(7, "feet"),
  8121. default: true
  8122. },
  8123. {
  8124. name: "Swimming Pool",
  8125. height: math.unit(12.2, "meters")
  8126. },
  8127. {
  8128. name: "Olympic Swimming Pool",
  8129. height: math.unit(56.3, "meters")
  8130. },
  8131. {
  8132. name: "Lake Superior",
  8133. height: math.unit(93900, "meters")
  8134. },
  8135. {
  8136. name: "Mediterranean Sea",
  8137. height: math.unit(644457, "meters")
  8138. },
  8139. {
  8140. name: "World's Oceans",
  8141. height: math.unit(4567491, "meters")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(2.3, "meters"),
  8150. weight: math.unit(120, "kg"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/zelas/front.svg"
  8154. }
  8155. },
  8156. side: {
  8157. height: math.unit(2.3, "meters"),
  8158. weight: math.unit(120, "kg"),
  8159. name: "Side",
  8160. image: {
  8161. source: "./media/characters/zelas/side.svg"
  8162. }
  8163. },
  8164. back: {
  8165. height: math.unit(2.3, "meters"),
  8166. weight: math.unit(120, "kg"),
  8167. name: "Back",
  8168. image: {
  8169. source: "./media/characters/zelas/back.svg"
  8170. }
  8171. },
  8172. foot: {
  8173. height: math.unit(1.116, "feet"),
  8174. name: "Foot",
  8175. image: {
  8176. source: "./media/characters/zelas/foot.svg"
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(2.3, "meters")
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(30, "meters"),
  8188. default: true
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(1, "inch"),
  8197. weight: math.unit(0.21, "grams"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/talbot/front.svg",
  8201. extra: 594 / 544
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Micro",
  8208. height: math.unit(1, "inch"),
  8209. default: true
  8210. },
  8211. ]
  8212. ))
  8213. characterMakers.push(() => makeCharacter(
  8214. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8215. {
  8216. front: {
  8217. height: math.unit(3 + 3 / 12, "feet"),
  8218. weight: math.unit(51.8, "lb"),
  8219. name: "Front",
  8220. image: {
  8221. source: "./media/characters/fliss/front.svg",
  8222. extra: 840 / 640
  8223. }
  8224. },
  8225. },
  8226. [
  8227. {
  8228. name: "Teeny Tiny",
  8229. height: math.unit(1, "mm")
  8230. },
  8231. {
  8232. name: "Small",
  8233. height: math.unit(1, "inch"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Standard Sylveon",
  8238. height: math.unit(3 + 3 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Large Nuisance",
  8242. height: math.unit(33, "feet")
  8243. },
  8244. {
  8245. name: "City Filler",
  8246. height: math.unit(3000, "feet")
  8247. },
  8248. {
  8249. name: "New Horizon",
  8250. height: math.unit(6000, "miles")
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(5, "cm"),
  8259. weight: math.unit(1.94, "g"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/fleta/front.svg",
  8263. extra: 835 / 803
  8264. }
  8265. },
  8266. back: {
  8267. height: math.unit(5, "cm"),
  8268. weight: math.unit(1.94, "g"),
  8269. name: "Back",
  8270. image: {
  8271. source: "./media/characters/fleta/back.svg",
  8272. extra: 835 / 803
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Micro",
  8279. height: math.unit(5, "cm"),
  8280. default: true
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(6, "feet"),
  8289. weight: math.unit(225, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/dominic/front.svg",
  8293. extra: 1770 / 1620,
  8294. bottom: 0.025
  8295. }
  8296. },
  8297. back: {
  8298. height: math.unit(6, "feet"),
  8299. weight: math.unit(225, "lb"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/dominic/back.svg",
  8303. extra: 1745 / 1620,
  8304. bottom: 0.065
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Nano",
  8311. height: math.unit(0.1, "mm")
  8312. },
  8313. {
  8314. name: "Micro-",
  8315. height: math.unit(1, "mm")
  8316. },
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(4, "inches")
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(6 + 4 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(115, "feet")
  8329. },
  8330. {
  8331. name: "Macro+",
  8332. height: math.unit(955, "feet")
  8333. },
  8334. {
  8335. name: "Megamacro",
  8336. height: math.unit(8990, "feet")
  8337. },
  8338. {
  8339. name: "Gigmacro",
  8340. height: math.unit(9310, "miles")
  8341. },
  8342. {
  8343. name: "Teramacro",
  8344. height: math.unit(1567005010, "miles")
  8345. },
  8346. {
  8347. name: "Examacro",
  8348. height: math.unit(1425, "parsecs")
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(400, "feet"),
  8357. weight: math.unit(44444444, "lb"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/major-colonel/front.svg"
  8361. }
  8362. },
  8363. back: {
  8364. height: math.unit(400, "feet"),
  8365. weight: math.unit(44444444, "lb"),
  8366. name: "Back",
  8367. image: {
  8368. source: "./media/characters/major-colonel/back.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Macro",
  8375. height: math.unit(400, "feet"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8382. {
  8383. catFront: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(120, "lb"),
  8386. name: "Front (Cat Side)",
  8387. image: {
  8388. source: "./media/characters/axel-lycan/cat-front.svg",
  8389. extra: 430 / 402,
  8390. bottom: 43 / 472.35
  8391. }
  8392. },
  8393. catBack: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(120, "lb"),
  8396. name: "Back (Cat Side)",
  8397. image: {
  8398. source: "./media/characters/axel-lycan/cat-back.svg",
  8399. extra: 447 / 419,
  8400. bottom: 23.3 / 469
  8401. }
  8402. },
  8403. wolfFront: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(120, "lb"),
  8406. name: "Front (Wolf Side)",
  8407. image: {
  8408. source: "./media/characters/axel-lycan/wolf-front.svg",
  8409. extra: 485 / 456,
  8410. bottom: 19 / 504
  8411. }
  8412. },
  8413. wolfBack: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(120, "lb"),
  8416. name: "Back (Wolf Side)",
  8417. image: {
  8418. source: "./media/characters/axel-lycan/wolf-back.svg",
  8419. extra: 475 / 438,
  8420. bottom: 39.2 / 514
  8421. }
  8422. },
  8423. },
  8424. [
  8425. {
  8426. name: "Macro",
  8427. height: math.unit(1, "km"),
  8428. default: true
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(5 + 9 / 12, "feet"),
  8437. weight: math.unit(175, "lb"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/vanrel-hyena/front.svg",
  8441. extra: 1086 / 1010,
  8442. bottom: 0.04
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(5 + 9 / 12, "feet"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(103, "lb"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/abbott-absol/front.svg",
  8463. extra: 2010 / 1842
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Megamicro",
  8470. height: math.unit(0.1, "mm")
  8471. },
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(1, "inch")
  8475. },
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(6, "feet"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(264, "lb"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/hector/front.svg",
  8492. extra: 2280 / 2130,
  8493. bottom: 0.07
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(12.25, "foot"),
  8501. default: true
  8502. },
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(160, "feet")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(150, "lb"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/sal/front.svg",
  8518. extra: 1846 / 1699,
  8519. bottom: 0.04
  8520. }
  8521. },
  8522. },
  8523. [
  8524. {
  8525. name: "Megamacro",
  8526. height: math.unit(10, "miles"),
  8527. default: true
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8533. {
  8534. front: {
  8535. height: math.unit(3, "meters"),
  8536. weight: math.unit(450, "kg"),
  8537. name: "front",
  8538. image: {
  8539. source: "./media/characters/ranger/front.svg",
  8540. extra: 2401 / 2243,
  8541. bottom: 0.05
  8542. }
  8543. },
  8544. },
  8545. [
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(3, "meters"),
  8549. default: true
  8550. },
  8551. ]
  8552. ))
  8553. characterMakers.push(() => makeCharacter(
  8554. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8555. {
  8556. front: {
  8557. height: math.unit(14, "feet"),
  8558. weight: math.unit(800, "kg"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/theresa/front.svg",
  8562. extra: 3575 / 3346,
  8563. bottom: 0.03
  8564. }
  8565. },
  8566. },
  8567. [
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(14, "feet"),
  8571. default: true
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8577. {
  8578. front: {
  8579. height: math.unit(6, "feet"),
  8580. weight: math.unit(3, "kg"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/ine/front.svg",
  8584. extra: 678 / 539,
  8585. bottom: 0.023
  8586. }
  8587. },
  8588. },
  8589. [
  8590. {
  8591. name: "Normal",
  8592. height: math.unit(2.265, "feet"),
  8593. default: true
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8599. {
  8600. front: {
  8601. height: math.unit(5, "feet"),
  8602. weight: math.unit(30, "kg"),
  8603. name: "Front",
  8604. image: {
  8605. source: "./media/characters/vial/front.svg",
  8606. extra: 1365 / 1277,
  8607. bottom: 0.04
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(5, "feet"),
  8615. default: true
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8621. {
  8622. side: {
  8623. height: math.unit(3.4, "meters"),
  8624. weight: math.unit(1000, "lb"),
  8625. name: "Side",
  8626. image: {
  8627. source: "./media/characters/rovoska/side.svg",
  8628. extra: 4403 / 1515
  8629. }
  8630. },
  8631. },
  8632. [
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(3.4, "meters"),
  8636. default: true
  8637. },
  8638. ]
  8639. ))
  8640. characterMakers.push(() => makeCharacter(
  8641. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8642. {
  8643. front: {
  8644. height: math.unit(8, "feet"),
  8645. weight: math.unit(315, "lb"),
  8646. name: "Front",
  8647. image: {
  8648. source: "./media/characters/gunner-rotthbauer/front.svg"
  8649. }
  8650. },
  8651. back: {
  8652. height: math.unit(8, "feet"),
  8653. weight: math.unit(315, "lb"),
  8654. name: "Back",
  8655. image: {
  8656. source: "./media/characters/gunner-rotthbauer/back.svg"
  8657. }
  8658. },
  8659. },
  8660. [
  8661. {
  8662. name: "Micro",
  8663. height: math.unit(3.5, "inches")
  8664. },
  8665. {
  8666. name: "Normal",
  8667. height: math.unit(8, "feet"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Macro",
  8672. height: math.unit(250, "feet")
  8673. },
  8674. {
  8675. name: "Megamacro",
  8676. height: math.unit(1, "AU")
  8677. },
  8678. ]
  8679. ))
  8680. characterMakers.push(() => makeCharacter(
  8681. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8682. {
  8683. front: {
  8684. height: math.unit(5 + 5 / 12, "feet"),
  8685. weight: math.unit(140, "lb"),
  8686. name: "Front",
  8687. image: {
  8688. source: "./media/characters/allatia/front.svg",
  8689. extra: 1227 / 1180,
  8690. bottom: 0.027
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Normal",
  8697. height: math.unit(5 + 5 / 12, "feet")
  8698. },
  8699. {
  8700. name: "Macro",
  8701. height: math.unit(250, "feet"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Megamacro",
  8706. height: math.unit(8, "miles")
  8707. }
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(120, "lb"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/tene/front.svg",
  8719. extra: 1728 / 1578,
  8720. bottom: 0.022
  8721. }
  8722. },
  8723. stomping: {
  8724. height: math.unit(2.025, "meters"),
  8725. weight: math.unit(120, "lb"),
  8726. name: "Stomping",
  8727. image: {
  8728. source: "./media/characters/tene/stomping.svg",
  8729. extra: 938 / 873,
  8730. bottom: 0.01
  8731. }
  8732. },
  8733. sitting: {
  8734. height: math.unit(1, "meter"),
  8735. weight: math.unit(120, "lb"),
  8736. name: "Sitting",
  8737. image: {
  8738. source: "./media/characters/tene/sitting.svg",
  8739. extra: 437 / 415,
  8740. bottom: 0.1
  8741. }
  8742. },
  8743. feral: {
  8744. height: math.unit(3.9, "feet"),
  8745. weight: math.unit(250, "lb"),
  8746. name: "Feral",
  8747. image: {
  8748. source: "./media/characters/tene/feral.svg",
  8749. extra: 717 / 458,
  8750. bottom: 0.179
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(6, "feet")
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(300, "feet"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "Megamacro",
  8766. height: math.unit(5, "miles")
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8772. {
  8773. side: {
  8774. height: math.unit(6, "feet"),
  8775. name: "Side",
  8776. image: {
  8777. source: "./media/characters/evander/side.svg",
  8778. extra: 877 / 477
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(0.83, "meters"),
  8786. default: true
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(12, "feet"),
  8795. weight: math.unit(1000, "lb"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8799. extra: 1762 / 1611
  8800. }
  8801. },
  8802. back: {
  8803. height: math.unit(12, "feet"),
  8804. weight: math.unit(1000, "lb"),
  8805. name: "Back",
  8806. image: {
  8807. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8808. extra: 1762 / 1611
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Normal",
  8815. height: math.unit(12, "feet"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Kaiju",
  8820. height: math.unit(150, "feet")
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(6, "feet"),
  8829. weight: math.unit(150, "lb"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/zero-alurus/front.svg"
  8833. }
  8834. },
  8835. back: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(150, "lb"),
  8838. name: "Back",
  8839. image: {
  8840. source: "./media/characters/zero-alurus/back.svg"
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(5 + 10 / 12, "feet")
  8848. },
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(60, "feet"),
  8852. default: true
  8853. },
  8854. {
  8855. name: "Macro+",
  8856. height: math.unit(450, "feet")
  8857. },
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8862. {
  8863. front: {
  8864. height: math.unit(6, "feet"),
  8865. weight: math.unit(200, "lb"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/mega-shi/front.svg",
  8869. extra: 1279 / 1250,
  8870. bottom: 0.02
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(6, "feet"),
  8875. weight: math.unit(200, "lb"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/mega-shi/back.svg",
  8879. extra: 1279 / 1250,
  8880. bottom: 0.02
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Micro",
  8887. height: math.unit(16 + 6 / 12, "feet")
  8888. },
  8889. {
  8890. name: "Third Dimension",
  8891. height: math.unit(40, "meters")
  8892. },
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(660, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(10, "miles")
  8901. },
  8902. {
  8903. name: "Planetary Launch",
  8904. height: math.unit(500, "miles")
  8905. },
  8906. {
  8907. name: "Interstellar",
  8908. height: math.unit(1e9, "miles")
  8909. },
  8910. {
  8911. name: "Leaving the Universe",
  8912. height: math.unit(1, "gigaparsec")
  8913. },
  8914. {
  8915. name: "Travelling Universes",
  8916. height: math.unit(30e15, "parsecs")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(150, "lb"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/odyssey/front.svg",
  8929. extra: 1782 / 1582,
  8930. bottom: 0.01
  8931. }
  8932. },
  8933. side: {
  8934. height: math.unit(5.7, "feet"),
  8935. weight: math.unit(140, "lb"),
  8936. name: "Side",
  8937. image: {
  8938. source: "./media/characters/odyssey/side.svg",
  8939. extra: 6462 / 5700
  8940. }
  8941. },
  8942. },
  8943. [
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(5 + 4 / 12, "feet")
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(1, "km")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(3000, "km")
  8955. },
  8956. {
  8957. name: "Gigamacro",
  8958. height: math.unit(1, "AU"),
  8959. default: true
  8960. },
  8961. {
  8962. name: "Omniversal",
  8963. height: math.unit(100e14, "lightyears")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(6, "feet"),
  8972. weight: math.unit(300, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/mekuto/front.svg",
  8976. extra: 921 / 832,
  8977. bottom: 0.03
  8978. }
  8979. },
  8980. hand: {
  8981. height: math.unit(6 / 10.24, "feet"),
  8982. name: "Hand",
  8983. image: {
  8984. source: "./media/characters/mekuto/hand.svg"
  8985. }
  8986. },
  8987. foot: {
  8988. height: math.unit(6 / 5.05, "feet"),
  8989. name: "Foot",
  8990. image: {
  8991. source: "./media/characters/mekuto/foot.svg"
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Minimicro",
  8998. height: math.unit(0.2, "inches")
  8999. },
  9000. {
  9001. name: "Micro",
  9002. height: math.unit(1.5, "inches")
  9003. },
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(5 + 11 / 12, "feet"),
  9007. default: true
  9008. },
  9009. {
  9010. name: "Minimacro",
  9011. height: math.unit(17 + 9 / 12, "feet")
  9012. },
  9013. {
  9014. name: "Macro",
  9015. height: math.unit(177.5, "feet")
  9016. },
  9017. {
  9018. name: "Megamacro",
  9019. height: math.unit(152, "miles")
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(6.5, "inches"),
  9028. weight: math.unit(13, "oz"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/dafydd-tomos/front.svg",
  9032. extra: 2990 / 2603,
  9033. bottom: 0.03
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Micro",
  9040. height: math.unit(6.5, "inches"),
  9041. default: true
  9042. },
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(150, "lb"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/splinter/front.svg",
  9054. extra: 2990 / 2882,
  9055. bottom: 0.04
  9056. }
  9057. },
  9058. back: {
  9059. height: math.unit(6, "feet"),
  9060. weight: math.unit(150, "lb"),
  9061. name: "Back",
  9062. image: {
  9063. source: "./media/characters/splinter/back.svg",
  9064. extra: 2990 / 2882,
  9065. bottom: 0.04
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(6, "feet")
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(230, "meters"),
  9077. default: true
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(4 + 10 / 12, "feet"),
  9086. weight: math.unit(480, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/snow-gabumon/front.svg",
  9090. extra: 1140 / 963,
  9091. bottom: 0.058
  9092. }
  9093. },
  9094. back: {
  9095. height: math.unit(4 + 10 / 12, "feet"),
  9096. weight: math.unit(480, "lb"),
  9097. name: "Back",
  9098. image: {
  9099. source: "./media/characters/snow-gabumon/back.svg",
  9100. extra: 1115 / 962,
  9101. bottom: 0.041
  9102. }
  9103. },
  9104. frontUndresed: {
  9105. height: math.unit(4 + 10 / 12, "feet"),
  9106. weight: math.unit(480, "lb"),
  9107. name: "Front (Undressed)",
  9108. image: {
  9109. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9110. extra: 1061 / 960,
  9111. bottom: 0.045
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Micro",
  9118. height: math.unit(1, "inch")
  9119. },
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(4 + 10 / 12, "feet"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Macro",
  9127. height: math.unit(200, "feet")
  9128. },
  9129. {
  9130. name: "Megamacro",
  9131. height: math.unit(120, "miles")
  9132. },
  9133. {
  9134. name: "Gigamacro",
  9135. height: math.unit(9800, "miles")
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(1.7, "meters"),
  9144. weight: math.unit(140, "lb"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/moody/front.svg",
  9148. extra: 3226 / 3007,
  9149. bottom: 0.087
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(1, "mm")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(1.7, "meters"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Macro",
  9165. height: math.unit(80, "meters")
  9166. },
  9167. {
  9168. name: "Macro+",
  9169. height: math.unit(500, "meters")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(150, "lb"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/zyas/front.svg",
  9182. extra: 1180 / 1120,
  9183. bottom: 0.045
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(10, "feet"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "Macro",
  9195. height: math.unit(500, "feet")
  9196. },
  9197. {
  9198. name: "Megamacro",
  9199. height: math.unit(5, "miles")
  9200. },
  9201. {
  9202. name: "Teramacro",
  9203. height: math.unit(150000, "miles")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(150, "lb"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/cuon/front.svg",
  9216. extra: 1390 / 1320,
  9217. bottom: 0.008
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Micro",
  9224. height: math.unit(3, "inches")
  9225. },
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(18 + 9 / 12, "feet"),
  9229. default: true
  9230. },
  9231. {
  9232. name: "Macro",
  9233. height: math.unit(360, "feet")
  9234. },
  9235. {
  9236. name: "Megamacro",
  9237. height: math.unit(360, "miles")
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(2.4, "meters"),
  9246. weight: math.unit(70, "kg"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/nyanuxk/front.svg",
  9250. extra: 1172 / 1084,
  9251. bottom: 0.065
  9252. }
  9253. },
  9254. side: {
  9255. height: math.unit(2.4, "meters"),
  9256. weight: math.unit(70, "kg"),
  9257. name: "Side",
  9258. image: {
  9259. source: "./media/characters/nyanuxk/side.svg",
  9260. extra: 1190 / 1132,
  9261. bottom: 0.007
  9262. }
  9263. },
  9264. back: {
  9265. height: math.unit(2.4, "meters"),
  9266. weight: math.unit(70, "kg"),
  9267. name: "Back",
  9268. image: {
  9269. source: "./media/characters/nyanuxk/back.svg",
  9270. extra: 1200 / 1141,
  9271. bottom: 0.015
  9272. }
  9273. },
  9274. foot: {
  9275. height: math.unit(0.52, "meters"),
  9276. name: "Foot",
  9277. image: {
  9278. source: "./media/characters/nyanuxk/foot.svg"
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Micro",
  9285. height: math.unit(2, "cm")
  9286. },
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(2.4, "meters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Smaller Macro",
  9294. height: math.unit(120, "meters")
  9295. },
  9296. {
  9297. name: "Bigger Macro",
  9298. height: math.unit(1.2, "km")
  9299. },
  9300. {
  9301. name: "Megamacro",
  9302. height: math.unit(15, "kilometers")
  9303. },
  9304. {
  9305. name: "Gigamacro",
  9306. height: math.unit(2000, "km")
  9307. },
  9308. {
  9309. name: "Teramacro",
  9310. height: math.unit(500000, "km")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9316. {
  9317. side: {
  9318. height: math.unit(6, "feet"),
  9319. name: "Side",
  9320. image: {
  9321. source: "./media/characters/ailbhe/side.svg",
  9322. extra: 757 / 464,
  9323. bottom: 0.041
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Normal",
  9330. height: math.unit(1.07, "meters"),
  9331. default: true
  9332. },
  9333. ]
  9334. ))
  9335. characterMakers.push(() => makeCharacter(
  9336. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9337. {
  9338. front: {
  9339. height: math.unit(6, "feet"),
  9340. weight: math.unit(120, "kg"),
  9341. name: "Front",
  9342. image: {
  9343. source: "./media/characters/zevulfius/front.svg",
  9344. extra: 965 / 903
  9345. }
  9346. },
  9347. side: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(120, "kg"),
  9350. name: "Side",
  9351. image: {
  9352. source: "./media/characters/zevulfius/side.svg",
  9353. extra: 939 / 900
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(6, "feet"),
  9358. weight: math.unit(120, "kg"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/zevulfius/back.svg",
  9362. extra: 918 / 854,
  9363. bottom: 0.005
  9364. }
  9365. },
  9366. foot: {
  9367. height: math.unit(6 / 3.72, "feet"),
  9368. name: "Foot",
  9369. image: {
  9370. source: "./media/characters/zevulfius/foot.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Macro",
  9377. height: math.unit(750, "meters")
  9378. },
  9379. {
  9380. name: "Megamacro",
  9381. height: math.unit(20, "km"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Gigamacro",
  9386. height: math.unit(2000, "km")
  9387. },
  9388. {
  9389. name: "Teramacro",
  9390. height: math.unit(250000, "km")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(100, "feet"),
  9399. weight: math.unit(350, "kg"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/rikes/front.svg",
  9403. extra: 1565 / 1483,
  9404. bottom: 0.017
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(100, "feet"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9418. {
  9419. anthro: {
  9420. height: math.unit(8, "feet"),
  9421. weight: math.unit(120, "kg"),
  9422. name: "Anthro",
  9423. image: {
  9424. source: "./media/characters/adam-silver-mane/anthro.svg",
  9425. extra: 5743 / 5339,
  9426. bottom: 0.07
  9427. }
  9428. },
  9429. taur: {
  9430. height: math.unit(16, "feet"),
  9431. weight: math.unit(1500, "kg"),
  9432. name: "Taur",
  9433. image: {
  9434. source: "./media/characters/adam-silver-mane/taur.svg",
  9435. extra: 1713 / 1571,
  9436. bottom: 0.01
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(8, "feet")
  9444. },
  9445. {
  9446. name: "Minimacro",
  9447. height: math.unit(80, "feet")
  9448. },
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(800, "feet"),
  9452. default: true
  9453. },
  9454. {
  9455. name: "Megamacro",
  9456. height: math.unit(8000, "feet")
  9457. },
  9458. {
  9459. name: "Gigamacro",
  9460. height: math.unit(800, "miles")
  9461. },
  9462. {
  9463. name: "Teramacro",
  9464. height: math.unit(80000, "miles")
  9465. },
  9466. {
  9467. name: "Celestial",
  9468. height: math.unit(8e6, "miles")
  9469. },
  9470. {
  9471. name: "Star Dragon",
  9472. height: math.unit(800000, "parsecs")
  9473. },
  9474. {
  9475. name: "Godly",
  9476. height: math.unit(800, "teraparsecs")
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9482. {
  9483. front: {
  9484. height: math.unit(6, "feet"),
  9485. weight: math.unit(150, "lb"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/ky'owin/front.svg",
  9489. extra: 3888 / 3068,
  9490. bottom: 0.015
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(6 + 8 / 12, "feet")
  9498. },
  9499. {
  9500. name: "Large",
  9501. height: math.unit(68, "feet")
  9502. },
  9503. {
  9504. name: "Macro",
  9505. height: math.unit(132, "feet")
  9506. },
  9507. {
  9508. name: "Macro+",
  9509. height: math.unit(340, "feet")
  9510. },
  9511. {
  9512. name: "Macro++",
  9513. height: math.unit(680, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Megamacro",
  9518. height: math.unit(1, "mile")
  9519. },
  9520. {
  9521. name: "Megamacro+",
  9522. height: math.unit(10, "miles")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(4, "feet"),
  9531. weight: math.unit(50, "lb"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/mal/front.svg",
  9535. extra: 785 / 724,
  9536. bottom: 0.07
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Micro",
  9543. height: math.unit(4, "inches")
  9544. },
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(4, "feet"),
  9548. default: true
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(200, "feet")
  9553. },
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9558. {
  9559. front: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(150, "lb"),
  9562. name: "Front",
  9563. image: {
  9564. source: "./media/characters/jordan-deware/front.svg",
  9565. extra: 1191 / 1012
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Nano",
  9572. height: math.unit(0.01, "mm")
  9573. },
  9574. {
  9575. name: "Minimicro",
  9576. height: math.unit(1, "mm")
  9577. },
  9578. {
  9579. name: "Micro",
  9580. height: math.unit(0.5, "inches")
  9581. },
  9582. {
  9583. name: "Normal",
  9584. height: math.unit(4, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Minimacro",
  9589. height: math.unit(40, "meters")
  9590. },
  9591. {
  9592. name: "Small Macro",
  9593. height: math.unit(400, "meters")
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(4, "miles")
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(40, "miles")
  9602. },
  9603. {
  9604. name: "Megamacro+",
  9605. height: math.unit(400, "miles")
  9606. },
  9607. {
  9608. name: "Gigamacro",
  9609. height: math.unit(400000, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9615. {
  9616. side: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(150, "lb"),
  9619. name: "Side",
  9620. image: {
  9621. source: "./media/characters/kimiko/side.svg",
  9622. extra: 600 / 358
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(15, "feet"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(220, "feet")
  9635. },
  9636. {
  9637. name: "Macro+",
  9638. height: math.unit(1450, "feet")
  9639. },
  9640. {
  9641. name: "Megamacro",
  9642. height: math.unit(11500, "feet")
  9643. },
  9644. {
  9645. name: "Gigamacro",
  9646. height: math.unit(9500, "miles")
  9647. },
  9648. {
  9649. name: "Teramacro",
  9650. height: math.unit(2208005005, "miles")
  9651. },
  9652. {
  9653. name: "Examacro",
  9654. height: math.unit(2750, "parsecs")
  9655. },
  9656. {
  9657. name: "Zettamacro",
  9658. height: math.unit(101500, "parsecs")
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9664. {
  9665. front: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(70, "kg"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/andrew-sleepy/front.svg"
  9671. }
  9672. },
  9673. side: {
  9674. height: math.unit(6, "feet"),
  9675. weight: math.unit(70, "kg"),
  9676. name: "Side",
  9677. image: {
  9678. source: "./media/characters/andrew-sleepy/side.svg"
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Micro",
  9685. height: math.unit(1, "mm"),
  9686. default: true
  9687. },
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9692. {
  9693. front: {
  9694. height: math.unit(6, "feet"),
  9695. weight: math.unit(150, "lb"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/judio/front.svg",
  9699. extra: 1258 / 1110
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(5 + 6 / 12, "feet")
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(1000, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Megamacro",
  9715. height: math.unit(10, "miles")
  9716. },
  9717. ]
  9718. ))
  9719. characterMakers.push(() => makeCharacter(
  9720. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9721. {
  9722. front: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(68, "kg"),
  9725. name: "Front",
  9726. image: {
  9727. source: "./media/characters/nomaxice/front.svg",
  9728. extra: 1498 / 1073,
  9729. bottom: 0.075
  9730. }
  9731. },
  9732. foot: {
  9733. height: math.unit(1.1, "feet"),
  9734. name: "Foot",
  9735. image: {
  9736. source: "./media/characters/nomaxice/foot.svg"
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Micro",
  9743. height: math.unit(8, "cm")
  9744. },
  9745. {
  9746. name: "Norm",
  9747. height: math.unit(1.82, "m")
  9748. },
  9749. {
  9750. name: "Norm+",
  9751. height: math.unit(8.8, "feet")
  9752. },
  9753. {
  9754. name: "Big",
  9755. height: math.unit(8, "meters"),
  9756. default: true
  9757. },
  9758. {
  9759. name: "Macro",
  9760. height: math.unit(18, "meters")
  9761. },
  9762. {
  9763. name: "Macro+",
  9764. height: math.unit(88, "meters")
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(12, "feet"),
  9773. weight: math.unit(1.5, "tons"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/dydros/front.svg",
  9777. extra: 863 / 800,
  9778. bottom: 0.015
  9779. }
  9780. },
  9781. back: {
  9782. height: math.unit(12, "feet"),
  9783. weight: math.unit(1.5, "tons"),
  9784. name: "Back",
  9785. image: {
  9786. source: "./media/characters/dydros/back.svg",
  9787. extra: 900 / 843,
  9788. bottom: 0.005
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(12, "feet"),
  9796. default: true
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(6, "feet"),
  9805. weight: math.unit(100, "kg"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/riggi/front.svg",
  9809. extra: 5787 / 5303
  9810. }
  9811. },
  9812. hyper: {
  9813. height: math.unit(6 * 5 / 3, "feet"),
  9814. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9815. name: "Hyper",
  9816. image: {
  9817. source: "./media/characters/riggi/hyper.svg",
  9818. extra: 3595 / 3485
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Small Macro",
  9825. height: math.unit(50, "feet")
  9826. },
  9827. {
  9828. name: "Default",
  9829. height: math.unit(200, "feet"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Loom",
  9834. height: math.unit(10000, "feet")
  9835. },
  9836. {
  9837. name: "Cruising Altitude",
  9838. height: math.unit(30000, "feet")
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(100, "miles")
  9843. },
  9844. {
  9845. name: "Continent Sized",
  9846. height: math.unit(2800, "miles")
  9847. },
  9848. {
  9849. name: "Earth Sized",
  9850. height: math.unit(8000, "miles")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(250, "lb"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/alexi/front.svg",
  9863. extra: 3483 / 3291,
  9864. bottom: 0.04
  9865. }
  9866. },
  9867. back: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(250, "lb"),
  9870. name: "Back",
  9871. image: {
  9872. source: "./media/characters/alexi/back.svg",
  9873. extra: 3533 / 3356,
  9874. bottom: 0.021
  9875. }
  9876. },
  9877. frontTransforming: {
  9878. height: math.unit(8.58, "feet"),
  9879. weight: math.unit(1300, "lb"),
  9880. name: "Transforming",
  9881. image: {
  9882. source: "./media/characters/alexi/front-transforming.svg",
  9883. extra: 437 / 409,
  9884. bottom: 19 / 458.66
  9885. }
  9886. },
  9887. frontTransformed: {
  9888. height: math.unit(12.5, "feet"),
  9889. weight: math.unit(4000, "lb"),
  9890. name: "Transformed",
  9891. image: {
  9892. source: "./media/characters/alexi/front-transformed.svg",
  9893. extra: 639 / 614,
  9894. bottom: 30.55 / 671
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(3, "meters"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Minimacro",
  9906. height: math.unit(30, "meters")
  9907. },
  9908. {
  9909. name: "Macro",
  9910. height: math.unit(500, "meters")
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(9000, "km")
  9915. },
  9916. {
  9917. name: "Teramacro",
  9918. height: math.unit(384000, "km")
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(150, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/kayroo/front.svg",
  9931. extra: 1153 / 1038,
  9932. bottom: 0.06
  9933. }
  9934. },
  9935. foot: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(150, "lb"),
  9938. name: "Foot",
  9939. image: {
  9940. source: "./media/characters/kayroo/foot.svg"
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(8, "feet"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Minimacro",
  9952. height: math.unit(250, "feet")
  9953. },
  9954. {
  9955. name: "Macro",
  9956. height: math.unit(2800, "feet")
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(5200, "feet")
  9961. },
  9962. {
  9963. name: "Gigamacro",
  9964. height: math.unit(27000, "feet")
  9965. },
  9966. {
  9967. name: "Omega",
  9968. height: math.unit(45000, "feet")
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9974. {
  9975. front: {
  9976. height: math.unit(18, "feet"),
  9977. weight: math.unit(5800, "lb"),
  9978. name: "Front",
  9979. image: {
  9980. source: "./media/characters/rhys/front.svg",
  9981. extra: 3386 / 3090,
  9982. bottom: 0.07
  9983. }
  9984. },
  9985. },
  9986. [
  9987. {
  9988. name: "Normal",
  9989. height: math.unit(18, "feet"),
  9990. default: true
  9991. },
  9992. {
  9993. name: "Working Size",
  9994. height: math.unit(200, "feet")
  9995. },
  9996. {
  9997. name: "Demolition Size",
  9998. height: math.unit(2000, "feet")
  9999. },
  10000. {
  10001. name: "Maximum Licensed Size",
  10002. height: math.unit(5, "miles")
  10003. },
  10004. {
  10005. name: "Maximum Observed Size",
  10006. height: math.unit(10, "yottameters")
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10012. {
  10013. front: {
  10014. height: math.unit(6, "feet"),
  10015. weight: math.unit(250, "lb"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/toto/front.svg",
  10019. extra: 527 / 479,
  10020. bottom: 0.05
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Micro",
  10027. height: math.unit(3, "feet")
  10028. },
  10029. {
  10030. name: "Normal",
  10031. height: math.unit(10, "feet")
  10032. },
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(150, "feet"),
  10036. default: true
  10037. },
  10038. {
  10039. name: "Megamacro",
  10040. height: math.unit(1200, "feet")
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "King", species: ["lion"], tags: ["anthro"] },
  10046. {
  10047. back: {
  10048. height: math.unit(6, "feet"),
  10049. weight: math.unit(150, "lb"),
  10050. name: "Back",
  10051. image: {
  10052. source: "./media/characters/king/back.svg"
  10053. }
  10054. },
  10055. },
  10056. [
  10057. {
  10058. name: "Micro",
  10059. height: math.unit(2, "inches")
  10060. },
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(8, "feet")
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(200, "feet"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Megamacro",
  10072. height: math.unit(50, "miles")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10078. {
  10079. anthro: {
  10080. height: math.unit(6 + 5 / 12, "feet"),
  10081. weight: math.unit(280, "lb"),
  10082. name: "Anthro",
  10083. image: {
  10084. source: "./media/characters/cordite/anthro.svg",
  10085. extra: 1986 / 1905,
  10086. bottom: 0.025
  10087. }
  10088. },
  10089. feral: {
  10090. height: math.unit(2, "feet"),
  10091. weight: math.unit(90, "lb"),
  10092. name: "Feral",
  10093. image: {
  10094. source: "./media/characters/cordite/feral.svg",
  10095. extra: 1260 / 755,
  10096. bottom: 0.05
  10097. }
  10098. },
  10099. },
  10100. [
  10101. {
  10102. name: "Normal",
  10103. height: math.unit(6 + 5 / 12, "feet"),
  10104. default: true
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(6, "feet"),
  10113. weight: math.unit(150, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/pianostrong/front.svg",
  10117. extra: 6577 / 6254,
  10118. bottom: 0.02
  10119. }
  10120. },
  10121. side: {
  10122. height: math.unit(6, "feet"),
  10123. weight: math.unit(150, "lb"),
  10124. name: "Side",
  10125. image: {
  10126. source: "./media/characters/pianostrong/side.svg",
  10127. extra: 6106 / 5730
  10128. }
  10129. },
  10130. back: {
  10131. height: math.unit(6, "feet"),
  10132. weight: math.unit(150, "lb"),
  10133. name: "Back",
  10134. image: {
  10135. source: "./media/characters/pianostrong/back.svg",
  10136. extra: 6085 / 5733,
  10137. bottom: 0.01
  10138. }
  10139. },
  10140. },
  10141. [
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(100, "feet")
  10145. },
  10146. {
  10147. name: "Macro+",
  10148. height: math.unit(300, "feet"),
  10149. default: true
  10150. },
  10151. {
  10152. name: "Macro++",
  10153. height: math.unit(1000, "feet")
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10159. {
  10160. front: {
  10161. height: math.unit(6, "feet"),
  10162. weight: math.unit(150, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/kona/front.svg",
  10166. extra: 2960 / 2629,
  10167. bottom: 0.005
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Normal",
  10174. height: math.unit(11 + 8 / 12, "feet")
  10175. },
  10176. {
  10177. name: "Macro",
  10178. height: math.unit(850, "feet"),
  10179. default: true
  10180. },
  10181. {
  10182. name: "Macro+",
  10183. height: math.unit(1.5, "km"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(80, "miles")
  10189. },
  10190. {
  10191. name: "Gigamacro",
  10192. height: math.unit(3500, "miles")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10198. {
  10199. side: {
  10200. height: math.unit(1.9, "meters"),
  10201. weight: math.unit(326, "kg"),
  10202. name: "Side",
  10203. image: {
  10204. source: "./media/characters/levi/side.svg",
  10205. extra: 1704 / 1334,
  10206. bottom: 0.02
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(1.9, "meters"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Macro",
  10218. height: math.unit(20, "meters")
  10219. },
  10220. {
  10221. name: "Macro+",
  10222. height: math.unit(200, "meters")
  10223. },
  10224. {
  10225. name: "Megamacro",
  10226. height: math.unit(2, "km")
  10227. },
  10228. {
  10229. name: "Megamacro+",
  10230. height: math.unit(20, "km")
  10231. },
  10232. {
  10233. name: "Gigamacro",
  10234. height: math.unit(2500, "km")
  10235. },
  10236. {
  10237. name: "Gigamacro+",
  10238. height: math.unit(120000, "km")
  10239. },
  10240. {
  10241. name: "Teramacro",
  10242. height: math.unit(7.77e6, "km")
  10243. },
  10244. ]
  10245. ))
  10246. characterMakers.push(() => makeCharacter(
  10247. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10248. {
  10249. front: {
  10250. height: math.unit(6 + 4 / 12, "feet"),
  10251. weight: math.unit(188, "lb"),
  10252. name: "Front",
  10253. image: {
  10254. source: "./media/characters/bmc/front.svg",
  10255. extra: 1067 / 1022,
  10256. bottom: 0.047
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Human-sized",
  10263. height: math.unit(6 + 4 / 12, "feet")
  10264. },
  10265. {
  10266. name: "Small",
  10267. height: math.unit(250, "feet")
  10268. },
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(1250, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Good Day",
  10276. height: math.unit(88, "miles")
  10277. },
  10278. {
  10279. name: "Largest Measured Size",
  10280. height: math.unit(11.2e6, "lightyears")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(20, "feet"),
  10289. weight: math.unit(2016, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/sven-the-kaiju/front.svg",
  10293. extra: 1479 / 1449,
  10294. bottom: 0.05
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Fairy",
  10301. height: math.unit(6, "inches")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(20, "feet"),
  10306. default: true
  10307. },
  10308. {
  10309. name: "Rampage",
  10310. height: math.unit(200, "feet")
  10311. },
  10312. {
  10313. name: "Archfey Forest Guardian",
  10314. height: math.unit(1, "mile")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(4, "meters"),
  10323. weight: math.unit(2, "tons"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/marik/front.svg",
  10327. extra: 1057 / 1003,
  10328. bottom: 0.08
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(4, "meters"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Macro",
  10340. height: math.unit(20, "meters")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(50, "km")
  10345. },
  10346. {
  10347. name: "Gigamacro",
  10348. height: math.unit(100, "km")
  10349. },
  10350. {
  10351. name: "Alpha Macro",
  10352. height: math.unit(7.88e7, "yottameters")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10358. {
  10359. front: {
  10360. height: math.unit(6, "feet"),
  10361. weight: math.unit(110, "lb"),
  10362. name: "Front",
  10363. image: {
  10364. source: "./media/characters/mel/front.svg",
  10365. extra: 736 / 617,
  10366. bottom: 0.017
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Pico",
  10373. height: math.unit(3, "pm")
  10374. },
  10375. {
  10376. name: "Nano",
  10377. height: math.unit(3, "nm")
  10378. },
  10379. {
  10380. name: "Micro",
  10381. height: math.unit(0.3, "mm"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Micro+",
  10386. height: math.unit(3, "mm")
  10387. },
  10388. {
  10389. name: "Normal",
  10390. height: math.unit(5 + 10.5 / 12, "feet")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10396. {
  10397. kaiju: {
  10398. height: math.unit(1.75, "meters"),
  10399. weight: math.unit(55, "kg"),
  10400. name: "Kaiju",
  10401. image: {
  10402. source: "./media/characters/lykonous/kaiju.svg",
  10403. extra: 1055 / 946,
  10404. bottom: 0.135
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(2.5, "meters"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Kaiju Dragon",
  10416. height: math.unit(60, "meters")
  10417. },
  10418. {
  10419. name: "Mega Kaiju",
  10420. height: math.unit(120, "km")
  10421. },
  10422. {
  10423. name: "Giga Kaiju",
  10424. height: math.unit(200, "megameters")
  10425. },
  10426. {
  10427. name: "Terra Kaiju",
  10428. height: math.unit(400, "gigameters")
  10429. },
  10430. {
  10431. name: "Kaiju Dragon God",
  10432. height: math.unit(13000, "exaparsecs")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(150, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/blü/front.svg",
  10445. extra: 1883 / 1564,
  10446. bottom: 0.031
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(13, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Big Boi",
  10458. height: math.unit(150, "meters")
  10459. },
  10460. {
  10461. name: "Mini Stomper",
  10462. height: math.unit(300, "meters")
  10463. },
  10464. {
  10465. name: "Macro",
  10466. height: math.unit(1000, "meters")
  10467. },
  10468. {
  10469. name: "Megamacro",
  10470. height: math.unit(11000, "meters")
  10471. },
  10472. {
  10473. name: "Gigamacro",
  10474. height: math.unit(11000, "km")
  10475. },
  10476. {
  10477. name: "Teramacro",
  10478. height: math.unit(420000, "km")
  10479. },
  10480. {
  10481. name: "Examacro",
  10482. height: math.unit(120, "parsecs")
  10483. },
  10484. {
  10485. name: "God Tho",
  10486. height: math.unit(98000000000, "parsecs")
  10487. },
  10488. ]
  10489. ))
  10490. characterMakers.push(() => makeCharacter(
  10491. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10492. {
  10493. taurFront: {
  10494. height: math.unit(6, "feet"),
  10495. weight: math.unit(200, "lb"),
  10496. name: "Taur (Front)",
  10497. image: {
  10498. source: "./media/characters/scales/taur-front.svg",
  10499. extra: 1,
  10500. bottom: 0.05
  10501. }
  10502. },
  10503. taurBack: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(200, "lb"),
  10506. name: "Taur (Back)",
  10507. image: {
  10508. source: "./media/characters/scales/taur-back.svg",
  10509. extra: 1,
  10510. bottom: 0.08
  10511. }
  10512. },
  10513. anthro: {
  10514. height: math.unit(6 * 7 / 12, "feet"),
  10515. weight: math.unit(100, "lb"),
  10516. name: "Anthro",
  10517. image: {
  10518. source: "./media/characters/scales/anthro.svg",
  10519. extra: 1,
  10520. bottom: 0.06
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(12, "feet"),
  10528. default: true
  10529. },
  10530. ]
  10531. ))
  10532. characterMakers.push(() => makeCharacter(
  10533. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10534. {
  10535. front: {
  10536. height: math.unit(6, "feet"),
  10537. weight: math.unit(150, "lb"),
  10538. name: "Front",
  10539. image: {
  10540. source: "./media/characters/koragos/front.svg",
  10541. extra: 841 / 794,
  10542. bottom: 0.035
  10543. }
  10544. },
  10545. back: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(150, "lb"),
  10548. name: "Back",
  10549. image: {
  10550. source: "./media/characters/koragos/back.svg",
  10551. extra: 841 / 810,
  10552. bottom: 0.022
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(6 + 11 / 12, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Macro",
  10564. height: math.unit(490, "feet")
  10565. },
  10566. {
  10567. name: "Megamacro",
  10568. height: math.unit(10, "miles")
  10569. },
  10570. {
  10571. name: "Gigamacro",
  10572. height: math.unit(50, "miles")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(6, "feet"),
  10581. weight: math.unit(250, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/xylrem/front.svg",
  10585. extra: 3323 / 3050,
  10586. bottom: 0.065
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Micro",
  10593. height: math.unit(4, "feet")
  10594. },
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(16, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(2720, "feet")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(25000, "miles")
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(8, "feet"),
  10615. weight: math.unit(250, "kg"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/ikideru/front.svg",
  10619. extra: 930 / 870,
  10620. bottom: 0.087
  10621. }
  10622. },
  10623. back: {
  10624. height: math.unit(8, "feet"),
  10625. weight: math.unit(250, "kg"),
  10626. name: "Back",
  10627. image: {
  10628. source: "./media/characters/ikideru/back.svg",
  10629. extra: 919 / 852,
  10630. bottom: 0.055
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Rare",
  10637. height: math.unit(8, "feet"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Playful Loom",
  10642. height: math.unit(80, "feet")
  10643. },
  10644. {
  10645. name: "City Leaner",
  10646. height: math.unit(230, "feet")
  10647. },
  10648. {
  10649. name: "Megamacro",
  10650. height: math.unit(2500, "feet")
  10651. },
  10652. {
  10653. name: "Gigamacro",
  10654. height: math.unit(26400, "feet")
  10655. },
  10656. {
  10657. name: "Tectonic Shifter",
  10658. height: math.unit(1.7, "megameters")
  10659. },
  10660. {
  10661. name: "Planet Carer",
  10662. height: math.unit(21, "megameters")
  10663. },
  10664. {
  10665. name: "God",
  10666. height: math.unit(11157.22, "parsecs")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10672. {
  10673. front: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(120, "lb"),
  10676. name: "Front",
  10677. image: {
  10678. source: "./media/characters/neo/front.svg"
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Micro",
  10685. height: math.unit(2, "inches"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Human Size",
  10690. height: math.unit(5 + 8 / 12, "feet")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(13 + 10 / 12, "feet"),
  10699. weight: math.unit(5320, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/chauncey-chantz/front.svg",
  10703. extra: 1587 / 1435,
  10704. bottom: 0.02
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(13 + 10 / 12, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Macro",
  10716. height: math.unit(45, "feet")
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(250, "miles")
  10721. },
  10722. {
  10723. name: "Planetary",
  10724. height: math.unit(10000, "miles")
  10725. },
  10726. {
  10727. name: "Galactic",
  10728. height: math.unit(40000, "parsecs")
  10729. },
  10730. {
  10731. name: "Universal",
  10732. height: math.unit(1, "yottameter")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10738. {
  10739. front: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(150, "lb"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/epifox/front.svg",
  10745. extra: 1,
  10746. bottom: 0.075
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Micro",
  10753. height: math.unit(6, "inches")
  10754. },
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(12, "feet"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Macro",
  10762. height: math.unit(3810, "feet")
  10763. },
  10764. {
  10765. name: "Megamacro",
  10766. height: math.unit(500, "miles")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(1.8796, "m"),
  10775. weight: math.unit(230, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/colin-t/front.svg",
  10779. extra: 1272 / 1193,
  10780. bottom: 0.07
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Micro",
  10787. height: math.unit(0.571, "meters")
  10788. },
  10789. {
  10790. name: "Normal",
  10791. height: math.unit(1.8796, "meters"),
  10792. default: true
  10793. },
  10794. {
  10795. name: "Tall",
  10796. height: math.unit(4, "meters")
  10797. },
  10798. {
  10799. name: "Macro",
  10800. height: math.unit(67.241, "meters")
  10801. },
  10802. {
  10803. name: "Megamacro",
  10804. height: math.unit(371.856, "meters")
  10805. },
  10806. {
  10807. name: "Planetary",
  10808. height: math.unit(12631.5689, "km")
  10809. },
  10810. ]
  10811. ))
  10812. characterMakers.push(() => makeCharacter(
  10813. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10814. {
  10815. front: {
  10816. height: math.unit(1.85, "meters"),
  10817. weight: math.unit(80, "kg"),
  10818. name: "Front",
  10819. image: {
  10820. source: "./media/characters/matvei/front.svg",
  10821. extra: 614 / 594,
  10822. bottom: 0.01
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(1.85, "meters"),
  10830. default: true
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(5 + 9 / 12, "feet"),
  10839. weight: math.unit(70, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/quincy/front.svg",
  10843. extra: 3041 / 2751
  10844. }
  10845. },
  10846. back: {
  10847. height: math.unit(5 + 9 / 12, "feet"),
  10848. weight: math.unit(70, "lb"),
  10849. name: "Back",
  10850. image: {
  10851. source: "./media/characters/quincy/back.svg",
  10852. extra: 3041 / 2751
  10853. }
  10854. },
  10855. flying: {
  10856. height: math.unit(5 + 4 / 12, "feet"),
  10857. weight: math.unit(70, "lb"),
  10858. name: "Flying",
  10859. image: {
  10860. source: "./media/characters/quincy/flying.svg",
  10861. extra: 1044 / 930
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Micro",
  10868. height: math.unit(3, "cm")
  10869. },
  10870. {
  10871. name: "Normal",
  10872. height: math.unit(5 + 9 / 12, "feet")
  10873. },
  10874. {
  10875. name: "Macro",
  10876. height: math.unit(200, "meters"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "Megamacro",
  10881. height: math.unit(1000, "meters")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(4 + 7 / 12, "feet"),
  10890. weight: math.unit(150, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/vanrel/front.svg",
  10894. extra: 1,
  10895. bottom: 0.02
  10896. }
  10897. },
  10898. elemental: {
  10899. height: math.unit(3, "feet"),
  10900. weight: math.unit(150, "lb"),
  10901. name: "Elemental",
  10902. image: {
  10903. source: "./media/characters/vanrel/elemental.svg",
  10904. extra: 192.3 / 162.8,
  10905. bottom: 1.79 / 194.17
  10906. }
  10907. },
  10908. side: {
  10909. height: math.unit(4 + 7 / 12, "feet"),
  10910. weight: math.unit(150, "lb"),
  10911. name: "Side",
  10912. image: {
  10913. source: "./media/characters/vanrel/side.svg",
  10914. extra: 1,
  10915. bottom: 0.025
  10916. }
  10917. },
  10918. tome: {
  10919. height: math.unit(1.35, "feet"),
  10920. weight: math.unit(10, "lb"),
  10921. name: "Vanrel's Tome",
  10922. rename: true,
  10923. image: {
  10924. source: "./media/characters/vanrel/tome.svg"
  10925. }
  10926. },
  10927. beans: {
  10928. height: math.unit(0.89, "feet"),
  10929. name: "Beans",
  10930. image: {
  10931. source: "./media/characters/vanrel/beans.svg"
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(4 + 7 / 12, "feet"),
  10939. default: true
  10940. },
  10941. ]
  10942. ))
  10943. characterMakers.push(() => makeCharacter(
  10944. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10945. {
  10946. front: {
  10947. height: math.unit(7 + 5 / 12, "feet"),
  10948. weight: math.unit(150, "lb"),
  10949. name: "Front",
  10950. image: {
  10951. source: "./media/characters/kuiper-vanrel/front.svg",
  10952. extra: 1118 / 1068,
  10953. bottom: 0.09
  10954. }
  10955. },
  10956. foot: {
  10957. height: math.unit(0.55, "meters"),
  10958. name: "Foot",
  10959. image: {
  10960. source: "./media/characters/kuiper-vanrel/foot.svg",
  10961. }
  10962. },
  10963. battle: {
  10964. height: math.unit(6.824, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Battle",
  10967. image: {
  10968. source: "./media/characters/kuiper-vanrel/battle.svg",
  10969. extra: 1466 / 1327,
  10970. bottom: 29 / 1492.5
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(7 + 5 / 12, "feet"),
  10978. default: true
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(8 + 5 / 12, "feet"),
  10987. weight: math.unit(150, "lb"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/keset-vanrel/front.svg",
  10991. extra: 1150 / 1084,
  10992. bottom: 0.05
  10993. }
  10994. },
  10995. hand: {
  10996. height: math.unit(0.6, "meters"),
  10997. name: "Hand",
  10998. image: {
  10999. source: "./media/characters/keset-vanrel/hand.svg"
  11000. }
  11001. },
  11002. foot: {
  11003. height: math.unit(0.94978, "meters"),
  11004. name: "Foot",
  11005. image: {
  11006. source: "./media/characters/keset-vanrel/foot.svg"
  11007. }
  11008. },
  11009. battle: {
  11010. height: math.unit(7.408, "feet"),
  11011. weight: math.unit(150, "lb"),
  11012. name: "Battle",
  11013. image: {
  11014. source: "./media/characters/keset-vanrel/battle.svg",
  11015. extra: 1890 / 1386,
  11016. bottom: 73.28 / 1970
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(8 + 5 / 12, "feet"),
  11024. default: true
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11030. {
  11031. front: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(150, "lb"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/neos/front.svg",
  11037. extra: 1696 / 992,
  11038. bottom: 0.14
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Normal",
  11045. height: math.unit(54, "cm"),
  11046. default: true
  11047. },
  11048. {
  11049. name: "Macro",
  11050. height: math.unit(100, "m")
  11051. },
  11052. {
  11053. name: "Megamacro",
  11054. height: math.unit(10, "km")
  11055. },
  11056. {
  11057. name: "Megamacro+",
  11058. height: math.unit(100, "km")
  11059. },
  11060. {
  11061. name: "Gigamacro",
  11062. height: math.unit(100, "Mm")
  11063. },
  11064. {
  11065. name: "Teramacro",
  11066. height: math.unit(100, "Gm")
  11067. },
  11068. {
  11069. name: "Examacro",
  11070. height: math.unit(100, "Em")
  11071. },
  11072. {
  11073. name: "Godly",
  11074. height: math.unit(10000, "Ym")
  11075. },
  11076. {
  11077. name: "Beyond Godly",
  11078. height: math.unit(10000000, "Ym")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11084. {
  11085. feminine: {
  11086. height: math.unit(5, "feet"),
  11087. weight: math.unit(100, "lb"),
  11088. name: "Feminine",
  11089. image: {
  11090. source: "./media/characters/sammy-mouse/feminine.svg",
  11091. extra: 2526 / 2425,
  11092. bottom: 0.123
  11093. }
  11094. },
  11095. masculine: {
  11096. height: math.unit(5, "feet"),
  11097. weight: math.unit(100, "lb"),
  11098. name: "Masculine",
  11099. image: {
  11100. source: "./media/characters/sammy-mouse/masculine.svg",
  11101. extra: 2526 / 2425,
  11102. bottom: 0.123
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Micro",
  11109. height: math.unit(5, "inches")
  11110. },
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(5, "feet"),
  11114. default: true
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(60, "feet")
  11119. },
  11120. ]
  11121. ))
  11122. characterMakers.push(() => makeCharacter(
  11123. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11124. {
  11125. front: {
  11126. height: math.unit(4, "feet"),
  11127. weight: math.unit(50, "lb"),
  11128. name: "Front",
  11129. image: {
  11130. source: "./media/characters/kole/front.svg",
  11131. extra: 1423 / 1303,
  11132. bottom: 0.025
  11133. }
  11134. },
  11135. back: {
  11136. height: math.unit(4, "feet"),
  11137. weight: math.unit(50, "lb"),
  11138. name: "Back",
  11139. image: {
  11140. source: "./media/characters/kole/back.svg",
  11141. extra: 1426 / 1280,
  11142. bottom: 0.02
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(4, "feet"),
  11150. default: true
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(2 + 6 / 12, "feet"),
  11159. weight: math.unit(20, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/rufran/front.svg",
  11163. extra: 2041 / 1839,
  11164. bottom: 0.055
  11165. }
  11166. },
  11167. back: {
  11168. height: math.unit(2 + 6 / 12, "feet"),
  11169. weight: math.unit(20, "lb"),
  11170. name: "Back",
  11171. image: {
  11172. source: "./media/characters/rufran/back.svg",
  11173. extra: 2054 / 1839,
  11174. bottom: 0.01
  11175. }
  11176. },
  11177. hand: {
  11178. height: math.unit(0.2166, "meters"),
  11179. name: "Hand",
  11180. image: {
  11181. source: "./media/characters/rufran/hand.svg"
  11182. }
  11183. },
  11184. foot: {
  11185. height: math.unit(0.185, "meters"),
  11186. name: "Foot",
  11187. image: {
  11188. source: "./media/characters/rufran/foot.svg"
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Micro",
  11195. height: math.unit(1, "inch")
  11196. },
  11197. {
  11198. name: "Normal",
  11199. height: math.unit(2 + 6 / 12, "feet"),
  11200. default: true
  11201. },
  11202. {
  11203. name: "Big",
  11204. height: math.unit(60, "feet")
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(325, "feet")
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(0.3, "meters"),
  11217. weight: math.unit(3.5, "kg"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/chip/front.svg",
  11221. extra: 748 / 674
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Micro",
  11228. height: math.unit(1, "inch"),
  11229. default: true
  11230. },
  11231. ]
  11232. ))
  11233. characterMakers.push(() => makeCharacter(
  11234. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11235. {
  11236. side: {
  11237. height: math.unit(2.3, "meters"),
  11238. weight: math.unit(3500, "lb"),
  11239. name: "Side",
  11240. image: {
  11241. source: "./media/characters/torvid/side.svg",
  11242. extra: 1972 / 722,
  11243. bottom: 0.035
  11244. }
  11245. },
  11246. },
  11247. [
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(2.3, "meters"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(2, "meters"),
  11260. weight: math.unit(150.5, "kg"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/susan/front.svg",
  11264. extra: 693 / 635,
  11265. bottom: 0.05
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Megamacro",
  11272. height: math.unit(505, "miles"),
  11273. default: true
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(150, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/raindrops/front.svg",
  11286. extra: 2655 / 2461,
  11287. bottom: 0.02
  11288. }
  11289. },
  11290. back: {
  11291. height: math.unit(6, "feet"),
  11292. weight: math.unit(150, "lb"),
  11293. name: "Back",
  11294. image: {
  11295. source: "./media/characters/raindrops/back.svg",
  11296. extra: 2574 / 2400,
  11297. bottom: 0.03
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Micro",
  11304. height: math.unit(6, "inches")
  11305. },
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(6 + 2 / 12, "feet")
  11309. },
  11310. {
  11311. name: "Macro",
  11312. height: math.unit(131, "feet"),
  11313. default: true
  11314. },
  11315. {
  11316. name: "Megamacro",
  11317. height: math.unit(15, "miles")
  11318. },
  11319. {
  11320. name: "Gigamacro",
  11321. height: math.unit(4000, "miles")
  11322. },
  11323. {
  11324. name: "Teramacro",
  11325. height: math.unit(315000, "miles")
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(2.794, "meters"),
  11334. weight: math.unit(325, "kg"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/tezwa/front.svg",
  11338. extra: 2083 / 1906,
  11339. bottom: 0.031
  11340. }
  11341. },
  11342. foot: {
  11343. height: math.unit(0.687, "meters"),
  11344. name: "Foot",
  11345. image: {
  11346. source: "./media/characters/tezwa/foot.svg"
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(9 + 2 / 12, "feet"),
  11354. default: true
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11360. {
  11361. front: {
  11362. height: math.unit(58, "feet"),
  11363. weight: math.unit(89000, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/typhus/front.svg",
  11367. extra: 816 / 800,
  11368. bottom: 0.065
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Macro",
  11375. height: math.unit(58, "feet"),
  11376. default: true
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(12, "feet"),
  11385. weight: math.unit(6, "tonnes"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/lyra-von-wulf/front.svg",
  11389. extra: 1,
  11390. bottom: 0.10
  11391. }
  11392. },
  11393. frontMecha: {
  11394. height: math.unit(12, "feet"),
  11395. weight: math.unit(12, "tonnes"),
  11396. name: "Front (Mecha)",
  11397. image: {
  11398. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11399. extra: 1,
  11400. bottom: 0.042
  11401. }
  11402. },
  11403. maw: {
  11404. height: math.unit(2.2, "feet"),
  11405. name: "Maw",
  11406. image: {
  11407. source: "./media/characters/lyra-von-wulf/maw.svg"
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(12, "feet"),
  11415. default: true
  11416. },
  11417. {
  11418. name: "Classic",
  11419. height: math.unit(50, "feet")
  11420. },
  11421. {
  11422. name: "Macro",
  11423. height: math.unit(500, "feet")
  11424. },
  11425. {
  11426. name: "Megamacro",
  11427. height: math.unit(1, "mile")
  11428. },
  11429. {
  11430. name: "Gigamacro",
  11431. height: math.unit(400, "miles")
  11432. },
  11433. {
  11434. name: "Teramacro",
  11435. height: math.unit(22000, "miles")
  11436. },
  11437. {
  11438. name: "Solarmacro",
  11439. height: math.unit(8600000, "miles")
  11440. },
  11441. {
  11442. name: "Galactic",
  11443. height: math.unit(1057000, "lightyears")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(6 + 10 / 12, "feet"),
  11452. weight: math.unit(150, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/dixon/front.svg",
  11456. extra: 3361 / 3209,
  11457. bottom: 0.01
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Normal",
  11464. height: math.unit(6 + 10 / 12, "feet"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Big",
  11469. height: math.unit(12, "meters")
  11470. },
  11471. {
  11472. name: "Macro",
  11473. height: math.unit(500, "meters")
  11474. },
  11475. {
  11476. name: "Megamacro",
  11477. height: math.unit(2, "km")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11483. {
  11484. front: {
  11485. height: math.unit(185, "cm"),
  11486. weight: math.unit(68, "kg"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/kauko/front.svg",
  11490. extra: 1455 / 1421,
  11491. bottom: 0.03
  11492. }
  11493. },
  11494. back: {
  11495. height: math.unit(185, "cm"),
  11496. weight: math.unit(68, "kg"),
  11497. name: "Back",
  11498. image: {
  11499. source: "./media/characters/kauko/back.svg",
  11500. extra: 1455 / 1421,
  11501. bottom: 0.004
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(185, "cm"),
  11509. default: true
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(6, "feet"),
  11518. weight: math.unit(150, "kg"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/varg/front.svg",
  11522. extra: 1108 / 1018,
  11523. bottom: 0.0375
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(5, "meters")
  11531. },
  11532. {
  11533. name: "Macro",
  11534. height: math.unit(200, "meters")
  11535. },
  11536. {
  11537. name: "Megamacro",
  11538. height: math.unit(20, "kilometers")
  11539. },
  11540. {
  11541. name: "True Size",
  11542. height: math.unit(211, "km"),
  11543. default: true
  11544. },
  11545. {
  11546. name: "Gigamacro",
  11547. height: math.unit(1000, "km")
  11548. },
  11549. {
  11550. name: "Gigamacro+",
  11551. height: math.unit(8000, "km")
  11552. },
  11553. {
  11554. name: "Teramacro",
  11555. height: math.unit(1000000, "km")
  11556. },
  11557. ]
  11558. ))
  11559. characterMakers.push(() => makeCharacter(
  11560. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11561. {
  11562. front: {
  11563. height: math.unit(7 + 7 / 12, "feet"),
  11564. weight: math.unit(267, "lb"),
  11565. name: "Front",
  11566. image: {
  11567. source: "./media/characters/dayza/front.svg",
  11568. extra: 1262 / 1200,
  11569. bottom: 0.035
  11570. }
  11571. },
  11572. side: {
  11573. height: math.unit(7 + 7 / 12, "feet"),
  11574. weight: math.unit(267, "lb"),
  11575. name: "Side",
  11576. image: {
  11577. source: "./media/characters/dayza/side.svg",
  11578. extra: 1295 / 1245,
  11579. bottom: 0.05
  11580. }
  11581. },
  11582. back: {
  11583. height: math.unit(7 + 7 / 12, "feet"),
  11584. weight: math.unit(267, "lb"),
  11585. name: "Back",
  11586. image: {
  11587. source: "./media/characters/dayza/back.svg",
  11588. extra: 1241 / 1170
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(7 + 7 / 12, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(155, "feet")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6 + 5 / 12, "feet"),
  11609. weight: math.unit(160, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/xanthos/front.svg",
  11613. extra: 1,
  11614. bottom: 0.04
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(6 + 5 / 12, "feet"),
  11619. weight: math.unit(160, "lb"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/xanthos/back.svg",
  11623. extra: 1,
  11624. bottom: 0.03
  11625. }
  11626. },
  11627. hand: {
  11628. height: math.unit(0.928, "feet"),
  11629. name: "Hand",
  11630. image: {
  11631. source: "./media/characters/xanthos/hand.svg"
  11632. }
  11633. },
  11634. foot: {
  11635. height: math.unit(1.286, "feet"),
  11636. name: "Foot",
  11637. image: {
  11638. source: "./media/characters/xanthos/foot.svg"
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(6 + 5 / 12, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Normal+",
  11650. height: math.unit(6, "meters")
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(40, "feet")
  11655. },
  11656. {
  11657. name: "Macro+",
  11658. height: math.unit(200, "meters")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(20, "km")
  11663. },
  11664. {
  11665. name: "Megamacro+",
  11666. height: math.unit(100, "km")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6 + 3 / 12, "feet"),
  11675. weight: math.unit(215, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/grynn/front.svg",
  11679. extra: 4627 / 4209,
  11680. bottom: 0.047
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Micro",
  11687. height: math.unit(6, "inches")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(6 + 3 / 12, "feet"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Big",
  11696. height: math.unit(104, "feet")
  11697. },
  11698. {
  11699. name: "Macro",
  11700. height: math.unit(944, "feet")
  11701. },
  11702. {
  11703. name: "Macro+",
  11704. height: math.unit(9480, "feet")
  11705. },
  11706. {
  11707. name: "Megamacro",
  11708. height: math.unit(78752, "feet")
  11709. },
  11710. {
  11711. name: "Megamacro+",
  11712. height: math.unit(630128, "feet")
  11713. },
  11714. {
  11715. name: "Megamacro++",
  11716. height: math.unit(3150695, "feet")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(7 + 5 / 12, "feet"),
  11725. weight: math.unit(450, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/mocha-aura/front.svg",
  11729. extra: 1907 / 1817,
  11730. bottom: 0.04
  11731. }
  11732. },
  11733. back: {
  11734. height: math.unit(7 + 5 / 12, "feet"),
  11735. weight: math.unit(450, "lb"),
  11736. name: "Back",
  11737. image: {
  11738. source: "./media/characters/mocha-aura/back.svg",
  11739. extra: 1900 / 1825,
  11740. bottom: 0.045
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Nano",
  11747. height: math.unit(1, "nm")
  11748. },
  11749. {
  11750. name: "Megamicro",
  11751. height: math.unit(1, "mm")
  11752. },
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(3, "inches")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(7 + 5 / 12, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(30, "feet")
  11765. },
  11766. {
  11767. name: "Megamacro",
  11768. height: math.unit(3500, "feet")
  11769. },
  11770. {
  11771. name: "Teramacro",
  11772. height: math.unit(500000, "miles")
  11773. },
  11774. {
  11775. name: "Petamacro",
  11776. height: math.unit(50000000000000000, "parsecs")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/ilisha-devya/front.svg",
  11789. extra: 1,
  11790. bottom: 0.175
  11791. }
  11792. },
  11793. back: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Back",
  11797. image: {
  11798. source: "./media/characters/ilisha-devya/back.svg",
  11799. extra: 1,
  11800. bottom: 0.015
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(500, "feet"),
  11808. default: true
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(10, "miles")
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(100000, "miles")
  11817. },
  11818. {
  11819. name: "Examacro",
  11820. height: math.unit(1e9, "lightyears")
  11821. },
  11822. {
  11823. name: "Omniversal",
  11824. height: math.unit(1e33, "lightyears")
  11825. },
  11826. {
  11827. name: "Beyond Infinite",
  11828. height: math.unit(1e100, "lightyears")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11834. {
  11835. Side: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Side",
  11839. image: {
  11840. source: "./media/characters/mira/side.svg",
  11841. extra: 900 / 799,
  11842. bottom: 0.02
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Human Size",
  11849. height: math.unit(6, "feet")
  11850. },
  11851. {
  11852. name: "Macro",
  11853. height: math.unit(100, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(10, "miles")
  11859. },
  11860. {
  11861. name: "Gigamacro",
  11862. height: math.unit(25000, "miles")
  11863. },
  11864. {
  11865. name: "Teramacro",
  11866. height: math.unit(300, "AU")
  11867. },
  11868. {
  11869. name: "Full Size",
  11870. height: math.unit(4.5e10, "lightyears")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(150, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/holly/front.svg",
  11883. extra: 639 / 606
  11884. }
  11885. },
  11886. back: {
  11887. height: math.unit(6, "feet"),
  11888. weight: math.unit(150, "lb"),
  11889. name: "Back",
  11890. image: {
  11891. source: "./media/characters/holly/back.svg",
  11892. extra: 623 / 598
  11893. }
  11894. },
  11895. frontWorking: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(150, "lb"),
  11898. name: "Front (Working)",
  11899. image: {
  11900. source: "./media/characters/holly/front-working.svg",
  11901. extra: 607 / 577,
  11902. bottom: 0.048
  11903. }
  11904. },
  11905. },
  11906. [
  11907. {
  11908. name: "Normal",
  11909. height: math.unit(12 + 3 / 12, "feet"),
  11910. default: true
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11916. {
  11917. front: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/porter/front.svg",
  11923. extra: 1,
  11924. bottom: 0.01
  11925. }
  11926. },
  11927. frontRobes: {
  11928. height: math.unit(6, "feet"),
  11929. weight: math.unit(150, "lb"),
  11930. name: "Front (Robes)",
  11931. image: {
  11932. source: "./media/characters/porter/front-robes.svg",
  11933. extra: 1.01,
  11934. bottom: 0.01
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(11 + 9 / 12, "feet"),
  11942. default: true
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11948. {
  11949. legendary: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(150, "lb"),
  11952. name: "Legendary",
  11953. image: {
  11954. source: "./media/characters/lucy/legendary.svg",
  11955. extra: 1355 / 1100,
  11956. bottom: 0.045
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Legendary",
  11963. height: math.unit(86882 * 2, "miles"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(150, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/drusilla/front.svg",
  11977. extra: 678 / 635,
  11978. bottom: 0.03
  11979. }
  11980. },
  11981. back: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Back",
  11985. image: {
  11986. source: "./media/characters/drusilla/back.svg",
  11987. extra: 678 / 635,
  11988. bottom: 0.005
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(100, "feet")
  11996. },
  11997. {
  11998. name: "Canon Height",
  11999. height: math.unit(2000, "feet"),
  12000. default: true
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(6, "feet"),
  12009. weight: math.unit(180, "lb"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/renard-thatch/front.svg",
  12013. extra: 2411 / 2275,
  12014. bottom: 0.01
  12015. }
  12016. },
  12017. frontPosing: {
  12018. height: math.unit(6, "feet"),
  12019. weight: math.unit(180, "lb"),
  12020. name: "Front (Posing)",
  12021. image: {
  12022. source: "./media/characters/renard-thatch/front-posing.svg",
  12023. extra: 2381 / 2261,
  12024. bottom: 0.01
  12025. }
  12026. },
  12027. back: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(180, "lb"),
  12030. name: "Back",
  12031. image: {
  12032. source: "./media/characters/renard-thatch/back.svg",
  12033. extra: 2428 / 2288
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Micro",
  12040. height: math.unit(3, "inches")
  12041. },
  12042. {
  12043. name: "Default",
  12044. height: math.unit(6, "feet"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Macro",
  12049. height: math.unit(75, "feet")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(1450, "feet"),
  12058. weight: math.unit(1.21e6, "tons"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/sekvra/front.svg",
  12062. extra: 1,
  12063. bottom: 0.03
  12064. }
  12065. },
  12066. frontClothed: {
  12067. height: math.unit(1450, "feet"),
  12068. weight: math.unit(1.21e6, "tons"),
  12069. name: "Front (Clothed)",
  12070. image: {
  12071. source: "./media/characters/sekvra/front-clothed.svg",
  12072. extra: 1,
  12073. bottom: 0.03
  12074. }
  12075. },
  12076. side: {
  12077. height: math.unit(1450, "feet"),
  12078. weight: math.unit(1.21e6, "tons"),
  12079. name: "Side",
  12080. image: {
  12081. source: "./media/characters/sekvra/side.svg",
  12082. extra: 1,
  12083. bottom: 0.025
  12084. }
  12085. },
  12086. back: {
  12087. height: math.unit(1450, "feet"),
  12088. weight: math.unit(1.21e6, "tons"),
  12089. name: "Back",
  12090. image: {
  12091. source: "./media/characters/sekvra/back.svg",
  12092. extra: 1,
  12093. bottom: 0.005
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(1450, "feet"),
  12101. default: true
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(15000, "feet")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/carmine/front.svg",
  12118. extra: 1,
  12119. bottom: 0.035
  12120. }
  12121. },
  12122. frontArmor: {
  12123. height: math.unit(6, "feet"),
  12124. weight: math.unit(150, "lb"),
  12125. name: "Front (Armor)",
  12126. image: {
  12127. source: "./media/characters/carmine/front-armor.svg",
  12128. extra: 1,
  12129. bottom: 0.035
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Large",
  12136. height: math.unit(1, "mile")
  12137. },
  12138. {
  12139. name: "Huge",
  12140. height: math.unit(40, "miles"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Colossal",
  12145. height: math.unit(2500, "miles")
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(150, "lb"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/elyssia/front.svg",
  12158. extra: 2201 / 2035,
  12159. bottom: 0.05
  12160. }
  12161. },
  12162. frontClothed: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(150, "lb"),
  12165. name: "Front (Clothed)",
  12166. image: {
  12167. source: "./media/characters/elyssia/front-clothed.svg",
  12168. extra: 2201 / 2035,
  12169. bottom: 0.05
  12170. }
  12171. },
  12172. back: {
  12173. height: math.unit(6, "feet"),
  12174. weight: math.unit(150, "lb"),
  12175. name: "Back",
  12176. image: {
  12177. source: "./media/characters/elyssia/back.svg",
  12178. extra: 2201 / 2035,
  12179. bottom: 0.013
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Smaller",
  12186. height: math.unit(150, "feet")
  12187. },
  12188. {
  12189. name: "Standard",
  12190. height: math.unit(1400, "feet"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Distracted",
  12195. height: math.unit(15000, "feet")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(7 + 4 / 12, "feet"),
  12204. weight: math.unit(500, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/geno-maxwell/front.svg",
  12208. extra: 2207 / 2040,
  12209. bottom: 0.015
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Micro",
  12216. height: math.unit(3, "inches")
  12217. },
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(7 + 4 / 12, "feet"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Macro",
  12225. height: math.unit(220, "feet")
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(11, "miles")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(7 + 4 / 12, "feet"),
  12238. weight: math.unit(500, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/regena-maxwell/front.svg",
  12242. extra: 3115 / 2770,
  12243. bottom: 0.02
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Normal",
  12250. height: math.unit(7 + 4 / 12, "feet"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Macro",
  12255. height: math.unit(220, "feet")
  12256. },
  12257. {
  12258. name: "Megamacro",
  12259. height: math.unit(11, "miles")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12265. {
  12266. front: {
  12267. height: math.unit(6, "feet"),
  12268. weight: math.unit(150, "lb"),
  12269. name: "Front",
  12270. image: {
  12271. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12272. extra: 860 / 690,
  12273. bottom: 0.03
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(1.7, "meters"),
  12281. default: true
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(150, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/quilly/front.svg",
  12294. extra: 890 / 776
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Gigamacro",
  12301. height: math.unit(404090, "miles"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(7 + 8 / 12, "feet"),
  12311. weight: math.unit(350, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/tempest/front.svg",
  12315. extra: 1175 / 1086,
  12316. bottom: 0.02
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(7 + 8 / 12, "feet"),
  12324. default: true
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12330. {
  12331. side: {
  12332. height: math.unit(4 + 5 / 12, "feet"),
  12333. weight: math.unit(80, "lb"),
  12334. name: "Side",
  12335. image: {
  12336. source: "./media/characters/rodger/side.svg",
  12337. extra: 1235 / 1118
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Micro",
  12344. height: math.unit(1, "inch")
  12345. },
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(4 + 5 / 12, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Macro",
  12353. height: math.unit(120, "feet")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/danyel/front.svg",
  12366. extra: 1185 / 1123,
  12367. bottom: 0.05
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Shrunken",
  12374. height: math.unit(0.5, "mm")
  12375. },
  12376. {
  12377. name: "Micro",
  12378. height: math.unit(1, "mm"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Upsized",
  12383. height: math.unit(5 + 5 / 12, "feet")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(5 + 6 / 12, "feet"),
  12392. weight: math.unit(200, "lb"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/vivian-bijoux/front.svg",
  12396. extra: 1,
  12397. bottom: 0.072
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(5 + 6 / 12, "feet"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Bad Dream",
  12409. height: math.unit(500, "feet")
  12410. },
  12411. {
  12412. name: "Nightmare",
  12413. height: math.unit(500, "miles")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12419. {
  12420. front: {
  12421. height: math.unit(6 + 1 / 12, "feet"),
  12422. weight: math.unit(260, "lb"),
  12423. name: "Front",
  12424. image: {
  12425. source: "./media/characters/zeta/front.svg",
  12426. extra: 1968 / 1889,
  12427. bottom: 0.06
  12428. }
  12429. },
  12430. back: {
  12431. height: math.unit(6 + 1 / 12, "feet"),
  12432. weight: math.unit(260, "lb"),
  12433. name: "Back",
  12434. image: {
  12435. source: "./media/characters/zeta/back.svg",
  12436. extra: 1944 / 1858,
  12437. bottom: 0.03
  12438. }
  12439. },
  12440. hand: {
  12441. height: math.unit(1.112, "feet"),
  12442. name: "Hand",
  12443. image: {
  12444. source: "./media/characters/zeta/hand.svg"
  12445. }
  12446. },
  12447. foot: {
  12448. height: math.unit(1.48, "feet"),
  12449. name: "Foot",
  12450. image: {
  12451. source: "./media/characters/zeta/foot.svg"
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Micro",
  12458. height: math.unit(6, "inches")
  12459. },
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(6 + 1 / 12, "feet"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(20, "feet")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6, "feet"),
  12476. weight: math.unit(150, "lb"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/jamie-larsen/front.svg",
  12480. extra: 962 / 933,
  12481. bottom: 0.02
  12482. }
  12483. },
  12484. back: {
  12485. height: math.unit(6, "feet"),
  12486. weight: math.unit(150, "lb"),
  12487. name: "Back",
  12488. image: {
  12489. source: "./media/characters/jamie-larsen/back.svg",
  12490. extra: 997 / 946
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(28 + 7 / 12, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Macro+",
  12502. height: math.unit(180, "feet")
  12503. },
  12504. {
  12505. name: "Megamacro",
  12506. height: math.unit(10, "miles")
  12507. },
  12508. {
  12509. name: "Gigamacro",
  12510. height: math.unit(200000, "miles")
  12511. },
  12512. ]
  12513. ))
  12514. characterMakers.push(() => makeCharacter(
  12515. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12516. {
  12517. front: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(120, "lb"),
  12520. name: "Front",
  12521. image: {
  12522. source: "./media/characters/vance/front.svg",
  12523. extra: 1980 / 1890,
  12524. bottom: 0.09
  12525. }
  12526. },
  12527. back: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(120, "lb"),
  12530. name: "Back",
  12531. image: {
  12532. source: "./media/characters/vance/back.svg",
  12533. extra: 2081 / 1994,
  12534. bottom: 0.014
  12535. }
  12536. },
  12537. hand: {
  12538. height: math.unit(0.88, "feet"),
  12539. name: "Hand",
  12540. image: {
  12541. source: "./media/characters/vance/hand.svg"
  12542. }
  12543. },
  12544. foot: {
  12545. height: math.unit(0.64, "feet"),
  12546. name: "Foot",
  12547. image: {
  12548. source: "./media/characters/vance/foot.svg"
  12549. }
  12550. },
  12551. },
  12552. [
  12553. {
  12554. name: "Small",
  12555. height: math.unit(90, "feet"),
  12556. default: true
  12557. },
  12558. {
  12559. name: "Macro",
  12560. height: math.unit(100, "meters")
  12561. },
  12562. {
  12563. name: "Megamacro",
  12564. height: math.unit(15, "miles")
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12570. {
  12571. front: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(180, "lb"),
  12574. name: "Front",
  12575. image: {
  12576. source: "./media/characters/xochitl/front.svg",
  12577. extra: 2297 / 2261,
  12578. bottom: 0.065
  12579. }
  12580. },
  12581. back: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(180, "lb"),
  12584. name: "Back",
  12585. image: {
  12586. source: "./media/characters/xochitl/back.svg",
  12587. extra: 2386 / 2354,
  12588. bottom: 0.01
  12589. }
  12590. },
  12591. foot: {
  12592. height: math.unit(6 / 5 * 1.15, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Foot",
  12595. image: {
  12596. source: "./media/characters/xochitl/foot.svg"
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(80, "feet")
  12604. },
  12605. {
  12606. name: "Macro+",
  12607. height: math.unit(400, "feet"),
  12608. default: true
  12609. },
  12610. {
  12611. name: "Gigamacro",
  12612. height: math.unit(80000, "miles")
  12613. },
  12614. {
  12615. name: "Gigamacro+",
  12616. height: math.unit(400000, "miles")
  12617. },
  12618. {
  12619. name: "Teramacro",
  12620. height: math.unit(300, "AU")
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/vincent/front.svg",
  12633. extra: 1130 / 1080,
  12634. bottom: 0.055
  12635. }
  12636. },
  12637. beak: {
  12638. height: math.unit(6 * 0.1, "feet"),
  12639. name: "Beak",
  12640. image: {
  12641. source: "./media/characters/vincent/beak.svg"
  12642. }
  12643. },
  12644. hand: {
  12645. height: math.unit(6 * 0.85, "feet"),
  12646. weight: math.unit(150, "lb"),
  12647. name: "Hand",
  12648. image: {
  12649. source: "./media/characters/vincent/hand.svg"
  12650. }
  12651. },
  12652. foot: {
  12653. height: math.unit(6 * 0.19, "feet"),
  12654. weight: math.unit(150, "lb"),
  12655. name: "Foot",
  12656. image: {
  12657. source: "./media/characters/vincent/foot.svg"
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Base",
  12664. height: math.unit(6 + 5 / 12, "feet"),
  12665. default: true
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(300, "feet")
  12670. },
  12671. {
  12672. name: "Megamacro",
  12673. height: math.unit(2, "miles")
  12674. },
  12675. {
  12676. name: "Gigamacro",
  12677. height: math.unit(1000, "miles")
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(6 + 2 / 12, "feet"),
  12686. weight: math.unit(265, "lb"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/jay/front.svg",
  12690. extra: 1510 / 1430,
  12691. bottom: 0.042
  12692. }
  12693. },
  12694. back: {
  12695. height: math.unit(6 + 2 / 12, "feet"),
  12696. weight: math.unit(265, "lb"),
  12697. name: "Back",
  12698. image: {
  12699. source: "./media/characters/jay/back.svg",
  12700. extra: 1510 / 1430,
  12701. bottom: 0.025
  12702. }
  12703. },
  12704. clothed: {
  12705. height: math.unit(6 + 2 / 12, "feet"),
  12706. weight: math.unit(265, "lb"),
  12707. name: "Front (Clothed)",
  12708. image: {
  12709. source: "./media/characters/jay/clothed.svg",
  12710. extra: 744 / 699,
  12711. bottom: 0.043
  12712. }
  12713. },
  12714. head: {
  12715. height: math.unit(1.772, "feet"),
  12716. name: "Head",
  12717. image: {
  12718. source: "./media/characters/jay/head.svg"
  12719. }
  12720. },
  12721. sizeRay: {
  12722. height: math.unit(1.331, "feet"),
  12723. name: "Size Ray",
  12724. image: {
  12725. source: "./media/characters/jay/size-ray.svg"
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Micro",
  12732. height: math.unit(1, "inch")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(6 + 2 / 12, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(1, "mile")
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(100, "miles")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(2, "meters"),
  12754. weight: math.unit(500, "kg"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/coatl/front.svg",
  12758. extra: 3948 / 3500,
  12759. bottom: 0.082
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Normal",
  12766. height: math.unit(4, "meters")
  12767. },
  12768. {
  12769. name: "Macro",
  12770. height: math.unit(100, "meters"),
  12771. default: true
  12772. },
  12773. {
  12774. name: "Macro+",
  12775. height: math.unit(300, "meters")
  12776. },
  12777. {
  12778. name: "Megamacro",
  12779. height: math.unit(3, "gigameters")
  12780. },
  12781. {
  12782. name: "Megamacro+",
  12783. height: math.unit(300, "terameters")
  12784. },
  12785. {
  12786. name: "Megamacro++",
  12787. height: math.unit(3, "lightyears")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(50, "kg"),
  12797. name: "front",
  12798. image: {
  12799. source: "./media/characters/shiroryu/front.svg",
  12800. extra: 1990 / 1935
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Mortal Mingling",
  12807. height: math.unit(3, "meters")
  12808. },
  12809. {
  12810. name: "Kaiju-ish",
  12811. height: math.unit(250, "meters")
  12812. },
  12813. {
  12814. name: "Somewhat Godly",
  12815. height: math.unit(400, "km"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Planetary",
  12820. height: math.unit(300, "megameters")
  12821. },
  12822. {
  12823. name: "Galaxy-dwarfing",
  12824. height: math.unit(450, "kiloparsecs")
  12825. },
  12826. {
  12827. name: "Universe Eater",
  12828. height: math.unit(150, "gigaparsecs")
  12829. },
  12830. {
  12831. name: "Almost Immeasurable",
  12832. height: math.unit(1.3e266, "yottaparsecs")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/umeko/front.svg",
  12845. extra: 1,
  12846. bottom: 0.019
  12847. }
  12848. },
  12849. frontArmored: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(150, "lb"),
  12852. name: "Front (Armored)",
  12853. image: {
  12854. source: "./media/characters/umeko/front-armored.svg",
  12855. extra: 1,
  12856. bottom: 0.021
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(220, "feet"),
  12864. default: true
  12865. },
  12866. {
  12867. name: "Guardian Dragon",
  12868. height: math.unit(50, "miles")
  12869. },
  12870. {
  12871. name: "Cosmic",
  12872. height: math.unit(800000, "miles")
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12878. {
  12879. front: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/cassidy/front.svg",
  12885. extra: 1,
  12886. bottom: 0.043
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Canon Height",
  12893. height: math.unit(120, "feet"),
  12894. default: true
  12895. },
  12896. {
  12897. name: "Macro+",
  12898. height: math.unit(400, "feet")
  12899. },
  12900. {
  12901. name: "Macro++",
  12902. height: math.unit(4000, "feet")
  12903. },
  12904. {
  12905. name: "Megamacro",
  12906. height: math.unit(3, "miles")
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(150, "lb"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/isaac/front.svg",
  12919. extra: 896 / 815,
  12920. bottom: 0.11
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Human Size",
  12927. height: math.unit(8, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(400, "feet")
  12933. },
  12934. {
  12935. name: "Megamacro",
  12936. height: math.unit(50, "miles")
  12937. },
  12938. {
  12939. name: "Canon Height",
  12940. height: math.unit(200, "AU")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12946. {
  12947. front: {
  12948. height: math.unit(6, "feet"),
  12949. weight: math.unit(72, "kg"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/sleekit/front.svg",
  12953. extra: 4693 / 4487,
  12954. bottom: 0.012
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Minimum Height",
  12961. height: math.unit(10, "meters")
  12962. },
  12963. {
  12964. name: "Smaller",
  12965. height: math.unit(25, "meters")
  12966. },
  12967. {
  12968. name: "Larger",
  12969. height: math.unit(38, "meters"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Maximum height",
  12974. height: math.unit(100, "meters")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12980. {
  12981. front: {
  12982. height: math.unit(6, "feet"),
  12983. weight: math.unit(150, "lb"),
  12984. name: "Front",
  12985. image: {
  12986. source: "./media/characters/nillia/front.svg",
  12987. extra: 2195 / 2037,
  12988. bottom: 0.005
  12989. }
  12990. },
  12991. back: {
  12992. height: math.unit(6, "feet"),
  12993. weight: math.unit(150, "lb"),
  12994. name: "Back",
  12995. image: {
  12996. source: "./media/characters/nillia/back.svg",
  12997. extra: 2195 / 2037,
  12998. bottom: 0.005
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Canon Height",
  13005. height: math.unit(489, "feet"),
  13006. default: true
  13007. }
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(6, "feet"),
  13015. weight: math.unit(150, "lb"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/mesmyriza/front.svg",
  13019. extra: 2067 / 1784,
  13020. bottom: 0.035
  13021. }
  13022. },
  13023. foot: {
  13024. height: math.unit(6 / (250 / 35), "feet"),
  13025. name: "Foot",
  13026. image: {
  13027. source: "./media/characters/mesmyriza/foot.svg"
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Macro",
  13034. height: math.unit(457, "meters"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(8, "megameters")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(250, "lb"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/saudade/front.svg",
  13052. extra: 1172 / 1139,
  13053. bottom: 0.035
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Micro",
  13060. height: math.unit(3, "inches")
  13061. },
  13062. {
  13063. name: "Normal",
  13064. height: math.unit(6, "feet"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Macro",
  13069. height: math.unit(50, "feet")
  13070. },
  13071. {
  13072. name: "Megamacro",
  13073. height: math.unit(2800, "feet")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(5 + 4 / 12, "feet"),
  13082. weight: math.unit(100, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/keireer/front.svg",
  13086. extra: 716 / 666,
  13087. bottom: 0.05
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(5 + 4 / 12, "feet"),
  13095. default: true
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(6, "feet"),
  13104. weight: math.unit(90, "kg"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/mirja/front.svg",
  13108. extra: 1789 / 1683,
  13109. bottom: 0.05
  13110. }
  13111. },
  13112. frontDressed: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(90, "lb"),
  13115. name: "Front (Dressed)",
  13116. image: {
  13117. source: "./media/characters/mirja/front-dressed.svg",
  13118. extra: 1789 / 1683,
  13119. bottom: 0.05
  13120. }
  13121. },
  13122. back: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(90, "lb"),
  13125. name: "Back",
  13126. image: {
  13127. source: "./media/characters/mirja/back.svg",
  13128. extra: 953 / 917,
  13129. bottom: 0.017
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "\"Incognito\"",
  13136. height: math.unit(3, "meters")
  13137. },
  13138. {
  13139. name: "Strolling Size",
  13140. height: math.unit(15, "km")
  13141. },
  13142. {
  13143. name: "Larger Strolling Size",
  13144. height: math.unit(400, "km")
  13145. },
  13146. {
  13147. name: "Preferred Size",
  13148. height: math.unit(5000, "km")
  13149. },
  13150. {
  13151. name: "True Size",
  13152. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13153. default: true
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(15, "feet"),
  13162. weight: math.unit(880, "kg"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/nightraver/front.svg",
  13166. extra: 2444 / 2160,
  13167. bottom: 0.027
  13168. }
  13169. },
  13170. back: {
  13171. height: math.unit(15, "feet"),
  13172. weight: math.unit(880, "kg"),
  13173. name: "Back",
  13174. image: {
  13175. source: "./media/characters/nightraver/back.svg",
  13176. extra: 2309 / 2180,
  13177. bottom: 0.005
  13178. }
  13179. },
  13180. sole: {
  13181. height: math.unit(2.878, "feet"),
  13182. name: "Sole",
  13183. image: {
  13184. source: "./media/characters/nightraver/sole.svg"
  13185. }
  13186. },
  13187. foot: {
  13188. height: math.unit(2.285, "feet"),
  13189. name: "Foot",
  13190. image: {
  13191. source: "./media/characters/nightraver/foot.svg"
  13192. }
  13193. },
  13194. maw: {
  13195. height: math.unit(2.67, "feet"),
  13196. name: "Maw",
  13197. image: {
  13198. source: "./media/characters/nightraver/maw.svg"
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Micro",
  13205. height: math.unit(1, "cm")
  13206. },
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(15, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(300, "feet")
  13215. },
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(300, "miles")
  13219. },
  13220. {
  13221. name: "Gigamacro",
  13222. height: math.unit(10000, "miles")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13228. {
  13229. side: {
  13230. height: math.unit(2, "inches"),
  13231. weight: math.unit(5, "grams"),
  13232. name: "Side",
  13233. image: {
  13234. source: "./media/characters/arc/side.svg"
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Micro",
  13241. height: math.unit(2, "inches"),
  13242. default: true
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(1.1938, "meters"),
  13251. weight: math.unit(54, "kg"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/nebula-shahar/front.svg",
  13255. extra: 1642 / 1436,
  13256. bottom: 0.06
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Megamicro",
  13263. height: math.unit(0.3, "mm")
  13264. },
  13265. {
  13266. name: "Micro",
  13267. height: math.unit(3, "cm")
  13268. },
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(138, "cm"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Macro",
  13276. height: math.unit(30, "m")
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(5.24, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/shayla/front.svg",
  13289. extra: 1512 / 1414,
  13290. bottom: 0.01
  13291. }
  13292. },
  13293. back: {
  13294. height: math.unit(5.24, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Back",
  13297. image: {
  13298. source: "./media/characters/shayla/back.svg",
  13299. extra: 1512 / 1414
  13300. }
  13301. },
  13302. hand: {
  13303. height: math.unit(0.7781496062992126, "feet"),
  13304. name: "Hand",
  13305. image: {
  13306. source: "./media/characters/shayla/hand.svg"
  13307. }
  13308. },
  13309. foot: {
  13310. height: math.unit(1.4206036745406823, "feet"),
  13311. name: "Foot",
  13312. image: {
  13313. source: "./media/characters/shayla/foot.svg"
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Micro",
  13320. height: math.unit(0.32, "feet")
  13321. },
  13322. {
  13323. name: "Normal",
  13324. height: math.unit(5.24, "feet"),
  13325. default: true
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(492.12, "feet")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(186.41, "miles")
  13334. },
  13335. ]
  13336. ))
  13337. characterMakers.push(() => makeCharacter(
  13338. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13339. {
  13340. front: {
  13341. height: math.unit(2.2, "m"),
  13342. weight: math.unit(120, "kg"),
  13343. name: "Front",
  13344. image: {
  13345. source: "./media/characters/pia-jr/front.svg",
  13346. extra: 1000 / 970,
  13347. bottom: 0.035
  13348. }
  13349. },
  13350. hand: {
  13351. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13352. name: "Hand",
  13353. image: {
  13354. source: "./media/characters/pia-jr/hand.svg"
  13355. }
  13356. },
  13357. paw: {
  13358. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13359. name: "Paw",
  13360. image: {
  13361. source: "./media/characters/pia-jr/paw.svg"
  13362. }
  13363. },
  13364. },
  13365. [
  13366. {
  13367. name: "Micro",
  13368. height: math.unit(1.2, "cm")
  13369. },
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(2.2, "m"),
  13373. default: true
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(180, "m")
  13378. },
  13379. {
  13380. name: "Megamacro",
  13381. height: math.unit(420, "km")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(2, "m"),
  13390. weight: math.unit(115, "kg"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/pia-sr/front.svg",
  13394. extra: 760 / 730,
  13395. bottom: 0.015
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(2, "m"),
  13400. weight: math.unit(115, "kg"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/pia-sr/back.svg",
  13404. extra: 760 / 730,
  13405. bottom: 0.01
  13406. }
  13407. },
  13408. hand: {
  13409. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13410. name: "Hand",
  13411. image: {
  13412. source: "./media/characters/pia-sr/hand.svg"
  13413. }
  13414. },
  13415. foot: {
  13416. height: math.unit(1.83, "feet"),
  13417. name: "Foot",
  13418. image: {
  13419. source: "./media/characters/pia-sr/foot.svg"
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Micro",
  13426. height: math.unit(88, "mm")
  13427. },
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(2, "m"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(200, "m")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(420, "km")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13445. {
  13446. front: {
  13447. height: math.unit(8 + 2 / 12, "feet"),
  13448. weight: math.unit(300, "lb"),
  13449. name: "Front",
  13450. image: {
  13451. source: "./media/characters/kibibyte/front.svg",
  13452. extra: 2221 / 2098,
  13453. bottom: 0.04
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Normal",
  13460. height: math.unit(8 + 2 / 12, "feet"),
  13461. default: true
  13462. },
  13463. {
  13464. name: "Socialable Macro",
  13465. height: math.unit(50, "feet")
  13466. },
  13467. {
  13468. name: "Macro",
  13469. height: math.unit(300, "feet")
  13470. },
  13471. {
  13472. name: "Megamacro",
  13473. height: math.unit(500, "miles")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/felix/front.svg",
  13486. extra: 762 / 722,
  13487. bottom: 0.02
  13488. }
  13489. },
  13490. frontClothed: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Front (Clothed)",
  13494. image: {
  13495. source: "./media/characters/felix/front-clothed.svg",
  13496. extra: 762 / 722,
  13497. bottom: 0.02
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Normal",
  13504. height: math.unit(6 + 8 / 12, "feet"),
  13505. default: true
  13506. },
  13507. {
  13508. name: "Macro",
  13509. height: math.unit(2600, "feet")
  13510. },
  13511. {
  13512. name: "Megamacro",
  13513. height: math.unit(450, "miles")
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(6 + 1 / 12, "feet"),
  13522. weight: math.unit(250, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/tobo/front.svg",
  13526. extra: 608 / 586,
  13527. bottom: 0.023
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(6 + 1 / 12, "feet"),
  13532. weight: math.unit(250, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/tobo/back.svg",
  13536. extra: 608 / 586
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Nano",
  13543. height: math.unit(2, "nm")
  13544. },
  13545. {
  13546. name: "Megamicro",
  13547. height: math.unit(0.1, "mm")
  13548. },
  13549. {
  13550. name: "Micro",
  13551. height: math.unit(1, "inch"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Human-sized",
  13556. height: math.unit(6 + 1 / 12, "feet")
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(250, "feet")
  13561. },
  13562. {
  13563. name: "Megamacro",
  13564. height: math.unit(75, "miles")
  13565. },
  13566. {
  13567. name: "Texas-sized",
  13568. height: math.unit(750, "miles")
  13569. },
  13570. {
  13571. name: "Teramacro",
  13572. height: math.unit(50000, "miles")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13578. {
  13579. front: {
  13580. height: math.unit(6, "feet"),
  13581. weight: math.unit(269, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/danny-kapowsky/front.svg",
  13585. extra: 766 / 736,
  13586. bottom: 0.044
  13587. }
  13588. },
  13589. back: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(269, "lb"),
  13592. name: "Back",
  13593. image: {
  13594. source: "./media/characters/danny-kapowsky/back.svg",
  13595. extra: 797 / 760,
  13596. bottom: 0.025
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Macro",
  13603. height: math.unit(150, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Macro+",
  13608. height: math.unit(200, "feet")
  13609. },
  13610. {
  13611. name: "Macro++",
  13612. height: math.unit(300, "feet")
  13613. },
  13614. {
  13615. name: "Macro+++",
  13616. height: math.unit(400, "feet")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13622. {
  13623. side: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(170, "lb"),
  13626. name: "Side",
  13627. image: {
  13628. source: "./media/characters/finn/side.svg",
  13629. extra: 1953 / 1807,
  13630. bottom: 0.057
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Megamacro",
  13637. height: math.unit(14445, "feet"),
  13638. default: true
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(5 + 6 / 12, "feet"),
  13647. weight: math.unit(125, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/roy/front.svg",
  13651. extra: 1,
  13652. bottom: 0.11
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Micro",
  13659. height: math.unit(3, "inches"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(5 + 6 / 12, "feet")
  13665. },
  13666. {
  13667. name: "Lesser Macro",
  13668. height: math.unit(60, "feet")
  13669. },
  13670. {
  13671. name: "Greater Macro",
  13672. height: math.unit(120, "feet")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(100, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/aevsivs/front.svg",
  13685. extra: 1,
  13686. bottom: 0.03
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(100, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/aevsivs/back.svg"
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(2, "inches"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(5, "feet")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(5 + 7 / 12, "feet"),
  13715. weight: math.unit(159, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/hildegard/front.svg",
  13719. extra: 312 / 286,
  13720. bottom: 0.005
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Normal",
  13727. height: math.unit(5 + 7 / 12, "feet"),
  13728. default: true
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13734. {
  13735. bernard: {
  13736. height: math.unit(2 + 7 / 12, "feet"),
  13737. weight: math.unit(66, "lb"),
  13738. name: "Bernard",
  13739. rename: true,
  13740. image: {
  13741. source: "./media/characters/bernard-wilder/bernard.svg",
  13742. extra: 192 / 128,
  13743. bottom: 0.05
  13744. }
  13745. },
  13746. wilder: {
  13747. height: math.unit(5 + 8 / 12, "feet"),
  13748. weight: math.unit(143, "lb"),
  13749. name: "Wilder",
  13750. rename: true,
  13751. image: {
  13752. source: "./media/characters/bernard-wilder/wilder.svg",
  13753. extra: 361 / 312,
  13754. bottom: 0.02
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Normal",
  13761. height: math.unit(2 + 7 / 12, "feet"),
  13762. default: true
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13768. {
  13769. anthro: {
  13770. height: math.unit(6 + 1 / 12, "feet"),
  13771. weight: math.unit(155, "lb"),
  13772. name: "Anthro",
  13773. image: {
  13774. source: "./media/characters/hearth/anthro.svg",
  13775. extra: 260 / 250,
  13776. bottom: 0.02
  13777. }
  13778. },
  13779. feral: {
  13780. height: math.unit(3.78, "feet"),
  13781. weight: math.unit(35, "kg"),
  13782. name: "Feral",
  13783. image: {
  13784. source: "./media/characters/hearth/feral.svg",
  13785. extra: 153 / 135,
  13786. bottom: 0.03
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(6 + 1 / 12, "feet"),
  13794. default: true
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(182, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/ingrid/front.svg",
  13807. extra: 294 / 268,
  13808. bottom: 0.027
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Normal",
  13815. height: math.unit(6, "feet"),
  13816. default: true
  13817. },
  13818. ]
  13819. ))
  13820. characterMakers.push(() => makeCharacter(
  13821. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13822. {
  13823. eevee: {
  13824. height: math.unit(2 + 10 / 12, "feet"),
  13825. weight: math.unit(86, "lb"),
  13826. name: "Malgam",
  13827. image: {
  13828. source: "./media/characters/malgam/eevee.svg",
  13829. extra: 218 / 180,
  13830. bottom: 0.2
  13831. }
  13832. },
  13833. sylveon: {
  13834. height: math.unit(4, "feet"),
  13835. weight: math.unit(101, "lb"),
  13836. name: "Future Malgam",
  13837. rename: true,
  13838. image: {
  13839. source: "./media/characters/malgam/sylveon.svg",
  13840. extra: 371 / 325,
  13841. bottom: 0.015
  13842. }
  13843. },
  13844. gigantamax: {
  13845. height: math.unit(50, "feet"),
  13846. name: "Gigantamax Malgam",
  13847. rename: true,
  13848. image: {
  13849. source: "./media/characters/malgam/gigantamax.svg"
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(2 + 10 / 12, "feet"),
  13857. default: true
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(5 + 11 / 12, "feet"),
  13866. weight: math.unit(188, "lb"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/fleur/front.svg",
  13870. extra: 309 / 283,
  13871. bottom: 0.007
  13872. }
  13873. },
  13874. },
  13875. [
  13876. {
  13877. name: "Normal",
  13878. height: math.unit(5 + 11 / 12, "feet"),
  13879. default: true
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(5 + 4 / 12, "feet"),
  13888. weight: math.unit(122, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/jude/front.svg",
  13892. extra: 288 / 273,
  13893. bottom: 0.03
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Normal",
  13900. height: math.unit(5 + 4 / 12, "feet"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(5 + 11 / 12, "feet"),
  13910. weight: math.unit(190, "lb"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/seara/front.svg",
  13914. extra: 1,
  13915. bottom: 0.05
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Normal",
  13922. height: math.unit(5 + 11 / 12, "feet"),
  13923. default: true
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(16 + 5 / 12, "feet"),
  13932. weight: math.unit(524, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/caspian/front.svg",
  13936. extra: 1,
  13937. bottom: 0.04
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(16 + 5 / 12, "feet"),
  13945. default: true
  13946. },
  13947. ]
  13948. ))
  13949. characterMakers.push(() => makeCharacter(
  13950. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13951. {
  13952. front: {
  13953. height: math.unit(5 + 7 / 12, "feet"),
  13954. weight: math.unit(170, "lb"),
  13955. name: "Front",
  13956. image: {
  13957. source: "./media/characters/mika/front.svg",
  13958. extra: 1,
  13959. bottom: 0.016
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(5 + 7 / 12, "feet"),
  13967. default: true
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(6 + 2 / 12, "feet"),
  13976. weight: math.unit(268, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/sol/front.svg",
  13980. extra: 247 / 231,
  13981. bottom: 0.05
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(6 + 2 / 12, "feet"),
  13989. default: true
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13995. {
  13996. buizel: {
  13997. height: math.unit(2 + 5 / 12, "feet"),
  13998. weight: math.unit(87, "lb"),
  13999. name: "Buizel",
  14000. image: {
  14001. source: "./media/characters/umiko/buizel.svg",
  14002. extra: 172 / 157,
  14003. bottom: 0.01
  14004. }
  14005. },
  14006. floatzel: {
  14007. height: math.unit(5 + 9 / 12, "feet"),
  14008. weight: math.unit(250, "lb"),
  14009. name: "Floatzel",
  14010. image: {
  14011. source: "./media/characters/umiko/floatzel.svg",
  14012. extra: 262 / 248
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(2 + 5 / 12, "feet"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(6 + 2 / 12, "feet"),
  14029. weight: math.unit(146, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/iliac/front.svg",
  14033. extra: 389 / 365,
  14034. bottom: 0.035
  14035. }
  14036. },
  14037. },
  14038. [
  14039. {
  14040. name: "Normal",
  14041. height: math.unit(6 + 2 / 12, "feet"),
  14042. default: true
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14048. {
  14049. front: {
  14050. height: math.unit(6, "feet"),
  14051. weight: math.unit(170, "lb"),
  14052. name: "Front",
  14053. image: {
  14054. source: "./media/characters/topaz/front.svg",
  14055. extra: 317 / 303,
  14056. bottom: 0.055
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(6, "feet"),
  14064. default: true
  14065. },
  14066. ]
  14067. ))
  14068. characterMakers.push(() => makeCharacter(
  14069. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14070. {
  14071. front: {
  14072. height: math.unit(5 + 11 / 12, "feet"),
  14073. weight: math.unit(144, "lb"),
  14074. name: "Front",
  14075. image: {
  14076. source: "./media/characters/gabriel/front.svg",
  14077. extra: 285 / 262,
  14078. bottom: 0.004
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(5 + 11 / 12, "feet"),
  14086. default: true
  14087. },
  14088. ]
  14089. ))
  14090. characterMakers.push(() => makeCharacter(
  14091. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14092. {
  14093. side: {
  14094. height: math.unit(6 + 5 / 12, "feet"),
  14095. weight: math.unit(300, "lb"),
  14096. name: "Side",
  14097. image: {
  14098. source: "./media/characters/tempest-suicune/side.svg",
  14099. extra: 195 / 154,
  14100. bottom: 0.04
  14101. }
  14102. },
  14103. },
  14104. [
  14105. {
  14106. name: "Normal",
  14107. height: math.unit(6 + 5 / 12, "feet"),
  14108. default: true
  14109. },
  14110. ]
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(7 + 2 / 12, "feet"),
  14117. weight: math.unit(322, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/vulcan/front.svg",
  14121. extra: 154 / 147,
  14122. bottom: 0.04
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Normal",
  14129. height: math.unit(7 + 2 / 12, "feet"),
  14130. default: true
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(5 + 10 / 12, "feet"),
  14139. weight: math.unit(264, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/gault/front.svg",
  14143. extra: 161 / 140,
  14144. bottom: 0.028
  14145. }
  14146. },
  14147. },
  14148. [
  14149. {
  14150. name: "Normal",
  14151. height: math.unit(5 + 10 / 12, "feet"),
  14152. default: true
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6, "feet"),
  14161. weight: math.unit(150, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/shard/front.svg",
  14165. extra: 273 / 238,
  14166. bottom: 0.02
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(3 + 6 / 12, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(5 + 11 / 12, "feet"),
  14183. weight: math.unit(146, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/ashe/front.svg",
  14187. extra: 400 / 373,
  14188. bottom: 0.01
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(5 + 11 / 12, "feet"),
  14196. default: true
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(5 + 5 / 12, "feet"),
  14205. weight: math.unit(135, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/beatrix/front.svg",
  14209. extra: 392 / 379,
  14210. bottom: 0.01
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(6, "feet"),
  14218. default: true
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(150, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/ignatius/front.svg",
  14231. extra: 245 / 222,
  14232. bottom: 0.01
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(5 + 5 / 12, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(6 + 2 / 12, "feet"),
  14249. weight: math.unit(138, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/mei-li/front.svg",
  14253. extra: 237 / 229,
  14254. bottom: 0.03
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(6 + 2 / 12, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(2 + 4 / 12, "feet"),
  14271. weight: math.unit(62, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/puru/front.svg",
  14275. extra: 206 / 149,
  14276. bottom: 0.06
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(2 + 4 / 12, "feet"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14290. {
  14291. taur: {
  14292. height: math.unit(11, "feet"),
  14293. weight: math.unit(500, "lb"),
  14294. name: "Taur",
  14295. image: {
  14296. source: "./media/characters/kee/taur.svg",
  14297. extra: 1,
  14298. bottom: 0.04
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Normal",
  14305. height: math.unit(11, "feet"),
  14306. default: true
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14312. {
  14313. anthro: {
  14314. height: math.unit(7, "feet"),
  14315. weight: math.unit(190, "lb"),
  14316. name: "Anthro",
  14317. image: {
  14318. source: "./media/characters/cobalt-dracha/anthro.svg",
  14319. extra: 231 / 225,
  14320. bottom: 0.04
  14321. }
  14322. },
  14323. feral: {
  14324. height: math.unit(9 + 7 / 12, "feet"),
  14325. weight: math.unit(294, "lb"),
  14326. name: "Feral",
  14327. image: {
  14328. source: "./media/characters/cobalt-dracha/feral.svg",
  14329. extra: 692 / 633,
  14330. bottom: 0.05
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Normal",
  14337. height: math.unit(7, "feet"),
  14338. default: true
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14344. {
  14345. fallen: {
  14346. height: math.unit(11 + 8 / 12, "feet"),
  14347. weight: math.unit(485, "lb"),
  14348. name: "Java (Fallen)",
  14349. rename: true,
  14350. image: {
  14351. source: "./media/characters/java/fallen.svg",
  14352. extra: 226 / 208,
  14353. bottom: 0.005
  14354. }
  14355. },
  14356. godkin: {
  14357. height: math.unit(10 + 6 / 12, "feet"),
  14358. weight: math.unit(328, "lb"),
  14359. name: "Java (Godkin)",
  14360. rename: true,
  14361. image: {
  14362. source: "./media/characters/java/godkin.svg",
  14363. extra: 270 / 262,
  14364. bottom: 0.02
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(11 + 8 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(7 + 8 / 12, "feet"),
  14381. weight: math.unit(320, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/skoll/front.svg",
  14385. extra: 232 / 220,
  14386. bottom: 0.02
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(7 + 8 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(5 + 9 / 12, "feet"),
  14403. weight: math.unit(170, "lb"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/purna/front.svg",
  14407. extra: 239 / 229,
  14408. bottom: 0.01
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(5 + 9 / 12, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(5 + 9 / 12, "feet"),
  14425. weight: math.unit(142, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/kuva/front.svg",
  14429. extra: 281 / 271,
  14430. bottom: 0.006
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(5 + 9 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14444. {
  14445. anthro: {
  14446. height: math.unit(9 + 2 / 12, "feet"),
  14447. weight: math.unit(270, "lb"),
  14448. name: "Anthro",
  14449. image: {
  14450. source: "./media/characters/embra/anthro.svg",
  14451. extra: 200 / 187,
  14452. bottom: 0.02
  14453. }
  14454. },
  14455. feral: {
  14456. height: math.unit(18 + 8 / 12, "feet"),
  14457. weight: math.unit(576, "lb"),
  14458. name: "Feral",
  14459. image: {
  14460. source: "./media/characters/embra/feral.svg",
  14461. extra: 152 / 137,
  14462. bottom: 0.037
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Normal",
  14469. height: math.unit(9 + 2 / 12, "feet"),
  14470. default: true
  14471. },
  14472. ]
  14473. ))
  14474. characterMakers.push(() => makeCharacter(
  14475. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14476. {
  14477. anthro: {
  14478. height: math.unit(10 + 9 / 12, "feet"),
  14479. weight: math.unit(224, "lb"),
  14480. name: "Anthro",
  14481. image: {
  14482. source: "./media/characters/grottos/anthro.svg",
  14483. extra: 350 / 332,
  14484. bottom: 0.045
  14485. }
  14486. },
  14487. feral: {
  14488. height: math.unit(20 + 7 / 12, "feet"),
  14489. weight: math.unit(629, "lb"),
  14490. name: "Feral",
  14491. image: {
  14492. source: "./media/characters/grottos/feral.svg",
  14493. extra: 207 / 190,
  14494. bottom: 0.05
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(10 + 9 / 12, "feet"),
  14502. default: true
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14508. {
  14509. anthro: {
  14510. height: math.unit(9 + 6 / 12, "feet"),
  14511. weight: math.unit(298, "lb"),
  14512. name: "Anthro",
  14513. image: {
  14514. source: "./media/characters/frifna/anthro.svg",
  14515. extra: 282 / 269,
  14516. bottom: 0.015
  14517. }
  14518. },
  14519. feral: {
  14520. height: math.unit(16 + 2 / 12, "feet"),
  14521. weight: math.unit(624, "lb"),
  14522. name: "Feral",
  14523. image: {
  14524. source: "./media/characters/frifna/feral.svg"
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(9 + 6 / 12, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(6 + 2 / 12, "feet"),
  14541. weight: math.unit(168, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/elise/front.svg",
  14545. extra: 276 / 271
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(6 + 2 / 12, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(5 + 10 / 12, "feet"),
  14562. weight: math.unit(210, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/glade/front.svg",
  14566. extra: 258 / 247,
  14567. bottom: 0.008
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(5 + 10 / 12, "feet"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(5 + 10 / 12, "feet"),
  14584. weight: math.unit(129, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/rina/front.svg",
  14588. extra: 266 / 255,
  14589. bottom: 0.005
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(5 + 10 / 12, "feet"),
  14597. default: true
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(6 + 1 / 12, "feet"),
  14606. weight: math.unit(192, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/veronica/front.svg",
  14610. extra: 319 / 309,
  14611. bottom: 0.005
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(6 + 1 / 12, "feet"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(9 + 3 / 12, "feet"),
  14628. weight: math.unit(1100, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/braxton/front.svg",
  14632. extra: 1057 / 984,
  14633. bottom: 0.05
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(9 + 3 / 12, "feet")
  14641. },
  14642. {
  14643. name: "Giant",
  14644. height: math.unit(300, "feet"),
  14645. default: true
  14646. },
  14647. {
  14648. name: "Macro",
  14649. height: math.unit(700, "feet")
  14650. },
  14651. {
  14652. name: "Megamacro",
  14653. height: math.unit(6000, "feet")
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(6 + 7 / 12, "feet"),
  14662. weight: math.unit(150, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/blue-feyonics/front.svg",
  14666. extra: 1403 / 1306,
  14667. bottom: 0.047
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(6 + 7 / 12, "feet"),
  14675. default: true
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(1.8, "meters"),
  14684. weight: math.unit(60, "kg"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/maxwell/front.svg",
  14688. extra: 2060 / 1873
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Micro",
  14695. height: math.unit(1, "mm")
  14696. },
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(1.8, "meter"),
  14700. default: true
  14701. },
  14702. {
  14703. name: "Macro",
  14704. height: math.unit(30, "meters")
  14705. },
  14706. {
  14707. name: "Megamacro",
  14708. height: math.unit(10, "km")
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(6, "feet"),
  14717. weight: math.unit(150, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/jack/front.svg",
  14721. extra: 1754 / 1640,
  14722. bottom: 0.01
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(80000, "feet"),
  14730. default: true
  14731. },
  14732. {
  14733. name: "Max size",
  14734. height: math.unit(10, "lightyears")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14740. {
  14741. upright: {
  14742. height: math.unit(7, "feet"),
  14743. weight: math.unit(170, "lb"),
  14744. name: "Upright",
  14745. image: {
  14746. source: "./media/characters/cafat/upright.svg",
  14747. bottom: 0.01
  14748. }
  14749. },
  14750. uprightFull: {
  14751. height: math.unit(7, "feet"),
  14752. weight: math.unit(170, "lb"),
  14753. name: "Upright (Full)",
  14754. image: {
  14755. source: "./media/characters/cafat/upright-full.svg",
  14756. bottom: 0.01
  14757. }
  14758. },
  14759. side: {
  14760. height: math.unit(5, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Side",
  14763. image: {
  14764. source: "./media/characters/cafat/side.svg"
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Small",
  14771. height: math.unit(7, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Large",
  14776. height: math.unit(15.5, "feet")
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14782. {
  14783. front: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(150, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/verin-raharra/front.svg",
  14789. extra: 5019 / 4835,
  14790. bottom: 0.023
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(7 + 5 / 12, "feet"),
  14798. default: true
  14799. },
  14800. {
  14801. name: "Upsized",
  14802. height: math.unit(20, "feet")
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(7, "feet"),
  14811. weight: math.unit(230, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/nakata/front.svg",
  14815. extra: 1.005,
  14816. bottom: 0.01
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(7, "feet"),
  14824. default: true
  14825. },
  14826. {
  14827. name: "Big",
  14828. height: math.unit(14, "feet")
  14829. },
  14830. {
  14831. name: "Macro",
  14832. height: math.unit(400, "feet")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(4.91, "feet"),
  14841. weight: math.unit(100, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/lily/front.svg",
  14845. extra: 1585 / 1415,
  14846. bottom: 0.02
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(4.91, "feet"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14860. {
  14861. laying: {
  14862. height: math.unit(4 + 4 / 12, "feet"),
  14863. weight: math.unit(600, "lb"),
  14864. name: "Laying",
  14865. image: {
  14866. source: "./media/characters/sheila/laying.svg",
  14867. extra: 1333 / 1265,
  14868. bottom: 0.16
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(4 + 4 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(190, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/sax/front.svg",
  14889. extra: 1187 / 973,
  14890. bottom: 0.042
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Micro",
  14897. height: math.unit(4, "inches"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/pandora/front.svg",
  14911. extra: 2720 / 2556,
  14912. bottom: 0.015
  14913. }
  14914. },
  14915. back: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Back",
  14919. image: {
  14920. source: "./media/characters/pandora/back.svg",
  14921. extra: 2720 / 2556,
  14922. bottom: 0.01
  14923. }
  14924. },
  14925. beans: {
  14926. height: math.unit(6 / 8, "feet"),
  14927. name: "Beans",
  14928. image: {
  14929. source: "./media/characters/pandora/beans.svg"
  14930. }
  14931. },
  14932. skirt: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Skirt",
  14936. image: {
  14937. source: "./media/characters/pandora/skirt.svg",
  14938. extra: 1622 / 1525,
  14939. bottom: 0.015
  14940. }
  14941. },
  14942. hoodie: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(150, "lb"),
  14945. name: "Hoodie",
  14946. image: {
  14947. source: "./media/characters/pandora/hoodie.svg",
  14948. extra: 1622 / 1525,
  14949. bottom: 0.015
  14950. }
  14951. },
  14952. casual: {
  14953. height: math.unit(6, "feet"),
  14954. weight: math.unit(150, "lb"),
  14955. name: "Casual",
  14956. image: {
  14957. source: "./media/characters/pandora/casual.svg",
  14958. extra: 1622 / 1525,
  14959. bottom: 0.015
  14960. }
  14961. },
  14962. },
  14963. [
  14964. {
  14965. name: "Normal",
  14966. height: math.unit(6, "feet")
  14967. },
  14968. {
  14969. name: "Big Steppy",
  14970. height: math.unit(1, "km"),
  14971. default: true
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14977. {
  14978. side: {
  14979. height: math.unit(10, "feet"),
  14980. weight: math.unit(800, "kg"),
  14981. name: "Side",
  14982. image: {
  14983. source: "./media/characters/venio-darcony/side.svg",
  14984. extra: 1373 / 1003,
  14985. bottom: 0.037
  14986. }
  14987. },
  14988. front: {
  14989. height: math.unit(19, "feet"),
  14990. weight: math.unit(800, "kg"),
  14991. name: "Front",
  14992. image: {
  14993. source: "./media/characters/venio-darcony/front.svg"
  14994. }
  14995. },
  14996. back: {
  14997. height: math.unit(19, "feet"),
  14998. weight: math.unit(800, "kg"),
  14999. name: "Back",
  15000. image: {
  15001. source: "./media/characters/venio-darcony/back.svg"
  15002. }
  15003. },
  15004. sideNsfw: {
  15005. height: math.unit(10, "feet"),
  15006. weight: math.unit(800, "kg"),
  15007. name: "Side (NSFW)",
  15008. image: {
  15009. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15010. extra: 1373 / 1003,
  15011. bottom: 0.037
  15012. }
  15013. },
  15014. frontNsfw: {
  15015. height: math.unit(19, "feet"),
  15016. weight: math.unit(800, "kg"),
  15017. name: "Front (NSFW)",
  15018. image: {
  15019. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15020. }
  15021. },
  15022. backNsfw: {
  15023. height: math.unit(19, "feet"),
  15024. weight: math.unit(800, "kg"),
  15025. name: "Back (NSFW)",
  15026. image: {
  15027. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15028. }
  15029. },
  15030. sideArmored: {
  15031. height: math.unit(10, "feet"),
  15032. weight: math.unit(800, "kg"),
  15033. name: "Side (Armored)",
  15034. image: {
  15035. source: "./media/characters/venio-darcony/side-armored.svg",
  15036. extra: 1373 / 1003,
  15037. bottom: 0.037
  15038. }
  15039. },
  15040. frontArmored: {
  15041. height: math.unit(19, "feet"),
  15042. weight: math.unit(900, "kg"),
  15043. name: "Front (Armored)",
  15044. image: {
  15045. source: "./media/characters/venio-darcony/front-armored.svg"
  15046. }
  15047. },
  15048. backArmored: {
  15049. height: math.unit(19, "feet"),
  15050. weight: math.unit(900, "kg"),
  15051. name: "Back (Armored)",
  15052. image: {
  15053. source: "./media/characters/venio-darcony/back-armored.svg"
  15054. }
  15055. },
  15056. sword: {
  15057. height: math.unit(10, "feet"),
  15058. weight: math.unit(50, "lb"),
  15059. name: "Sword",
  15060. image: {
  15061. source: "./media/characters/venio-darcony/sword.svg"
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(10, "feet")
  15069. },
  15070. {
  15071. name: "Macro",
  15072. height: math.unit(130, "feet"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Macro+",
  15077. height: math.unit(240, "feet")
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(150, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/veski/front.svg",
  15090. extra: 1299 / 1225,
  15091. bottom: 0.04
  15092. }
  15093. },
  15094. back: {
  15095. height: math.unit(6, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Back",
  15098. image: {
  15099. source: "./media/characters/veski/back.svg",
  15100. extra: 1299 / 1225,
  15101. bottom: 0.008
  15102. }
  15103. },
  15104. maw: {
  15105. height: math.unit(1.5 * 1.21, "feet"),
  15106. name: "Maw",
  15107. image: {
  15108. source: "./media/characters/veski/maw.svg"
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Macro",
  15115. height: math.unit(2, "km"),
  15116. default: true
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15122. {
  15123. front: {
  15124. height: math.unit(5 + 7 / 12, "feet"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/isabelle/front.svg",
  15128. extra: 2130 / 1976,
  15129. bottom: 0.05
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Supermicro",
  15136. height: math.unit(10, "micrometers")
  15137. },
  15138. {
  15139. name: "Micro",
  15140. height: math.unit(1, "inch")
  15141. },
  15142. {
  15143. name: "Tiny",
  15144. height: math.unit(5, "inches")
  15145. },
  15146. {
  15147. name: "Standard",
  15148. height: math.unit(5 + 7 / 12, "inches")
  15149. },
  15150. {
  15151. name: "Macro",
  15152. height: math.unit(80, "meters"),
  15153. default: true
  15154. },
  15155. {
  15156. name: "Megamacro",
  15157. height: math.unit(250, "meters")
  15158. },
  15159. {
  15160. name: "Gigamacro",
  15161. height: math.unit(5, "km")
  15162. },
  15163. {
  15164. name: "Cosmic",
  15165. height: math.unit(2.5e6, "miles")
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/hanzo/front.svg",
  15178. extra: 374 / 344,
  15179. bottom: 0.02
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(8, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(7, "feet"),
  15196. weight: math.unit(130, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/anna/front.svg",
  15200. extra: 169 / 145,
  15201. bottom: 0.06
  15202. }
  15203. },
  15204. full: {
  15205. height: math.unit(4.96, "feet"),
  15206. weight: math.unit(220, "lb"),
  15207. name: "Full",
  15208. image: {
  15209. source: "./media/characters/anna/full.svg",
  15210. extra: 138 / 114,
  15211. bottom: 0.15
  15212. }
  15213. },
  15214. tongue: {
  15215. height: math.unit(2.53, "feet"),
  15216. name: "Tongue",
  15217. image: {
  15218. source: "./media/characters/anna/tongue.svg"
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(7, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(7, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/ian-corvid/front.svg",
  15239. extra: 150 / 142,
  15240. bottom: 0.02
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(7, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/ian-corvid/back.svg",
  15249. extra: 150 / 143,
  15250. bottom: 0.01
  15251. }
  15252. },
  15253. stomping: {
  15254. height: math.unit(7, "feet"),
  15255. weight: math.unit(150, "lb"),
  15256. name: "Stomping",
  15257. image: {
  15258. source: "./media/characters/ian-corvid/stomping.svg",
  15259. extra: 76 / 72
  15260. }
  15261. },
  15262. sitting: {
  15263. height: math.unit(7 / 1.8, "feet"),
  15264. weight: math.unit(150, "lb"),
  15265. name: "Sitting",
  15266. image: {
  15267. source: "./media/characters/ian-corvid/sitting.svg",
  15268. extra: 1400 / 1269,
  15269. bottom: 0.15
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Tiny Microw",
  15276. height: math.unit(1, "inch")
  15277. },
  15278. {
  15279. name: "Microw",
  15280. height: math.unit(6, "inches")
  15281. },
  15282. {
  15283. name: "Crow",
  15284. height: math.unit(7 + 1 / 12, "feet"),
  15285. default: true
  15286. },
  15287. {
  15288. name: "Macrow",
  15289. height: math.unit(176, "feet")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(5 + 7 / 12, "feet"),
  15298. weight: math.unit(147, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/natalie-kellon/front.svg",
  15302. extra: 1214 / 1141,
  15303. bottom: 0.02
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Micro",
  15310. height: math.unit(1 / 16, "inch")
  15311. },
  15312. {
  15313. name: "Tiny",
  15314. height: math.unit(4, "inches")
  15315. },
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 7 / 12, "feet"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Amazon",
  15323. height: math.unit(12, "feet")
  15324. },
  15325. {
  15326. name: "Giantess",
  15327. height: math.unit(160, "meters")
  15328. },
  15329. {
  15330. name: "Titaness",
  15331. height: math.unit(800, "meters")
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(6, "feet"),
  15340. weight: math.unit(150, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/alluria/front.svg",
  15344. extra: 806 / 738,
  15345. bottom: 0.01
  15346. }
  15347. },
  15348. side: {
  15349. height: math.unit(6, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Side",
  15352. image: {
  15353. source: "./media/characters/alluria/side.svg",
  15354. extra: 800 / 750,
  15355. }
  15356. },
  15357. back: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(150, "lb"),
  15360. name: "Back",
  15361. image: {
  15362. source: "./media/characters/alluria/back.svg",
  15363. extra: 806 / 738,
  15364. }
  15365. },
  15366. frontMaid: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(150, "lb"),
  15369. name: "Front (Maid)",
  15370. image: {
  15371. source: "./media/characters/alluria/front-maid.svg",
  15372. extra: 806 / 738,
  15373. bottom: 0.01
  15374. }
  15375. },
  15376. sideMaid: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Side (Maid)",
  15380. image: {
  15381. source: "./media/characters/alluria/side-maid.svg",
  15382. extra: 800 / 750,
  15383. bottom: 0.005
  15384. }
  15385. },
  15386. backMaid: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Back (Maid)",
  15390. image: {
  15391. source: "./media/characters/alluria/back-maid.svg",
  15392. extra: 806 / 738,
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Micro",
  15399. height: math.unit(6, "inches"),
  15400. default: true
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/kyle/front.svg",
  15413. extra: 1069 / 962,
  15414. bottom: 77.228 / 1727.45
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Macro",
  15421. height: math.unit(150, "feet"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6, "feet"),
  15431. weight: math.unit(300, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/duncan/front.svg",
  15435. extra: 1650 / 1482,
  15436. bottom: 0.05
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Macro",
  15443. height: math.unit(100, "feet"),
  15444. default: true
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(5 + 4 / 12, "feet"),
  15453. weight: math.unit(220, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/memory/front.svg",
  15457. extra: 3641 / 3545,
  15458. bottom: 0.03
  15459. }
  15460. },
  15461. back: {
  15462. height: math.unit(5 + 4 / 12, "feet"),
  15463. weight: math.unit(220, "lb"),
  15464. name: "Back",
  15465. image: {
  15466. source: "./media/characters/memory/back.svg",
  15467. extra: 3641 / 3545,
  15468. bottom: 0.025
  15469. }
  15470. },
  15471. frontSkirt: {
  15472. height: math.unit(5 + 4 / 12, "feet"),
  15473. weight: math.unit(220, "lb"),
  15474. name: "Front (Skirt)",
  15475. image: {
  15476. source: "./media/characters/memory/front-skirt.svg",
  15477. extra: 3641 / 3545,
  15478. bottom: 0.03
  15479. }
  15480. },
  15481. frontDress: {
  15482. height: math.unit(5 + 4 / 12, "feet"),
  15483. weight: math.unit(220, "lb"),
  15484. name: "Front (Dress)",
  15485. image: {
  15486. source: "./media/characters/memory/front-dress.svg",
  15487. extra: 3641 / 3545,
  15488. bottom: 0.03
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Micro",
  15495. height: math.unit(6, "inches"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Normal",
  15500. height: math.unit(5 + 4 / 12, "feet")
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(4 + 11 / 12, "feet"),
  15509. weight: math.unit(100, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/luno/front.svg",
  15513. extra: 1535 / 1487,
  15514. bottom: 0.03
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Micro",
  15521. height: math.unit(3, "inches")
  15522. },
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(4 + 11 / 12, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Macro",
  15530. height: math.unit(300, "feet")
  15531. },
  15532. {
  15533. name: "Megamacro",
  15534. height: math.unit(700, "miles")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6 + 2 / 12, "feet"),
  15543. weight: math.unit(170, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/jamesy/front.svg",
  15547. extra: 440 / 382,
  15548. bottom: 0.005
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Micro",
  15555. height: math.unit(3, "inches")
  15556. },
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(6 + 2 / 12, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(300, "feet")
  15565. },
  15566. {
  15567. name: "Megamacro",
  15568. height: math.unit(700, "miles")
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(6, "feet"),
  15577. weight: math.unit(160, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/mark/front.svg",
  15581. extra: 3300 / 3100,
  15582. bottom: 136.42 / 3440.47
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Macro",
  15589. height: math.unit(120, "meters")
  15590. },
  15591. {
  15592. name: "Bigger Macro",
  15593. height: math.unit(350, "meters")
  15594. },
  15595. {
  15596. name: "Megamacro",
  15597. height: math.unit(8, "km"),
  15598. default: true
  15599. },
  15600. {
  15601. name: "Continental",
  15602. height: math.unit(4550, "km")
  15603. },
  15604. {
  15605. name: "Planetary",
  15606. height: math.unit(65000, "km")
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(400, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/mac/front.svg",
  15619. extra: 1048 / 987.7,
  15620. bottom: 60 / 1107.6,
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Macro",
  15627. height: math.unit(500, "feet"),
  15628. default: true
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(5 + 2 / 12, "feet"),
  15637. weight: math.unit(190, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/bari/front.svg",
  15641. extra: 3156 / 2880,
  15642. bottom: 0.03
  15643. }
  15644. },
  15645. back: {
  15646. height: math.unit(5 + 2 / 12, "feet"),
  15647. weight: math.unit(190, "lb"),
  15648. name: "Back",
  15649. image: {
  15650. source: "./media/characters/bari/back.svg",
  15651. extra: 3260 / 2834,
  15652. bottom: 0.025
  15653. }
  15654. },
  15655. frontPlush: {
  15656. height: math.unit(5 + 2 / 12, "feet"),
  15657. weight: math.unit(190, "lb"),
  15658. name: "Front (Plush)",
  15659. image: {
  15660. source: "./media/characters/bari/front-plush.svg",
  15661. extra: 1112 / 1061,
  15662. bottom: 0.002
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Micro",
  15669. height: math.unit(3, "inches")
  15670. },
  15671. {
  15672. name: "Normal",
  15673. height: math.unit(5 + 2 / 12, "feet"),
  15674. default: true
  15675. },
  15676. {
  15677. name: "Macro",
  15678. height: math.unit(20, "feet")
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15684. {
  15685. front: {
  15686. height: math.unit(6 + 1 / 12, "feet"),
  15687. weight: math.unit(275, "lb"),
  15688. name: "Front",
  15689. image: {
  15690. source: "./media/characters/hunter-misha-raven/front.svg"
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Mortal",
  15697. height: math.unit(6 + 1 / 12, "feet")
  15698. },
  15699. {
  15700. name: "Divine",
  15701. height: math.unit(1.12134e34, "parsecs"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(6 + 3 / 12, "feet"),
  15711. weight: math.unit(220, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/max-calore/front.svg",
  15715. extra: 1700 / 1648,
  15716. bottom: 0.01
  15717. }
  15718. },
  15719. back: {
  15720. height: math.unit(6 + 3 / 12, "feet"),
  15721. weight: math.unit(220, "lb"),
  15722. name: "Back",
  15723. image: {
  15724. source: "./media/characters/max-calore/back.svg",
  15725. extra: 1700 / 1648,
  15726. bottom: 0.01
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(6 + 3 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15740. {
  15741. side: {
  15742. height: math.unit(2 + 8 / 12, "feet"),
  15743. weight: math.unit(99, "lb"),
  15744. name: "Side",
  15745. image: {
  15746. source: "./media/characters/aspen/side.svg",
  15747. extra: 152 / 138,
  15748. bottom: 0.032
  15749. }
  15750. },
  15751. },
  15752. [
  15753. {
  15754. name: "Normal",
  15755. height: math.unit(2 + 8 / 12, "feet"),
  15756. default: true
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15762. {
  15763. side: {
  15764. height: math.unit(3 + 2 / 12, "feet"),
  15765. weight: math.unit(224, "lb"),
  15766. name: "Side",
  15767. image: {
  15768. source: "./media/characters/sheila-feral-wolf/side.svg",
  15769. extra: 179 / 166,
  15770. bottom: 0.03
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(3 + 2 / 12, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15784. {
  15785. side: {
  15786. height: math.unit(1 + 9 / 12, "feet"),
  15787. weight: math.unit(38, "lb"),
  15788. name: "Side",
  15789. image: {
  15790. source: "./media/characters/michelle/side.svg",
  15791. extra: 147 / 136.7,
  15792. bottom: 0.03
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(1 + 9 / 12, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(1 + 1 / 12, "feet"),
  15809. weight: math.unit(18, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/nino/front.svg"
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(1 + 1 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15826. {
  15827. front: {
  15828. height: math.unit(1, "feet"),
  15829. weight: math.unit(16, "lb"),
  15830. name: "Front",
  15831. image: {
  15832. source: "./media/characters/viola/front.svg"
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(1, "feet"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(6 + 5 / 12, "feet"),
  15849. weight: math.unit(580, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/atlas/front.svg",
  15853. extra: 298.5 / 290,
  15854. bottom: 0.015
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(6 + 5 / 12, "feet"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15868. {
  15869. side: {
  15870. height: math.unit(1 + 10 / 12, "feet"),
  15871. weight: math.unit(25, "lb"),
  15872. name: "Side",
  15873. image: {
  15874. source: "./media/characters/davy/side.svg",
  15875. extra: 200 / 170,
  15876. bottom: 0.01
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Normal",
  15883. height: math.unit(1 + 10 / 12, "feet"),
  15884. default: true
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15890. {
  15891. side: {
  15892. height: math.unit(4 + 8 / 12, "feet"),
  15893. weight: math.unit(166, "lb"),
  15894. name: "Side",
  15895. image: {
  15896. source: "./media/characters/fiona/side.svg",
  15897. extra: 232 / 220,
  15898. bottom: 0.03
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(4 + 8 / 12, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15912. {
  15913. front: {
  15914. height: math.unit(2, "feet"),
  15915. weight: math.unit(62, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/lyla/front.svg",
  15919. bottom: 0.1
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(2, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15933. {
  15934. side: {
  15935. height: math.unit(1.8, "feet"),
  15936. weight: math.unit(44, "lb"),
  15937. name: "Side",
  15938. image: {
  15939. source: "./media/characters/perseus/side.svg",
  15940. bottom: 0.21
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(1.8, "feet"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15954. {
  15955. side: {
  15956. height: math.unit(4 + 2 / 12, "feet"),
  15957. weight: math.unit(20, "lb"),
  15958. name: "Side",
  15959. image: {
  15960. source: "./media/characters/remus/side.svg"
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Normal",
  15967. height: math.unit(4 + 2 / 12, "feet"),
  15968. default: true
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(4 + 11 / 12, "feet"),
  15977. weight: math.unit(114, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/raf/front.svg",
  15981. bottom: 0.01
  15982. }
  15983. },
  15984. side: {
  15985. height: math.unit(4 + 11 / 12, "feet"),
  15986. weight: math.unit(114, "lb"),
  15987. name: "Side",
  15988. image: {
  15989. source: "./media/characters/raf/side.svg",
  15990. bottom: 0.005
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Micro",
  15997. height: math.unit(2, "inches")
  15998. },
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(4 + 11 / 12, "feet"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Macro",
  16006. height: math.unit(70, "feet")
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16012. {
  16013. front: {
  16014. height: math.unit(1.5, "meters"),
  16015. weight: math.unit(68, "kg"),
  16016. name: "Front",
  16017. image: {
  16018. source: "./media/characters/liam-einarr/front.svg",
  16019. extra: 2822 / 2666
  16020. }
  16021. },
  16022. back: {
  16023. height: math.unit(1.5, "meters"),
  16024. weight: math.unit(68, "kg"),
  16025. name: "Back",
  16026. image: {
  16027. source: "./media/characters/liam-einarr/back.svg",
  16028. extra: 2822 / 2666,
  16029. bottom: 0.015
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(1.5, "meters"),
  16037. default: true
  16038. },
  16039. {
  16040. name: "Macro",
  16041. height: math.unit(150, "meters")
  16042. },
  16043. {
  16044. name: "Megamacro",
  16045. height: math.unit(35, "km")
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(6, "feet"),
  16054. weight: math.unit(75, "kg"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/linda/front.svg",
  16058. extra: 930 / 874,
  16059. bottom: 0.004
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(6, "feet"),
  16067. default: true
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6 + 8 / 12, "feet"),
  16076. weight: math.unit(220, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/caylex/front.svg",
  16080. extra: 821 / 772,
  16081. bottom: 0.07
  16082. }
  16083. },
  16084. back: {
  16085. height: math.unit(6 + 8 / 12, "feet"),
  16086. weight: math.unit(220, "lb"),
  16087. name: "Back",
  16088. image: {
  16089. source: "./media/characters/caylex/back.svg",
  16090. extra: 821 / 772,
  16091. bottom: 0.022
  16092. }
  16093. },
  16094. hand: {
  16095. height: math.unit(1.25, "feet"),
  16096. name: "Hand",
  16097. image: {
  16098. source: "./media/characters/caylex/hand.svg"
  16099. }
  16100. },
  16101. foot: {
  16102. height: math.unit(1.6, "feet"),
  16103. name: "Foot",
  16104. image: {
  16105. source: "./media/characters/caylex/foot.svg"
  16106. }
  16107. },
  16108. armored: {
  16109. height: math.unit(6 + 8 / 12, "feet"),
  16110. weight: math.unit(250, "lb"),
  16111. name: "Armored",
  16112. image: {
  16113. source: "./media/characters/caylex/armored.svg",
  16114. extra: 1420 / 1310,
  16115. bottom: 0.045
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(6 + 8 / 12, "feet"),
  16123. default: true
  16124. },
  16125. {
  16126. name: "Normal+",
  16127. height: math.unit(12, "feet")
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(7 + 6 / 12, "feet"),
  16136. weight: math.unit(288, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/alana/front.svg",
  16140. extra: 679 / 653,
  16141. bottom: 22.5 / 701
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Normal",
  16148. height: math.unit(7 + 6 / 12, "feet")
  16149. },
  16150. {
  16151. name: "Large",
  16152. height: math.unit(50, "feet")
  16153. },
  16154. {
  16155. name: "Macro",
  16156. height: math.unit(100, "feet"),
  16157. default: true
  16158. },
  16159. {
  16160. name: "Macro+",
  16161. height: math.unit(200, "feet")
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16167. {
  16168. front: {
  16169. height: math.unit(6 + 1 / 12, "feet"),
  16170. weight: math.unit(210, "lb"),
  16171. name: "Front",
  16172. image: {
  16173. source: "./media/characters/hasani/front.svg",
  16174. extra: 244 / 232,
  16175. bottom: 0.01
  16176. }
  16177. },
  16178. back: {
  16179. height: math.unit(6 + 1 / 12, "feet"),
  16180. weight: math.unit(210, "lb"),
  16181. name: "Back",
  16182. image: {
  16183. source: "./media/characters/hasani/back.svg",
  16184. extra: 244 / 232,
  16185. bottom: 0.01
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(6 + 1 / 12, "feet")
  16193. },
  16194. {
  16195. name: "Macro",
  16196. height: math.unit(175, "feet"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(1.82, "meters"),
  16206. weight: math.unit(140, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/nita/front.svg",
  16210. extra: 2473 / 2363,
  16211. bottom: 0.01
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(1.82, "m")
  16219. },
  16220. {
  16221. name: "Macro",
  16222. height: math.unit(300, "m")
  16223. },
  16224. {
  16225. name: "Mistake Canon",
  16226. height: math.unit(0.5, "miles"),
  16227. default: true
  16228. },
  16229. {
  16230. name: "Big Mistake",
  16231. height: math.unit(13, "miles")
  16232. },
  16233. {
  16234. name: "Playing God",
  16235. height: math.unit(2450, "miles")
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(4, "feet"),
  16244. weight: math.unit(120, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/shiriko/front.svg",
  16248. extra: 195 / 188
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(4, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6, "feet"),
  16265. name: "front",
  16266. image: {
  16267. source: "./media/characters/deja/front.svg",
  16268. extra: 926 / 840,
  16269. bottom: 0.07
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Planck Length",
  16276. height: math.unit(1.6e-35, "meters")
  16277. },
  16278. {
  16279. name: "Normal",
  16280. height: math.unit(30.48, "meters"),
  16281. default: true
  16282. },
  16283. {
  16284. name: "Universal",
  16285. height: math.unit(8.8e26, "meters")
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16291. {
  16292. side: {
  16293. height: math.unit(8, "feet"),
  16294. weight: math.unit(6300, "lb"),
  16295. name: "Side",
  16296. image: {
  16297. source: "./media/characters/anima/side.svg",
  16298. bottom: 0.035
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(8, "feet"),
  16306. default: true
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16312. {
  16313. front: {
  16314. height: math.unit(8, "feet"),
  16315. weight: math.unit(350, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/bianca/front.svg",
  16319. extra: 234 / 225,
  16320. bottom: 0.03
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(8, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/adinia/front.svg",
  16341. extra: 1845 / 1672,
  16342. bottom: 0.02
  16343. }
  16344. },
  16345. back: {
  16346. height: math.unit(6, "feet"),
  16347. weight: math.unit(150, "lb"),
  16348. name: "Back",
  16349. image: {
  16350. source: "./media/characters/adinia/back.svg",
  16351. extra: 1845 / 1672,
  16352. bottom: 0.002
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(11 + 5 / 12, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(3, "meters"),
  16369. weight: math.unit(200, "kg"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/lykasa/front.svg",
  16373. extra: 1076 / 976,
  16374. bottom: 0.06
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(3, "meters")
  16382. },
  16383. {
  16384. name: "Kaiju",
  16385. height: math.unit(120, "meters"),
  16386. default: true
  16387. },
  16388. {
  16389. name: "Mega Kaiju",
  16390. height: math.unit(240, "km")
  16391. },
  16392. {
  16393. name: "Giga Kaiju",
  16394. height: math.unit(400, "megameters")
  16395. },
  16396. {
  16397. name: "Tera Kaiju",
  16398. height: math.unit(800, "gigameters")
  16399. },
  16400. {
  16401. name: "Kaiju Dragon Goddess",
  16402. height: math.unit(26, "zettaparsecs")
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16408. {
  16409. side: {
  16410. height: math.unit(283 / 124 * 6, "feet"),
  16411. weight: math.unit(35000, "lb"),
  16412. name: "Side",
  16413. image: {
  16414. source: "./media/characters/malfaren/side.svg",
  16415. extra: 2500 / 1010,
  16416. bottom: 0.01
  16417. }
  16418. },
  16419. front: {
  16420. height: math.unit(22.36, "feet"),
  16421. weight: math.unit(35000, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/malfaren/front.svg",
  16425. extra: 1631 / 1476,
  16426. bottom: 0.01
  16427. }
  16428. },
  16429. maw: {
  16430. height: math.unit(6.9, "feet"),
  16431. name: "Maw",
  16432. image: {
  16433. source: "./media/characters/malfaren/maw.svg"
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Big",
  16440. height: math.unit(283 / 162 * 6, "feet"),
  16441. },
  16442. {
  16443. name: "Bigger",
  16444. height: math.unit(283 / 124 * 6, "feet")
  16445. },
  16446. {
  16447. name: "Massive",
  16448. height: math.unit(283 / 92 * 6, "feet"),
  16449. default: true
  16450. },
  16451. {
  16452. name: "👀💦",
  16453. height: math.unit(283 / 73 * 6, "feet"),
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16459. {
  16460. front: {
  16461. height: math.unit(1.7, "m"),
  16462. weight: math.unit(70, "kg"),
  16463. name: "Front",
  16464. image: {
  16465. source: "./media/characters/kernel/front.svg",
  16466. extra: 222 / 210,
  16467. bottom: 0.007
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Nano",
  16474. height: math.unit(17, "micrometers")
  16475. },
  16476. {
  16477. name: "Micro",
  16478. height: math.unit(1.7, "mm")
  16479. },
  16480. {
  16481. name: "Small",
  16482. height: math.unit(1.7, "cm")
  16483. },
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(1.7, "m"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(1.75, "meters"),
  16496. weight: math.unit(65, "kg"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/jayne-folest/front.svg",
  16500. extra: 2115 / 2007,
  16501. bottom: 0.02
  16502. }
  16503. },
  16504. back: {
  16505. height: math.unit(1.75, "meters"),
  16506. weight: math.unit(65, "kg"),
  16507. name: "Back",
  16508. image: {
  16509. source: "./media/characters/jayne-folest/back.svg",
  16510. extra: 2115 / 2007,
  16511. bottom: 0.005
  16512. }
  16513. },
  16514. frontClothed: {
  16515. height: math.unit(1.75, "meters"),
  16516. weight: math.unit(65, "kg"),
  16517. name: "Front (Clothed)",
  16518. image: {
  16519. source: "./media/characters/jayne-folest/front-clothed.svg",
  16520. extra: 2115 / 2007,
  16521. bottom: 0.035
  16522. }
  16523. },
  16524. hand: {
  16525. height: math.unit(1 / 1.260, "feet"),
  16526. name: "Hand",
  16527. image: {
  16528. source: "./media/characters/jayne-folest/hand.svg"
  16529. }
  16530. },
  16531. foot: {
  16532. height: math.unit(1 / 0.918, "feet"),
  16533. name: "Foot",
  16534. image: {
  16535. source: "./media/characters/jayne-folest/foot.svg"
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Micro",
  16542. height: math.unit(4, "cm")
  16543. },
  16544. {
  16545. name: "Normal",
  16546. height: math.unit(1.75, "meters")
  16547. },
  16548. {
  16549. name: "Macro",
  16550. height: math.unit(47.5, "meters"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(180, "cm"),
  16560. weight: math.unit(70, "kg"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/algier/front.svg",
  16564. extra: 596 / 572,
  16565. bottom: 0.04
  16566. }
  16567. },
  16568. back: {
  16569. height: math.unit(180, "cm"),
  16570. weight: math.unit(70, "kg"),
  16571. name: "Back",
  16572. image: {
  16573. source: "./media/characters/algier/back.svg",
  16574. extra: 596 / 572,
  16575. bottom: 0.025
  16576. }
  16577. },
  16578. frontdressed: {
  16579. height: math.unit(180, "cm"),
  16580. weight: math.unit(150, "kg"),
  16581. name: "Front-dressed",
  16582. image: {
  16583. source: "./media/characters/algier/front-dressed.svg",
  16584. extra: 596 / 572,
  16585. bottom: 0.038
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Micro",
  16592. height: math.unit(5, "cm")
  16593. },
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(180, "cm"),
  16597. default: true
  16598. },
  16599. {
  16600. name: "Macro",
  16601. height: math.unit(64, "m")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16607. {
  16608. upright: {
  16609. height: math.unit(7, "feet"),
  16610. weight: math.unit(300, "lb"),
  16611. name: "Upright",
  16612. image: {
  16613. source: "./media/characters/pretzel/upright.svg",
  16614. extra: 534 / 522,
  16615. bottom: 0.065
  16616. }
  16617. },
  16618. sprawling: {
  16619. height: math.unit(3.75, "feet"),
  16620. weight: math.unit(300, "lb"),
  16621. name: "Sprawling",
  16622. image: {
  16623. source: "./media/characters/pretzel/sprawling.svg",
  16624. extra: 314 / 281,
  16625. bottom: 0.1
  16626. }
  16627. },
  16628. tongue: {
  16629. height: math.unit(2, "feet"),
  16630. name: "Tongue",
  16631. image: {
  16632. source: "./media/characters/pretzel/tongue.svg"
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(7, "feet"),
  16640. default: true
  16641. },
  16642. {
  16643. name: "Oversized",
  16644. height: math.unit(15, "feet")
  16645. },
  16646. {
  16647. name: "Huge",
  16648. height: math.unit(30, "feet")
  16649. },
  16650. {
  16651. name: "Macro",
  16652. height: math.unit(250, "feet")
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16658. {
  16659. sideFront: {
  16660. height: math.unit(5 + 2 / 12, "feet"),
  16661. weight: math.unit(120, "lb"),
  16662. name: "Front Side",
  16663. image: {
  16664. source: "./media/characters/roxi/side-front.svg",
  16665. extra: 2924 / 2717,
  16666. bottom: 0.08
  16667. }
  16668. },
  16669. sideBack: {
  16670. height: math.unit(5 + 2 / 12, "feet"),
  16671. weight: math.unit(120, "lb"),
  16672. name: "Back Side",
  16673. image: {
  16674. source: "./media/characters/roxi/side-back.svg",
  16675. extra: 2904 / 2693,
  16676. bottom: 0.06
  16677. }
  16678. },
  16679. front: {
  16680. height: math.unit(5 + 2 / 12, "feet"),
  16681. weight: math.unit(120, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/roxi/front.svg",
  16685. extra: 2028 / 1907,
  16686. bottom: 0.01
  16687. }
  16688. },
  16689. frontAlt: {
  16690. height: math.unit(5 + 2 / 12, "feet"),
  16691. weight: math.unit(120, "lb"),
  16692. name: "Front (Alt)",
  16693. image: {
  16694. source: "./media/characters/roxi/front-alt.svg",
  16695. extra: 1828 / 1798,
  16696. bottom: 0.01
  16697. }
  16698. },
  16699. sitting: {
  16700. height: math.unit(2.8, "feet"),
  16701. weight: math.unit(120, "lb"),
  16702. name: "Sitting",
  16703. image: {
  16704. source: "./media/characters/roxi/sitting.svg",
  16705. extra: 2660 / 2462,
  16706. bottom: 0.1
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(5 + 2 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16720. {
  16721. side: {
  16722. height: math.unit(55, "feet"),
  16723. weight: math.unit(153, "tons"),
  16724. name: "Side",
  16725. image: {
  16726. source: "./media/characters/shadow/side.svg",
  16727. extra: 701 / 628,
  16728. bottom: 0.02
  16729. }
  16730. },
  16731. flying: {
  16732. height: math.unit(145, "feet"),
  16733. weight: math.unit(153, "tons"),
  16734. name: "Flying",
  16735. image: {
  16736. source: "./media/characters/shadow/flying.svg"
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(55, "feet"),
  16744. default: true
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(6, "feet"),
  16753. weight: math.unit(200, "lb"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/marcie/front.svg",
  16757. extra: 960 / 876,
  16758. bottom: 58 / 1017.87
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(1, "mile"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(7, "feet"),
  16775. weight: math.unit(200, "lb"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/kachina/front.svg",
  16779. extra: 1290.68 / 1119,
  16780. bottom: 36.5 / 1327.18
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(7, "feet"),
  16788. default: true
  16789. },
  16790. ]
  16791. ))
  16792. characterMakers.push(() => makeCharacter(
  16793. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16794. {
  16795. looking: {
  16796. height: math.unit(2, "meters"),
  16797. weight: math.unit(300, "kg"),
  16798. name: "Looking",
  16799. image: {
  16800. source: "./media/characters/kash/looking.svg",
  16801. extra: 474 / 344,
  16802. bottom: 0.03
  16803. }
  16804. },
  16805. side: {
  16806. height: math.unit(2, "meters"),
  16807. weight: math.unit(300, "kg"),
  16808. name: "Side",
  16809. image: {
  16810. source: "./media/characters/kash/side.svg",
  16811. extra: 302 / 251,
  16812. bottom: 0.03
  16813. }
  16814. },
  16815. front: {
  16816. height: math.unit(2, "meters"),
  16817. weight: math.unit(300, "kg"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/kash/front.svg",
  16821. extra: 495 / 360,
  16822. bottom: 0.015
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(2, "meters"),
  16830. default: true
  16831. },
  16832. {
  16833. name: "Big",
  16834. height: math.unit(3, "meters")
  16835. },
  16836. {
  16837. name: "Large",
  16838. height: math.unit(5, "meters")
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16844. {
  16845. feeding: {
  16846. height: math.unit(6.7, "feet"),
  16847. weight: math.unit(350, "lb"),
  16848. name: "Feeding",
  16849. image: {
  16850. source: "./media/characters/lalim/feeding.svg",
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(6.7, "feet"),
  16858. default: true
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(9.5, "feet"),
  16867. weight: math.unit(600, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/de'vout/front.svg",
  16871. extra: 1443 / 1328,
  16872. bottom: 0.025
  16873. }
  16874. },
  16875. back: {
  16876. height: math.unit(9.5, "feet"),
  16877. weight: math.unit(600, "lb"),
  16878. name: "Back",
  16879. image: {
  16880. source: "./media/characters/de'vout/back.svg",
  16881. extra: 1443 / 1328
  16882. }
  16883. },
  16884. frontDressed: {
  16885. height: math.unit(9.5, "feet"),
  16886. weight: math.unit(600, "lb"),
  16887. name: "Front (Dressed",
  16888. image: {
  16889. source: "./media/characters/de'vout/front-dressed.svg",
  16890. extra: 1443 / 1328,
  16891. bottom: 0.025
  16892. }
  16893. },
  16894. backDressed: {
  16895. height: math.unit(9.5, "feet"),
  16896. weight: math.unit(600, "lb"),
  16897. name: "Back (Dressed",
  16898. image: {
  16899. source: "./media/characters/de'vout/back-dressed.svg",
  16900. extra: 1443 / 1328
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(9.5, "feet"),
  16908. default: true
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16914. {
  16915. front: {
  16916. height: math.unit(8, "feet"),
  16917. weight: math.unit(225, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/talana/front.svg",
  16921. extra: 1410 / 1300,
  16922. bottom: 0.015
  16923. }
  16924. },
  16925. frontDressed: {
  16926. height: math.unit(8, "feet"),
  16927. weight: math.unit(225, "lb"),
  16928. name: "Front (Dressed",
  16929. image: {
  16930. source: "./media/characters/talana/front-dressed.svg",
  16931. extra: 1410 / 1300,
  16932. bottom: 0.015
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(8, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16946. {
  16947. side: {
  16948. height: math.unit(7.2, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Side",
  16951. image: {
  16952. source: "./media/characters/xeauvok/side.svg",
  16953. extra: 1975 / 1523,
  16954. bottom: 0.07
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(7.2, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16968. {
  16969. side: {
  16970. height: math.unit(10, "feet"),
  16971. weight: math.unit(900, "kg"),
  16972. name: "Side",
  16973. image: {
  16974. source: "./media/characters/zara/side.svg",
  16975. extra: 504 / 498
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(10, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16989. {
  16990. side: {
  16991. height: math.unit(6, "feet"),
  16992. weight: math.unit(150, "lb"),
  16993. name: "Side",
  16994. image: {
  16995. source: "./media/characters/richard-dragon/side.svg",
  16996. extra: 845 / 340,
  16997. bottom: 0.017
  16998. }
  16999. },
  17000. maw: {
  17001. height: math.unit(2.97, "feet"),
  17002. name: "Maw",
  17003. image: {
  17004. source: "./media/characters/richard-dragon/maw.svg"
  17005. }
  17006. },
  17007. },
  17008. [
  17009. ]
  17010. ))
  17011. characterMakers.push(() => makeCharacter(
  17012. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17013. {
  17014. front: {
  17015. height: math.unit(4, "feet"),
  17016. weight: math.unit(100, "lb"),
  17017. name: "Front",
  17018. image: {
  17019. source: "./media/characters/richard-smeargle/front.svg",
  17020. extra: 2952 / 2820,
  17021. bottom: 0.028
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Normal",
  17028. height: math.unit(4, "feet"),
  17029. default: true
  17030. },
  17031. {
  17032. name: "Dynamax",
  17033. height: math.unit(20, "meters")
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17039. {
  17040. front: {
  17041. height: math.unit(6, "feet"),
  17042. weight: math.unit(110, "lb"),
  17043. name: "Front",
  17044. image: {
  17045. source: "./media/characters/klay/front.svg",
  17046. extra: 962 / 883,
  17047. bottom: 0.04
  17048. }
  17049. },
  17050. back: {
  17051. height: math.unit(6, "feet"),
  17052. weight: math.unit(110, "lb"),
  17053. name: "Back",
  17054. image: {
  17055. source: "./media/characters/klay/back.svg",
  17056. extra: 962 / 883
  17057. }
  17058. },
  17059. beans: {
  17060. height: math.unit(1.15, "feet"),
  17061. name: "Beans",
  17062. image: {
  17063. source: "./media/characters/klay/beans.svg"
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Micro",
  17070. height: math.unit(6, "inches")
  17071. },
  17072. {
  17073. name: "Mini",
  17074. height: math.unit(3, "feet")
  17075. },
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(6, "feet"),
  17079. default: true
  17080. },
  17081. {
  17082. name: "Big",
  17083. height: math.unit(25, "feet")
  17084. },
  17085. {
  17086. name: "Macro",
  17087. height: math.unit(100, "feet")
  17088. },
  17089. {
  17090. name: "Megamacro",
  17091. height: math.unit(400, "feet")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(6, "feet"),
  17100. weight: math.unit(160, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/marcus/front.svg",
  17104. extra: 734 / 676,
  17105. bottom: 0.03
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Little",
  17112. height: math.unit(6, "feet")
  17113. },
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(110, "feet"),
  17117. default: true
  17118. },
  17119. {
  17120. name: "Macro",
  17121. height: math.unit(250, "feet")
  17122. },
  17123. {
  17124. name: "Megamacro",
  17125. height: math.unit(1000, "feet")
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17131. {
  17132. front: {
  17133. height: math.unit(7, "feet"),
  17134. weight: math.unit(275, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/claude-delroute/front.svg",
  17138. extra: 230 / 214,
  17139. bottom: 0.007
  17140. }
  17141. },
  17142. side: {
  17143. height: math.unit(7, "feet"),
  17144. weight: math.unit(275, "lb"),
  17145. name: "Side",
  17146. image: {
  17147. source: "./media/characters/claude-delroute/side.svg",
  17148. extra: 222 / 214,
  17149. bottom: 0.01
  17150. }
  17151. },
  17152. back: {
  17153. height: math.unit(7, "feet"),
  17154. weight: math.unit(275, "lb"),
  17155. name: "Back",
  17156. image: {
  17157. source: "./media/characters/claude-delroute/back.svg",
  17158. extra: 230 / 214,
  17159. bottom: 0.015
  17160. }
  17161. },
  17162. maw: {
  17163. height: math.unit(0.6407, "meters"),
  17164. name: "Maw",
  17165. image: {
  17166. source: "./media/characters/claude-delroute/maw.svg"
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(7, "feet"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Lorge",
  17178. height: math.unit(20, "feet")
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(8 + 4 / 12, "feet"),
  17187. weight: math.unit(600, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/dragonien/front.svg",
  17191. extra: 100 / 94,
  17192. bottom: 3.3 / 103.3445
  17193. }
  17194. },
  17195. back: {
  17196. height: math.unit(8 + 4 / 12, "feet"),
  17197. weight: math.unit(600, "lb"),
  17198. name: "Back",
  17199. image: {
  17200. source: "./media/characters/dragonien/back.svg",
  17201. extra: 776 / 746,
  17202. bottom: 6.4 / 782.0616
  17203. }
  17204. },
  17205. foot: {
  17206. height: math.unit(1.54, "feet"),
  17207. name: "Foot",
  17208. image: {
  17209. source: "./media/characters/dragonien/foot.svg",
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(8 + 4 / 12, "feet"),
  17217. default: true
  17218. },
  17219. {
  17220. name: "Macro",
  17221. height: math.unit(200, "feet")
  17222. },
  17223. {
  17224. name: "Megamacro",
  17225. height: math.unit(1, "mile")
  17226. },
  17227. {
  17228. name: "Gigamacro",
  17229. height: math.unit(1000, "miles")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(5 + 2 / 12, "feet"),
  17238. weight: math.unit(110, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/desta/front.svg",
  17242. extra: 1482 / 1417
  17243. }
  17244. },
  17245. side: {
  17246. height: math.unit(5 + 2 / 12, "feet"),
  17247. weight: math.unit(110, "lb"),
  17248. name: "Side",
  17249. image: {
  17250. source: "./media/characters/desta/side.svg",
  17251. extra: 2579 / 2491,
  17252. bottom: 0.053
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Micro",
  17259. height: math.unit(6, "inches")
  17260. },
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(5 + 2 / 12, "feet"),
  17264. default: true
  17265. },
  17266. {
  17267. name: "Macro",
  17268. height: math.unit(62, "feet")
  17269. },
  17270. {
  17271. name: "Megamacro",
  17272. height: math.unit(1800, "feet")
  17273. },
  17274. ]
  17275. ))
  17276. characterMakers.push(() => makeCharacter(
  17277. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17278. {
  17279. front: {
  17280. height: math.unit(10, "feet"),
  17281. weight: math.unit(700, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/storm-alystar/front.svg",
  17285. extra: 2112 / 1898,
  17286. bottom: 0.034
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Micro",
  17293. height: math.unit(3.5, "inches")
  17294. },
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(10, "feet"),
  17298. default: true
  17299. },
  17300. {
  17301. name: "Macro",
  17302. height: math.unit(400, "feet")
  17303. },
  17304. {
  17305. name: "Deific",
  17306. height: math.unit(60, "miles")
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(2.35, "meters"),
  17315. weight: math.unit(119, "kg"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/ilia/front.svg",
  17319. extra: 1285 / 1255,
  17320. bottom: 0.06
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(2.35, "meters")
  17328. },
  17329. {
  17330. name: "Macro",
  17331. height: math.unit(140, "meters"),
  17332. default: true
  17333. },
  17334. {
  17335. name: "Megamacro",
  17336. height: math.unit(100, "miles")
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17342. {
  17343. front: {
  17344. height: math.unit(6 + 5 / 12, "feet"),
  17345. weight: math.unit(190, "lb"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/kingdead/front.svg",
  17349. extra: 1228 / 1177
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Micro",
  17356. height: math.unit(7, "inches")
  17357. },
  17358. {
  17359. name: "Normal",
  17360. height: math.unit(6 + 5 / 12, "feet")
  17361. },
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(150, "feet"),
  17365. default: true
  17366. },
  17367. {
  17368. name: "Megamacro",
  17369. height: math.unit(200, "miles")
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(8, "feet"),
  17378. weight: math.unit(600, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/kyrehx/front.svg",
  17382. extra: 1195 / 1095,
  17383. bottom: 0.034
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Micro",
  17390. height: math.unit(2, "inches")
  17391. },
  17392. {
  17393. name: "Normal",
  17394. height: math.unit(8, "feet"),
  17395. default: true
  17396. },
  17397. {
  17398. name: "Macro",
  17399. height: math.unit(255, "feet")
  17400. },
  17401. ]
  17402. ))
  17403. characterMakers.push(() => makeCharacter(
  17404. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17405. {
  17406. front: {
  17407. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17408. weight: math.unit(184, "lb"),
  17409. name: "Front",
  17410. image: {
  17411. source: "./media/characters/xang/front.svg",
  17412. extra: 845 / 755
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(0.935 * 146, "feet")
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(0.935 * 3, "miles")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17434. {
  17435. frontDressed: {
  17436. height: math.unit(5 + 7 / 12, "feet"),
  17437. weight: math.unit(140, "lb"),
  17438. name: "Front (Dressed)",
  17439. image: {
  17440. source: "./media/characters/doc-weardno/front-dressed.svg",
  17441. extra: 263 / 234
  17442. }
  17443. },
  17444. backDressed: {
  17445. height: math.unit(5 + 7 / 12, "feet"),
  17446. weight: math.unit(140, "lb"),
  17447. name: "Back (Dressed)",
  17448. image: {
  17449. source: "./media/characters/doc-weardno/back-dressed.svg",
  17450. extra: 266 / 238
  17451. }
  17452. },
  17453. front: {
  17454. height: math.unit(5 + 7 / 12, "feet"),
  17455. weight: math.unit(140, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/doc-weardno/front.svg",
  17459. extra: 254 / 233
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Micro",
  17466. height: math.unit(3, "inches")
  17467. },
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(5 + 7 / 12, "feet"),
  17471. default: true
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(25, "feet")
  17476. },
  17477. {
  17478. name: "Megamacro",
  17479. height: math.unit(2, "miles")
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17485. {
  17486. front: {
  17487. height: math.unit(6 + 2 / 12, "feet"),
  17488. weight: math.unit(153, "lb"),
  17489. name: "Front",
  17490. image: {
  17491. source: "./media/characters/seth-whilst/front.svg",
  17492. bottom: 0.07
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Micro",
  17499. height: math.unit(5, "inches")
  17500. },
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(6 + 2 / 12, "feet"),
  17504. default: true
  17505. },
  17506. ]
  17507. ))
  17508. characterMakers.push(() => makeCharacter(
  17509. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17510. {
  17511. front: {
  17512. height: math.unit(3, "inches"),
  17513. weight: math.unit(8, "grams"),
  17514. name: "Front",
  17515. image: {
  17516. source: "./media/characters/pocket-jabari/front.svg",
  17517. extra: 1024 / 974,
  17518. bottom: 0.039
  17519. }
  17520. },
  17521. },
  17522. [
  17523. {
  17524. name: "Minimicro",
  17525. height: math.unit(8, "mm")
  17526. },
  17527. {
  17528. name: "Micro",
  17529. height: math.unit(3, "inches"),
  17530. default: true
  17531. },
  17532. {
  17533. name: "Normal",
  17534. height: math.unit(3, "feet")
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(15, "feet"),
  17543. weight: math.unit(3280, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/sapphy/front.svg",
  17547. extra: 671 / 577,
  17548. bottom: 0.085
  17549. }
  17550. },
  17551. back: {
  17552. height: math.unit(15, "feet"),
  17553. weight: math.unit(3280, "lb"),
  17554. name: "Back",
  17555. image: {
  17556. source: "./media/characters/sapphy/back.svg",
  17557. extra: 631 / 607,
  17558. bottom: 0.045
  17559. }
  17560. },
  17561. },
  17562. [
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(15, "feet")
  17566. },
  17567. {
  17568. name: "Casual Macro",
  17569. height: math.unit(120, "feet")
  17570. },
  17571. {
  17572. name: "Macro",
  17573. height: math.unit(2150, "feet"),
  17574. default: true
  17575. },
  17576. {
  17577. name: "Megamacro",
  17578. height: math.unit(8, "miles")
  17579. },
  17580. {
  17581. name: "Galaxy Mom",
  17582. height: math.unit(6, "megalightyears")
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17588. {
  17589. front: {
  17590. height: math.unit(6, "feet"),
  17591. weight: math.unit(170, "lb"),
  17592. name: "Front",
  17593. image: {
  17594. source: "./media/characters/kiro/front.svg",
  17595. extra: 1064 / 1012,
  17596. bottom: 0.052
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Micro",
  17603. height: math.unit(6, "inches")
  17604. },
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(6, "feet"),
  17608. default: true
  17609. },
  17610. {
  17611. name: "Macro",
  17612. height: math.unit(72, "feet")
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(5 + 9 / 12, "feet"),
  17621. weight: math.unit(175, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/irishfox/front.svg",
  17625. extra: 1912 / 1680,
  17626. bottom: 0.02
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Nano",
  17633. height: math.unit(1, "mm")
  17634. },
  17635. {
  17636. name: "Micro",
  17637. height: math.unit(2, "inches")
  17638. },
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(5 + 9 / 12, "feet"),
  17642. default: true
  17643. },
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(45, "feet")
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(6 + 1 / 12, "feet"),
  17655. weight: math.unit(150, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/aronai-sieyes/front.svg",
  17659. extra: 1556 / 1480,
  17660. bottom: 0.015
  17661. }
  17662. },
  17663. side: {
  17664. height: math.unit(6 + 1 / 12, "feet"),
  17665. weight: math.unit(150, "lb"),
  17666. name: "Side",
  17667. image: {
  17668. source: "./media/characters/aronai-sieyes/side.svg",
  17669. extra: 1433 / 1390,
  17670. bottom: 0.0393
  17671. }
  17672. },
  17673. back: {
  17674. height: math.unit(6 + 1 / 12, "feet"),
  17675. weight: math.unit(150, "lb"),
  17676. name: "Back",
  17677. image: {
  17678. source: "./media/characters/aronai-sieyes/back.svg",
  17679. extra: 1544 / 1494,
  17680. bottom: 0.02
  17681. }
  17682. },
  17683. frontClothed: {
  17684. height: math.unit(6 + 1 / 12, "feet"),
  17685. weight: math.unit(150, "lb"),
  17686. name: "Front (Clothed)",
  17687. image: {
  17688. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17689. extra: 1582 / 1527
  17690. }
  17691. },
  17692. feral: {
  17693. height: math.unit(18, "feet"),
  17694. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17695. name: "Feral",
  17696. image: {
  17697. source: "./media/characters/aronai-sieyes/feral.svg",
  17698. extra: 1530 / 1240,
  17699. bottom: 0.035
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Micro",
  17706. height: math.unit(2, "inches")
  17707. },
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(6 + 1 / 12, "feet"),
  17711. default: true
  17712. }
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(12, "feet"),
  17720. weight: math.unit(410, "kg"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/xuna/front.svg",
  17724. extra: 2184 / 1980
  17725. }
  17726. },
  17727. side: {
  17728. height: math.unit(12, "feet"),
  17729. weight: math.unit(410, "kg"),
  17730. name: "Side",
  17731. image: {
  17732. source: "./media/characters/xuna/side.svg",
  17733. extra: 2184 / 1980
  17734. }
  17735. },
  17736. back: {
  17737. height: math.unit(12, "feet"),
  17738. weight: math.unit(410, "kg"),
  17739. name: "Back",
  17740. image: {
  17741. source: "./media/characters/xuna/back.svg",
  17742. extra: 2184 / 1980
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Nano glow",
  17749. height: math.unit(10, "nm")
  17750. },
  17751. {
  17752. name: "Micro floof",
  17753. height: math.unit(0.3, "m")
  17754. },
  17755. {
  17756. name: "Huggable softy boi",
  17757. height: math.unit(3.6576, "m"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Admirable floof",
  17762. height: math.unit(80, "meters")
  17763. },
  17764. {
  17765. name: "Gentle macro",
  17766. height: math.unit(300, "meters")
  17767. },
  17768. {
  17769. name: "Very careful floof",
  17770. height: math.unit(3200, "meters")
  17771. },
  17772. {
  17773. name: "The mega floof",
  17774. height: math.unit(36000, "meters")
  17775. },
  17776. {
  17777. name: "Giga-fur-Wicker",
  17778. height: math.unit(4800000, "meters")
  17779. },
  17780. {
  17781. name: "Licky world",
  17782. height: math.unit(20000000, "meters")
  17783. },
  17784. {
  17785. name: "Floofy cyan sun",
  17786. height: math.unit(1500000000, "meters")
  17787. },
  17788. {
  17789. name: "Milky Wicker",
  17790. height: math.unit(1000000000000000000000, "meters")
  17791. },
  17792. {
  17793. name: "The observing Wicker",
  17794. height: math.unit(999999999999999999999999999, "meters")
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(5 + 9 / 12, "feet"),
  17803. weight: math.unit(150, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/arokha-sieyes/front.svg",
  17807. extra: 1425 / 1284,
  17808. bottom: 0.05
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(5 + 9 / 12, "feet")
  17816. },
  17817. {
  17818. name: "Macro",
  17819. height: math.unit(30, "meters"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(6, "feet"),
  17829. weight: math.unit(180, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/arokh-sieyes/front.svg",
  17833. extra: 1830 / 1769,
  17834. bottom: 0.01
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(6, "feet")
  17842. },
  17843. {
  17844. name: "Macro",
  17845. height: math.unit(30, "meters"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17852. {
  17853. side: {
  17854. height: math.unit(13 + 1 / 12, "feet"),
  17855. weight: math.unit(8.5, "tonnes"),
  17856. name: "Side",
  17857. image: {
  17858. source: "./media/characters/goldeneye/side.svg",
  17859. extra: 1182 / 778,
  17860. bottom: 0.067
  17861. }
  17862. },
  17863. paw: {
  17864. height: math.unit(3.4, "feet"),
  17865. name: "Paw",
  17866. image: {
  17867. source: "./media/characters/goldeneye/paw.svg"
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(13 + 1 / 12, "feet"),
  17875. default: true
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17881. {
  17882. front: {
  17883. height: math.unit(6 + 1 / 12, "feet"),
  17884. weight: math.unit(210, "lb"),
  17885. name: "Front",
  17886. image: {
  17887. source: "./media/characters/leonardo-lycheborne/front.svg",
  17888. extra: 390 / 365,
  17889. bottom: 0.032
  17890. }
  17891. },
  17892. side: {
  17893. height: math.unit(6 + 1 / 12, "feet"),
  17894. weight: math.unit(210, "lb"),
  17895. name: "Side",
  17896. image: {
  17897. source: "./media/characters/leonardo-lycheborne/side.svg",
  17898. extra: 390 / 365,
  17899. bottom: 0.005
  17900. }
  17901. },
  17902. back: {
  17903. height: math.unit(6 + 1 / 12, "feet"),
  17904. weight: math.unit(210, "lb"),
  17905. name: "Back",
  17906. image: {
  17907. source: "./media/characters/leonardo-lycheborne/back.svg",
  17908. extra: 392 / 366,
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. hand: {
  17913. height: math.unit(1.08, "feet"),
  17914. name: "Hand",
  17915. image: {
  17916. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17917. }
  17918. },
  17919. foot: {
  17920. height: math.unit(1.32, "feet"),
  17921. name: "Foot",
  17922. image: {
  17923. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17924. }
  17925. },
  17926. were: {
  17927. height: math.unit(20, "feet"),
  17928. weight: math.unit(7800, "lb"),
  17929. name: "Were",
  17930. image: {
  17931. source: "./media/characters/leonardo-lycheborne/were.svg",
  17932. extra: 308 / 294,
  17933. bottom: 0.048
  17934. }
  17935. },
  17936. feral: {
  17937. height: math.unit(7.5, "feet"),
  17938. weight: math.unit(600, "lb"),
  17939. name: "Feral",
  17940. image: {
  17941. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17942. extra: 210 / 186,
  17943. bottom: 0.108
  17944. }
  17945. },
  17946. taur: {
  17947. height: math.unit(11, "feet"),
  17948. weight: math.unit(3300, "lb"),
  17949. name: "Taur",
  17950. image: {
  17951. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17952. extra: 320 / 303,
  17953. bottom: 0.025
  17954. }
  17955. },
  17956. barghest: {
  17957. height: math.unit(11, "feet"),
  17958. weight: math.unit(1300, "lb"),
  17959. name: "Barghest",
  17960. image: {
  17961. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17962. extra: 323 / 302,
  17963. bottom: 0.027
  17964. }
  17965. },
  17966. dick: {
  17967. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17968. name: "Dick",
  17969. image: {
  17970. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17971. }
  17972. },
  17973. dickWere: {
  17974. height: math.unit((20) / 3.8, "feet"),
  17975. name: "Dick (Were)",
  17976. image: {
  17977. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(6 + 1 / 12, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(10, "feet"),
  17994. weight: math.unit(350, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/jet/front.svg",
  17998. extra: 2050 / 1980,
  17999. bottom: 0.013
  18000. }
  18001. },
  18002. back: {
  18003. height: math.unit(10, "feet"),
  18004. weight: math.unit(350, "lb"),
  18005. name: "Back",
  18006. image: {
  18007. source: "./media/characters/jet/back.svg",
  18008. extra: 2050 / 1980,
  18009. bottom: 0.013
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Micro",
  18016. height: math.unit(6, "inches")
  18017. },
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(10, "feet"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Macro",
  18025. height: math.unit(100, "feet")
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18031. {
  18032. front: {
  18033. height: math.unit(15, "feet"),
  18034. weight: math.unit(2800, "lb"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/tanarath/front.svg",
  18038. extra: 2392 / 2220,
  18039. bottom: 0.03
  18040. }
  18041. },
  18042. back: {
  18043. height: math.unit(15, "feet"),
  18044. weight: math.unit(2800, "lb"),
  18045. name: "Back",
  18046. image: {
  18047. source: "./media/characters/tanarath/back.svg",
  18048. extra: 2392 / 2220,
  18049. bottom: 0.03
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(15, "feet"),
  18057. default: true
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(7 + 1 / 12, "feet"),
  18066. weight: math.unit(175, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/patty-cattybatty/front.svg",
  18070. extra: 908 / 874,
  18071. bottom: 0.025
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Micro",
  18078. height: math.unit(1, "inch")
  18079. },
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(7 + 1 / 12, "feet")
  18083. },
  18084. {
  18085. name: "Mini Macro",
  18086. height: math.unit(155, "feet")
  18087. },
  18088. {
  18089. name: "Macro",
  18090. height: math.unit(1077, "feet")
  18091. },
  18092. {
  18093. name: "Mega Macro",
  18094. height: math.unit(47650, "feet"),
  18095. default: true
  18096. },
  18097. {
  18098. name: "Giga Macro",
  18099. height: math.unit(440, "miles")
  18100. },
  18101. {
  18102. name: "Tera Macro",
  18103. height: math.unit(8700, "miles")
  18104. },
  18105. {
  18106. name: "Planetary Macro",
  18107. height: math.unit(32700, "miles")
  18108. },
  18109. {
  18110. name: "Solar Macro",
  18111. height: math.unit(550000, "miles")
  18112. },
  18113. {
  18114. name: "Celestial Macro",
  18115. height: math.unit(2.5, "AU")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(4 + 5 / 12, "feet"),
  18124. weight: math.unit(90, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/cappu/front.svg",
  18128. extra: 1247 / 1152,
  18129. bottom: 0.012
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Normal",
  18136. height: math.unit(4 + 5 / 12, "feet"),
  18137. default: true
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18143. {
  18144. frontDressed: {
  18145. height: math.unit(70, "cm"),
  18146. weight: math.unit(6, "kg"),
  18147. name: "Front (Dressed)",
  18148. image: {
  18149. source: "./media/characters/sebi/front-dressed.svg",
  18150. extra: 713.5 / 686.5,
  18151. bottom: 0.003
  18152. }
  18153. },
  18154. front: {
  18155. height: math.unit(70, "cm"),
  18156. weight: math.unit(5, "kg"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/sebi/front.svg",
  18160. extra: 713.5 / 686.5,
  18161. bottom: 0.003
  18162. }
  18163. }
  18164. },
  18165. [
  18166. {
  18167. name: "Normal",
  18168. height: math.unit(70, "cm"),
  18169. default: true
  18170. },
  18171. {
  18172. name: "Macro",
  18173. height: math.unit(8, "meters")
  18174. },
  18175. ]
  18176. ))
  18177. characterMakers.push(() => makeCharacter(
  18178. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18179. {
  18180. front: {
  18181. height: math.unit(6, "feet"),
  18182. weight: math.unit(150, "lb"),
  18183. name: "Front",
  18184. image: {
  18185. source: "./media/characters/typhek/front.svg",
  18186. extra: 1948 / 1929,
  18187. bottom: 0.025
  18188. }
  18189. },
  18190. side: {
  18191. height: math.unit(6, "feet"),
  18192. weight: math.unit(150, "lb"),
  18193. name: "Side",
  18194. image: {
  18195. source: "./media/characters/typhek/side.svg",
  18196. extra: 2034 / 2010,
  18197. bottom: 0.003
  18198. }
  18199. },
  18200. back: {
  18201. height: math.unit(6, "feet"),
  18202. weight: math.unit(150, "lb"),
  18203. name: "Back",
  18204. image: {
  18205. source: "./media/characters/typhek/back.svg",
  18206. extra: 2005 / 1978,
  18207. bottom: 0.004
  18208. }
  18209. },
  18210. palm: {
  18211. height: math.unit(1.2, "feet"),
  18212. name: "Palm",
  18213. image: {
  18214. source: "./media/characters/typhek/palm.svg"
  18215. }
  18216. },
  18217. fist: {
  18218. height: math.unit(1.1, "feet"),
  18219. name: "Fist",
  18220. image: {
  18221. source: "./media/characters/typhek/fist.svg"
  18222. }
  18223. },
  18224. foot: {
  18225. height: math.unit(1.57, "feet"),
  18226. name: "Foot",
  18227. image: {
  18228. source: "./media/characters/typhek/foot.svg"
  18229. }
  18230. },
  18231. sole: {
  18232. height: math.unit(2.05, "feet"),
  18233. name: "Sole",
  18234. image: {
  18235. source: "./media/characters/typhek/sole.svg"
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Macro",
  18242. height: math.unit(40, "stories"),
  18243. default: true
  18244. },
  18245. {
  18246. name: "Megamacro",
  18247. height: math.unit(1, "mile")
  18248. },
  18249. {
  18250. name: "Gigamacro",
  18251. height: math.unit(4000, "solarradii")
  18252. },
  18253. {
  18254. name: "Universal",
  18255. height: math.unit(1.1, "universes")
  18256. }
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18261. {
  18262. side: {
  18263. height: math.unit(5 + 7 / 12, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Side",
  18266. image: {
  18267. source: "./media/characters/kassy/side.svg",
  18268. extra: 1280 / 1225,
  18269. bottom: 0.002
  18270. }
  18271. },
  18272. front: {
  18273. height: math.unit(5 + 7 / 12, "feet"),
  18274. weight: math.unit(150, "lb"),
  18275. name: "Front",
  18276. image: {
  18277. source: "./media/characters/kassy/front.svg",
  18278. extra: 1280 / 1225,
  18279. bottom: 0.025
  18280. }
  18281. },
  18282. back: {
  18283. height: math.unit(5 + 7 / 12, "feet"),
  18284. weight: math.unit(150, "lb"),
  18285. name: "Back",
  18286. image: {
  18287. source: "./media/characters/kassy/back.svg",
  18288. extra: 1280 / 1225,
  18289. bottom: 0.002
  18290. }
  18291. },
  18292. foot: {
  18293. height: math.unit(1.266, "feet"),
  18294. name: "Foot",
  18295. image: {
  18296. source: "./media/characters/kassy/foot.svg"
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(5 + 7 / 12, "feet")
  18304. },
  18305. {
  18306. name: "Macro",
  18307. height: math.unit(137, "feet"),
  18308. default: true
  18309. },
  18310. {
  18311. name: "Megamacro",
  18312. height: math.unit(1, "mile")
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18318. {
  18319. front: {
  18320. height: math.unit(6 + 1 / 12, "feet"),
  18321. weight: math.unit(200, "lb"),
  18322. name: "Front",
  18323. image: {
  18324. source: "./media/characters/neil/front.svg",
  18325. extra: 1326 / 1250,
  18326. bottom: 0.023
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(6 + 1 / 12, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(200, "feet")
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(5 + 9 / 12, "feet"),
  18347. weight: math.unit(190, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/atticus/front.svg",
  18351. extra: 2934 / 2785,
  18352. bottom: 0.025
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(5 + 9 / 12, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(180, "feet")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18370. {
  18371. side: {
  18372. height: math.unit(9, "feet"),
  18373. weight: math.unit(650, "lb"),
  18374. name: "Side",
  18375. image: {
  18376. source: "./media/characters/milo/side.svg",
  18377. extra: 2644 / 2310,
  18378. bottom: 0.032
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(9, "feet"),
  18386. default: true
  18387. },
  18388. {
  18389. name: "Macro",
  18390. height: math.unit(300, "feet")
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18396. {
  18397. side: {
  18398. height: math.unit(8, "meters"),
  18399. weight: math.unit(90000, "kg"),
  18400. name: "Side",
  18401. image: {
  18402. source: "./media/characters/ijzer/side.svg",
  18403. extra: 2756 / 1600,
  18404. bottom: 0.01
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Small",
  18411. height: math.unit(3, "meters")
  18412. },
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(8, "meters"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Normal+",
  18420. height: math.unit(10, "meters")
  18421. },
  18422. {
  18423. name: "Bigger",
  18424. height: math.unit(24, "meters")
  18425. },
  18426. {
  18427. name: "Huge",
  18428. height: math.unit(80, "meters")
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18434. {
  18435. front: {
  18436. height: math.unit(6 + 2 / 12, "feet"),
  18437. weight: math.unit(153, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/luca-cervicum/front.svg",
  18441. extra: 370 / 327,
  18442. bottom: 0.015
  18443. }
  18444. },
  18445. back: {
  18446. height: math.unit(6 + 2 / 12, "feet"),
  18447. weight: math.unit(153, "lb"),
  18448. name: "Back",
  18449. image: {
  18450. source: "./media/characters/luca-cervicum/back.svg",
  18451. extra: 367 / 333,
  18452. bottom: 0.005
  18453. }
  18454. },
  18455. frontGear: {
  18456. height: math.unit(6 + 2 / 12, "feet"),
  18457. weight: math.unit(173, "lb"),
  18458. name: "Front (Gear)",
  18459. image: {
  18460. source: "./media/characters/luca-cervicum/front-gear.svg",
  18461. extra: 377 / 333,
  18462. bottom: 0.006
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(6 + 2 / 12, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(6 + 1 / 12, "feet"),
  18479. weight: math.unit(304, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/oliver/front.svg",
  18483. extra: 157 / 143,
  18484. bottom: 0.08
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(6 + 1 / 12, "feet"),
  18492. default: true
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(5 + 7 / 12, "feet"),
  18501. weight: math.unit(140, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/shane/front.svg",
  18505. extra: 304 / 289,
  18506. bottom: 0.005
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(5 + 7 / 12, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18520. {
  18521. front: {
  18522. height: math.unit(5 + 9 / 12, "feet"),
  18523. weight: math.unit(178, "lb"),
  18524. name: "Front",
  18525. image: {
  18526. source: "./media/characters/shin/front.svg",
  18527. extra: 159 / 151,
  18528. bottom: 0.015
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(5 + 9 / 12, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(5 + 10 / 12, "feet"),
  18545. weight: math.unit(168, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/xerxes/front.svg",
  18549. extra: 282 / 260,
  18550. bottom: 0.045
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(5 + 10 / 12, "feet"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(6 + 7 / 12, "feet"),
  18567. weight: math.unit(208, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/chaska/front.svg",
  18571. extra: 332 / 319,
  18572. bottom: 0.015
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(6 + 7 / 12, "feet"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18586. {
  18587. front: {
  18588. height: math.unit(5 + 8 / 12, "feet"),
  18589. weight: math.unit(208, "lb"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/enuk/front.svg",
  18593. extra: 437 / 406,
  18594. bottom: 0.02
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(5 + 8 / 12, "feet"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18608. {
  18609. front: {
  18610. height: math.unit(5 + 10 / 12, "feet"),
  18611. weight: math.unit(252, "lb"),
  18612. name: "Front",
  18613. image: {
  18614. source: "./media/characters/bruun/front.svg",
  18615. extra: 197 / 187,
  18616. bottom: 0.012
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(5 + 10 / 12, "feet"),
  18624. default: true
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(6 + 10 / 12, "feet"),
  18633. weight: math.unit(255, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/alexeev/front.svg",
  18637. extra: 213 / 200,
  18638. bottom: 0.05
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(6 + 10 / 12, "feet"),
  18646. default: true
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(2 + 8 / 12, "feet"),
  18655. weight: math.unit(22, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/evelyn/front.svg",
  18659. extra: 208 / 180
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Normal",
  18666. height: math.unit(2 + 8 / 12, "feet"),
  18667. default: true
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(5 + 9 / 12, "feet"),
  18676. weight: math.unit(139, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/inca/front.svg",
  18680. extra: 294 / 291,
  18681. bottom: 0.03
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(5 + 9 / 12, "feet"),
  18689. default: true
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(5 + 1 / 12, "feet"),
  18698. weight: math.unit(84, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/magdalene/front.svg",
  18702. extra: 293 / 273
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(5 + 1 / 12, "feet"),
  18710. default: true
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(6 + 3 / 12, "feet"),
  18719. weight: math.unit(185, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/mera/front.svg",
  18723. extra: 291 / 277,
  18724. bottom: 0.03
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(6 + 3 / 12, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18738. {
  18739. front: {
  18740. height: math.unit(6 + 7 / 12, "feet"),
  18741. weight: math.unit(160, "lb"),
  18742. name: "Front",
  18743. image: {
  18744. source: "./media/characters/ceres/front.svg",
  18745. extra: 1023 / 950,
  18746. bottom: 0.027
  18747. }
  18748. },
  18749. back: {
  18750. height: math.unit(6 + 7 / 12, "feet"),
  18751. weight: math.unit(160, "lb"),
  18752. name: "Back",
  18753. image: {
  18754. source: "./media/characters/ceres/back.svg",
  18755. extra: 1023 / 950
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(6 + 7 / 12, "feet"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18769. {
  18770. front: {
  18771. height: math.unit(5 + 10 / 12, "feet"),
  18772. weight: math.unit(150, "lb"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/kris/front.svg",
  18776. extra: 885 / 803,
  18777. bottom: 0.03
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(5 + 10 / 12, "feet"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(7, "feet"),
  18794. weight: math.unit(120, "kg"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/taluthus/front.svg",
  18798. extra: 903 / 833,
  18799. bottom: 0.015
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(7, "feet"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(300, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(5 + 9 / 12, "feet"),
  18820. weight: math.unit(145, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/dawn/front.svg",
  18824. extra: 2094 / 2016,
  18825. bottom: 0.025
  18826. }
  18827. },
  18828. back: {
  18829. height: math.unit(5 + 9 / 12, "feet"),
  18830. weight: math.unit(160, "lb"),
  18831. name: "Back",
  18832. image: {
  18833. source: "./media/characters/dawn/back.svg",
  18834. extra: 2112 / 2080,
  18835. bottom: 0.005
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Normal",
  18842. height: math.unit(6 + 7 / 12, "feet"),
  18843. default: true
  18844. },
  18845. ]
  18846. ))
  18847. characterMakers.push(() => makeCharacter(
  18848. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18849. {
  18850. anthro: {
  18851. height: math.unit(8 + 3 / 12, "feet"),
  18852. weight: math.unit(450, "lb"),
  18853. name: "Anthro",
  18854. image: {
  18855. source: "./media/characters/arador/anthro.svg",
  18856. extra: 1835 / 1718,
  18857. bottom: 0.025
  18858. }
  18859. },
  18860. feral: {
  18861. height: math.unit(4, "feet"),
  18862. weight: math.unit(200, "lb"),
  18863. name: "Feral",
  18864. image: {
  18865. source: "./media/characters/arador/feral.svg",
  18866. extra: 1683 / 1514,
  18867. bottom: 0.07
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(8 + 3 / 12, "feet")
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(82.5, "feet"),
  18879. default: true
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18885. {
  18886. front: {
  18887. height: math.unit(5 + 10 / 12, "feet"),
  18888. weight: math.unit(125, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/dharsi/front.svg",
  18892. extra: 716 / 630,
  18893. bottom: 0.035
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Nano",
  18900. height: math.unit(100, "nm")
  18901. },
  18902. {
  18903. name: "Micro",
  18904. height: math.unit(2, "inches")
  18905. },
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(5 + 10 / 12, "feet"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Macro",
  18913. height: math.unit(1000, "feet")
  18914. },
  18915. {
  18916. name: "Megamacro",
  18917. height: math.unit(10, "miles")
  18918. },
  18919. {
  18920. name: "Gigamacro",
  18921. height: math.unit(3000, "miles")
  18922. },
  18923. {
  18924. name: "Teramacro",
  18925. height: math.unit(500000, "miles")
  18926. },
  18927. {
  18928. name: "Teramacro+",
  18929. height: math.unit(30, "galaxies")
  18930. },
  18931. ]
  18932. ))
  18933. characterMakers.push(() => makeCharacter(
  18934. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18935. {
  18936. front: {
  18937. height: math.unit(6, "feet"),
  18938. weight: math.unit(150, "lb"),
  18939. name: "Front",
  18940. image: {
  18941. source: "./media/characters/deathy/front.svg",
  18942. extra: 1552 / 1463,
  18943. bottom: 0.025
  18944. }
  18945. },
  18946. side: {
  18947. height: math.unit(6, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/deathy/side.svg",
  18952. extra: 1604 / 1455,
  18953. bottom: 0.025
  18954. }
  18955. },
  18956. back: {
  18957. height: math.unit(6, "feet"),
  18958. weight: math.unit(150, "lb"),
  18959. name: "Back",
  18960. image: {
  18961. source: "./media/characters/deathy/back.svg",
  18962. extra: 1580 / 1463,
  18963. bottom: 0.005
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Micro",
  18970. height: math.unit(5, "millimeters")
  18971. },
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(6 + 5 / 12, "feet"),
  18975. default: true
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18981. {
  18982. front: {
  18983. height: math.unit(16, "feet"),
  18984. weight: math.unit(4000, "lb"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/juniper/front.svg",
  18988. bottom: 0.04
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(16, "feet"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(6, "feet"),
  19005. weight: math.unit(150, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/hipster/front.svg",
  19009. extra: 1312 / 1209,
  19010. bottom: 0.025
  19011. }
  19012. },
  19013. back: {
  19014. height: math.unit(6, "feet"),
  19015. weight: math.unit(150, "lb"),
  19016. name: "Back",
  19017. image: {
  19018. source: "./media/characters/hipster/back.svg",
  19019. extra: 1281 / 1196,
  19020. bottom: 0.01
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Micro",
  19027. height: math.unit(1, "mm")
  19028. },
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(4, "inches"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(500, "feet")
  19037. },
  19038. {
  19039. name: "Megamacro",
  19040. height: math.unit(1000, "miles")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(6, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/tendirmuldr/front.svg",
  19053. extra: 1878 / 1772,
  19054. bottom: 0.015
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Megamacro",
  19061. height: math.unit(1500, "miles"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19068. {
  19069. front: {
  19070. height: math.unit(14, "feet"),
  19071. weight: math.unit(12000, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/mort/front.svg",
  19075. extra: 365 / 318,
  19076. bottom: 0.01
  19077. }
  19078. },
  19079. side: {
  19080. height: math.unit(14, "feet"),
  19081. weight: math.unit(12000, "lb"),
  19082. name: "Side",
  19083. image: {
  19084. source: "./media/characters/mort/side.svg",
  19085. extra: 365 / 318,
  19086. bottom: 0.052
  19087. },
  19088. default: true
  19089. },
  19090. back: {
  19091. height: math.unit(14, "feet"),
  19092. weight: math.unit(12000, "lb"),
  19093. name: "Back",
  19094. image: {
  19095. source: "./media/characters/mort/back.svg",
  19096. extra: 371 / 332,
  19097. bottom: 0.18
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(14, "feet"),
  19105. default: true
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19111. {
  19112. front: {
  19113. height: math.unit(8, "feet"),
  19114. weight: math.unit(1, "ton"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/lycoa/front.svg",
  19118. extra: 1875 / 1789,
  19119. bottom: 0.022
  19120. }
  19121. },
  19122. back: {
  19123. height: math.unit(8, "feet"),
  19124. weight: math.unit(1, "ton"),
  19125. name: "Back",
  19126. image: {
  19127. source: "./media/characters/lycoa/back.svg",
  19128. extra: 1835 / 1781,
  19129. bottom: 0.03
  19130. }
  19131. },
  19132. head: {
  19133. height: math.unit(2.1, "feet"),
  19134. name: "Head",
  19135. image: {
  19136. source: "./media/characters/lycoa/head.svg"
  19137. }
  19138. },
  19139. tailmaw: {
  19140. height: math.unit(1.9, "feet"),
  19141. name: "Tailmaw",
  19142. image: {
  19143. source: "./media/characters/lycoa/tailmaw.svg"
  19144. }
  19145. },
  19146. tentacles: {
  19147. height: math.unit(2.1, "feet"),
  19148. name: "Tentacles",
  19149. image: {
  19150. source: "./media/characters/lycoa/tentacles.svg"
  19151. }
  19152. },
  19153. dick: {
  19154. height: math.unit(1.73, "feet"),
  19155. name: "Dick",
  19156. image: {
  19157. source: "./media/characters/lycoa/dick.svg"
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(8, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Macro",
  19169. height: math.unit(30, "feet")
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(4 + 2 / 12, "feet"),
  19178. weight: math.unit(70, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/naldara/front.svg",
  19182. extra: 841 / 720,
  19183. bottom: 0.04
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(4 + 2 / 12, "feet"),
  19191. default: true
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(13 + 7 / 12, "feet"),
  19200. weight: math.unit(1500, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/briar/front.svg",
  19204. extra: 626 / 596,
  19205. bottom: 0.08
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(13 + 7 / 12, "feet"),
  19213. default: true
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19219. {
  19220. side: {
  19221. height: math.unit(10, "feet"),
  19222. weight: math.unit(500, "lb"),
  19223. name: "Side",
  19224. image: {
  19225. source: "./media/characters/vanguard/side.svg",
  19226. extra: 502 / 425,
  19227. bottom: 0.087
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(10, "feet"),
  19235. default: true
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(7.5, "feet"),
  19244. weight: math.unit(2, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/artemis/front.svg",
  19248. extra: 1192 / 1075,
  19249. bottom: 0.07
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(7.5, "feet"),
  19257. default: true
  19258. },
  19259. {
  19260. name: "Enlarged",
  19261. height: math.unit(12, "feet")
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(5 + 3 / 12, "feet"),
  19270. weight: math.unit(160, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/kira/front.svg",
  19274. extra: 906 / 786,
  19275. bottom: 0.01
  19276. }
  19277. },
  19278. back: {
  19279. height: math.unit(5 + 3 / 12, "feet"),
  19280. weight: math.unit(160, "lb"),
  19281. name: "Back",
  19282. image: {
  19283. source: "./media/characters/kira/back.svg",
  19284. extra: 882 / 757,
  19285. bottom: 0.005
  19286. }
  19287. },
  19288. frontDressed: {
  19289. height: math.unit(5 + 3 / 12, "feet"),
  19290. weight: math.unit(160, "lb"),
  19291. name: "Front (Dressed)",
  19292. image: {
  19293. source: "./media/characters/kira/front-dressed.svg",
  19294. extra: 906 / 786,
  19295. bottom: 0.01
  19296. }
  19297. },
  19298. beans: {
  19299. height: math.unit(0.92, "feet"),
  19300. name: "Beans",
  19301. image: {
  19302. source: "./media/characters/kira/beans.svg"
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(5 + 3 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(5 + 4 / 12, "feet"),
  19319. weight: math.unit(145, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/scramble/front.svg",
  19323. extra: 763 / 727,
  19324. bottom: 0.05
  19325. }
  19326. },
  19327. back: {
  19328. height: math.unit(5 + 4 / 12, "feet"),
  19329. weight: math.unit(145, "lb"),
  19330. name: "Back",
  19331. image: {
  19332. source: "./media/characters/scramble/back.svg",
  19333. extra: 826 / 737,
  19334. bottom: 0.002
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(5 + 4 / 12, "feet"),
  19342. default: true
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19348. {
  19349. side: {
  19350. height: math.unit(6 + 2 / 12, "feet"),
  19351. weight: math.unit(190, "lb"),
  19352. name: "Side",
  19353. image: {
  19354. source: "./media/characters/biscuit/side.svg",
  19355. extra: 858 / 791,
  19356. bottom: 0.044
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(6 + 2 / 12, "feet"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(5 + 2 / 12, "feet"),
  19373. weight: math.unit(120, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/poffin/front.svg",
  19377. extra: 786 / 680,
  19378. bottom: 0.005
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(5 + 2 / 12, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(6 + 3 / 12, "feet"),
  19395. weight: math.unit(519, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/dhari/front.svg",
  19399. extra: 1048 / 946,
  19400. bottom: 0.015
  19401. }
  19402. },
  19403. back: {
  19404. height: math.unit(6 + 3 / 12, "feet"),
  19405. weight: math.unit(519, "lb"),
  19406. name: "Back",
  19407. image: {
  19408. source: "./media/characters/dhari/back.svg",
  19409. extra: 1048 / 931,
  19410. bottom: 0.005
  19411. }
  19412. },
  19413. frontDressed: {
  19414. height: math.unit(6 + 3 / 12, "feet"),
  19415. weight: math.unit(519, "lb"),
  19416. name: "Front (Dressed)",
  19417. image: {
  19418. source: "./media/characters/dhari/front-dressed.svg",
  19419. extra: 1713 / 1546,
  19420. bottom: 0.02
  19421. }
  19422. },
  19423. backDressed: {
  19424. height: math.unit(6 + 3 / 12, "feet"),
  19425. weight: math.unit(519, "lb"),
  19426. name: "Back (Dressed)",
  19427. image: {
  19428. source: "./media/characters/dhari/back-dressed.svg",
  19429. extra: 1699 / 1537,
  19430. bottom: 0.01
  19431. }
  19432. },
  19433. maw: {
  19434. height: math.unit(0.95, "feet"),
  19435. name: "Maw",
  19436. image: {
  19437. source: "./media/characters/dhari/maw.svg"
  19438. }
  19439. },
  19440. wereFront: {
  19441. height: math.unit(12 + 8 / 12, "feet"),
  19442. weight: math.unit(4000, "lb"),
  19443. name: "Front (Were)",
  19444. image: {
  19445. source: "./media/characters/dhari/were-front.svg",
  19446. extra: 1065 / 969,
  19447. bottom: 0.015
  19448. }
  19449. },
  19450. wereBack: {
  19451. height: math.unit(12 + 8 / 12, "feet"),
  19452. weight: math.unit(4000, "lb"),
  19453. name: "Back (Were)",
  19454. image: {
  19455. source: "./media/characters/dhari/were-back.svg",
  19456. extra: 1065 / 969,
  19457. bottom: 0.012
  19458. }
  19459. },
  19460. wereMaw: {
  19461. height: math.unit(0.625, "meters"),
  19462. name: "Maw (Were)",
  19463. image: {
  19464. source: "./media/characters/dhari/were-maw.svg"
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(6 + 3 / 12, "feet"),
  19472. default: true
  19473. },
  19474. ]
  19475. ))
  19476. characterMakers.push(() => makeCharacter(
  19477. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19478. {
  19479. anthro: {
  19480. height: math.unit(5 + 7 / 12, "feet"),
  19481. weight: math.unit(175, "lb"),
  19482. name: "Anthro",
  19483. image: {
  19484. source: "./media/characters/rena-dyne/anthro.svg",
  19485. extra: 1849 / 1785,
  19486. bottom: 0.005
  19487. }
  19488. },
  19489. taur: {
  19490. height: math.unit(15 + 6 / 12, "feet"),
  19491. weight: math.unit(8000, "lb"),
  19492. name: "Taur",
  19493. image: {
  19494. source: "./media/characters/rena-dyne/taur.svg",
  19495. extra: 2315 / 2234,
  19496. bottom: 0.033
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(5 + 7 / 12, "feet"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(8, "feet"),
  19513. weight: math.unit(600, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/weremeep/front.svg",
  19517. extra: 967 / 862,
  19518. bottom: 0.01
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(8, "feet"),
  19526. default: true
  19527. },
  19528. {
  19529. name: "Lorg",
  19530. height: math.unit(12, "feet")
  19531. },
  19532. {
  19533. name: "Oh Lawd She Comin'",
  19534. height: math.unit(20, "feet")
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19540. {
  19541. front: {
  19542. height: math.unit(4, "feet"),
  19543. weight: math.unit(90, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/reza/front.svg",
  19547. extra: 1183 / 1111,
  19548. bottom: 0.017
  19549. }
  19550. },
  19551. back: {
  19552. height: math.unit(4, "feet"),
  19553. weight: math.unit(90, "lb"),
  19554. name: "Back",
  19555. image: {
  19556. source: "./media/characters/reza/back.svg",
  19557. extra: 1183 / 1111,
  19558. bottom: 0.01
  19559. }
  19560. },
  19561. drake: {
  19562. height: math.unit(30, "feet"),
  19563. weight: math.unit(246960, "lb"),
  19564. name: "Drake",
  19565. image: {
  19566. source: "./media/characters/reza/drake.svg",
  19567. extra: 2350 / 2024,
  19568. bottom: 60.7 / 2403
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(4, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19582. {
  19583. side: {
  19584. height: math.unit(15, "feet"),
  19585. weight: math.unit(14, "tons"),
  19586. name: "Side",
  19587. image: {
  19588. source: "./media/characters/athea/side.svg",
  19589. extra: 960 / 540,
  19590. bottom: 0.003
  19591. }
  19592. },
  19593. sitting: {
  19594. height: math.unit(6 * 2.85, "feet"),
  19595. weight: math.unit(14, "tons"),
  19596. name: "Sitting",
  19597. image: {
  19598. source: "./media/characters/athea/sitting.svg",
  19599. extra: 621 / 581,
  19600. bottom: 0.075
  19601. }
  19602. },
  19603. maw: {
  19604. height: math.unit(7.59498031496063, "feet"),
  19605. name: "Maw",
  19606. image: {
  19607. source: "./media/characters/athea/maw.svg"
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Lap Cat",
  19614. height: math.unit(2.5, "feet")
  19615. },
  19616. {
  19617. name: "Minimacro",
  19618. height: math.unit(15, "feet"),
  19619. default: true
  19620. },
  19621. {
  19622. name: "Macro",
  19623. height: math.unit(120, "feet")
  19624. },
  19625. {
  19626. name: "Macro+",
  19627. height: math.unit(640, "feet")
  19628. },
  19629. {
  19630. name: "Colossus",
  19631. height: math.unit(2.2, "miles")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(8 + 8 / 12, "feet"),
  19640. weight: math.unit(130, "kg"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/seroko/front.svg",
  19644. extra: 1385 / 1280,
  19645. bottom: 0.025
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(8 + 8 / 12, "feet"),
  19650. weight: math.unit(130, "kg"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/seroko/back.svg",
  19654. extra: 1369 / 1238,
  19655. bottom: 0.018
  19656. }
  19657. },
  19658. frontDressed: {
  19659. height: math.unit(8 + 8 / 12, "feet"),
  19660. weight: math.unit(130, "kg"),
  19661. name: "Front (Dressed)",
  19662. image: {
  19663. source: "./media/characters/seroko/front-dressed.svg",
  19664. extra: 1366 / 1275,
  19665. bottom: 0.03
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(8 + 8 / 12, "feet"),
  19673. default: true
  19674. },
  19675. ]
  19676. ))
  19677. characterMakers.push(() => makeCharacter(
  19678. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19679. {
  19680. front: {
  19681. height: math.unit(5.5, "feet"),
  19682. weight: math.unit(160, "lb"),
  19683. name: "Front",
  19684. image: {
  19685. source: "./media/characters/quatzi/front.svg",
  19686. extra: 2346 / 2242,
  19687. bottom: 0.015
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5.5, "feet"),
  19695. default: true
  19696. },
  19697. {
  19698. name: "Big",
  19699. height: math.unit(7.7, "feet")
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19705. {
  19706. front: {
  19707. height: math.unit(5 + 11 / 12, "feet"),
  19708. weight: math.unit(180, "lb"),
  19709. name: "Front",
  19710. image: {
  19711. source: "./media/characters/sen/front.svg",
  19712. extra: 1321 / 1254,
  19713. bottom: 0.015
  19714. }
  19715. },
  19716. side: {
  19717. height: math.unit(5 + 11 / 12, "feet"),
  19718. weight: math.unit(180, "lb"),
  19719. name: "Side",
  19720. image: {
  19721. source: "./media/characters/sen/side.svg",
  19722. extra: 1321 / 1254,
  19723. bottom: 0.007
  19724. }
  19725. },
  19726. back: {
  19727. height: math.unit(5 + 11 / 12, "feet"),
  19728. weight: math.unit(180, "lb"),
  19729. name: "Back",
  19730. image: {
  19731. source: "./media/characters/sen/back.svg",
  19732. extra: 1321 / 1254
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 11 / 12, "feet"),
  19740. default: true
  19741. },
  19742. ]
  19743. ))
  19744. characterMakers.push(() => makeCharacter(
  19745. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19746. {
  19747. front: {
  19748. height: math.unit(166.6, "cm"),
  19749. weight: math.unit(66.6, "kg"),
  19750. name: "Front",
  19751. image: {
  19752. source: "./media/characters/fruity/front.svg",
  19753. extra: 1510 / 1386,
  19754. bottom: 0.04
  19755. }
  19756. },
  19757. back: {
  19758. height: math.unit(166.6, "cm"),
  19759. weight: math.unit(66.6, "lb"),
  19760. name: "Back",
  19761. image: {
  19762. source: "./media/characters/fruity/back.svg",
  19763. extra: 1563 / 1435,
  19764. bottom: 0.005
  19765. }
  19766. },
  19767. },
  19768. [
  19769. {
  19770. name: "Normal",
  19771. height: math.unit(166.6, "cm"),
  19772. default: true
  19773. },
  19774. {
  19775. name: "Demonic",
  19776. height: math.unit(166.6, "feet")
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19782. {
  19783. side: {
  19784. height: math.unit(10, "feet"),
  19785. weight: math.unit(500, "lb"),
  19786. name: "Side",
  19787. image: {
  19788. source: "./media/characters/zost/side.svg",
  19789. extra: 966 / 880,
  19790. bottom: 0.075
  19791. }
  19792. },
  19793. mawFront: {
  19794. height: math.unit(1.08, "meters"),
  19795. name: "Maw (Front)",
  19796. image: {
  19797. source: "./media/characters/zost/maw-front.svg"
  19798. }
  19799. },
  19800. mawSide: {
  19801. height: math.unit(2.66, "feet"),
  19802. name: "Maw (Side)",
  19803. image: {
  19804. source: "./media/characters/zost/maw-side.svg"
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(10, "feet"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(5 + 4 / 12, "feet"),
  19821. weight: math.unit(120, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/luci/front.svg",
  19825. extra: 1985 / 1884,
  19826. bottom: 0.04
  19827. }
  19828. },
  19829. back: {
  19830. height: math.unit(5 + 4 / 12, "feet"),
  19831. weight: math.unit(120, "lb"),
  19832. name: "Back",
  19833. image: {
  19834. source: "./media/characters/luci/back.svg",
  19835. extra: 1892 / 1791,
  19836. bottom: 0.002
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(5 + 4 / 12, "feet"),
  19844. default: true
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19850. {
  19851. front: {
  19852. height: math.unit(1500, "feet"),
  19853. weight: math.unit(3.8e6, "tons"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/2th/front.svg",
  19857. extra: 3489 / 3350,
  19858. bottom: 0.1
  19859. }
  19860. },
  19861. foot: {
  19862. height: math.unit(461, "feet"),
  19863. name: "Foot",
  19864. image: {
  19865. source: "./media/characters/2th/foot.svg"
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "\"Micro\"",
  19872. height: math.unit(15 + 7 / 12, "feet")
  19873. },
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(1500, "feet"),
  19877. default: true
  19878. },
  19879. {
  19880. name: "Macro",
  19881. height: math.unit(5000, "feet")
  19882. },
  19883. {
  19884. name: "Megamacro",
  19885. height: math.unit(15, "miles")
  19886. },
  19887. {
  19888. name: "Gigamacro",
  19889. height: math.unit(4000, "miles")
  19890. },
  19891. {
  19892. name: "Galactic",
  19893. height: math.unit(50, "AU")
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19899. {
  19900. front: {
  19901. height: math.unit(5 + 6 / 12, "feet"),
  19902. weight: math.unit(220, "lb"),
  19903. name: "Front",
  19904. image: {
  19905. source: "./media/characters/amethyst/front.svg",
  19906. extra: 2078 / 2040,
  19907. bottom: 0.045
  19908. }
  19909. },
  19910. back: {
  19911. height: math.unit(5 + 6 / 12, "feet"),
  19912. weight: math.unit(220, "lb"),
  19913. name: "Back",
  19914. image: {
  19915. source: "./media/characters/amethyst/back.svg",
  19916. extra: 2021 / 1989,
  19917. bottom: 0.02
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(5 + 6 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(4 + 11 / 12, "feet"),
  19934. weight: math.unit(120, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/yumi-akiyama/front.svg",
  19938. extra: 1327 / 1235,
  19939. bottom: 0.02
  19940. }
  19941. },
  19942. back: {
  19943. height: math.unit(4 + 11 / 12, "feet"),
  19944. weight: math.unit(120, "lb"),
  19945. name: "Back",
  19946. image: {
  19947. source: "./media/characters/yumi-akiyama/back.svg",
  19948. extra: 1287 / 1245,
  19949. bottom: 0.002
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Galactic",
  19956. height: math.unit(50, "galaxies"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Universal",
  19961. height: math.unit(100, "universes")
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(8, "feet"),
  19970. weight: math.unit(500, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/rifter-yrmori/front.svg",
  19974. extra: 1180 / 1125,
  19975. bottom: 0.02
  19976. }
  19977. },
  19978. back: {
  19979. height: math.unit(8, "feet"),
  19980. weight: math.unit(500, "lb"),
  19981. name: "Back",
  19982. image: {
  19983. source: "./media/characters/rifter-yrmori/back.svg",
  19984. extra: 1190 / 1145,
  19985. bottom: 0.001
  19986. }
  19987. },
  19988. wings: {
  19989. height: math.unit(7.75, "feet"),
  19990. weight: math.unit(500, "lb"),
  19991. name: "Wings",
  19992. image: {
  19993. source: "./media/characters/rifter-yrmori/wings.svg",
  19994. extra: 1357 / 1285
  19995. }
  19996. },
  19997. maw: {
  19998. height: math.unit(0.8, "feet"),
  19999. name: "Maw",
  20000. image: {
  20001. source: "./media/characters/rifter-yrmori/maw.svg"
  20002. }
  20003. },
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(8, "feet"),
  20009. default: true
  20010. },
  20011. {
  20012. name: "Macro",
  20013. height: math.unit(42, "meters")
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20019. {
  20020. were: {
  20021. height: math.unit(25 + 6 / 12, "feet"),
  20022. weight: math.unit(10000, "lb"),
  20023. name: "Were",
  20024. image: {
  20025. source: "./media/characters/tahajin/were.svg",
  20026. extra: 801 / 770,
  20027. bottom: 0.042
  20028. }
  20029. },
  20030. aquatic: {
  20031. height: math.unit(6 + 4 / 12, "feet"),
  20032. weight: math.unit(160, "lb"),
  20033. name: "Aquatic",
  20034. image: {
  20035. source: "./media/characters/tahajin/aquatic.svg",
  20036. extra: 572 / 542,
  20037. bottom: 0.04
  20038. }
  20039. },
  20040. chow: {
  20041. height: math.unit(8 + 11 / 12, "feet"),
  20042. weight: math.unit(450, "lb"),
  20043. name: "Chow",
  20044. image: {
  20045. source: "./media/characters/tahajin/chow.svg",
  20046. extra: 660 / 640,
  20047. bottom: 0.015
  20048. }
  20049. },
  20050. demiNaga: {
  20051. height: math.unit(6 + 8 / 12, "feet"),
  20052. weight: math.unit(300, "lb"),
  20053. name: "Demi Naga",
  20054. image: {
  20055. source: "./media/characters/tahajin/demi-naga.svg",
  20056. extra: 643 / 615,
  20057. bottom: 0.1
  20058. }
  20059. },
  20060. data: {
  20061. height: math.unit(5, "inches"),
  20062. weight: math.unit(0.1, "lb"),
  20063. name: "Data",
  20064. image: {
  20065. source: "./media/characters/tahajin/data.svg"
  20066. }
  20067. },
  20068. fluu: {
  20069. height: math.unit(5 + 7 / 12, "feet"),
  20070. weight: math.unit(140, "lb"),
  20071. name: "Fluu",
  20072. image: {
  20073. source: "./media/characters/tahajin/fluu.svg",
  20074. extra: 628 / 592,
  20075. bottom: 0.02
  20076. }
  20077. },
  20078. starWarrior: {
  20079. height: math.unit(4 + 5 / 12, "feet"),
  20080. weight: math.unit(50, "lb"),
  20081. name: "Star Warrior",
  20082. image: {
  20083. source: "./media/characters/tahajin/star-warrior.svg"
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(25 + 6 / 12, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(8, "feet"),
  20100. weight: math.unit(350, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/gabira/front.svg",
  20104. extra: 608 / 580,
  20105. bottom: 0.03
  20106. }
  20107. },
  20108. back: {
  20109. height: math.unit(8, "feet"),
  20110. weight: math.unit(350, "lb"),
  20111. name: "Back",
  20112. image: {
  20113. source: "./media/characters/gabira/back.svg",
  20114. extra: 608 / 580,
  20115. bottom: 0.03
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(8, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 3 / 12, "feet"),
  20132. weight: math.unit(137, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/sasha-katraine/front.svg",
  20136. bottom: 0.045
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Micro",
  20143. height: math.unit(5, "inches")
  20144. },
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(5 + 3 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20154. {
  20155. side: {
  20156. height: math.unit(4, "inches"),
  20157. weight: math.unit(200, "grams"),
  20158. name: "Side",
  20159. image: {
  20160. source: "./media/characters/der/side.svg",
  20161. extra: 719 / 400,
  20162. bottom: 30.6 / 749.9187
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Micro",
  20169. height: math.unit(4, "inches"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20176. {
  20177. side: {
  20178. height: math.unit(30, "meters"),
  20179. weight: math.unit(700, "tonnes"),
  20180. name: "Side",
  20181. image: {
  20182. source: "./media/characters/fixerdragon/side.svg",
  20183. extra: (1293.0514 - 116.03) / 1106.86,
  20184. bottom: 116.03 / 1293.0514
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Planck",
  20191. height: math.unit(1.6e-35, "meters")
  20192. },
  20193. {
  20194. name: "Micro",
  20195. height: math.unit(0.4, "meters")
  20196. },
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(30, "meters"),
  20200. default: true
  20201. },
  20202. {
  20203. name: "Megamacro",
  20204. height: math.unit(1.2, "megameters")
  20205. },
  20206. {
  20207. name: "Teramacro",
  20208. height: math.unit(130, "terameters")
  20209. },
  20210. {
  20211. name: "Yottamacro",
  20212. height: math.unit(6200, "yottameters")
  20213. },
  20214. ]
  20215. ));
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(8, "feet"),
  20221. weight: math.unit(250, "lb"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/kite/front.svg",
  20225. extra: 2796 / 2659,
  20226. bottom: 0.002
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(8, "feet"),
  20234. default: true
  20235. },
  20236. {
  20237. name: "Macro",
  20238. height: math.unit(360, "feet")
  20239. },
  20240. {
  20241. name: "Megamacro",
  20242. height: math.unit(1500, "feet")
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(5 + 10 / 12, "feet"),
  20251. weight: math.unit(150, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/poojawa-vynar/front.svg",
  20255. extra: (1506.1547 - 55) / 1356.6,
  20256. bottom: 55 / 1506.1547
  20257. }
  20258. },
  20259. frontTailless: {
  20260. height: math.unit(5 + 10 / 12, "feet"),
  20261. weight: math.unit(150, "lb"),
  20262. name: "Front (Tailless)",
  20263. image: {
  20264. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20265. extra: (1506.1547 - 55) / 1356.6,
  20266. bottom: 55 / 1506.1547
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(5 + 10 / 12, "feet"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(293, "meters"),
  20283. weight: math.unit(70400, "tons"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/violette/front.svg",
  20287. extra: 1227 / 1180,
  20288. bottom: 0.005
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(293, "meters"),
  20293. weight: math.unit(70400, "tons"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/violette/back.svg",
  20297. extra: 1227 / 1180,
  20298. bottom: 0.005
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Macro",
  20305. height: math.unit(293, "meters"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(1050, "feet"),
  20315. weight: math.unit(200000, "tons"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/alessandra/front.svg",
  20319. extra: 960 / 912,
  20320. bottom: 0.06
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Macro",
  20327. height: math.unit(1050, "feet")
  20328. },
  20329. {
  20330. name: "Macro+",
  20331. height: math.unit(900, "meters"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(5, "feet"),
  20341. weight: math.unit(187, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/person/front.svg",
  20345. extra: 3087 / 2945,
  20346. bottom: 91 / 3181
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Micro",
  20353. height: math.unit(3, "inches")
  20354. },
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(5, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Macro",
  20362. height: math.unit(90, "feet")
  20363. },
  20364. {
  20365. name: "Max Size",
  20366. height: math.unit(280, "feet")
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20372. {
  20373. front: {
  20374. height: math.unit(4.5, "meters"),
  20375. weight: math.unit(3200, "lb"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/ty/front.svg",
  20379. extra: 1038 / 960,
  20380. bottom: 31.156 / 1068
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(4.5, "meters"),
  20385. weight: math.unit(3200, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/ty/back.svg",
  20389. extra: 1044 / 966,
  20390. bottom: 7.48 / 1049
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(4.5, "meters"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(5 + 4 / 12, "feet"),
  20407. weight: math.unit(115, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/rocky/front.svg",
  20411. extra: 1012 / 975,
  20412. bottom: 54 / 1066
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(5 + 4 / 12, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20426. {
  20427. upright: {
  20428. height: math.unit(6, "meters"),
  20429. weight: math.unit(4000, "kg"),
  20430. name: "Upright",
  20431. image: {
  20432. source: "./media/characters/ruin/upright.svg",
  20433. extra: 668 / 661,
  20434. bottom: 42 / 799.8396
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(6, "meters"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(5, "feet"),
  20451. weight: math.unit(106, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/robin/front.svg",
  20455. extra: 862 / 799,
  20456. bottom: 42.4 / 914.8856
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(5, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20470. {
  20471. side: {
  20472. height: math.unit(3, "feet"),
  20473. weight: math.unit(225, "lb"),
  20474. name: "Side",
  20475. image: {
  20476. source: "./media/characters/saian/side.svg",
  20477. extra: 566 / 356,
  20478. bottom: 79.7 / 643
  20479. }
  20480. },
  20481. maw: {
  20482. height: math.unit(2.85, "feet"),
  20483. name: "Maw",
  20484. image: {
  20485. source: "./media/characters/saian/maw.svg"
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Normal",
  20492. height: math.unit(3, "feet"),
  20493. default: true
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20499. {
  20500. side: {
  20501. height: math.unit(8, "feet"),
  20502. weight: math.unit(300, "lb"),
  20503. name: "Side",
  20504. image: {
  20505. source: "./media/characters/equus-silvermane/side.svg",
  20506. extra: 2176 / 2050,
  20507. bottom: 65.7 / 2245
  20508. }
  20509. },
  20510. front: {
  20511. height: math.unit(8, "feet"),
  20512. weight: math.unit(300, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/equus-silvermane/front.svg",
  20516. extra: 4633 / 4400,
  20517. bottom: 71.3 / 4706.915
  20518. }
  20519. },
  20520. sideStepping: {
  20521. height: math.unit(8, "feet"),
  20522. weight: math.unit(300, "lb"),
  20523. name: "Side (Stepping)",
  20524. image: {
  20525. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20526. extra: 1968 / 1860,
  20527. bottom: 16.4 / 1989
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(8, "feet")
  20535. },
  20536. {
  20537. name: "Minimacro",
  20538. height: math.unit(75, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(150, "feet")
  20544. },
  20545. {
  20546. name: "Macro+",
  20547. height: math.unit(1000, "feet")
  20548. },
  20549. {
  20550. name: "Megamacro",
  20551. height: math.unit(1, "mile")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20557. {
  20558. side: {
  20559. height: math.unit(20, "feet"),
  20560. weight: math.unit(30000, "kg"),
  20561. name: "Side",
  20562. image: {
  20563. source: "./media/characters/windar/side.svg",
  20564. extra: 1491 / 1248,
  20565. bottom: 82.56 / 1568
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(20, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20579. {
  20580. side: {
  20581. height: math.unit(15.66, "feet"),
  20582. weight: math.unit(150, "lb"),
  20583. name: "Side",
  20584. image: {
  20585. source: "./media/characters/melody/side.svg",
  20586. extra: 1097 / 944,
  20587. bottom: 11.8 / 1109
  20588. }
  20589. },
  20590. sideOutfit: {
  20591. height: math.unit(15.66, "feet"),
  20592. weight: math.unit(150, "lb"),
  20593. name: "Side (Outfit)",
  20594. image: {
  20595. source: "./media/characters/melody/side-outfit.svg",
  20596. extra: 1097 / 944,
  20597. bottom: 11.8 / 1109
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(15.66, "feet"),
  20605. default: true
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(8, "feet"),
  20614. weight: math.unit(325, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/windera/front.svg",
  20618. extra: 3180 / 2845,
  20619. bottom: 178 / 3365
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(8, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20633. {
  20634. front: {
  20635. height: math.unit(28.75, "feet"),
  20636. weight: math.unit(2000, "kg"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/sonear/front.svg",
  20640. extra: 1041.1 / 964.9,
  20641. bottom: 53.7 / 1096.6
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(28.75, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20655. {
  20656. side: {
  20657. height: math.unit(25.5, "feet"),
  20658. weight: math.unit(23000, "kg"),
  20659. name: "Side",
  20660. image: {
  20661. source: "./media/characters/kanara/side.svg"
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(25.5, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20675. {
  20676. side: {
  20677. height: math.unit(10, "feet"),
  20678. weight: math.unit(1000, "kg"),
  20679. name: "Side",
  20680. image: {
  20681. source: "./media/characters/ereus/side.svg",
  20682. extra: 1157 / 959,
  20683. bottom: 153 / 1312.5
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(10, "feet"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20697. {
  20698. side: {
  20699. height: math.unit(4.5, "feet"),
  20700. weight: math.unit(500, "lb"),
  20701. name: "Side",
  20702. image: {
  20703. source: "./media/characters/e-ter/side.svg",
  20704. extra: 1550 / 1248,
  20705. bottom: 146 / 1694
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(4.5, "feet"),
  20713. default: true
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20719. {
  20720. side: {
  20721. height: math.unit(9.7, "feet"),
  20722. weight: math.unit(4000, "kg"),
  20723. name: "Side",
  20724. image: {
  20725. source: "./media/characters/yamie/side.svg"
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(9.7, "feet"),
  20733. default: true
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(50, "feet"),
  20742. weight: math.unit(50000, "kg"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/anders/front.svg",
  20746. extra: 570 / 539,
  20747. bottom: 14.7 / 586.7
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Large",
  20754. height: math.unit(50, "feet")
  20755. },
  20756. {
  20757. name: "Macro",
  20758. height: math.unit(2000, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Megamacro",
  20763. height: math.unit(12, "miles")
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(7 + 2 / 12, "feet"),
  20772. weight: math.unit(300, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/reban/front.svg",
  20776. extra: 516 / 487,
  20777. bottom: 42.82 / 558.356
  20778. }
  20779. },
  20780. dick: {
  20781. height: math.unit(7 / 5, "feet"),
  20782. name: "Dick",
  20783. image: {
  20784. source: "./media/characters/reban/dick.svg"
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Natural Height",
  20791. height: math.unit(7 + 2 / 12, "feet")
  20792. },
  20793. {
  20794. name: "Macro",
  20795. height: math.unit(500, "feet"),
  20796. default: true
  20797. },
  20798. {
  20799. name: "Canon Height",
  20800. height: math.unit(50, "AU")
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20806. {
  20807. front: {
  20808. height: math.unit(6, "feet"),
  20809. weight: math.unit(150, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/terrance-keayes/front.svg",
  20813. extra: 1.005,
  20814. bottom: 151 / 1615
  20815. }
  20816. },
  20817. side: {
  20818. height: math.unit(6, "feet"),
  20819. weight: math.unit(150, "lb"),
  20820. name: "Side",
  20821. image: {
  20822. source: "./media/characters/terrance-keayes/side.svg",
  20823. extra: 1.005,
  20824. bottom: 129.4 / 1544
  20825. }
  20826. },
  20827. back: {
  20828. height: math.unit(6, "feet"),
  20829. weight: math.unit(150, "lb"),
  20830. name: "Back",
  20831. image: {
  20832. source: "./media/characters/terrance-keayes/back.svg",
  20833. extra: 1.005,
  20834. bottom: 58.4 / 1557.3
  20835. }
  20836. },
  20837. dick: {
  20838. height: math.unit(6 * 0.208, "feet"),
  20839. name: "Dick",
  20840. image: {
  20841. source: "./media/characters/terrance-keayes/dick.svg"
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Canon Height",
  20848. height: math.unit(35, "miles"),
  20849. default: true
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(6, "feet"),
  20858. weight: math.unit(150, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/ofelia/front.svg",
  20862. extra: 546 / 541,
  20863. bottom: 39 / 583
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(6, "feet"),
  20868. weight: math.unit(150, "lb"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/ofelia/back.svg",
  20872. extra: 564 / 559.5,
  20873. bottom: 8.69 / 573.02
  20874. }
  20875. },
  20876. maw: {
  20877. height: math.unit(1, "feet"),
  20878. name: "Maw",
  20879. image: {
  20880. source: "./media/characters/ofelia/maw.svg"
  20881. }
  20882. },
  20883. foot: {
  20884. height: math.unit(1.949, "feet"),
  20885. name: "Foot",
  20886. image: {
  20887. source: "./media/characters/ofelia/foot.svg"
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Canon Height",
  20894. height: math.unit(2000, "miles"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(6, "feet"),
  20904. weight: math.unit(150, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/samuel/front.svg",
  20908. extra: 265 / 258,
  20909. bottom: 2 / 266.1566
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Macro",
  20916. height: math.unit(100, "feet"),
  20917. default: true
  20918. },
  20919. {
  20920. name: "Full Size",
  20921. height: math.unit(1000, "miles")
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20927. {
  20928. front: {
  20929. height: math.unit(6, "feet"),
  20930. weight: math.unit(300, "lb"),
  20931. name: "Front",
  20932. image: {
  20933. source: "./media/characters/beishir-kiel/front.svg",
  20934. extra: 569 / 547,
  20935. bottom: 41.9 / 609
  20936. }
  20937. },
  20938. maw: {
  20939. height: math.unit(6 * 0.202, "feet"),
  20940. name: "Maw",
  20941. image: {
  20942. source: "./media/characters/beishir-kiel/maw.svg"
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Macro",
  20949. height: math.unit(300, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(5 + 8 / 12, "feet"),
  20959. weight: math.unit(120, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/logan-grey/front.svg",
  20963. extra: 2539 / 2393,
  20964. bottom: 97.6 / 2636.37
  20965. }
  20966. },
  20967. frontAlt: {
  20968. height: math.unit(5 + 8 / 12, "feet"),
  20969. weight: math.unit(120, "lb"),
  20970. name: "Front (Alt)",
  20971. image: {
  20972. source: "./media/characters/logan-grey/front-alt.svg",
  20973. extra: 958 / 893,
  20974. bottom: 15 / 970.768
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(5 + 8 / 12, "feet"),
  20979. weight: math.unit(120, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/logan-grey/back.svg",
  20983. extra: 958 / 893,
  20984. bottom: 2.1881 / 970.9788
  20985. }
  20986. },
  20987. dick: {
  20988. height: math.unit(1.437, "feet"),
  20989. name: "Dick",
  20990. image: {
  20991. source: "./media/characters/logan-grey/dick.svg"
  20992. }
  20993. },
  20994. },
  20995. [
  20996. {
  20997. name: "Normal",
  20998. height: math.unit(5 + 8 / 12, "feet")
  20999. },
  21000. {
  21001. name: "The 500 Foot Femboy",
  21002. height: math.unit(500, "feet"),
  21003. default: true
  21004. },
  21005. {
  21006. name: "Megmacro",
  21007. height: math.unit(20, "miles")
  21008. },
  21009. ]
  21010. ))
  21011. characterMakers.push(() => makeCharacter(
  21012. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21013. {
  21014. front: {
  21015. height: math.unit(8 + 2 / 12, "feet"),
  21016. weight: math.unit(275, "lb"),
  21017. name: "Front",
  21018. image: {
  21019. source: "./media/characters/draganta/front.svg",
  21020. extra: 1177 / 1135,
  21021. bottom: 33.46 / 1212.1
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(8 + 6 / 12, "feet"),
  21029. default: true
  21030. },
  21031. {
  21032. name: "Macro",
  21033. height: math.unit(150, "feet")
  21034. },
  21035. {
  21036. name: "Megamacro",
  21037. height: math.unit(1000, "miles")
  21038. },
  21039. ]
  21040. ))
  21041. characterMakers.push(() => makeCharacter(
  21042. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21043. {
  21044. front: {
  21045. height: math.unit(1.72, "m"),
  21046. weight: math.unit(80, "lb"),
  21047. name: "Front",
  21048. image: {
  21049. source: "./media/characters/voski/front.svg",
  21050. extra: 2076.22 / 2022.4,
  21051. bottom: 102.7 / 2177.3866
  21052. }
  21053. },
  21054. frontNsfw: {
  21055. height: math.unit(1.72, "m"),
  21056. weight: math.unit(80, "lb"),
  21057. name: "Front (NSFW)",
  21058. image: {
  21059. source: "./media/characters/voski/front-nsfw.svg",
  21060. extra: 2076.22 / 2022.4,
  21061. bottom: 102.7 / 2177.3866
  21062. }
  21063. },
  21064. back: {
  21065. height: math.unit(1.72, "m"),
  21066. weight: math.unit(80, "lb"),
  21067. name: "Back",
  21068. image: {
  21069. source: "./media/characters/voski/back.svg",
  21070. extra: 2104 / 2051,
  21071. bottom: 10.45 / 2113.63
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(1.72, "m")
  21079. },
  21080. {
  21081. name: "Macro",
  21082. height: math.unit(55, "m"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Macro+",
  21087. height: math.unit(300, "m")
  21088. },
  21089. {
  21090. name: "Macro++",
  21091. height: math.unit(700, "m")
  21092. },
  21093. {
  21094. name: "Macro+++",
  21095. height: math.unit(4500, "m")
  21096. },
  21097. {
  21098. name: "Macro++++",
  21099. height: math.unit(45, "km")
  21100. },
  21101. {
  21102. name: "Macro+++++",
  21103. height: math.unit(1220, "km")
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21109. {
  21110. front: {
  21111. height: math.unit(2.3, "m"),
  21112. weight: math.unit(304, "kg"),
  21113. name: "Front",
  21114. image: {
  21115. source: "./media/characters/icowom-lee/front.svg",
  21116. extra: 985 / 955,
  21117. bottom: 25.4 / 1012
  21118. }
  21119. },
  21120. fronttentacles: {
  21121. height: math.unit(2.3, "m"),
  21122. weight: math.unit(304, "kg"),
  21123. name: "Front-tentacles",
  21124. image: {
  21125. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21126. extra: 985 / 955,
  21127. bottom: 25.4 / 1012
  21128. }
  21129. },
  21130. back: {
  21131. height: math.unit(2.3, "m"),
  21132. weight: math.unit(304, "kg"),
  21133. name: "Back",
  21134. image: {
  21135. source: "./media/characters/icowom-lee/back.svg",
  21136. extra: 975 / 954,
  21137. bottom: 9.5 / 985
  21138. }
  21139. },
  21140. backtentacles: {
  21141. height: math.unit(2.3, "m"),
  21142. weight: math.unit(304, "kg"),
  21143. name: "Back-tentacles",
  21144. image: {
  21145. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21146. extra: 975 / 954,
  21147. bottom: 9.5 / 985
  21148. }
  21149. },
  21150. frontDressed: {
  21151. height: math.unit(2.3, "m"),
  21152. weight: math.unit(304, "kg"),
  21153. name: "Front (Dressed)",
  21154. image: {
  21155. source: "./media/characters/icowom-lee/front-dressed.svg",
  21156. extra: 3076 / 2933,
  21157. bottom: 51.4 / 3125.1889
  21158. }
  21159. },
  21160. rump: {
  21161. height: math.unit(0.776, "meters"),
  21162. name: "Rump",
  21163. image: {
  21164. source: "./media/characters/icowom-lee/rump.svg"
  21165. }
  21166. },
  21167. genitals: {
  21168. height: math.unit(0.78, "meters"),
  21169. name: "Genitals",
  21170. image: {
  21171. source: "./media/characters/icowom-lee/genitals.svg"
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(2.3, "meters"),
  21179. default: true
  21180. },
  21181. {
  21182. name: "Macro",
  21183. height: math.unit(94, "meters"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(22, "meters"),
  21193. weight: math.unit(21000, "kg"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/shock-diamond/front.svg",
  21197. extra: 2204 / 2053,
  21198. bottom: 65 / 2239.47
  21199. }
  21200. },
  21201. frontNude: {
  21202. height: math.unit(22, "meters"),
  21203. weight: math.unit(21000, "kg"),
  21204. name: "Front (Nude)",
  21205. image: {
  21206. source: "./media/characters/shock-diamond/front-nude.svg",
  21207. extra: 2514 / 2285,
  21208. bottom: 13 / 2527.56
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(3, "meters")
  21216. },
  21217. {
  21218. name: "Macro",
  21219. height: math.unit(22, "meters"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5 + 4 / 12, "feet"),
  21229. weight: math.unit(120, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/rory/front.svg",
  21233. extra: 589 / 556,
  21234. bottom: 45.7 / 635.76
  21235. }
  21236. },
  21237. frontNude: {
  21238. height: math.unit(5 + 4 / 12, "feet"),
  21239. weight: math.unit(120, "lb"),
  21240. name: "Front (Nude)",
  21241. image: {
  21242. source: "./media/characters/rory/front-nude.svg",
  21243. extra: 589 / 556,
  21244. bottom: 45.7 / 635.76
  21245. }
  21246. },
  21247. side: {
  21248. height: math.unit(5 + 4 / 12, "feet"),
  21249. weight: math.unit(120, "lb"),
  21250. name: "Side",
  21251. image: {
  21252. source: "./media/characters/rory/side.svg",
  21253. extra: 597 / 564,
  21254. bottom: 55 / 653
  21255. }
  21256. },
  21257. back: {
  21258. height: math.unit(5 + 4 / 12, "feet"),
  21259. weight: math.unit(120, "lb"),
  21260. name: "Back",
  21261. image: {
  21262. source: "./media/characters/rory/back.svg",
  21263. extra: 620 / 585,
  21264. bottom: 8.86 / 630.43
  21265. }
  21266. },
  21267. dick: {
  21268. height: math.unit(0.86, "feet"),
  21269. name: "Dick",
  21270. image: {
  21271. source: "./media/characters/rory/dick.svg"
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(5 + 4 / 12, "feet"),
  21279. default: true
  21280. },
  21281. {
  21282. name: "Macro",
  21283. height: math.unit(100, "feet")
  21284. },
  21285. {
  21286. name: "Macro+",
  21287. height: math.unit(140, "feet")
  21288. },
  21289. {
  21290. name: "Macro++",
  21291. height: math.unit(300, "feet")
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(5 + 9 / 12, "feet"),
  21300. weight: math.unit(190, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/sprisk/front.svg",
  21304. extra: 1225 / 1180,
  21305. bottom: 42.7 / 1266.4
  21306. }
  21307. },
  21308. frontNsfw: {
  21309. height: math.unit(5 + 9 / 12, "feet"),
  21310. weight: math.unit(190, "lb"),
  21311. name: "Front (NSFW)",
  21312. image: {
  21313. source: "./media/characters/sprisk/front-nsfw.svg",
  21314. extra: 1225 / 1180,
  21315. bottom: 42.7 / 1266.4
  21316. }
  21317. },
  21318. back: {
  21319. height: math.unit(5 + 9 / 12, "feet"),
  21320. weight: math.unit(190, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/sprisk/back.svg",
  21324. extra: 1247 / 1200,
  21325. bottom: 5.6 / 1253.04
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Tiny",
  21332. height: math.unit(2, "inches")
  21333. },
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(5 + 9 / 12, "feet"),
  21337. default: true
  21338. },
  21339. {
  21340. name: "Mini Macro",
  21341. height: math.unit(18, "feet")
  21342. },
  21343. {
  21344. name: "Macro",
  21345. height: math.unit(100, "feet")
  21346. },
  21347. {
  21348. name: "MACRO",
  21349. height: math.unit(50, "miles")
  21350. },
  21351. {
  21352. name: "M A C R O",
  21353. height: math.unit(300, "miles")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21359. {
  21360. side: {
  21361. height: math.unit(15.6, "meters"),
  21362. weight: math.unit(700000, "kg"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/bunsen/side.svg",
  21366. extra: 1644 / 358
  21367. }
  21368. },
  21369. foot: {
  21370. height: math.unit(1.611 * 1644 / 358, "meter"),
  21371. name: "Foot",
  21372. image: {
  21373. source: "./media/characters/bunsen/foot.svg"
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Small",
  21380. height: math.unit(10, "feet")
  21381. },
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(15.6, "meters"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(4 + 11 / 12, "feet"),
  21394. weight: math.unit(140, "lb"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/sesh/front.svg",
  21398. extra: 3420 / 3231,
  21399. bottom: 72 / 3949.5
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(4 + 11 / 12, "feet")
  21407. },
  21408. {
  21409. name: "Grown",
  21410. height: math.unit(15, "feet"),
  21411. default: true
  21412. },
  21413. {
  21414. name: "Macro",
  21415. height: math.unit(1500, "feet")
  21416. },
  21417. {
  21418. name: "Megamacro",
  21419. height: math.unit(30, "miles")
  21420. },
  21421. {
  21422. name: "Continental",
  21423. height: math.unit(3000, "miles")
  21424. },
  21425. {
  21426. name: "Gravity Mass",
  21427. height: math.unit(300000, "miles")
  21428. },
  21429. {
  21430. name: "Planet Buster",
  21431. height: math.unit(30000000, "miles")
  21432. },
  21433. {
  21434. name: "Big",
  21435. height: math.unit(3000000000, "miles")
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(9, "feet"),
  21444. weight: math.unit(350, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/pepper/front.svg",
  21448. extra: 1448 / 1312,
  21449. bottom: 9.4 / 1457.88
  21450. }
  21451. },
  21452. back: {
  21453. height: math.unit(9, "feet"),
  21454. weight: math.unit(350, "lb"),
  21455. name: "Back",
  21456. image: {
  21457. source: "./media/characters/pepper/back.svg",
  21458. extra: 1423 / 1300,
  21459. bottom: 4.6 / 1429
  21460. }
  21461. },
  21462. maw: {
  21463. height: math.unit(0.932, "feet"),
  21464. name: "Maw",
  21465. image: {
  21466. source: "./media/characters/pepper/maw.svg"
  21467. }
  21468. },
  21469. },
  21470. [
  21471. {
  21472. name: "Normal",
  21473. height: math.unit(9, "feet"),
  21474. default: true
  21475. },
  21476. ]
  21477. ))
  21478. characterMakers.push(() => makeCharacter(
  21479. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21480. {
  21481. front: {
  21482. height: math.unit(6, "feet"),
  21483. weight: math.unit(150, "lb"),
  21484. name: "Front",
  21485. image: {
  21486. source: "./media/characters/maelstrom/front.svg",
  21487. extra: 2100 / 1883,
  21488. bottom: 94 / 2196.7
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Less Kaiju",
  21495. height: math.unit(200, "feet")
  21496. },
  21497. {
  21498. name: "Kaiju",
  21499. height: math.unit(400, "feet"),
  21500. default: true
  21501. },
  21502. {
  21503. name: "Kaiju-er",
  21504. height: math.unit(600, "feet")
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21510. {
  21511. front: {
  21512. height: math.unit(6 + 5 / 12, "feet"),
  21513. weight: math.unit(180, "lb"),
  21514. name: "Front",
  21515. image: {
  21516. source: "./media/characters/lexir/front.svg",
  21517. extra: 180 / 172,
  21518. bottom: 12 / 192
  21519. }
  21520. },
  21521. back: {
  21522. height: math.unit(6 + 5 / 12, "feet"),
  21523. weight: math.unit(180, "lb"),
  21524. name: "Back",
  21525. image: {
  21526. source: "./media/characters/lexir/back.svg",
  21527. extra: 183.84 / 175.5,
  21528. bottom: 3.1 / 187
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Very Smal",
  21535. height: math.unit(1, "nm")
  21536. },
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(6 + 5 / 12, "feet"),
  21540. default: true
  21541. },
  21542. {
  21543. name: "Macro",
  21544. height: math.unit(1, "mile")
  21545. },
  21546. {
  21547. name: "Megamacro",
  21548. height: math.unit(50, "miles")
  21549. },
  21550. ]
  21551. ))
  21552. characterMakers.push(() => makeCharacter(
  21553. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21554. {
  21555. front: {
  21556. height: math.unit(1.5, "meters"),
  21557. weight: math.unit(100, "lb"),
  21558. name: "Front",
  21559. image: {
  21560. source: "./media/characters/maksio/front.svg",
  21561. extra: 1549 / 1531,
  21562. bottom: 123.7 / 1674.5429
  21563. }
  21564. },
  21565. back: {
  21566. height: math.unit(1.5, "meters"),
  21567. weight: math.unit(100, "lb"),
  21568. name: "Back",
  21569. image: {
  21570. source: "./media/characters/maksio/back.svg",
  21571. extra: 1541 / 1509,
  21572. bottom: 97 / 1639
  21573. }
  21574. },
  21575. hand: {
  21576. height: math.unit(0.621, "feet"),
  21577. name: "Hand",
  21578. image: {
  21579. source: "./media/characters/maksio/hand.svg"
  21580. }
  21581. },
  21582. foot: {
  21583. height: math.unit(1.611, "feet"),
  21584. name: "Foot",
  21585. image: {
  21586. source: "./media/characters/maksio/foot.svg"
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Shrunken",
  21593. height: math.unit(10, "cm")
  21594. },
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(150, "cm"),
  21598. default: true
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21604. {
  21605. front: {
  21606. height: math.unit(100, "feet"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/erza-bear/front.svg",
  21610. extra: 2449 / 2390,
  21611. bottom: 46 / 2494
  21612. }
  21613. },
  21614. back: {
  21615. height: math.unit(100, "feet"),
  21616. name: "Back",
  21617. image: {
  21618. source: "./media/characters/erza-bear/back.svg",
  21619. extra: 2489 / 2430,
  21620. bottom: 85.4 / 2480
  21621. }
  21622. },
  21623. tail: {
  21624. height: math.unit(42, "feet"),
  21625. name: "Tail",
  21626. image: {
  21627. source: "./media/characters/erza-bear/tail.svg"
  21628. }
  21629. },
  21630. tongue: {
  21631. height: math.unit(8, "feet"),
  21632. name: "Tongue",
  21633. image: {
  21634. source: "./media/characters/erza-bear/tongue.svg"
  21635. }
  21636. },
  21637. dick: {
  21638. height: math.unit(10.5, "feet"),
  21639. name: "Dick",
  21640. image: {
  21641. source: "./media/characters/erza-bear/dick.svg"
  21642. }
  21643. },
  21644. dickVertical: {
  21645. height: math.unit(16.9, "feet"),
  21646. name: "Dick (Vertical)",
  21647. image: {
  21648. source: "./media/characters/erza-bear/dick-vertical.svg"
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(100, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21662. {
  21663. front: {
  21664. height: math.unit(172, "cm"),
  21665. weight: math.unit(73, "kg"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/violet-flor/front.svg",
  21669. extra: 1530 / 1442,
  21670. bottom: 61.9 / 1588.8
  21671. }
  21672. },
  21673. back: {
  21674. height: math.unit(180, "cm"),
  21675. weight: math.unit(73, "kg"),
  21676. name: "Back",
  21677. image: {
  21678. source: "./media/characters/violet-flor/back.svg",
  21679. extra: 1692 / 1630,
  21680. bottom: 20 / 1712
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(172, "cm"),
  21688. default: true
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(6, "feet"),
  21697. weight: math.unit(220, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/lynn-rhea/front.svg",
  21701. extra: 310 / 273
  21702. }
  21703. },
  21704. back: {
  21705. height: math.unit(6, "feet"),
  21706. weight: math.unit(220, "lb"),
  21707. name: "Back",
  21708. image: {
  21709. source: "./media/characters/lynn-rhea/back.svg",
  21710. extra: 310 / 273
  21711. }
  21712. },
  21713. dicks: {
  21714. height: math.unit(0.9, "feet"),
  21715. name: "Dicks",
  21716. image: {
  21717. source: "./media/characters/lynn-rhea/dicks.svg"
  21718. }
  21719. },
  21720. slit: {
  21721. height: math.unit(0.4, "feet"),
  21722. name: "Slit",
  21723. image: {
  21724. source: "./media/characters/lynn-rhea/slit.svg"
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Micro",
  21731. height: math.unit(1, "inch")
  21732. },
  21733. {
  21734. name: "Macro",
  21735. height: math.unit(60, "feet"),
  21736. default: true
  21737. },
  21738. {
  21739. name: "Megamacro",
  21740. height: math.unit(2, "miles")
  21741. },
  21742. {
  21743. name: "Gigamacro",
  21744. height: math.unit(3, "earths")
  21745. },
  21746. {
  21747. name: "Galactic",
  21748. height: math.unit(0.8, "galaxies")
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21754. {
  21755. front: {
  21756. height: math.unit(1600, "feet"),
  21757. weight: math.unit(85758785169, "kg"),
  21758. name: "Front",
  21759. image: {
  21760. source: "./media/characters/valathos/front.svg",
  21761. extra: 1451 / 1339
  21762. }
  21763. },
  21764. },
  21765. [
  21766. {
  21767. name: "Macro",
  21768. height: math.unit(1600, "feet"),
  21769. default: true
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(7 + 5 / 12, "feet"),
  21778. weight: math.unit(300, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/azula/front.svg",
  21782. extra: 3208 / 2880,
  21783. bottom: 80.2 / 3277
  21784. }
  21785. },
  21786. back: {
  21787. height: math.unit(7 + 5 / 12, "feet"),
  21788. weight: math.unit(300, "lb"),
  21789. name: "Back",
  21790. image: {
  21791. source: "./media/characters/azula/back.svg",
  21792. extra: 3169 / 2822,
  21793. bottom: 150.6 / 3321
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(7 + 5 / 12, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Big",
  21805. height: math.unit(20, "feet")
  21806. },
  21807. ]
  21808. ))
  21809. characterMakers.push(() => makeCharacter(
  21810. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21811. {
  21812. front: {
  21813. height: math.unit(5 + 1 / 12, "feet"),
  21814. weight: math.unit(110, "lb"),
  21815. name: "Front",
  21816. image: {
  21817. source: "./media/characters/rupert/front.svg",
  21818. extra: 1549 / 1495,
  21819. bottom: 54.2 / 1604.4
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(5 + 1 / 12, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(8 + 4 / 12, "feet"),
  21836. weight: math.unit(350, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/sheera-castellar/front.svg",
  21840. extra: 1957 / 1894,
  21841. bottom: 26.97 / 1975.017
  21842. }
  21843. },
  21844. side: {
  21845. height: math.unit(8 + 4 / 12, "feet"),
  21846. weight: math.unit(350, "lb"),
  21847. name: "Side",
  21848. image: {
  21849. source: "./media/characters/sheera-castellar/side.svg",
  21850. extra: 1957 / 1894
  21851. }
  21852. },
  21853. back: {
  21854. height: math.unit(8 + 4 / 12, "feet"),
  21855. weight: math.unit(350, "lb"),
  21856. name: "Back",
  21857. image: {
  21858. source: "./media/characters/sheera-castellar/back.svg",
  21859. extra: 1957 / 1894
  21860. }
  21861. },
  21862. angled: {
  21863. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21864. weight: math.unit(350, "lb"),
  21865. name: "Angled",
  21866. image: {
  21867. source: "./media/characters/sheera-castellar/angled.svg",
  21868. extra: 1807 / 1707,
  21869. bottom: 68 / 1875
  21870. }
  21871. },
  21872. genitals: {
  21873. height: math.unit(2.2, "feet"),
  21874. name: "Genitals",
  21875. image: {
  21876. source: "./media/characters/sheera-castellar/genitals.svg"
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(8 + 4 / 12, "feet")
  21884. },
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(150, "feet"),
  21888. default: true
  21889. },
  21890. {
  21891. name: "Macro+",
  21892. height: math.unit(800, "feet")
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(6, "feet"),
  21901. weight: math.unit(150, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/jaipur/front.svg",
  21905. extra: 3860 / 3731,
  21906. bottom: 287 / 4140
  21907. }
  21908. },
  21909. back: {
  21910. height: math.unit(6, "feet"),
  21911. weight: math.unit(150, "lb"),
  21912. name: "Back",
  21913. image: {
  21914. source: "./media/characters/jaipur/back.svg",
  21915. extra: 4060 / 3930,
  21916. bottom: 151 / 4200
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(1.85, "meters"),
  21924. default: true
  21925. },
  21926. {
  21927. name: "Macro",
  21928. height: math.unit(150, "meters")
  21929. },
  21930. {
  21931. name: "Macro+",
  21932. height: math.unit(0.5, "miles")
  21933. },
  21934. {
  21935. name: "Macro++",
  21936. height: math.unit(2.5, "miles")
  21937. },
  21938. {
  21939. name: "Macro+++",
  21940. height: math.unit(12, "miles")
  21941. },
  21942. {
  21943. name: "Macro++++",
  21944. height: math.unit(120, "miles")
  21945. },
  21946. {
  21947. name: "Macro+++++",
  21948. height: math.unit(1200, "miles")
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(6, "feet"),
  21957. weight: math.unit(150, "lb"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/sheila-wolf/front.svg",
  21961. extra: 1931 / 1808,
  21962. bottom: 29.5 / 1960
  21963. }
  21964. },
  21965. dick: {
  21966. height: math.unit(1.464, "feet"),
  21967. name: "Dick",
  21968. image: {
  21969. source: "./media/characters/sheila-wolf/dick.svg"
  21970. }
  21971. },
  21972. muzzle: {
  21973. height: math.unit(0.513, "feet"),
  21974. name: "Muzzle",
  21975. image: {
  21976. source: "./media/characters/sheila-wolf/muzzle.svg"
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Macro",
  21983. height: math.unit(70, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(32, "meters"),
  21993. weight: math.unit(300000, "kg"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/almor/front.svg",
  21997. extra: 1408 / 1322,
  21998. bottom: 94.6 / 1506.5
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(32, "meters"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(7, "feet"),
  22015. weight: math.unit(200, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/silver/front.svg",
  22019. extra: 472.1 / 450.5,
  22020. bottom: 26.5 / 499.424
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Normal",
  22027. height: math.unit(7, "feet"),
  22028. default: true
  22029. },
  22030. {
  22031. name: "Macro",
  22032. height: math.unit(800, "feet")
  22033. },
  22034. {
  22035. name: "Megamacro",
  22036. height: math.unit(250, "miles")
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(6, "feet"),
  22045. weight: math.unit(150, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/pliskin/front.svg",
  22049. extra: 1469 / 1359,
  22050. bottom: 70 / 1540
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Micro",
  22057. height: math.unit(3, "inches")
  22058. },
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(5 + 11 / 12, "feet"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Macro",
  22066. height: math.unit(120, "feet")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(6, "feet"),
  22075. weight: math.unit(150, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/sammy/front.svg",
  22079. extra: 1193 / 1089,
  22080. bottom: 30.5 / 1226
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Macro",
  22087. height: math.unit(1700, "feet"),
  22088. default: true
  22089. },
  22090. {
  22091. name: "Examacro",
  22092. height: math.unit(2.5e9, "lightyears")
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(21, "meters"),
  22101. weight: math.unit(12, "tonnes"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/kuru/front.svg",
  22105. extra: 4301 / 3785,
  22106. bottom: 371.3 / 4691
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Macro",
  22113. height: math.unit(21, "meters"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(23, "meters"),
  22123. weight: math.unit(12.2, "tonnes"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/rakka/front.svg",
  22127. extra: 4670 / 4169,
  22128. bottom: 301 / 4968.7
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Macro",
  22135. height: math.unit(23, "meters"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(6, "feet"),
  22145. weight: math.unit(150, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/rhys-feline/front.svg",
  22149. extra: 2488 / 2308,
  22150. bottom: 35.67 / 2519.19
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Really Small",
  22157. height: math.unit(1, "nm")
  22158. },
  22159. {
  22160. name: "Micro",
  22161. height: math.unit(4, "inches")
  22162. },
  22163. {
  22164. name: "Normal",
  22165. height: math.unit(4 + 10 / 12, "feet"),
  22166. default: true
  22167. },
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(100, "feet")
  22171. },
  22172. {
  22173. name: "Megamacto",
  22174. height: math.unit(50, "miles")
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22180. {
  22181. side: {
  22182. height: math.unit(30, "feet"),
  22183. weight: math.unit(35000, "kg"),
  22184. name: "Side",
  22185. image: {
  22186. source: "./media/characters/alydar/side.svg",
  22187. extra: 234 / 222,
  22188. bottom: 6.5 / 241
  22189. }
  22190. },
  22191. front: {
  22192. height: math.unit(30, "feet"),
  22193. weight: math.unit(35000, "kg"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/alydar/front.svg",
  22197. extra: 223.37 / 210.2,
  22198. bottom: 22.3 / 246.76
  22199. }
  22200. },
  22201. top: {
  22202. height: math.unit(64.54, "feet"),
  22203. weight: math.unit(35000, "kg"),
  22204. name: "Top",
  22205. image: {
  22206. source: "./media/characters/alydar/top.svg"
  22207. }
  22208. },
  22209. anthro: {
  22210. height: math.unit(30, "feet"),
  22211. weight: math.unit(9000, "kg"),
  22212. name: "Anthro",
  22213. image: {
  22214. source: "./media/characters/alydar/anthro.svg",
  22215. extra: 432 / 421,
  22216. bottom: 7.18 / 440
  22217. }
  22218. },
  22219. maw: {
  22220. height: math.unit(11.693, "feet"),
  22221. name: "Maw",
  22222. image: {
  22223. source: "./media/characters/alydar/maw.svg"
  22224. }
  22225. },
  22226. head: {
  22227. height: math.unit(11.693, "feet"),
  22228. name: "Head",
  22229. image: {
  22230. source: "./media/characters/alydar/head.svg"
  22231. }
  22232. },
  22233. headAlt: {
  22234. height: math.unit(12.861, "feet"),
  22235. name: "Head (Alt)",
  22236. image: {
  22237. source: "./media/characters/alydar/head-alt.svg"
  22238. }
  22239. },
  22240. wing: {
  22241. height: math.unit(20.712, "feet"),
  22242. name: "Wing",
  22243. image: {
  22244. source: "./media/characters/alydar/wing.svg"
  22245. }
  22246. },
  22247. wingFeather: {
  22248. height: math.unit(9.662, "feet"),
  22249. name: "Wing Feather",
  22250. image: {
  22251. source: "./media/characters/alydar/wing-feather.svg"
  22252. }
  22253. },
  22254. countourFeather: {
  22255. height: math.unit(4.154, "feet"),
  22256. name: "Contour Feather",
  22257. image: {
  22258. source: "./media/characters/alydar/contour-feather.svg"
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Diplomatic",
  22265. height: math.unit(13, "feet"),
  22266. default: true
  22267. },
  22268. {
  22269. name: "Small",
  22270. height: math.unit(30, "feet")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(95, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Large",
  22279. height: math.unit(285, "feet")
  22280. },
  22281. {
  22282. name: "Incomprehensible",
  22283. height: math.unit(450, "megameters")
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22289. {
  22290. side: {
  22291. height: math.unit(11, "feet"),
  22292. weight: math.unit(1750, "kg"),
  22293. name: "Side",
  22294. image: {
  22295. source: "./media/characters/selicia/side.svg",
  22296. extra: 440 / 396,
  22297. bottom: 24.8 / 465.979
  22298. }
  22299. },
  22300. maw: {
  22301. height: math.unit(4.665, "feet"),
  22302. name: "Maw",
  22303. image: {
  22304. source: "./media/characters/selicia/maw.svg"
  22305. }
  22306. },
  22307. },
  22308. [
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(11, "feet"),
  22312. default: true
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22318. {
  22319. side: {
  22320. height: math.unit(2 + 6 / 12, "feet"),
  22321. weight: math.unit(30, "lb"),
  22322. name: "Side",
  22323. image: {
  22324. source: "./media/characters/layla/side.svg",
  22325. extra: 244 / 188,
  22326. bottom: 18.2 / 262.1
  22327. }
  22328. },
  22329. back: {
  22330. height: math.unit(2 + 6 / 12, "feet"),
  22331. weight: math.unit(30, "lb"),
  22332. name: "Back",
  22333. image: {
  22334. source: "./media/characters/layla/back.svg",
  22335. extra: 308 / 241.5,
  22336. bottom: 8.9 / 316.8
  22337. }
  22338. },
  22339. cumming: {
  22340. height: math.unit(2 + 6 / 12, "feet"),
  22341. weight: math.unit(30, "lb"),
  22342. name: "Cumming",
  22343. image: {
  22344. source: "./media/characters/layla/cumming.svg",
  22345. extra: 342 / 279,
  22346. bottom: 595 / 938
  22347. }
  22348. },
  22349. dickFlaccid: {
  22350. height: math.unit(2.595, "feet"),
  22351. name: "Flaccid Genitals",
  22352. image: {
  22353. source: "./media/characters/layla/dick-flaccid.svg"
  22354. }
  22355. },
  22356. dickErect: {
  22357. height: math.unit(2.359, "feet"),
  22358. name: "Erect Genitals",
  22359. image: {
  22360. source: "./media/characters/layla/dick-erect.svg"
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Micro",
  22367. height: math.unit(1, "inch")
  22368. },
  22369. {
  22370. name: "Small",
  22371. height: math.unit(1, "foot")
  22372. },
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(2 + 6 / 12, "feet"),
  22376. default: true
  22377. },
  22378. {
  22379. name: "Macro",
  22380. height: math.unit(200, "feet")
  22381. },
  22382. {
  22383. name: "Megamacro",
  22384. height: math.unit(1000, "miles")
  22385. },
  22386. {
  22387. name: "Planetary",
  22388. height: math.unit(8000, "miles")
  22389. },
  22390. {
  22391. name: "True Layla",
  22392. height: math.unit(200000 * 7, "multiverses")
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22398. {
  22399. back: {
  22400. height: math.unit(10.5, "feet"),
  22401. weight: math.unit(800, "lb"),
  22402. name: "Back",
  22403. image: {
  22404. source: "./media/characters/knox/back.svg",
  22405. extra: 1486 / 1089,
  22406. bottom: 107 / 1601.4
  22407. }
  22408. },
  22409. side: {
  22410. height: math.unit(10.5, "feet"),
  22411. weight: math.unit(800, "lb"),
  22412. name: "Side",
  22413. image: {
  22414. source: "./media/characters/knox/side.svg",
  22415. extra: 244 / 218,
  22416. bottom: 14 / 260
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Compact",
  22423. height: math.unit(10.5, "feet"),
  22424. default: true
  22425. },
  22426. {
  22427. name: "Dynamax",
  22428. height: math.unit(210, "feet")
  22429. },
  22430. {
  22431. name: "Full Macro",
  22432. height: math.unit(850, "feet")
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(6, "feet"),
  22441. weight: math.unit(152, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/shin-pikachu/front.svg",
  22445. extra: 1574 / 1480,
  22446. bottom: 53.3 / 1626
  22447. }
  22448. },
  22449. hand: {
  22450. height: math.unit(1.055, "feet"),
  22451. name: "Hand",
  22452. image: {
  22453. source: "./media/characters/shin-pikachu/hand.svg"
  22454. }
  22455. },
  22456. foot: {
  22457. height: math.unit(1.1, "feet"),
  22458. name: "Foot",
  22459. image: {
  22460. source: "./media/characters/shin-pikachu/foot.svg"
  22461. }
  22462. },
  22463. collar: {
  22464. height: math.unit(0.386, "feet"),
  22465. name: "Collar",
  22466. image: {
  22467. source: "./media/characters/shin-pikachu/collar.svg"
  22468. }
  22469. },
  22470. },
  22471. [
  22472. {
  22473. name: "Smallest",
  22474. height: math.unit(0.5, "inches")
  22475. },
  22476. {
  22477. name: "Micro",
  22478. height: math.unit(6, "inches")
  22479. },
  22480. {
  22481. name: "Normal",
  22482. height: math.unit(6, "feet"),
  22483. default: true
  22484. },
  22485. {
  22486. name: "Macro",
  22487. height: math.unit(150, "feet")
  22488. },
  22489. ]
  22490. ))
  22491. characterMakers.push(() => makeCharacter(
  22492. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22493. {
  22494. front: {
  22495. height: math.unit(28, "feet"),
  22496. weight: math.unit(10500, "lb"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/kayda/front.svg",
  22500. extra: 1536 / 1428,
  22501. bottom: 68.7 / 1603
  22502. }
  22503. },
  22504. back: {
  22505. height: math.unit(28, "feet"),
  22506. weight: math.unit(10500, "lb"),
  22507. name: "Back",
  22508. image: {
  22509. source: "./media/characters/kayda/back.svg",
  22510. extra: 1557 / 1464,
  22511. bottom: 39.5 / 1597.49
  22512. }
  22513. },
  22514. dick: {
  22515. height: math.unit(3.858, "feet"),
  22516. name: "Dick",
  22517. image: {
  22518. source: "./media/characters/kayda/dick.svg"
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Macro",
  22525. height: math.unit(28, "feet"),
  22526. default: true
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22532. {
  22533. front: {
  22534. height: math.unit(10 + 11 / 12, "feet"),
  22535. weight: math.unit(1400, "lb"),
  22536. name: "Front",
  22537. image: {
  22538. source: "./media/characters/brian/front.svg",
  22539. extra: 737 / 692,
  22540. bottom: 55.4 / 785
  22541. }
  22542. },
  22543. },
  22544. [
  22545. {
  22546. name: "Normal",
  22547. height: math.unit(10 + 11 / 12, "feet"),
  22548. default: true
  22549. },
  22550. ]
  22551. ))
  22552. characterMakers.push(() => makeCharacter(
  22553. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22554. {
  22555. front: {
  22556. height: math.unit(5 + 8 / 12, "feet"),
  22557. weight: math.unit(140, "lb"),
  22558. name: "Front",
  22559. image: {
  22560. source: "./media/characters/khemri/front.svg",
  22561. extra: 4780 / 4059,
  22562. bottom: 80.1 / 4859.25
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Micro",
  22569. height: math.unit(6, "inches")
  22570. },
  22571. {
  22572. name: "Normal",
  22573. height: math.unit(5 + 8 / 12, "feet"),
  22574. default: true
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22580. {
  22581. front: {
  22582. height: math.unit(13, "feet"),
  22583. weight: math.unit(1700, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/felix-braveheart/front.svg",
  22587. extra: 1222 / 1157,
  22588. bottom: 53.2 / 1280
  22589. }
  22590. },
  22591. back: {
  22592. height: math.unit(13, "feet"),
  22593. weight: math.unit(1700, "lb"),
  22594. name: "Back",
  22595. image: {
  22596. source: "./media/characters/felix-braveheart/back.svg",
  22597. extra: 1277 / 1203,
  22598. bottom: 50.2 / 1327
  22599. }
  22600. },
  22601. feral: {
  22602. height: math.unit(6, "feet"),
  22603. weight: math.unit(400, "lb"),
  22604. name: "Feral",
  22605. image: {
  22606. source: "./media/characters/felix-braveheart/feral.svg",
  22607. extra: 682 / 625,
  22608. bottom: 6.9 / 688
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(13, "feet"),
  22616. default: true
  22617. },
  22618. ]
  22619. ))
  22620. characterMakers.push(() => makeCharacter(
  22621. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22622. {
  22623. side: {
  22624. height: math.unit(5 + 11 / 12, "feet"),
  22625. weight: math.unit(1400, "lb"),
  22626. name: "Side",
  22627. image: {
  22628. source: "./media/characters/shadow-blade/side.svg",
  22629. extra: 1726 / 1267,
  22630. bottom: 58.4 / 1785
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(5 + 11 / 12, "feet"),
  22638. default: true
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(1 + 6 / 12, "feet"),
  22647. weight: math.unit(25, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/karla-halldor/front.svg",
  22651. extra: 1459 / 1383,
  22652. bottom: 12 / 1472
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Normal",
  22659. height: math.unit(1 + 6 / 12, "feet"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(6 + 2 / 12, "feet"),
  22669. weight: math.unit(160, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/ariam/front.svg",
  22673. extra: 714 / 617,
  22674. bottom: 23.4 / 737,
  22675. }
  22676. },
  22677. squatting: {
  22678. height: math.unit(4.1, "feet"),
  22679. weight: math.unit(160, "lb"),
  22680. name: "Squatting",
  22681. image: {
  22682. source: "./media/characters/ariam/squatting.svg",
  22683. extra: 2617 / 2112,
  22684. bottom: 61.2 / 2681,
  22685. }
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(6 + 2 / 12, "feet"),
  22692. default: true
  22693. },
  22694. {
  22695. name: "Normal+",
  22696. height: math.unit(4, "meters")
  22697. },
  22698. {
  22699. name: "Macro",
  22700. height: math.unit(50, "meters")
  22701. },
  22702. {
  22703. name: "Macro+",
  22704. height: math.unit(100, "meters")
  22705. },
  22706. {
  22707. name: "Megamacro",
  22708. height: math.unit(20, "km")
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(1.67, "meters"),
  22717. weight: math.unit(140, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22721. extra: 438 / 410,
  22722. bottom: 0.75 / 439
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Shrunken",
  22729. height: math.unit(7.6, "cm")
  22730. },
  22731. {
  22732. name: "Human Scale",
  22733. height: math.unit(1.67, "meters")
  22734. },
  22735. {
  22736. name: "Wolxi Scale",
  22737. height: math.unit(36.7, "meters"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(1.73, "meters"),
  22747. weight: math.unit(240, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/izue-two-mothers/front.svg",
  22751. extra: 469 / 437,
  22752. bottom: 1.24 / 470.6
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Shrunken",
  22759. height: math.unit(7.86, "cm")
  22760. },
  22761. {
  22762. name: "Human Scale",
  22763. height: math.unit(1.73, "meters")
  22764. },
  22765. {
  22766. name: "Wolxi Scale",
  22767. height: math.unit(38, "meters"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(1.55, "meters"),
  22777. weight: math.unit(120, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/teeku-love-shack/front.svg",
  22781. extra: 387 / 362,
  22782. bottom: 1.51 / 388
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Shrunken",
  22789. height: math.unit(7, "cm")
  22790. },
  22791. {
  22792. name: "Human Scale",
  22793. height: math.unit(1.55, "meters")
  22794. },
  22795. {
  22796. name: "Wolxi Scale",
  22797. height: math.unit(34.1, "meters"),
  22798. default: true
  22799. },
  22800. ]
  22801. ))
  22802. characterMakers.push(() => makeCharacter(
  22803. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22804. {
  22805. front: {
  22806. height: math.unit(1.83, "meters"),
  22807. weight: math.unit(135, "lb"),
  22808. name: "Front",
  22809. image: {
  22810. source: "./media/characters/dejma-the-red/front.svg",
  22811. extra: 480 / 458,
  22812. bottom: 1.8 / 482
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Shrunken",
  22819. height: math.unit(8.3, "cm")
  22820. },
  22821. {
  22822. name: "Human Scale",
  22823. height: math.unit(1.83, "meters")
  22824. },
  22825. {
  22826. name: "Wolxi Scale",
  22827. height: math.unit(40, "meters"),
  22828. default: true
  22829. },
  22830. ]
  22831. ))
  22832. characterMakers.push(() => makeCharacter(
  22833. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22834. {
  22835. front: {
  22836. height: math.unit(1.78, "meters"),
  22837. weight: math.unit(65, "kg"),
  22838. name: "Front",
  22839. image: {
  22840. source: "./media/characters/aki/front.svg",
  22841. extra: 452 / 415
  22842. }
  22843. },
  22844. frontNsfw: {
  22845. height: math.unit(1.78, "meters"),
  22846. weight: math.unit(65, "kg"),
  22847. name: "Front (NSFW)",
  22848. image: {
  22849. source: "./media/characters/aki/front-nsfw.svg",
  22850. extra: 452 / 415
  22851. }
  22852. },
  22853. back: {
  22854. height: math.unit(1.78, "meters"),
  22855. weight: math.unit(65, "kg"),
  22856. name: "Back",
  22857. image: {
  22858. source: "./media/characters/aki/back.svg",
  22859. extra: 452 / 415
  22860. }
  22861. },
  22862. rump: {
  22863. height: math.unit(2.05, "feet"),
  22864. name: "Rump",
  22865. image: {
  22866. source: "./media/characters/aki/rump.svg"
  22867. }
  22868. },
  22869. dick: {
  22870. height: math.unit(0.95, "feet"),
  22871. name: "Dick",
  22872. image: {
  22873. source: "./media/characters/aki/dick.svg"
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Micro",
  22880. height: math.unit(15, "cm")
  22881. },
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(178, "cm"),
  22885. default: true
  22886. },
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(214, "m")
  22890. },
  22891. {
  22892. name: "Macro+",
  22893. height: math.unit(534, "m")
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(5 + 5 / 12, "feet"),
  22902. weight: math.unit(120, "lb"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/ari/front.svg",
  22906. extra: 714.5 / 682,
  22907. bottom: 8 / 722.5
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(5 + 5 / 12, "feet")
  22915. },
  22916. {
  22917. name: "Macro",
  22918. height: math.unit(100, "feet"),
  22919. default: true
  22920. },
  22921. {
  22922. name: "Megamacro",
  22923. height: math.unit(100, "miles")
  22924. },
  22925. {
  22926. name: "Gigamacro",
  22927. height: math.unit(80000, "miles")
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22933. {
  22934. side: {
  22935. height: math.unit(9, "feet"),
  22936. weight: math.unit(400, "kg"),
  22937. name: "Side",
  22938. image: {
  22939. source: "./media/characters/bolt/side.svg",
  22940. extra: 1126 / 896,
  22941. bottom: 60 / 1187.3,
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Micro",
  22948. height: math.unit(5, "inches")
  22949. },
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(9, "feet"),
  22953. default: true
  22954. },
  22955. {
  22956. name: "Macro",
  22957. height: math.unit(700, "feet")
  22958. },
  22959. {
  22960. name: "Max Size",
  22961. height: math.unit(1.52e22, "yottameters")
  22962. },
  22963. ]
  22964. ))
  22965. characterMakers.push(() => makeCharacter(
  22966. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22967. {
  22968. front: {
  22969. height: math.unit(4.53, "meters"),
  22970. weight: math.unit(3, "tons"),
  22971. name: "Front",
  22972. image: {
  22973. source: "./media/characters/draekon-sylviar/front.svg",
  22974. extra: 1228 / 1068,
  22975. bottom: 41 / 1270
  22976. }
  22977. },
  22978. tail: {
  22979. height: math.unit(1.772, "meter"),
  22980. name: "Tail",
  22981. image: {
  22982. source: "./media/characters/draekon-sylviar/tail.svg"
  22983. }
  22984. },
  22985. head: {
  22986. height: math.unit(1.331, "meter"),
  22987. name: "Head",
  22988. image: {
  22989. source: "./media/characters/draekon-sylviar/head.svg"
  22990. }
  22991. },
  22992. hand: {
  22993. height: math.unit(0.564, "meter"),
  22994. name: "Hand",
  22995. image: {
  22996. source: "./media/characters/draekon-sylviar/hand.svg"
  22997. }
  22998. },
  22999. foot: {
  23000. height: math.unit(0.621, "meter"),
  23001. name: "Foot",
  23002. image: {
  23003. source: "./media/characters/draekon-sylviar/foot.svg",
  23004. bottom: 32 / 324
  23005. }
  23006. },
  23007. dick: {
  23008. height: math.unit(61, "cm"),
  23009. name: "Dick",
  23010. image: {
  23011. source: "./media/characters/draekon-sylviar/dick.svg"
  23012. }
  23013. },
  23014. dickseparated: {
  23015. height: math.unit(61, "cm"),
  23016. name: "Dick-separated",
  23017. image: {
  23018. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23019. }
  23020. },
  23021. },
  23022. [
  23023. {
  23024. name: "Small",
  23025. height: math.unit(4.53 / 2, "meters"),
  23026. default: true
  23027. },
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(4.53, "meters"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Large",
  23035. height: math.unit(4.53 * 2, "meters"),
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23041. {
  23042. front: {
  23043. height: math.unit(6 + 2 / 12, "feet"),
  23044. weight: math.unit(180, "lb"),
  23045. name: "Front",
  23046. image: {
  23047. source: "./media/characters/brawler/front.svg",
  23048. extra: 3301 / 3027,
  23049. bottom: 138 / 3439
  23050. }
  23051. },
  23052. },
  23053. [
  23054. {
  23055. name: "Normal",
  23056. height: math.unit(6 + 2 / 12, "feet"),
  23057. default: true
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(11, "feet"),
  23066. weight: math.unit(1000, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/alex/front.svg",
  23070. bottom: 44.5 / 620
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Micro",
  23077. height: math.unit(5, "inches")
  23078. },
  23079. {
  23080. name: "Normal",
  23081. height: math.unit(11, "feet"),
  23082. default: true
  23083. },
  23084. {
  23085. name: "Macro",
  23086. height: math.unit(9.5e9, "feet")
  23087. },
  23088. {
  23089. name: "Max Size",
  23090. height: math.unit(1.4e283, "yottameters")
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23096. {
  23097. female: {
  23098. height: math.unit(29.9, "m"),
  23099. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23100. name: "Female",
  23101. image: {
  23102. source: "./media/characters/zenari/female.svg",
  23103. extra: 3281.6 / 3217,
  23104. bottom: 72.2 / 3353
  23105. }
  23106. },
  23107. male: {
  23108. height: math.unit(27.7, "m"),
  23109. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23110. name: "Male",
  23111. image: {
  23112. source: "./media/characters/zenari/male.svg",
  23113. extra: 3008 / 2991,
  23114. bottom: 54.6 / 3069
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Macro",
  23121. height: math.unit(29.7, "meters"),
  23122. default: true
  23123. },
  23124. ]
  23125. ))
  23126. characterMakers.push(() => makeCharacter(
  23127. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23128. {
  23129. female: {
  23130. height: math.unit(23.8, "m"),
  23131. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23132. name: "Female",
  23133. image: {
  23134. source: "./media/characters/mactarian/female.svg",
  23135. extra: 2662 / 2569,
  23136. bottom: 73 / 2736
  23137. }
  23138. },
  23139. male: {
  23140. height: math.unit(23.8, "m"),
  23141. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23142. name: "Male",
  23143. image: {
  23144. source: "./media/characters/mactarian/male.svg",
  23145. extra: 2673 / 2600,
  23146. bottom: 76 / 2750
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Macro",
  23153. height: math.unit(23.8, "meters"),
  23154. default: true
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23160. {
  23161. female: {
  23162. height: math.unit(19.3, "m"),
  23163. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23164. name: "Female",
  23165. image: {
  23166. source: "./media/characters/umok/female.svg",
  23167. extra: 2186 / 2078,
  23168. bottom: 87 / 2277
  23169. }
  23170. },
  23171. male: {
  23172. height: math.unit(19.5, "m"),
  23173. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23174. name: "Male",
  23175. image: {
  23176. source: "./media/characters/umok/male.svg",
  23177. extra: 2233 / 2140,
  23178. bottom: 24.4 / 2258
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Macro",
  23185. height: math.unit(19.3, "meters"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23192. {
  23193. female: {
  23194. height: math.unit(26.15, "m"),
  23195. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23196. name: "Female",
  23197. image: {
  23198. source: "./media/characters/joraxian/female.svg",
  23199. extra: 2943 / 2831,
  23200. bottom: 27 / 2972
  23201. }
  23202. },
  23203. male: {
  23204. height: math.unit(25.4, "m"),
  23205. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23206. name: "Male",
  23207. image: {
  23208. source: "./media/characters/joraxian/male.svg",
  23209. extra: 2835 / 2741,
  23210. bottom: 27 / 2862
  23211. }
  23212. },
  23213. },
  23214. [
  23215. {
  23216. name: "Macro",
  23217. height: math.unit(26.15, "meters"),
  23218. default: true
  23219. },
  23220. ]
  23221. ))
  23222. characterMakers.push(() => makeCharacter(
  23223. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23224. {
  23225. female: {
  23226. height: math.unit(21.6, "m"),
  23227. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23228. name: "Female",
  23229. image: {
  23230. source: "./media/characters/sthara/female.svg",
  23231. extra: 2516 / 2347,
  23232. bottom: 21.5 / 2537
  23233. }
  23234. },
  23235. male: {
  23236. height: math.unit(24, "m"),
  23237. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23238. name: "Male",
  23239. image: {
  23240. source: "./media/characters/sthara/male.svg",
  23241. extra: 2732 / 2607,
  23242. bottom: 23 / 2732
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Macro",
  23249. height: math.unit(21.6, "meters"),
  23250. default: true
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23256. {
  23257. front: {
  23258. height: math.unit(6 + 4 / 12, "feet"),
  23259. weight: math.unit(175, "lb"),
  23260. name: "Front",
  23261. image: {
  23262. source: "./media/characters/luka-bryzant/front.svg",
  23263. extra: 311 / 289,
  23264. bottom: 4 / 315
  23265. }
  23266. },
  23267. back: {
  23268. height: math.unit(6 + 4 / 12, "feet"),
  23269. weight: math.unit(175, "lb"),
  23270. name: "Back",
  23271. image: {
  23272. source: "./media/characters/luka-bryzant/back.svg",
  23273. extra: 311 / 289,
  23274. bottom: 3.8 / 313.7
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Micro",
  23281. height: math.unit(10, "inches")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(6 + 4 / 12, "feet"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Large",
  23290. height: math.unit(12, "feet")
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(5 + 7 / 12, "feet"),
  23299. weight: math.unit(185, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/aman-aquila/front.svg",
  23303. extra: 1013 / 976,
  23304. bottom: 45.6 / 1057
  23305. }
  23306. },
  23307. side: {
  23308. height: math.unit(5 + 7 / 12, "feet"),
  23309. weight: math.unit(185, "lb"),
  23310. name: "Side",
  23311. image: {
  23312. source: "./media/characters/aman-aquila/side.svg",
  23313. extra: 1054 / 1011,
  23314. bottom: 15 / 1070
  23315. }
  23316. },
  23317. back: {
  23318. height: math.unit(5 + 7 / 12, "feet"),
  23319. weight: math.unit(185, "lb"),
  23320. name: "Back",
  23321. image: {
  23322. source: "./media/characters/aman-aquila/back.svg",
  23323. extra: 1026 / 970,
  23324. bottom: 12 / 1039
  23325. }
  23326. },
  23327. head: {
  23328. height: math.unit(1.211, "feet"),
  23329. name: "Head",
  23330. image: {
  23331. source: "./media/characters/aman-aquila/head.svg",
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Minimicro",
  23338. height: math.unit(0.057, "inches")
  23339. },
  23340. {
  23341. name: "Micro",
  23342. height: math.unit(7, "inches")
  23343. },
  23344. {
  23345. name: "Mini",
  23346. height: math.unit(3 + 7 / 12, "feet")
  23347. },
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(5 + 7 / 12, "feet"),
  23351. default: true
  23352. },
  23353. {
  23354. name: "Macro",
  23355. height: math.unit(157 + 7 / 12, "feet")
  23356. },
  23357. {
  23358. name: "Megamacro",
  23359. height: math.unit(1557 + 7 / 12, "feet")
  23360. },
  23361. {
  23362. name: "Gigamacro",
  23363. height: math.unit(15557 + 7 / 12, "feet")
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23369. {
  23370. front: {
  23371. height: math.unit(3 + 2 / 12, "inches"),
  23372. weight: math.unit(0.3, "ounces"),
  23373. name: "Front",
  23374. image: {
  23375. source: "./media/characters/hiphae/front.svg",
  23376. extra: 1931 / 1683,
  23377. bottom: 24 / 1955
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "Normal",
  23384. height: math.unit(3 + 1 / 2, "inches"),
  23385. default: true
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(5 + 10 / 12, "feet"),
  23394. weight: math.unit(165, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/nicky/front.svg",
  23398. extra: 3144 / 2886,
  23399. bottom: 45.6 / 3192
  23400. }
  23401. },
  23402. back: {
  23403. height: math.unit(5 + 10 / 12, "feet"),
  23404. weight: math.unit(165, "lb"),
  23405. name: "Back",
  23406. image: {
  23407. source: "./media/characters/nicky/back.svg",
  23408. extra: 3055 / 2804,
  23409. bottom: 28.4 / 3087
  23410. }
  23411. },
  23412. frontclothed: {
  23413. height: math.unit(5 + 10 / 12, "feet"),
  23414. weight: math.unit(165, "lb"),
  23415. name: "Front-clothed",
  23416. image: {
  23417. source: "./media/characters/nicky/front-clothed.svg",
  23418. extra: 3184.9 / 2926.9,
  23419. bottom: 86.5 / 3239.9
  23420. }
  23421. },
  23422. foot: {
  23423. height: math.unit(1.16, "feet"),
  23424. name: "Foot",
  23425. image: {
  23426. source: "./media/characters/nicky/foot.svg"
  23427. }
  23428. },
  23429. feet: {
  23430. height: math.unit(1.34, "feet"),
  23431. name: "Feet",
  23432. image: {
  23433. source: "./media/characters/nicky/feet.svg"
  23434. }
  23435. },
  23436. maw: {
  23437. height: math.unit(0.9, "feet"),
  23438. name: "Maw",
  23439. image: {
  23440. source: "./media/characters/nicky/maw.svg"
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(5 + 10 / 12, "feet"),
  23448. default: true
  23449. },
  23450. {
  23451. name: "Macro",
  23452. height: math.unit(60, "feet")
  23453. },
  23454. {
  23455. name: "Megamacro",
  23456. height: math.unit(1, "mile")
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23462. {
  23463. side: {
  23464. height: math.unit(10, "feet"),
  23465. weight: math.unit(600, "lb"),
  23466. name: "Side",
  23467. image: {
  23468. source: "./media/characters/blair/side.svg",
  23469. bottom: 16.6 / 475,
  23470. extra: 458 / 431
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Micro",
  23477. height: math.unit(8, "inches")
  23478. },
  23479. {
  23480. name: "Normal",
  23481. height: math.unit(10, "feet"),
  23482. default: true
  23483. },
  23484. {
  23485. name: "Macro",
  23486. height: math.unit(180, "feet")
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(5 + 4 / 12, "feet"),
  23495. weight: math.unit(125, "lb"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/fisher/front.svg",
  23499. extra: 444 / 390,
  23500. bottom: 2 / 444.8
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Micro",
  23507. height: math.unit(4, "inches")
  23508. },
  23509. {
  23510. name: "Normal",
  23511. height: math.unit(5 + 4 / 12, "feet"),
  23512. default: true
  23513. },
  23514. {
  23515. name: "Macro",
  23516. height: math.unit(100, "feet")
  23517. },
  23518. ]
  23519. ))
  23520. characterMakers.push(() => makeCharacter(
  23521. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23522. {
  23523. front: {
  23524. height: math.unit(6.71, "feet"),
  23525. weight: math.unit(200, "lb"),
  23526. capacity: math.unit(1000000, "people"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/gliss/front.svg",
  23530. extra: 2347 / 2231,
  23531. bottom: 113 / 2462
  23532. }
  23533. },
  23534. hammerspaceSize: {
  23535. height: math.unit(6.71 * 717, "feet"),
  23536. weight: math.unit(200, "lb"),
  23537. capacity: math.unit(1000000, "people"),
  23538. name: "Hammerspace Size",
  23539. image: {
  23540. source: "./media/characters/gliss/front.svg",
  23541. extra: 2347 / 2231,
  23542. bottom: 113 / 2462
  23543. }
  23544. },
  23545. },
  23546. [
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(6.71, "feet"),
  23550. default: true
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23556. {
  23557. side: {
  23558. height: math.unit(1.44, "m"),
  23559. weight: math.unit(80, "kg"),
  23560. name: "Side",
  23561. image: {
  23562. source: "./media/characters/dune-anderson/side.svg",
  23563. bottom: 49 / 1426
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Wolf-sized",
  23570. height: math.unit(1.44, "meters")
  23571. },
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(5.05, "meters"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Big",
  23579. height: math.unit(14.4, "meters")
  23580. },
  23581. {
  23582. name: "Huge",
  23583. height: math.unit(144, "meters")
  23584. },
  23585. ]
  23586. ))
  23587. characterMakers.push(() => makeCharacter(
  23588. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23589. {
  23590. front: {
  23591. height: math.unit(7, "feet"),
  23592. weight: math.unit(425, "lb"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/hind/front.svg",
  23596. extra: 2091 / 1860,
  23597. bottom: 129 / 2220
  23598. }
  23599. },
  23600. back: {
  23601. height: math.unit(7, "feet"),
  23602. weight: math.unit(425, "lb"),
  23603. name: "Back",
  23604. image: {
  23605. source: "./media/characters/hind/back.svg",
  23606. extra: 2091 / 1860,
  23607. bottom: 24.6 / 2309
  23608. }
  23609. },
  23610. tail: {
  23611. height: math.unit(2.8, "feet"),
  23612. name: "Tail",
  23613. image: {
  23614. source: "./media/characters/hind/tail.svg"
  23615. }
  23616. },
  23617. head: {
  23618. height: math.unit(2.55, "feet"),
  23619. name: "Head",
  23620. image: {
  23621. source: "./media/characters/hind/head.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "XS",
  23628. height: math.unit(0.7, "feet")
  23629. },
  23630. {
  23631. name: "Normal",
  23632. height: math.unit(7, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "XL",
  23637. height: math.unit(70, "feet")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(6, "feet"),
  23646. weight: math.unit(150, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/dylan-skaven/front.svg",
  23650. extra: 2318 / 2063,
  23651. bottom: 93.4 / 2410
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Nano",
  23658. height: math.unit(1, "mm")
  23659. },
  23660. {
  23661. name: "Micro",
  23662. height: math.unit(1, "cm")
  23663. },
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(2.1, "meters"),
  23667. default: true
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(7 + 5 / 12, "feet"),
  23676. weight: math.unit(357, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/solex-draconov/front.svg",
  23680. extra: 1993 / 1865,
  23681. bottom: 117 / 2111
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Natural Height",
  23688. height: math.unit(7 + 5 / 12, "feet"),
  23689. default: true
  23690. },
  23691. {
  23692. name: "Macro",
  23693. height: math.unit(350, "feet")
  23694. },
  23695. {
  23696. name: "Macro+",
  23697. height: math.unit(1000, "feet")
  23698. },
  23699. {
  23700. name: "Megamacro",
  23701. height: math.unit(20, "km")
  23702. },
  23703. {
  23704. name: "Megamacro+",
  23705. height: math.unit(1000, "km")
  23706. },
  23707. {
  23708. name: "Gigamacro",
  23709. height: math.unit(2.5, "Gm")
  23710. },
  23711. {
  23712. name: "Teramacro",
  23713. height: math.unit(15, "Tm")
  23714. },
  23715. {
  23716. name: "Galactic",
  23717. height: math.unit(30, "Zm")
  23718. },
  23719. {
  23720. name: "Universal",
  23721. height: math.unit(21000, "Ym")
  23722. },
  23723. {
  23724. name: "Omniversal",
  23725. height: math.unit(9.861e50, "Ym")
  23726. },
  23727. {
  23728. name: "Existential",
  23729. height: math.unit(1e300, "meters")
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23735. {
  23736. side: {
  23737. height: math.unit(25, "feet"),
  23738. weight: math.unit(90000, "lb"),
  23739. name: "Side",
  23740. image: {
  23741. source: "./media/characters/mandarax/side.svg",
  23742. extra: 614 / 332,
  23743. bottom: 55 / 630
  23744. }
  23745. },
  23746. head: {
  23747. height: math.unit(11.4, "feet"),
  23748. name: "Head",
  23749. image: {
  23750. source: "./media/characters/mandarax/head.svg"
  23751. }
  23752. },
  23753. belly: {
  23754. height: math.unit(33, "feet"),
  23755. name: "Belly",
  23756. capacity: math.unit(500, "people"),
  23757. image: {
  23758. source: "./media/characters/mandarax/belly.svg"
  23759. }
  23760. },
  23761. dick: {
  23762. height: math.unit(8.46, "feet"),
  23763. name: "Dick",
  23764. image: {
  23765. source: "./media/characters/mandarax/dick.svg"
  23766. }
  23767. },
  23768. top: {
  23769. height: math.unit(28, "meters"),
  23770. name: "Top",
  23771. image: {
  23772. source: "./media/characters/mandarax/top.svg"
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Normal",
  23779. height: math.unit(25, "feet"),
  23780. default: true
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23786. {
  23787. front: {
  23788. height: math.unit(5, "feet"),
  23789. weight: math.unit(90, "lb"),
  23790. name: "Front",
  23791. image: {
  23792. source: "./media/characters/pixil/front.svg",
  23793. extra: 2000 / 1618,
  23794. bottom: 12.3 / 2011
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Normal",
  23801. height: math.unit(5, "feet"),
  23802. default: true
  23803. },
  23804. {
  23805. name: "Megamacro",
  23806. height: math.unit(10, "miles"),
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23812. {
  23813. front: {
  23814. height: math.unit(7 + 2 / 12, "feet"),
  23815. weight: math.unit(200, "lb"),
  23816. name: "Front",
  23817. image: {
  23818. source: "./media/characters/angel/front.svg",
  23819. extra: 1830 / 1737,
  23820. bottom: 22.6 / 1854,
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(7 + 2 / 12, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Macro",
  23832. height: math.unit(1000, "feet")
  23833. },
  23834. {
  23835. name: "Megamacro",
  23836. height: math.unit(2, "miles")
  23837. },
  23838. {
  23839. name: "Gigamacro",
  23840. height: math.unit(20, "earths")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(5, "feet"),
  23849. weight: math.unit(180, "lb"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/mekana/front.svg",
  23853. extra: 1671 / 1605,
  23854. bottom: 3.5 / 1691
  23855. }
  23856. },
  23857. side: {
  23858. height: math.unit(5, "feet"),
  23859. weight: math.unit(180, "lb"),
  23860. name: "Side",
  23861. image: {
  23862. source: "./media/characters/mekana/side.svg",
  23863. extra: 1671 / 1605,
  23864. bottom: 3.5 / 1691
  23865. }
  23866. },
  23867. back: {
  23868. height: math.unit(5, "feet"),
  23869. weight: math.unit(180, "lb"),
  23870. name: "Back",
  23871. image: {
  23872. source: "./media/characters/mekana/back.svg",
  23873. extra: 1671 / 1605,
  23874. bottom: 3.5 / 1691
  23875. }
  23876. },
  23877. },
  23878. [
  23879. {
  23880. name: "Normal",
  23881. height: math.unit(5, "feet"),
  23882. default: true
  23883. },
  23884. ]
  23885. ))
  23886. characterMakers.push(() => makeCharacter(
  23887. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23888. {
  23889. front: {
  23890. height: math.unit(4 + 6 / 12, "feet"),
  23891. weight: math.unit(80, "lb"),
  23892. name: "Front",
  23893. image: {
  23894. source: "./media/characters/pixie/front.svg",
  23895. extra: 1924 / 1825,
  23896. bottom: 22.4 / 1946
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(4 + 6 / 12, "feet"),
  23904. default: true
  23905. },
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(40, "feet")
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(2.1, "meters"),
  23917. weight: math.unit(200, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/the-lascivious/front.svg",
  23921. extra: 1 / 0.893,
  23922. bottom: 3.5 / 573.7
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Human Scale",
  23929. height: math.unit(2.1, "meters")
  23930. },
  23931. {
  23932. name: "Wolxi Scale",
  23933. height: math.unit(46.2, "m"),
  23934. default: true
  23935. },
  23936. {
  23937. name: "Boinker of Buildings",
  23938. height: math.unit(10, "km")
  23939. },
  23940. {
  23941. name: "Shagger of Skyscrapers",
  23942. height: math.unit(40, "km")
  23943. },
  23944. {
  23945. name: "Banger of Boroughs",
  23946. height: math.unit(4000, "km")
  23947. },
  23948. {
  23949. name: "Screwer of States",
  23950. height: math.unit(100000, "km")
  23951. },
  23952. {
  23953. name: "Pounder of Planets",
  23954. height: math.unit(2000000, "km")
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23960. {
  23961. front: {
  23962. height: math.unit(6, "feet"),
  23963. weight: math.unit(150, "lb"),
  23964. name: "Front",
  23965. image: {
  23966. source: "./media/characters/aj/front.svg",
  23967. extra: 2039 / 1562,
  23968. bottom: 40 / 2079
  23969. }
  23970. },
  23971. },
  23972. [
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(11 + 6 / 12, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Megamacro",
  23980. height: math.unit(60, "megameters")
  23981. },
  23982. ]
  23983. ))
  23984. characterMakers.push(() => makeCharacter(
  23985. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  23986. {
  23987. side: {
  23988. height: math.unit(31 + 8/12, "feet"),
  23989. weight: math.unit(75000, "kg"),
  23990. name: "Side",
  23991. image: {
  23992. source: "./media/characters/koros/side.svg",
  23993. extra: 1442/1297,
  23994. bottom: 122.7/1562
  23995. }
  23996. },
  23997. dicksKingsCrown: {
  23998. height: math.unit(6, "feet"),
  23999. name: "Dicks (King's Crown)",
  24000. image: {
  24001. source: "./media/characters/koros/dicks-kings-crown.svg"
  24002. }
  24003. },
  24004. dicksTailSet: {
  24005. height: math.unit(3, "feet"),
  24006. name: "Dicks (Tail Set)",
  24007. image: {
  24008. source: "./media/characters/koros/dicks-tail-set.svg"
  24009. }
  24010. },
  24011. dickCumming: {
  24012. height: math.unit(7.98, "feet"),
  24013. name: "Dick (Cumming)",
  24014. image: {
  24015. source: "./media/characters/koros/dick-cumming.svg"
  24016. }
  24017. },
  24018. dicksBack: {
  24019. height: math.unit(5.9, "feet"),
  24020. name: "Dicks (Back)",
  24021. image: {
  24022. source: "./media/characters/koros/dicks-back.svg"
  24023. }
  24024. },
  24025. dicksFront: {
  24026. height: math.unit(3.72, "feet"),
  24027. name: "Dicks (Front)",
  24028. image: {
  24029. source: "./media/characters/koros/dicks-front.svg"
  24030. }
  24031. },
  24032. dicksPeeking: {
  24033. height: math.unit(3.0, "feet"),
  24034. name: "Dicks (Peeking)",
  24035. image: {
  24036. source: "./media/characters/koros/dicks-peeking.svg"
  24037. }
  24038. },
  24039. eye: {
  24040. height: math.unit(1.7, "feet"),
  24041. name: "Eye",
  24042. image: {
  24043. source: "./media/characters/koros/eye.svg"
  24044. }
  24045. },
  24046. headFront: {
  24047. height: math.unit(11.69, "feet"),
  24048. name: "Head (Front)",
  24049. image: {
  24050. source: "./media/characters/koros/head-front.svg"
  24051. }
  24052. },
  24053. headSide: {
  24054. height: math.unit(14, "feet"),
  24055. name: "Head (Side)",
  24056. image: {
  24057. source: "./media/characters/koros/head-side.svg"
  24058. }
  24059. },
  24060. leg: {
  24061. height: math.unit(17, "feet"),
  24062. name: "Leg",
  24063. image: {
  24064. source: "./media/characters/koros/leg.svg"
  24065. }
  24066. },
  24067. mawSide: {
  24068. height: math.unit(12.8, "feet"),
  24069. name: "Maw (Side)",
  24070. image: {
  24071. source: "./media/characters/koros/maw-side.svg"
  24072. }
  24073. },
  24074. mawSpitting: {
  24075. height: math.unit(17, "feet"),
  24076. name: "Maw (Spitting)",
  24077. image: {
  24078. source: "./media/characters/koros/maw-spitting.svg"
  24079. }
  24080. },
  24081. slit: {
  24082. height: math.unit(2.8, "feet"),
  24083. name: "Slit",
  24084. image: {
  24085. source: "./media/characters/koros/slit.svg"
  24086. }
  24087. },
  24088. stomach: {
  24089. height: math.unit(6.8, "feet"),
  24090. capacity: math.unit(20, "people"),
  24091. name: "Stomach",
  24092. image: {
  24093. source: "./media/characters/koros/stomach.svg"
  24094. }
  24095. },
  24096. wingspanBottom: {
  24097. height: math.unit(114, "feet"),
  24098. name: "Wingspan (Bottom)",
  24099. image: {
  24100. source: "./media/characters/koros/wingspan-bottom.svg"
  24101. }
  24102. },
  24103. wingspanTop: {
  24104. height: math.unit(104, "feet"),
  24105. name: "Wingspan (Top)",
  24106. image: {
  24107. source: "./media/characters/koros/wingspan-top.svg"
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Normal",
  24114. height: math.unit(31 + 8/12, "feet"),
  24115. default: true
  24116. },
  24117. ]
  24118. ))
  24119. characterMakers.push(() => makeCharacter(
  24120. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24121. {
  24122. front: {
  24123. height: math.unit(18 + 5/12, "feet"),
  24124. weight: math.unit(3750, "kg"),
  24125. name: "Front",
  24126. image: {
  24127. source: "./media/characters/vexx/front.svg",
  24128. extra: 426/396,
  24129. bottom: 31.5/458
  24130. }
  24131. },
  24132. maw: {
  24133. height: math.unit(6, "feet"),
  24134. name: "Maw",
  24135. image: {
  24136. source: "./media/characters/vexx/maw.svg"
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(18 + 5/12, "feet"),
  24144. default: true
  24145. },
  24146. ]
  24147. ))
  24148. characterMakers.push(() => makeCharacter(
  24149. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24150. {
  24151. front: {
  24152. height: math.unit(17 + 6/12, "feet"),
  24153. weight: math.unit(150, "lb"),
  24154. name: "Front",
  24155. image: {
  24156. source: "./media/characters/baadra/front.svg",
  24157. extra: 3137/2890,
  24158. bottom: 168.4/3305
  24159. }
  24160. },
  24161. back: {
  24162. height: math.unit(17 + 6/12, "feet"),
  24163. weight: math.unit(150, "lb"),
  24164. name: "Back",
  24165. image: {
  24166. source: "./media/characters/baadra/back.svg",
  24167. extra: 3142/2890,
  24168. bottom: 220/3371
  24169. }
  24170. },
  24171. head: {
  24172. height: math.unit(5.45, "feet"),
  24173. name: "Head",
  24174. image: {
  24175. source: "./media/characters/baadra/head.svg"
  24176. }
  24177. },
  24178. headAngry: {
  24179. height: math.unit(4.95, "feet"),
  24180. name: "Head (Angry)",
  24181. image: {
  24182. source: "./media/characters/baadra/head-angry.svg"
  24183. }
  24184. },
  24185. headOpen: {
  24186. height: math.unit(6, "feet"),
  24187. name: "Head (Open)",
  24188. image: {
  24189. source: "./media/characters/baadra/head-open.svg"
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(17 + 6/12, "feet"),
  24197. default: true
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(7 + 3/12, "feet"),
  24206. weight: math.unit(180, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/juri/front.svg",
  24210. extra: 1401/1237,
  24211. bottom: 18.5/1418
  24212. }
  24213. },
  24214. side: {
  24215. height: math.unit(7 + 3/12, "feet"),
  24216. weight: math.unit(180, "lb"),
  24217. name: "Side",
  24218. image: {
  24219. source: "./media/characters/juri/side.svg",
  24220. extra: 1424/1242,
  24221. bottom: 18.5/1447
  24222. }
  24223. },
  24224. sitting: {
  24225. height: math.unit(6, "feet"),
  24226. weight: math.unit(180, "lb"),
  24227. name: "Sitting",
  24228. image: {
  24229. source: "./media/characters/juri/sitting.svg",
  24230. extra: 1270/1143,
  24231. bottom: 100/1343
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(7 + 3/12, "feet"),
  24236. weight: math.unit(180, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/juri/back.svg",
  24240. extra: 1377/1240,
  24241. bottom: 23.7/1405
  24242. }
  24243. },
  24244. maw: {
  24245. height: math.unit(2.8, "feet"),
  24246. name: "Maw",
  24247. image: {
  24248. source: "./media/characters/juri/maw.svg"
  24249. }
  24250. },
  24251. stomach: {
  24252. height: math.unit(0.89, "feet"),
  24253. capacity: math.unit(4, "liters"),
  24254. name: "Stomach",
  24255. image: {
  24256. source: "./media/characters/juri/stomach.svg"
  24257. }
  24258. },
  24259. },
  24260. [
  24261. {
  24262. name: "Normal",
  24263. height: math.unit(7 + 3/12, "feet"),
  24264. default: true
  24265. },
  24266. ]
  24267. ))
  24268. characterMakers.push(() => makeCharacter(
  24269. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24270. {
  24271. fox: {
  24272. height: math.unit(5 + 6/12, "feet"),
  24273. weight: math.unit(140, "lb"),
  24274. name: "Fox",
  24275. image: {
  24276. source: "./media/characters/maxene-sita/fox.svg",
  24277. extra: 146/138,
  24278. bottom: 2.1/148.19
  24279. }
  24280. },
  24281. kitsune: {
  24282. height: math.unit(10, "feet"),
  24283. weight: math.unit(800, "lb"),
  24284. name: "Kitsune",
  24285. image: {
  24286. source: "./media/characters/maxene-sita/kitsune.svg",
  24287. extra: 185/176,
  24288. bottom: 4.7/189.9
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Normal",
  24295. height: math.unit(5 + 6/12, "feet"),
  24296. default: true
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24302. {
  24303. front: {
  24304. height: math.unit(3 + 4/12, "feet"),
  24305. weight: math.unit(70, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/maia/front.svg",
  24309. extra: 227/219.5,
  24310. bottom: 40 / 267
  24311. }
  24312. },
  24313. back: {
  24314. height: math.unit(3 + 4/12, "feet"),
  24315. weight: math.unit(70, "lb"),
  24316. name: "Back",
  24317. image: {
  24318. source: "./media/characters/maia/back.svg",
  24319. extra: 237/225
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(3 + 4/12, "feet"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(5 + 10/12, "feet"),
  24336. weight: math.unit(197, "lb"),
  24337. name: "Front",
  24338. image: {
  24339. source: "./media/characters/jabaro/front.svg",
  24340. extra: 225/216,
  24341. bottom: 5.06/230
  24342. }
  24343. },
  24344. back: {
  24345. height: math.unit(5 + 10/12, "feet"),
  24346. weight: math.unit(197, "lb"),
  24347. name: "Back",
  24348. image: {
  24349. source: "./media/characters/jabaro/back.svg",
  24350. extra: 225/219,
  24351. bottom: 1.9/227
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(5 + 10/12, "feet"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(5 + 8/12, "feet"),
  24368. weight: math.unit(139, "lb"),
  24369. name: "Front",
  24370. image: {
  24371. source: "./media/characters/risa/front.svg",
  24372. extra: 270/260,
  24373. bottom: 11.2/282
  24374. }
  24375. },
  24376. back: {
  24377. height: math.unit(5 + 8/12, "feet"),
  24378. weight: math.unit(139, "lb"),
  24379. name: "Back",
  24380. image: {
  24381. source: "./media/characters/risa/back.svg",
  24382. extra: 264/255,
  24383. bottom: 4/268
  24384. }
  24385. },
  24386. },
  24387. [
  24388. {
  24389. name: "Normal",
  24390. height: math.unit(5 + 8/12, "feet"),
  24391. default: true
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(2 + 11/12, "feet"),
  24400. weight: math.unit(30, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/weatley/front.svg",
  24404. bottom: 10.7/414,
  24405. extra: 403.5/362
  24406. }
  24407. },
  24408. back: {
  24409. height: math.unit(2 + 11/12, "feet"),
  24410. weight: math.unit(30, "lb"),
  24411. name: "Back",
  24412. image: {
  24413. source: "./media/characters/weatley/back.svg",
  24414. bottom: 10.7/414,
  24415. extra: 403.5/362
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(2 + 11/12, "feet"),
  24423. default: true
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Mercury Crescent", species: ["dragon"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(5 + 2/12, "feet"),
  24432. weight: math.unit(50, "kg"),
  24433. name: "Front",
  24434. image: {
  24435. source: "./media/characters/mercury-crescent/front.svg",
  24436. extra: 1088/1033,
  24437. bottom: 18.9/1109
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Normal",
  24444. height: math.unit(5 + 2/12, "feet"),
  24445. default: true
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24451. {
  24452. front: {
  24453. height: math.unit(2, "feet"),
  24454. weight: math.unit(15, "kg"),
  24455. name: "Front",
  24456. image: {
  24457. source: "./media/characters/diamond-jones/front.svg",
  24458. bottom: 16/568
  24459. }
  24460. },
  24461. },
  24462. [
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(2, "feet"),
  24466. default: true
  24467. },
  24468. ]
  24469. ))
  24470. characterMakers.push(() => makeCharacter(
  24471. { name: "Sweet Bit", species: ["gestalt"], tags: ["anthro"] },
  24472. {
  24473. front: {
  24474. height: math.unit(3, "feet"),
  24475. weight: math.unit(30, "kg"),
  24476. name: "Front",
  24477. image: {
  24478. source: "./media/characters/sweet-bit/front.svg",
  24479. extra: 675/567,
  24480. bottom: 27.7/703
  24481. }
  24482. },
  24483. },
  24484. [
  24485. {
  24486. name: "Normal",
  24487. height: math.unit(3, "feet"),
  24488. default: true
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24494. {
  24495. side: {
  24496. height: math.unit(9.178, "feet"),
  24497. weight: math.unit(500, "lb"),
  24498. name: "Side",
  24499. image: {
  24500. source: "./media/characters/umbrazen/side.svg",
  24501. extra: 1730/1473,
  24502. bottom: 34.6/1765
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(9.178, "feet"),
  24510. default: true
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24516. {
  24517. front: {
  24518. height: math.unit(10, "feet"),
  24519. weight: math.unit(750, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/arlist/front.svg",
  24523. extra: 961/778,
  24524. bottom: 6.2/986
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(10, "feet"),
  24532. default: true
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24538. {
  24539. front: {
  24540. height: math.unit(5 + 1/12, "feet"),
  24541. weight: math.unit(110, "lb"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/aradel/front.svg",
  24545. extra: 324/303,
  24546. bottom: 3.6/329.4
  24547. }
  24548. },
  24549. },
  24550. [
  24551. {
  24552. name: "Normal",
  24553. height: math.unit(5 + 1/12, "feet"),
  24554. default: true
  24555. },
  24556. ]
  24557. ))
  24558. characterMakers.push(() => makeCharacter(
  24559. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24560. {
  24561. front: {
  24562. height: math.unit(3 + 8/12, "feet"),
  24563. weight: math.unit(50, "lb"),
  24564. name: "Front",
  24565. image: {
  24566. source: "./media/characters/serryn/front.svg",
  24567. extra: 1792/1656,
  24568. bottom: 43.5/1840
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(3 + 8/12, "feet"),
  24576. default: true
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Xavier Thyme" },
  24582. {
  24583. front: {
  24584. height: math.unit(7 + 1012, "feet"),
  24585. weight: math.unit(255, "lb"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/xavier-thyme/front.svg",
  24589. extra: 3733/3642,
  24590. bottom: 131/3869
  24591. }
  24592. },
  24593. frontRaven: {
  24594. height: math.unit(7 + 1012, "feet"),
  24595. weight: math.unit(255, "lb"),
  24596. name: "Front (Raven)",
  24597. image: {
  24598. source: "./media/characters/xavier-thyme/front-raven.svg",
  24599. extra: 4385/3642,
  24600. bottom: 131/4517
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(7 + 10/12, "feet"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. //characters
  24613. function makeCharacters() {
  24614. const results = [];
  24615. characterMakers.forEach(character => {
  24616. results.push(character());
  24617. });
  24618. return results;
  24619. }