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

27949 строки
696 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. }
  1324. //species
  1325. function getSpeciesInfo(speciesList) {
  1326. let result = new Set();
  1327. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1328. result.add(entry)
  1329. });
  1330. return Array.from(result);
  1331. };
  1332. function getSpeciesInfoHelper(species) {
  1333. if (!speciesData[species]) {
  1334. console.warn(species + " doesn't exist");
  1335. return [];
  1336. }
  1337. if (speciesData[species].parents) {
  1338. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1339. } else {
  1340. return [species];
  1341. }
  1342. }
  1343. characterMakers.push(() => makeCharacter(
  1344. {
  1345. name: "Fen",
  1346. species: ["crux"],
  1347. description: {
  1348. title: "Bio",
  1349. text: "Very furry. Sheds on everything."
  1350. },
  1351. tags: [
  1352. "anthro",
  1353. "goo"
  1354. ]
  1355. },
  1356. {
  1357. back: {
  1358. height: math.unit(2.2428, "meter"),
  1359. weight: math.unit(124.738, "kg"),
  1360. name: "Back",
  1361. image: {
  1362. source: "./media/characters/fen/back.svg",
  1363. extra: 1025 / 935,
  1364. bottom: 0.01
  1365. },
  1366. info: {
  1367. description: {
  1368. mode: "append",
  1369. text: "\n\nHe is not currently looking at you."
  1370. }
  1371. }
  1372. },
  1373. full: {
  1374. height: math.unit(1.34, "meter"),
  1375. weight: math.unit(225, "kg"),
  1376. name: "Full",
  1377. image: {
  1378. source: "./media/characters/fen/full.svg"
  1379. },
  1380. info: {
  1381. description: {
  1382. mode: "append",
  1383. text: "\n\nMunch."
  1384. }
  1385. }
  1386. },
  1387. kneeling: {
  1388. height: math.unit(5.4, "feet"),
  1389. weight: math.unit(124.738, "kg"),
  1390. name: "Kneeling",
  1391. image: {
  1392. source: "./media/characters/fen/kneeling.svg",
  1393. extra: 563 / 507
  1394. }
  1395. },
  1396. goo: {
  1397. height: math.unit(2.8, "feet"),
  1398. weight: math.unit(125, "kg"),
  1399. capacity: math.unit(1, "people"),
  1400. name: "Goo",
  1401. image: {
  1402. source: "./media/characters/fen/goo.svg",
  1403. bottom: 116 / 613
  1404. }
  1405. },
  1406. lounging: {
  1407. height: math.unit(6.5, "feet"),
  1408. weight: math.unit(125, "kg"),
  1409. name: "Lounging",
  1410. image: {
  1411. source: "./media/characters/fen/lounging.svg"
  1412. }
  1413. },
  1414. },
  1415. [
  1416. {
  1417. name: "Normal",
  1418. height: math.unit(2.2428, "meter")
  1419. },
  1420. {
  1421. name: "Big",
  1422. height: math.unit(12, "feet")
  1423. },
  1424. {
  1425. name: "Minimacro",
  1426. height: math.unit(40, "feet"),
  1427. default: true,
  1428. info: {
  1429. description: {
  1430. mode: "append",
  1431. text: "\n\nTOO DAMN BIG"
  1432. }
  1433. }
  1434. },
  1435. {
  1436. name: "Macro",
  1437. height: math.unit(100, "feet"),
  1438. info: {
  1439. description: {
  1440. mode: "append",
  1441. text: "\n\nTOO DAMN BIG"
  1442. }
  1443. }
  1444. },
  1445. {
  1446. name: "Macro+",
  1447. height: math.unit(300, "feet")
  1448. },
  1449. {
  1450. name: "Megamacro",
  1451. height: math.unit(2, "miles")
  1452. }
  1453. ]
  1454. ))
  1455. characterMakers.push(() => makeCharacter(
  1456. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1457. {
  1458. front: {
  1459. height: math.unit(183, "cm"),
  1460. weight: math.unit(80, "kg"),
  1461. name: "Front",
  1462. image: {
  1463. source: "./media/characters/sofia-fluttertail/front.svg",
  1464. bottom: 0.01,
  1465. extra: 2154 / 2081
  1466. }
  1467. },
  1468. frontAlt: {
  1469. height: math.unit(183, "cm"),
  1470. weight: math.unit(80, "kg"),
  1471. name: "Front (alt)",
  1472. image: {
  1473. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1474. }
  1475. },
  1476. back: {
  1477. height: math.unit(183, "cm"),
  1478. weight: math.unit(80, "kg"),
  1479. name: "Back",
  1480. image: {
  1481. source: "./media/characters/sofia-fluttertail/back.svg"
  1482. }
  1483. },
  1484. kneeling: {
  1485. height: math.unit(125, "cm"),
  1486. weight: math.unit(80, "kg"),
  1487. name: "Kneeling",
  1488. image: {
  1489. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1490. extra: 1033 / 977,
  1491. bottom: 23.7 / 1057
  1492. }
  1493. },
  1494. maw: {
  1495. height: math.unit(183 / 5, "cm"),
  1496. name: "Maw",
  1497. image: {
  1498. source: "./media/characters/sofia-fluttertail/maw.svg"
  1499. }
  1500. },
  1501. mawcloseup: {
  1502. height: math.unit(183 / 5 * 0.41, "cm"),
  1503. name: "Maw (Closeup)",
  1504. image: {
  1505. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1506. }
  1507. },
  1508. },
  1509. [
  1510. {
  1511. name: "Normal",
  1512. height: math.unit(1.83, "meter")
  1513. },
  1514. {
  1515. name: "Size Thief",
  1516. height: math.unit(18, "feet")
  1517. },
  1518. {
  1519. name: "50 Foot Collie",
  1520. height: math.unit(50, "feet")
  1521. },
  1522. {
  1523. name: "Macro",
  1524. height: math.unit(96, "feet"),
  1525. default: true
  1526. },
  1527. {
  1528. name: "Megamerger",
  1529. height: math.unit(650, "feet")
  1530. },
  1531. ]
  1532. ))
  1533. characterMakers.push(() => makeCharacter(
  1534. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1535. {
  1536. front: {
  1537. height: math.unit(7, "feet"),
  1538. weight: math.unit(100, "kg"),
  1539. name: "Front",
  1540. image: {
  1541. source: "./media/characters/march/front.svg",
  1542. extra: 1,
  1543. bottom: 0.015
  1544. }
  1545. },
  1546. foot: {
  1547. height: math.unit(0.9, "feet"),
  1548. name: "Foot",
  1549. image: {
  1550. source: "./media/characters/march/foot.svg"
  1551. }
  1552. },
  1553. },
  1554. [
  1555. {
  1556. name: "Normal",
  1557. height: math.unit(7.9, "feet")
  1558. },
  1559. {
  1560. name: "Macro",
  1561. height: math.unit(220, "meters")
  1562. },
  1563. {
  1564. name: "Megamacro",
  1565. height: math.unit(2.98, "km"),
  1566. default: true
  1567. },
  1568. {
  1569. name: "Gigamacro",
  1570. height: math.unit(15963, "km")
  1571. },
  1572. {
  1573. name: "Teramacro",
  1574. height: math.unit(2980000000, "km")
  1575. },
  1576. {
  1577. name: "Examacro",
  1578. height: math.unit(250, "parsecs")
  1579. },
  1580. ]
  1581. ))
  1582. characterMakers.push(() => makeCharacter(
  1583. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1584. {
  1585. front: {
  1586. height: math.unit(6, "feet"),
  1587. weight: math.unit(60, "kg"),
  1588. name: "Front",
  1589. image: {
  1590. source: "./media/characters/noir/front.svg",
  1591. extra: 1,
  1592. bottom: 0.032
  1593. }
  1594. },
  1595. },
  1596. [
  1597. {
  1598. name: "Normal",
  1599. height: math.unit(6.6, "feet")
  1600. },
  1601. {
  1602. name: "Macro",
  1603. height: math.unit(500, "feet")
  1604. },
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(2.5, "km"),
  1608. default: true
  1609. },
  1610. {
  1611. name: "Gigamacro",
  1612. height: math.unit(22500, "km")
  1613. },
  1614. {
  1615. name: "Teramacro",
  1616. height: math.unit(2500000000, "km")
  1617. },
  1618. {
  1619. name: "Examacro",
  1620. height: math.unit(200, "parsecs")
  1621. },
  1622. ]
  1623. ))
  1624. characterMakers.push(() => makeCharacter(
  1625. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1626. {
  1627. front: {
  1628. height: math.unit(7, "feet"),
  1629. weight: math.unit(100, "kg"),
  1630. name: "Front",
  1631. image: {
  1632. source: "./media/characters/okuri/front.svg",
  1633. extra: 1,
  1634. bottom: 0.037
  1635. }
  1636. },
  1637. back: {
  1638. height: math.unit(7, "feet"),
  1639. weight: math.unit(100, "kg"),
  1640. name: "Back",
  1641. image: {
  1642. source: "./media/characters/okuri/back.svg",
  1643. extra: 1,
  1644. bottom: 0.007
  1645. }
  1646. },
  1647. },
  1648. [
  1649. {
  1650. name: "Megamacro",
  1651. height: math.unit(100, "miles"),
  1652. default: true
  1653. },
  1654. ]
  1655. ))
  1656. characterMakers.push(() => makeCharacter(
  1657. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1658. {
  1659. front: {
  1660. height: math.unit(7, "feet"),
  1661. weight: math.unit(100, "kg"),
  1662. name: "Front",
  1663. image: {
  1664. source: "./media/characters/manny/front.svg",
  1665. extra: 1,
  1666. bottom: 0.06
  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/manny/back.svg",
  1675. extra: 1,
  1676. bottom: 0.014
  1677. }
  1678. },
  1679. },
  1680. [
  1681. {
  1682. name: "Normal",
  1683. height: math.unit(7, "feet"),
  1684. },
  1685. {
  1686. name: "Macro",
  1687. height: math.unit(78, "feet"),
  1688. default: true
  1689. },
  1690. {
  1691. name: "Macro+",
  1692. height: math.unit(300, "meters")
  1693. },
  1694. {
  1695. name: "Macro++",
  1696. height: math.unit(2400, "meters")
  1697. },
  1698. {
  1699. name: "Megamacro",
  1700. height: math.unit(5167, "meters")
  1701. },
  1702. {
  1703. name: "Gigamacro",
  1704. height: math.unit(41769, "miles")
  1705. },
  1706. ]
  1707. ))
  1708. characterMakers.push(() => makeCharacter(
  1709. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1710. {
  1711. front: {
  1712. height: math.unit(7, "feet"),
  1713. weight: math.unit(100, "kg"),
  1714. name: "Front",
  1715. image: {
  1716. source: "./media/characters/adake/front-1.svg"
  1717. }
  1718. },
  1719. frontAlt: {
  1720. height: math.unit(7, "feet"),
  1721. weight: math.unit(100, "kg"),
  1722. name: "Front (Alt)",
  1723. image: {
  1724. source: "./media/characters/adake/front-2.svg",
  1725. extra: 1,
  1726. bottom: 0.01
  1727. }
  1728. },
  1729. back: {
  1730. height: math.unit(7, "feet"),
  1731. weight: math.unit(100, "kg"),
  1732. name: "Back",
  1733. image: {
  1734. source: "./media/characters/adake/back.svg",
  1735. }
  1736. },
  1737. kneel: {
  1738. height: math.unit(5.385, "feet"),
  1739. weight: math.unit(100, "kg"),
  1740. name: "Kneeling",
  1741. image: {
  1742. source: "./media/characters/adake/kneel.svg",
  1743. bottom: 0.052
  1744. }
  1745. },
  1746. },
  1747. [
  1748. {
  1749. name: "Normal",
  1750. height: math.unit(7, "feet"),
  1751. },
  1752. {
  1753. name: "Macro",
  1754. height: math.unit(78, "feet"),
  1755. default: true
  1756. },
  1757. {
  1758. name: "Macro+",
  1759. height: math.unit(300, "meters")
  1760. },
  1761. {
  1762. name: "Macro++",
  1763. height: math.unit(2400, "meters")
  1764. },
  1765. {
  1766. name: "Megamacro",
  1767. height: math.unit(5167, "meters")
  1768. },
  1769. {
  1770. name: "Gigamacro",
  1771. height: math.unit(41769, "miles")
  1772. },
  1773. ]
  1774. ))
  1775. characterMakers.push(() => makeCharacter(
  1776. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1777. {
  1778. front: {
  1779. height: math.unit(1.65, "meters"),
  1780. weight: math.unit(50, "kg"),
  1781. name: "Front",
  1782. image: {
  1783. source: "./media/characters/elijah/front.svg",
  1784. extra: 858 / 830,
  1785. bottom: 95.5 / 953.8559
  1786. }
  1787. },
  1788. back: {
  1789. height: math.unit(1.65, "meters"),
  1790. weight: math.unit(50, "kg"),
  1791. name: "Back",
  1792. image: {
  1793. source: "./media/characters/elijah/back.svg",
  1794. extra: 895 / 850,
  1795. bottom: 5.3 / 897.956
  1796. }
  1797. },
  1798. frontNsfw: {
  1799. height: math.unit(1.65, "meters"),
  1800. weight: math.unit(50, "kg"),
  1801. name: "Front (NSFW)",
  1802. image: {
  1803. source: "./media/characters/elijah/front-nsfw.svg",
  1804. extra: 858 / 830,
  1805. bottom: 95.5 / 953.8559
  1806. }
  1807. },
  1808. backNsfw: {
  1809. height: math.unit(1.65, "meters"),
  1810. weight: math.unit(50, "kg"),
  1811. name: "Back (NSFW)",
  1812. image: {
  1813. source: "./media/characters/elijah/back-nsfw.svg",
  1814. extra: 895 / 850,
  1815. bottom: 5.3 / 897.956
  1816. }
  1817. },
  1818. dick: {
  1819. height: math.unit(1, "feet"),
  1820. name: "Dick",
  1821. image: {
  1822. source: "./media/characters/elijah/dick.svg"
  1823. }
  1824. },
  1825. beakOpen: {
  1826. height: math.unit(1.25, "feet"),
  1827. name: "Beak (Open)",
  1828. image: {
  1829. source: "./media/characters/elijah/beak-open.svg"
  1830. }
  1831. },
  1832. beakShut: {
  1833. height: math.unit(1.25, "feet"),
  1834. name: "Beak (Shut)",
  1835. image: {
  1836. source: "./media/characters/elijah/beak-shut.svg"
  1837. }
  1838. },
  1839. footFlexing: {
  1840. height: math.unit(1.61, "feet"),
  1841. name: "Foot (Flexing)",
  1842. image: {
  1843. source: "./media/characters/elijah/foot-flexing.svg"
  1844. }
  1845. },
  1846. footStepping: {
  1847. height: math.unit(1.44, "feet"),
  1848. name: "Foot (Stepping)",
  1849. image: {
  1850. source: "./media/characters/elijah/foot-stepping.svg"
  1851. }
  1852. },
  1853. plantigradeLeg: {
  1854. height: math.unit(2.34, "feet"),
  1855. name: "Plantigrade Leg",
  1856. image: {
  1857. source: "./media/characters/elijah/plantigrade-leg.svg"
  1858. }
  1859. },
  1860. plantigradeFootLeft: {
  1861. height: math.unit(0.9, "feet"),
  1862. name: "Plantigrade Foot (Left)",
  1863. image: {
  1864. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1865. }
  1866. },
  1867. plantigradeFootRight: {
  1868. height: math.unit(0.9, "feet"),
  1869. name: "Plantigrade Foot (Right)",
  1870. image: {
  1871. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1872. }
  1873. },
  1874. },
  1875. [
  1876. {
  1877. name: "Normal",
  1878. height: math.unit(1.65, "meters")
  1879. },
  1880. {
  1881. name: "Macro",
  1882. height: math.unit(55, "meters"),
  1883. default: true
  1884. },
  1885. {
  1886. name: "Macro+",
  1887. height: math.unit(105, "meters")
  1888. },
  1889. ]
  1890. ))
  1891. characterMakers.push(() => makeCharacter(
  1892. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1893. {
  1894. front: {
  1895. height: math.unit(11, "feet"),
  1896. weight: math.unit(80, "kg"),
  1897. name: "Front",
  1898. image: {
  1899. source: "./media/characters/rai/front.svg",
  1900. extra: 1,
  1901. bottom: 0.03
  1902. }
  1903. },
  1904. side: {
  1905. height: math.unit(11, "feet"),
  1906. weight: math.unit(80, "kg"),
  1907. name: "Side",
  1908. image: {
  1909. source: "./media/characters/rai/side.svg"
  1910. }
  1911. },
  1912. back: {
  1913. height: math.unit(11, "feet"),
  1914. weight: math.unit(80, "lb"),
  1915. name: "Back",
  1916. image: {
  1917. source: "./media/characters/rai/back.svg",
  1918. extra: 1,
  1919. bottom: 0.01
  1920. }
  1921. },
  1922. feral: {
  1923. height: math.unit(11, "feet"),
  1924. weight: math.unit(800, "lb"),
  1925. name: "Feral",
  1926. image: {
  1927. source: "./media/characters/rai/feral.svg",
  1928. extra: 1050 / 659,
  1929. bottom: 0.07
  1930. }
  1931. },
  1932. dragon: {
  1933. height: math.unit(23, "feet"),
  1934. weight: math.unit(50000, "lb"),
  1935. name: "Dragon",
  1936. image: {
  1937. source: "./media/characters/rai/dragon.svg",
  1938. extra: 2498 / 2030,
  1939. bottom: 85.2 / 2584
  1940. }
  1941. },
  1942. maw: {
  1943. height: math.unit(6 / 3.81416, "feet"),
  1944. name: "Maw",
  1945. image: {
  1946. source: "./media/characters/rai/maw.svg"
  1947. }
  1948. },
  1949. },
  1950. [
  1951. {
  1952. name: "Normal",
  1953. height: math.unit(11, "feet")
  1954. },
  1955. {
  1956. name: "Macro",
  1957. height: math.unit(302, "feet"),
  1958. default: true
  1959. },
  1960. ]
  1961. ))
  1962. characterMakers.push(() => makeCharacter(
  1963. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1964. {
  1965. frontDressed: {
  1966. height: math.unit(216, "feet"),
  1967. weight: math.unit(7000000, "lb"),
  1968. name: "Front (Dressed)",
  1969. image: {
  1970. source: "./media/characters/jazzy/front-dressed.svg",
  1971. extra: 2738 / 2651,
  1972. bottom: 41.8 / 2786
  1973. }
  1974. },
  1975. backDressed: {
  1976. height: math.unit(216, "feet"),
  1977. weight: math.unit(7000000, "lb"),
  1978. name: "Back (Dressed)",
  1979. image: {
  1980. source: "./media/characters/jazzy/back-dressed.svg",
  1981. extra: 2775 / 2673,
  1982. bottom: 36.8 / 2817
  1983. }
  1984. },
  1985. front: {
  1986. height: math.unit(216, "feet"),
  1987. weight: math.unit(7000000, "lb"),
  1988. name: "Front",
  1989. image: {
  1990. source: "./media/characters/jazzy/front.svg",
  1991. extra: 2738 / 2651,
  1992. bottom: 41.8 / 2786
  1993. }
  1994. },
  1995. back: {
  1996. height: math.unit(216, "feet"),
  1997. weight: math.unit(7000000, "lb"),
  1998. name: "Back",
  1999. image: {
  2000. source: "./media/characters/jazzy/back.svg",
  2001. extra: 2775 / 2673,
  2002. bottom: 36.8 / 2817
  2003. }
  2004. },
  2005. maw: {
  2006. height: math.unit(20, "feet"),
  2007. name: "Maw",
  2008. image: {
  2009. source: "./media/characters/jazzy/maw.svg"
  2010. }
  2011. },
  2012. paws: {
  2013. height: math.unit(27.5, "feet"),
  2014. name: "Paws",
  2015. image: {
  2016. source: "./media/characters/jazzy/paws.svg"
  2017. }
  2018. },
  2019. eye: {
  2020. height: math.unit(4.4, "feet"),
  2021. name: "Eye",
  2022. image: {
  2023. source: "./media/characters/jazzy/eye.svg"
  2024. }
  2025. },
  2026. droneOffense: {
  2027. height: math.unit(9.5, "inches"),
  2028. name: "Drone (Offense)",
  2029. image: {
  2030. source: "./media/characters/jazzy/drone-offense.svg"
  2031. }
  2032. },
  2033. droneRecon: {
  2034. height: math.unit(9.5, "inches"),
  2035. name: "Drone (Recon)",
  2036. image: {
  2037. source: "./media/characters/jazzy/drone-recon.svg"
  2038. }
  2039. },
  2040. droneDefense: {
  2041. height: math.unit(9.5, "inches"),
  2042. name: "Drone (Defense)",
  2043. image: {
  2044. source: "./media/characters/jazzy/drone-defense.svg"
  2045. }
  2046. },
  2047. },
  2048. [
  2049. {
  2050. name: "Macro",
  2051. height: math.unit(216, "feet"),
  2052. default: true
  2053. },
  2054. ]
  2055. ))
  2056. characterMakers.push(() => makeCharacter(
  2057. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2058. {
  2059. front: {
  2060. height: math.unit(7, "feet"),
  2061. weight: math.unit(80, "kg"),
  2062. name: "Front",
  2063. image: {
  2064. source: "./media/characters/flamm/front.svg",
  2065. extra: 1794 / 1677,
  2066. bottom: 31.7 / 1828.5
  2067. }
  2068. },
  2069. },
  2070. [
  2071. {
  2072. name: "Normal",
  2073. height: math.unit(9.5, "feet")
  2074. },
  2075. {
  2076. name: "Macro",
  2077. height: math.unit(200, "feet"),
  2078. default: true
  2079. },
  2080. ]
  2081. ))
  2082. characterMakers.push(() => makeCharacter(
  2083. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2084. {
  2085. front: {
  2086. height: math.unit(7, "feet"),
  2087. weight: math.unit(80, "kg"),
  2088. name: "Front",
  2089. image: {
  2090. source: "./media/characters/zephiro/front.svg",
  2091. extra: 2309 / 2162,
  2092. bottom: 0.069
  2093. }
  2094. },
  2095. side: {
  2096. height: math.unit(7, "feet"),
  2097. weight: math.unit(80, "kg"),
  2098. name: "Side",
  2099. image: {
  2100. source: "./media/characters/zephiro/side.svg",
  2101. extra: 2403 / 2279,
  2102. bottom: 0.015
  2103. }
  2104. },
  2105. back: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(80, "kg"),
  2108. name: "Back",
  2109. image: {
  2110. source: "./media/characters/zephiro/back.svg",
  2111. extra: 2373 / 2244,
  2112. bottom: 0.013
  2113. }
  2114. },
  2115. },
  2116. [
  2117. {
  2118. name: "Micro",
  2119. height: math.unit(3, "inches")
  2120. },
  2121. {
  2122. name: "Normal",
  2123. height: math.unit(5 + 3 / 12, "feet"),
  2124. default: true
  2125. },
  2126. {
  2127. name: "Macro",
  2128. height: math.unit(118, "feet")
  2129. },
  2130. ]
  2131. ))
  2132. characterMakers.push(() => makeCharacter(
  2133. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2134. {
  2135. front: {
  2136. height: math.unit(5, "feet"),
  2137. weight: math.unit(90, "kg"),
  2138. name: "Front",
  2139. image: {
  2140. source: "./media/characters/fory/front.svg",
  2141. extra: 2862 / 2674,
  2142. bottom: 180 / 3043.8
  2143. }
  2144. },
  2145. back: {
  2146. height: math.unit(5, "feet"),
  2147. weight: math.unit(90, "kg"),
  2148. name: "Back",
  2149. image: {
  2150. source: "./media/characters/fory/back.svg",
  2151. extra: 2962 / 2791,
  2152. bottom: 106 / 3071.8
  2153. }
  2154. },
  2155. foot: {
  2156. height: math.unit(2.14, "feet"),
  2157. name: "Foot",
  2158. image: {
  2159. source: "./media/characters/fory/foot.svg"
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(5, "feet")
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(50, "feet"),
  2171. default: true
  2172. },
  2173. {
  2174. name: "Megamacro",
  2175. height: math.unit(10, "miles")
  2176. },
  2177. {
  2178. name: "Gigamacro",
  2179. height: math.unit(5, "earths")
  2180. },
  2181. ]
  2182. ))
  2183. characterMakers.push(() => makeCharacter(
  2184. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2185. {
  2186. front: {
  2187. height: math.unit(7, "feet"),
  2188. weight: math.unit(90, "kg"),
  2189. name: "Front",
  2190. image: {
  2191. source: "./media/characters/kurrikage/front.svg",
  2192. extra: 1,
  2193. bottom: 0.035
  2194. }
  2195. },
  2196. back: {
  2197. height: math.unit(7, "feet"),
  2198. weight: math.unit(90, "lb"),
  2199. name: "Back",
  2200. image: {
  2201. source: "./media/characters/kurrikage/back.svg"
  2202. }
  2203. },
  2204. paw: {
  2205. height: math.unit(1.5, "feet"),
  2206. name: "Paw",
  2207. image: {
  2208. source: "./media/characters/kurrikage/paw.svg"
  2209. }
  2210. },
  2211. staff: {
  2212. height: math.unit(6.7, "feet"),
  2213. name: "Staff",
  2214. image: {
  2215. source: "./media/characters/kurrikage/staff.svg"
  2216. }
  2217. },
  2218. peek: {
  2219. height: math.unit(1.05, "feet"),
  2220. name: "Peeking",
  2221. image: {
  2222. source: "./media/characters/kurrikage/peek.svg",
  2223. bottom: 0.08
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(12, "feet"),
  2231. default: true
  2232. },
  2233. {
  2234. name: "Big",
  2235. height: math.unit(20, "feet")
  2236. },
  2237. {
  2238. name: "Macro",
  2239. height: math.unit(500, "feet")
  2240. },
  2241. {
  2242. name: "Megamacro",
  2243. height: math.unit(20, "miles")
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(6, "feet"),
  2252. weight: math.unit(75, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/shingo/front.svg",
  2256. extra: 3511 / 3338,
  2257. bottom: 0.005
  2258. }
  2259. },
  2260. paw: {
  2261. height: math.unit(1, "feet"),
  2262. name: "Paw",
  2263. image: {
  2264. source: "./media/characters/shingo/paw.svg"
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Micro",
  2271. height: math.unit(4, "inches")
  2272. },
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(6, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(108, "feet")
  2281. }
  2282. ]
  2283. ))
  2284. characterMakers.push(() => makeCharacter(
  2285. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2286. {
  2287. side: {
  2288. height: math.unit(6, "feet"),
  2289. weight: math.unit(75, "kg"),
  2290. name: "Side",
  2291. image: {
  2292. source: "./media/characters/aigey/side.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Macro",
  2299. height: math.unit(200, "feet"),
  2300. default: true
  2301. },
  2302. {
  2303. name: "Megamacro",
  2304. height: math.unit(100, "miles")
  2305. },
  2306. ]
  2307. )
  2308. )
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(5 + 5 / 12, "feet"),
  2314. weight: math.unit(75, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/natasha/front.svg",
  2318. extra: 859 / 824,
  2319. bottom: 23 / 879.6
  2320. }
  2321. },
  2322. frontNsfw: {
  2323. height: math.unit(5 + 5 / 12, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Front (NSFW)",
  2326. image: {
  2327. source: "./media/characters/natasha/front-nsfw.svg",
  2328. extra: 859 / 824,
  2329. bottom: 23 / 879.6
  2330. }
  2331. },
  2332. frontErect: {
  2333. height: math.unit(5 + 5 / 12, "feet"),
  2334. weight: math.unit(75, "kg"),
  2335. name: "Front (Erect)",
  2336. image: {
  2337. source: "./media/characters/natasha/front-erect.svg",
  2338. extra: 859 / 824,
  2339. bottom: 23 / 879.6
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(5 + 5 / 12, "feet"),
  2344. weight: math.unit(75, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/natasha/back.svg",
  2348. extra: 887.9 / 852.6,
  2349. bottom: 9.7 / 896.4
  2350. }
  2351. },
  2352. backAlt: {
  2353. height: math.unit(5 + 5 / 12, "feet"),
  2354. weight: math.unit(75, "kg"),
  2355. name: "Back (Alt)",
  2356. image: {
  2357. source: "./media/characters/natasha/back-alt.svg",
  2358. extra: 1236.7 / 1192,
  2359. bottom: 22.3 / 1258.2
  2360. }
  2361. },
  2362. dick: {
  2363. height: math.unit(1.772, "feet"),
  2364. name: "Dick",
  2365. image: {
  2366. source: "./media/characters/natasha/dick.svg"
  2367. }
  2368. },
  2369. },
  2370. [
  2371. {
  2372. name: "Normal",
  2373. height: math.unit(5 + 5 / 12, "feet")
  2374. },
  2375. {
  2376. name: "Large",
  2377. height: math.unit(12, "feet")
  2378. },
  2379. {
  2380. name: "Macro",
  2381. height: math.unit(100, "feet"),
  2382. default: true
  2383. },
  2384. {
  2385. name: "Macro+",
  2386. height: math.unit(260, "feet")
  2387. },
  2388. {
  2389. name: "Macro++",
  2390. height: math.unit(1, "mile")
  2391. },
  2392. ]
  2393. ))
  2394. characterMakers.push(() => makeCharacter(
  2395. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2396. {
  2397. front: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Front",
  2401. image: {
  2402. source: "./media/characters/malik/front.svg"
  2403. }
  2404. },
  2405. side: {
  2406. height: math.unit(6, "feet"),
  2407. weight: math.unit(75, "kg"),
  2408. name: "Side",
  2409. image: {
  2410. source: "./media/characters/malik/side.svg",
  2411. extra: 1.1539
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(75, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/malik/back.svg"
  2420. }
  2421. },
  2422. },
  2423. [
  2424. {
  2425. name: "Macro",
  2426. height: math.unit(156, "feet"),
  2427. default: true
  2428. },
  2429. {
  2430. name: "Macro+",
  2431. height: math.unit(1188, "feet")
  2432. },
  2433. ]
  2434. ))
  2435. characterMakers.push(() => makeCharacter(
  2436. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2437. {
  2438. front: {
  2439. height: math.unit(6, "feet"),
  2440. weight: math.unit(75, "kg"),
  2441. name: "Front",
  2442. image: {
  2443. source: "./media/characters/sefer/front.svg",
  2444. extra: 848 / 659,
  2445. bottom: 28.3 / 876.442
  2446. }
  2447. },
  2448. back: {
  2449. height: math.unit(6, "feet"),
  2450. weight: math.unit(75, "kg"),
  2451. name: "Back",
  2452. image: {
  2453. source: "./media/characters/sefer/back.svg",
  2454. extra: 864 / 695,
  2455. bottom: 10 / 871
  2456. }
  2457. },
  2458. frontDressed: {
  2459. height: math.unit(6, "feet"),
  2460. weight: math.unit(75, "kg"),
  2461. name: "Front (Dressed)",
  2462. image: {
  2463. source: "./media/characters/sefer/front-dressed.svg",
  2464. extra: 839 / 653,
  2465. bottom: 37.6 / 878
  2466. }
  2467. },
  2468. },
  2469. [
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(6, "feet"),
  2473. default: true
  2474. },
  2475. ]
  2476. ))
  2477. characterMakers.push(() => makeCharacter(
  2478. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2479. {
  2480. body: {
  2481. height: math.unit(2.2428, "meter"),
  2482. weight: math.unit(124.738, "kg"),
  2483. name: "Body",
  2484. image: {
  2485. extra: 1225 / 1050,
  2486. source: "./media/characters/north/front.svg"
  2487. }
  2488. }
  2489. },
  2490. [
  2491. {
  2492. name: "Micro",
  2493. height: math.unit(4, "inches")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(63, "meters")
  2498. },
  2499. {
  2500. name: "Megamacro",
  2501. height: math.unit(101, "miles"),
  2502. default: true
  2503. }
  2504. ]
  2505. ))
  2506. characterMakers.push(() => makeCharacter(
  2507. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2508. {
  2509. angled: {
  2510. height: math.unit(4, "meter"),
  2511. weight: math.unit(150, "kg"),
  2512. name: "Angled",
  2513. image: {
  2514. source: "./media/characters/talan/angled-sfw.svg",
  2515. bottom: 29 / 3734
  2516. }
  2517. },
  2518. angledNsfw: {
  2519. height: math.unit(4, "meter"),
  2520. weight: math.unit(150, "kg"),
  2521. name: "Angled (NSFW)",
  2522. image: {
  2523. source: "./media/characters/talan/angled-nsfw.svg",
  2524. bottom: 29 / 3734
  2525. }
  2526. },
  2527. frontNsfw: {
  2528. height: math.unit(4, "meter"),
  2529. weight: math.unit(150, "kg"),
  2530. name: "Front (NSFW)",
  2531. image: {
  2532. source: "./media/characters/talan/front-nsfw.svg",
  2533. bottom: 29 / 3734
  2534. }
  2535. },
  2536. sideNsfw: {
  2537. height: math.unit(4, "meter"),
  2538. weight: math.unit(150, "kg"),
  2539. name: "Side (NSFW)",
  2540. image: {
  2541. source: "./media/characters/talan/side-nsfw.svg",
  2542. bottom: 29 / 3734
  2543. }
  2544. },
  2545. back: {
  2546. height: math.unit(4, "meter"),
  2547. weight: math.unit(150, "kg"),
  2548. name: "Back",
  2549. image: {
  2550. source: "./media/characters/talan/back.svg"
  2551. }
  2552. },
  2553. dickBottom: {
  2554. height: math.unit(0.621, "meter"),
  2555. name: "Dick (Bottom)",
  2556. image: {
  2557. source: "./media/characters/talan/dick-bottom.svg"
  2558. }
  2559. },
  2560. dickTop: {
  2561. height: math.unit(0.621, "meter"),
  2562. name: "Dick (Top)",
  2563. image: {
  2564. source: "./media/characters/talan/dick-top.svg"
  2565. }
  2566. },
  2567. dickSide: {
  2568. height: math.unit(0.305, "meter"),
  2569. name: "Dick (Side)",
  2570. image: {
  2571. source: "./media/characters/talan/dick-side.svg"
  2572. }
  2573. },
  2574. dickFront: {
  2575. height: math.unit(0.305, "meter"),
  2576. name: "Dick (Front)",
  2577. image: {
  2578. source: "./media/characters/talan/dick-front.svg"
  2579. }
  2580. },
  2581. },
  2582. [
  2583. {
  2584. name: "Normal",
  2585. height: math.unit(4, "meters")
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(100, "meters")
  2590. },
  2591. {
  2592. name: "Megamacro",
  2593. height: math.unit(2, "miles"),
  2594. default: true
  2595. },
  2596. {
  2597. name: "Gigamacro",
  2598. height: math.unit(5000, "miles")
  2599. },
  2600. {
  2601. name: "Teramacro",
  2602. height: math.unit(100, "parsecs")
  2603. }
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2608. {
  2609. front: {
  2610. height: math.unit(2, "meter"),
  2611. weight: math.unit(90, "kg"),
  2612. name: "Front",
  2613. image: {
  2614. source: "./media/characters/gael'rathus/front.svg"
  2615. }
  2616. },
  2617. frontAlt: {
  2618. height: math.unit(2, "meter"),
  2619. weight: math.unit(90, "kg"),
  2620. name: "Front (alt)",
  2621. image: {
  2622. source: "./media/characters/gael'rathus/front-alt.svg"
  2623. }
  2624. },
  2625. frontAlt2: {
  2626. height: math.unit(2, "meter"),
  2627. weight: math.unit(90, "kg"),
  2628. name: "Front (alt 2)",
  2629. image: {
  2630. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2631. }
  2632. }
  2633. },
  2634. [
  2635. {
  2636. name: "Normal",
  2637. height: math.unit(9, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Large",
  2642. height: math.unit(25, "feet")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(0.25, "miles")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(10, "miles")
  2651. }
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2656. {
  2657. side: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(140, "kg"),
  2660. name: "Side",
  2661. image: {
  2662. source: "./media/characters/sosha/side.svg",
  2663. bottom: 0.042
  2664. }
  2665. },
  2666. },
  2667. [
  2668. {
  2669. name: "Normal",
  2670. height: math.unit(12, "feet"),
  2671. default: true
  2672. }
  2673. ]
  2674. ))
  2675. characterMakers.push(() => makeCharacter(
  2676. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2677. {
  2678. side: {
  2679. height: math.unit(5 + 5 / 12, "feet"),
  2680. weight: math.unit(170, "kg"),
  2681. name: "Side",
  2682. image: {
  2683. source: "./media/characters/runnola/side.svg",
  2684. extra: 741 / 448,
  2685. bottom: 0.05
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Small",
  2692. height: math.unit(3, "feet")
  2693. },
  2694. {
  2695. name: "Normal",
  2696. height: math.unit(5 + 5 / 12, "feet"),
  2697. default: true
  2698. },
  2699. {
  2700. name: "Big",
  2701. height: math.unit(10, "feet")
  2702. },
  2703. ]
  2704. ))
  2705. characterMakers.push(() => makeCharacter(
  2706. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2707. {
  2708. front: {
  2709. height: math.unit(2, "meter"),
  2710. weight: math.unit(50, "kg"),
  2711. name: "Front",
  2712. image: {
  2713. source: "./media/characters/kurribird/front.svg",
  2714. bottom: 0.015
  2715. }
  2716. },
  2717. frontAlt: {
  2718. height: math.unit(1.5, "meter"),
  2719. weight: math.unit(50, "kg"),
  2720. name: "Front (Alt)",
  2721. image: {
  2722. source: "./media/characters/kurribird/front-alt.svg",
  2723. extra: 1.45
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(7, "feet")
  2731. },
  2732. {
  2733. name: "Big",
  2734. height: math.unit(12, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(1500, "feet")
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(2, "miles")
  2744. }
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(80, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/elbial/front.svg",
  2756. extra: 1643 / 1556,
  2757. bottom: 60.2 / 1696
  2758. }
  2759. },
  2760. side: {
  2761. height: math.unit(2, "meter"),
  2762. weight: math.unit(80, "kg"),
  2763. name: "Side",
  2764. image: {
  2765. source: "./media/characters/elbial/side.svg",
  2766. extra: 1630 / 1565,
  2767. bottom: 71.5 / 1697
  2768. }
  2769. },
  2770. back: {
  2771. height: math.unit(2, "meter"),
  2772. weight: math.unit(80, "kg"),
  2773. name: "Back",
  2774. image: {
  2775. source: "./media/characters/elbial/back.svg",
  2776. extra: 1668 / 1595,
  2777. bottom: 5.6 / 1672
  2778. }
  2779. },
  2780. frontDressed: {
  2781. height: math.unit(2, "meter"),
  2782. weight: math.unit(80, "kg"),
  2783. name: "Front (Dressed)",
  2784. image: {
  2785. source: "./media/characters/elbial/front-dressed.svg",
  2786. extra: 1653 / 1584,
  2787. bottom: 57 / 1708
  2788. }
  2789. },
  2790. genitals: {
  2791. height: math.unit(2 / 3.367, "meter"),
  2792. name: "Genitals",
  2793. image: {
  2794. source: "./media/characters/elbial/genitals.svg"
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "Large",
  2801. height: math.unit(100, "feet")
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(500, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Megamacro",
  2810. height: math.unit(10, "miles")
  2811. },
  2812. {
  2813. name: "Gigamacro",
  2814. height: math.unit(25000, "miles")
  2815. },
  2816. {
  2817. name: "Full-Size",
  2818. height: math.unit(8000000, "gigaparsecs")
  2819. }
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(60, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/noah/front.svg"
  2831. }
  2832. },
  2833. talons: {
  2834. height: math.unit(0.315, "meter"),
  2835. name: "Talons",
  2836. image: {
  2837. source: "./media/characters/noah/talons.svg"
  2838. }
  2839. }
  2840. },
  2841. [
  2842. {
  2843. name: "Large",
  2844. height: math.unit(50, "feet")
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(750, "feet"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(50, "miles")
  2854. },
  2855. {
  2856. name: "Gigamacro",
  2857. height: math.unit(100000, "miles")
  2858. },
  2859. {
  2860. name: "Full-Size",
  2861. height: math.unit(3000000000, "miles")
  2862. }
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(80, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/natalya/front.svg"
  2874. }
  2875. },
  2876. back: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(80, "kg"),
  2879. name: "Back",
  2880. image: {
  2881. source: "./media/characters/natalya/back.svg"
  2882. }
  2883. }
  2884. },
  2885. [
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(150, "feet"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(5, "miles")
  2894. },
  2895. {
  2896. name: "Full-Size",
  2897. height: math.unit(600, "kiloparsecs")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(50, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/erestrebah/front.svg",
  2910. extra: 208 / 193,
  2911. bottom: 0.055
  2912. }
  2913. },
  2914. back: {
  2915. height: math.unit(2, "meter"),
  2916. weight: math.unit(50, "kg"),
  2917. name: "Back",
  2918. image: {
  2919. source: "./media/characters/erestrebah/back.svg",
  2920. extra: 1.3
  2921. }
  2922. }
  2923. },
  2924. [
  2925. {
  2926. name: "Normal",
  2927. height: math.unit(10, "feet")
  2928. },
  2929. {
  2930. name: "Large",
  2931. height: math.unit(50, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Macro",
  2936. height: math.unit(300, "feet")
  2937. },
  2938. {
  2939. name: "Macro+",
  2940. height: math.unit(750, "feet")
  2941. },
  2942. {
  2943. name: "Megamacro",
  2944. height: math.unit(3, "miles")
  2945. }
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(2, "meter"),
  2953. weight: math.unit(80, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/jennifer/front.svg",
  2957. bottom: 0.11,
  2958. extra: 1.16
  2959. }
  2960. },
  2961. frontAlt: {
  2962. height: math.unit(2, "meter"),
  2963. weight: math.unit(80, "kg"),
  2964. name: "Front (Alt)",
  2965. image: {
  2966. source: "./media/characters/jennifer/front-alt.svg"
  2967. }
  2968. }
  2969. },
  2970. [
  2971. {
  2972. name: "Canon Height",
  2973. height: math.unit(120, "feet"),
  2974. default: true
  2975. },
  2976. {
  2977. name: "Macro+",
  2978. height: math.unit(300, "feet")
  2979. },
  2980. {
  2981. name: "Megamacro",
  2982. height: math.unit(20000, "feet")
  2983. }
  2984. ]
  2985. ))
  2986. characterMakers.push(() => makeCharacter(
  2987. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2988. {
  2989. front: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(50, "kg"),
  2992. name: "Front",
  2993. image: {
  2994. source: "./media/characters/kalista/front.svg",
  2995. extra: 1947 / 1700,
  2996. bottom: 76.6 / 1412.98
  2997. }
  2998. },
  2999. back: {
  3000. height: math.unit(2, "meter"),
  3001. weight: math.unit(50, "kg"),
  3002. name: "Back",
  3003. image: {
  3004. source: "./media/characters/kalista/back.svg",
  3005. extra: 1366 / 1156,
  3006. bottom: 33.9 / 1362.78
  3007. }
  3008. }
  3009. },
  3010. [
  3011. {
  3012. name: "Uncomfortably Small",
  3013. height: math.unit(10, "feet")
  3014. },
  3015. {
  3016. name: "Small",
  3017. height: math.unit(30, "feet")
  3018. },
  3019. {
  3020. name: "Macro",
  3021. height: math.unit(100, "feet"),
  3022. default: true
  3023. },
  3024. {
  3025. name: "Macro+",
  3026. height: math.unit(2000, "feet")
  3027. },
  3028. {
  3029. name: "True Form",
  3030. height: math.unit(8924, "miles")
  3031. }
  3032. ]
  3033. ))
  3034. characterMakers.push(() => makeCharacter(
  3035. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3036. {
  3037. front: {
  3038. height: math.unit(2, "meter"),
  3039. weight: math.unit(120, "kg"),
  3040. name: "Front",
  3041. image: {
  3042. source: "./media/characters/ggv/front.svg"
  3043. }
  3044. },
  3045. side: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(120, "kg"),
  3048. name: "Side",
  3049. image: {
  3050. source: "./media/characters/ggv/side.svg"
  3051. }
  3052. }
  3053. },
  3054. [
  3055. {
  3056. name: "Extremely Puny",
  3057. height: math.unit(9 + 5 / 12, "feet")
  3058. },
  3059. {
  3060. name: "Horribly Small",
  3061. height: math.unit(47.7, "miles"),
  3062. default: true
  3063. },
  3064. {
  3065. name: "Reasonably Sized",
  3066. height: math.unit(25000, "parsecs")
  3067. },
  3068. {
  3069. name: "Slightly Uncompressed",
  3070. height: math.unit(7.77e31, "parsecs")
  3071. },
  3072. {
  3073. name: "Omniversal",
  3074. height: math.unit(1e300, "meters")
  3075. },
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3080. {
  3081. front: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(75, "lb"),
  3084. name: "Front",
  3085. image: {
  3086. source: "./media/characters/napalm/front.svg"
  3087. }
  3088. },
  3089. back: {
  3090. height: math.unit(2, "meter"),
  3091. weight: math.unit(75, "lb"),
  3092. name: "Back",
  3093. image: {
  3094. source: "./media/characters/napalm/back.svg"
  3095. }
  3096. }
  3097. },
  3098. [
  3099. {
  3100. name: "Standard",
  3101. height: math.unit(55, "feet"),
  3102. default: true
  3103. }
  3104. ]
  3105. ))
  3106. characterMakers.push(() => makeCharacter(
  3107. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3108. {
  3109. front: {
  3110. height: math.unit(7 + 5 / 6, "feet"),
  3111. weight: math.unit(325, "lb"),
  3112. name: "Front",
  3113. image: {
  3114. source: "./media/characters/asana/front.svg",
  3115. extra: 1133 / 1060,
  3116. bottom: 15.2/1148.6
  3117. }
  3118. },
  3119. back: {
  3120. height: math.unit(7 + 5 / 6, "feet"),
  3121. weight: math.unit(325, "lb"),
  3122. name: "Back",
  3123. image: {
  3124. source: "./media/characters/asana/back.svg",
  3125. extra: 1114 / 1043,
  3126. bottom: 5/1120
  3127. }
  3128. },
  3129. dressedDark: {
  3130. height: math.unit(7 + 5 / 6, "feet"),
  3131. weight: math.unit(325, "lb"),
  3132. name: "Dressed (Dark)",
  3133. image: {
  3134. source: "./media/characters/asana/dressed-dark.svg",
  3135. extra: 1133 / 1060,
  3136. bottom: 15.2/1148.6
  3137. }
  3138. },
  3139. dressedLight: {
  3140. height: math.unit(7 + 5 / 6, "feet"),
  3141. weight: math.unit(325, "lb"),
  3142. name: "Dressed (Light)",
  3143. image: {
  3144. source: "./media/characters/asana/dressed-light.svg",
  3145. extra: 1133 / 1060,
  3146. bottom: 15.2/1148.6
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Standard",
  3153. height: math.unit(7 + 5 / 6, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Large",
  3158. height: math.unit(10, "meters")
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(2500, "meters")
  3163. },
  3164. {
  3165. name: "Megamacro",
  3166. height: math.unit(5e6, "meters")
  3167. },
  3168. {
  3169. name: "Examacro",
  3170. height: math.unit(5e12, "lightyears")
  3171. },
  3172. {
  3173. name: "Max Size",
  3174. height: math.unit(1e31, "lightyears")
  3175. }
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(60, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/ebony/front.svg",
  3187. bottom: 0.03,
  3188. extra: 1045 / 810 + 0.03
  3189. }
  3190. },
  3191. side: {
  3192. height: math.unit(2, "meter"),
  3193. weight: math.unit(60, "kg"),
  3194. name: "Side",
  3195. image: {
  3196. source: "./media/characters/ebony/side.svg",
  3197. bottom: 0.03,
  3198. extra: 1045 / 810 + 0.03
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(2, "meter"),
  3203. weight: math.unit(60, "kg"),
  3204. name: "Back",
  3205. image: {
  3206. source: "./media/characters/ebony/back.svg",
  3207. bottom: 0.01,
  3208. extra: 1045 / 810 + 0.01
  3209. }
  3210. },
  3211. },
  3212. [
  3213. // TODO check why I did this lol
  3214. {
  3215. name: "Standard",
  3216. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Macro",
  3221. height: math.unit(200, "feet")
  3222. },
  3223. {
  3224. name: "Gigamacro",
  3225. height: math.unit(13000, "km")
  3226. }
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(6, "feet"),
  3234. weight: math.unit(175, "lb"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/mountain/front.svg",
  3238. extra: 972/955,
  3239. bottom: 64/1036.6
  3240. }
  3241. },
  3242. back: {
  3243. height: math.unit(6, "feet"),
  3244. weight: math.unit(175, "lb"),
  3245. name: "Back",
  3246. image: {
  3247. source: "./media/characters/mountain/back.svg",
  3248. extra: 970/950,
  3249. bottom: 28.25/999
  3250. }
  3251. },
  3252. },
  3253. [
  3254. {
  3255. name: "Large",
  3256. height: math.unit(20, "meters")
  3257. },
  3258. {
  3259. name: "Macro",
  3260. height: math.unit(300, "meters")
  3261. },
  3262. {
  3263. name: "Gigamacro",
  3264. height: math.unit(10000, "km"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Examacro",
  3269. height: math.unit(10e9, "lightyears")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(8, "feet"),
  3278. weight: math.unit(500, "lb"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/rick/front.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(8, "feet"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Macro",
  3293. height: math.unit(5, "km")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(8, "feet"),
  3302. weight: math.unit(120, "lb"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/ona/front.svg"
  3306. }
  3307. },
  3308. frontAlt: {
  3309. height: math.unit(8, "feet"),
  3310. weight: math.unit(120, "lb"),
  3311. name: "Front (Alt)",
  3312. image: {
  3313. source: "./media/characters/ona/front-alt.svg"
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(8, "feet"),
  3318. weight: math.unit(120, "lb"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/ona/back.svg"
  3322. }
  3323. },
  3324. foot: {
  3325. height: math.unit(1.1, "feet"),
  3326. name: "Foot",
  3327. image: {
  3328. source: "./media/characters/ona/foot.svg"
  3329. }
  3330. }
  3331. },
  3332. [
  3333. {
  3334. name: "Megamacro",
  3335. height: math.unit(70, "km"),
  3336. default: true
  3337. },
  3338. {
  3339. name: "Gigamacro",
  3340. height: math.unit(681818, "miles")
  3341. },
  3342. {
  3343. name: "Examacro",
  3344. height: math.unit(3800000, "lightyears")
  3345. },
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(12, "feet"),
  3353. weight: math.unit(3000, "lb"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/mech/front.svg",
  3357. bottom: 0.025,
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(12, "feet"),
  3362. weight: math.unit(3000, "lb"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/mech/back.svg",
  3366. bottom: 0.03,
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(12, "feet")
  3374. },
  3375. {
  3376. name: "Macro",
  3377. height: math.unit(300, "feet"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro+",
  3382. height: math.unit(1500, "feet")
  3383. },
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(1.3, "meter"),
  3391. weight: math.unit(30, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/gregory/front.svg",
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(1.3, "meter"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(20, "meter")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(2.8, "meter"),
  3415. weight: math.unit(200, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/elory/front.svg",
  3419. }
  3420. }
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(2.8, "meter"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(38, "meter")
  3431. }
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3436. {
  3437. front: {
  3438. height: math.unit(470, "feet"),
  3439. weight: math.unit(924, "tons"),
  3440. name: "Front",
  3441. image: {
  3442. source: "./media/characters/angelpatamon/front.svg",
  3443. }
  3444. }
  3445. },
  3446. [
  3447. {
  3448. name: "Normal",
  3449. height: math.unit(470, "feet"),
  3450. default: true
  3451. },
  3452. {
  3453. name: "Deity Size I",
  3454. height: math.unit(28651.2, "km")
  3455. },
  3456. {
  3457. name: "Deity Size II",
  3458. height: math.unit(171907.2, "km")
  3459. }
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3464. {
  3465. side: {
  3466. height: math.unit(7.2, "meter"),
  3467. weight: math.unit(8.2, "tons"),
  3468. name: "Side",
  3469. image: {
  3470. source: "./media/characters/cryae/side.svg",
  3471. extra: 3500 / 1500
  3472. }
  3473. }
  3474. },
  3475. [
  3476. {
  3477. name: "Normal",
  3478. height: math.unit(7.2, "meter"),
  3479. default: true
  3480. }
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3485. {
  3486. front: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(175, "lb"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/xera/front.svg",
  3492. extra: 2377 / 1972,
  3493. bottom: 75.5/2452
  3494. }
  3495. },
  3496. side: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(175, "lb"),
  3499. name: "Side",
  3500. image: {
  3501. source: "./media/characters/xera/side.svg",
  3502. extra: 2345/2019,
  3503. bottom: 39.7/2384
  3504. }
  3505. },
  3506. back: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(175, "lb"),
  3509. name: "Back",
  3510. image: {
  3511. source: "./media/characters/xera/back.svg",
  3512. extra: 2095/1984,
  3513. bottom: 67/2166
  3514. }
  3515. },
  3516. },
  3517. [
  3518. {
  3519. name: "Small",
  3520. height: math.unit(10, "feet")
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(500, "meters"),
  3525. default: true
  3526. },
  3527. {
  3528. name: "Macro+",
  3529. height: math.unit(10, "km")
  3530. },
  3531. {
  3532. name: "Gigamacro",
  3533. height: math.unit(25000, "km")
  3534. },
  3535. {
  3536. name: "Teramacro",
  3537. height: math.unit(3e6, "km")
  3538. }
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "Nebula", species: ["dragon", "wolf"], 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/nebula/front.svg",
  3550. extra: 2566/2362,
  3551. bottom: 81/2644
  3552. }
  3553. }
  3554. },
  3555. [
  3556. {
  3557. name: "Small",
  3558. height: math.unit(4.5, "meters")
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(1500, "meters"),
  3563. default: true
  3564. },
  3565. {
  3566. name: "Megamacro",
  3567. height: math.unit(150, "km")
  3568. },
  3569. {
  3570. name: "Gigamacro",
  3571. height: math.unit(27000, "km")
  3572. }
  3573. ]
  3574. ))
  3575. characterMakers.push(() => makeCharacter(
  3576. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3577. {
  3578. front: {
  3579. height: math.unit(6, "feet"),
  3580. weight: math.unit(225, "lb"),
  3581. name: "Front",
  3582. image: {
  3583. source: "./media/characters/abysgar/front.svg"
  3584. }
  3585. }
  3586. },
  3587. [
  3588. {
  3589. name: "Small",
  3590. height: math.unit(4.5, "meters")
  3591. },
  3592. {
  3593. name: "Macro",
  3594. height: math.unit(1250, "meters"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Megamacro",
  3599. height: math.unit(125, "km")
  3600. },
  3601. {
  3602. name: "Gigamacro",
  3603. height: math.unit(26000, "km")
  3604. }
  3605. ]
  3606. ))
  3607. characterMakers.push(() => makeCharacter(
  3608. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3609. {
  3610. front: {
  3611. height: math.unit(6, "feet"),
  3612. weight: math.unit(180, "lb"),
  3613. name: "Front",
  3614. image: {
  3615. source: "./media/characters/yakuz/front.svg"
  3616. }
  3617. }
  3618. },
  3619. [
  3620. {
  3621. name: "Small",
  3622. height: math.unit(5, "meters")
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(1500, "meters"),
  3627. default: true
  3628. },
  3629. {
  3630. name: "Megamacro",
  3631. height: math.unit(200, "km")
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(100000, "km")
  3636. }
  3637. ]
  3638. ))
  3639. characterMakers.push(() => makeCharacter(
  3640. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3641. {
  3642. front: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(175, "lb"),
  3645. name: "Front",
  3646. image: {
  3647. source: "./media/characters/mirova/front.svg",
  3648. extra: 3334/3071,
  3649. bottom: 42/3375.6
  3650. }
  3651. }
  3652. },
  3653. [
  3654. {
  3655. name: "Small",
  3656. height: math.unit(5, "meters")
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(900, "meters"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Megamacro",
  3665. height: math.unit(135, "km")
  3666. },
  3667. {
  3668. name: "Gigamacro",
  3669. height: math.unit(20000, "km")
  3670. }
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3675. {
  3676. side: {
  3677. height: math.unit(28.35, "feet"),
  3678. weight: math.unit(99.75, "tons"),
  3679. name: "Side",
  3680. image: {
  3681. source: "./media/characters/asana-mech/side.svg",
  3682. extra: 923/699,
  3683. bottom: 50/975
  3684. }
  3685. },
  3686. chaingun: {
  3687. height: math.unit(7, "feet"),
  3688. weight: math.unit(2400, "lb"),
  3689. name: "Chaingun",
  3690. image: {
  3691. source: "./media/characters/asana-mech/chaingun.svg"
  3692. }
  3693. },
  3694. laser: {
  3695. height: math.unit(7.12, "feet"),
  3696. weight: math.unit(2000, "lb"),
  3697. name: "Laser",
  3698. image: {
  3699. source: "./media/characters/asana-mech/laser.svg"
  3700. }
  3701. },
  3702. },
  3703. [
  3704. {
  3705. name: "Normal",
  3706. height: math.unit(28.35, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Macro",
  3711. height: math.unit(2500, "feet")
  3712. },
  3713. {
  3714. name: "Megamacro",
  3715. height: math.unit(25, "miles")
  3716. },
  3717. {
  3718. name: "Examacro",
  3719. height: math.unit(6e8, "lightyears")
  3720. },
  3721. ]
  3722. ))
  3723. characterMakers.push(() => makeCharacter(
  3724. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3725. {
  3726. front: {
  3727. height: math.unit(5, "meters"),
  3728. weight: math.unit(1000, "kg"),
  3729. name: "Front",
  3730. image: {
  3731. source: "./media/characters/asche/front.svg",
  3732. extra: 1258/1190,
  3733. bottom: 47/1305
  3734. }
  3735. },
  3736. frontUnderwear: {
  3737. height: math.unit(5, "meters"),
  3738. weight: math.unit(1000, "kg"),
  3739. name: "Front (Underwear)",
  3740. image: {
  3741. source: "./media/characters/asche/front-underwear.svg",
  3742. extra: 1258/1190,
  3743. bottom: 47/1305
  3744. }
  3745. },
  3746. frontDressed: {
  3747. height: math.unit(5, "meters"),
  3748. weight: math.unit(1000, "kg"),
  3749. name: "Front (Dressed)",
  3750. image: {
  3751. source: "./media/characters/asche/front-dressed.svg",
  3752. extra: 1258/1190,
  3753. bottom: 47/1305
  3754. }
  3755. },
  3756. frontArmor: {
  3757. height: math.unit(5, "meters"),
  3758. weight: math.unit(1000, "kg"),
  3759. name: "Front (Armored)",
  3760. image: {
  3761. source: "./media/characters/asche/front-armored.svg",
  3762. extra: 1374 / 1308,
  3763. bottom: 23/1397
  3764. }
  3765. },
  3766. mp724: {
  3767. height: math.unit(0.96, "meters"),
  3768. weight: math.unit(38, "kg"),
  3769. name: "H&K MP724",
  3770. image: {
  3771. source: "./media/characters/asche/h&k-mp724.svg"
  3772. }
  3773. },
  3774. side: {
  3775. height: math.unit(5, "meters"),
  3776. weight: math.unit(1000, "kg"),
  3777. name: "Side",
  3778. image: {
  3779. source: "./media/characters/asche/side.svg",
  3780. extra: 1717 / 1609,
  3781. bottom: 0.005
  3782. }
  3783. },
  3784. back: {
  3785. height: math.unit(5, "meters"),
  3786. weight: math.unit(1000, "kg"),
  3787. name: "Back",
  3788. image: {
  3789. source: "./media/characters/asche/back.svg",
  3790. extra: 1570 / 1501
  3791. }
  3792. },
  3793. },
  3794. [
  3795. {
  3796. name: "DEFCON 5",
  3797. height: math.unit(5, "meters")
  3798. },
  3799. {
  3800. name: "DEFCON 4",
  3801. height: math.unit(500, "meters"),
  3802. default: true
  3803. },
  3804. {
  3805. name: "DEFCON 3",
  3806. height: math.unit(5, "km")
  3807. },
  3808. {
  3809. name: "DEFCON 2",
  3810. height: math.unit(500, "km")
  3811. },
  3812. {
  3813. name: "DEFCON 1",
  3814. height: math.unit(500000, "km")
  3815. },
  3816. {
  3817. name: "DEFCON 0",
  3818. height: math.unit(3, "gigaparsecs")
  3819. },
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3824. {
  3825. front: {
  3826. height: math.unit(2, "meters"),
  3827. weight: math.unit(76, "kg"),
  3828. name: "Front",
  3829. image: {
  3830. source: "./media/characters/gale/front.svg"
  3831. }
  3832. },
  3833. frontAlt1: {
  3834. height: math.unit(2, "meters"),
  3835. weight: math.unit(76, "kg"),
  3836. name: "Front (Alt 1)",
  3837. image: {
  3838. source: "./media/characters/gale/front-alt-1.svg"
  3839. }
  3840. },
  3841. frontAlt2: {
  3842. height: math.unit(2, "meters"),
  3843. weight: math.unit(76, "kg"),
  3844. name: "Front (Alt 2)",
  3845. image: {
  3846. source: "./media/characters/gale/front-alt-2.svg"
  3847. }
  3848. },
  3849. },
  3850. [
  3851. {
  3852. name: "Normal",
  3853. height: math.unit(7, "feet")
  3854. },
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(150, "feet"),
  3858. default: true
  3859. },
  3860. {
  3861. name: "Macro+",
  3862. height: math.unit(300, "feet")
  3863. },
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(2, "meters"),
  3871. weight: math.unit(76, "kg"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/draylen/front.svg"
  3875. }
  3876. }
  3877. },
  3878. [
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(150, "feet"),
  3882. default: true
  3883. }
  3884. ]
  3885. ))
  3886. characterMakers.push(() => makeCharacter(
  3887. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3888. {
  3889. front: {
  3890. height: math.unit(7 + 9 / 12, "feet"),
  3891. weight: math.unit(379, "lbs"),
  3892. name: "Front",
  3893. image: {
  3894. source: "./media/characters/chez/front.svg"
  3895. }
  3896. },
  3897. side: {
  3898. height: math.unit(7 + 9 / 12, "feet"),
  3899. weight: math.unit(379, "lbs"),
  3900. name: "Side",
  3901. image: {
  3902. source: "./media/characters/chez/side.svg"
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Normal",
  3909. height: math.unit(7 + 9 / 12, "feet"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "God King",
  3914. height: math.unit(9750000, "meters")
  3915. }
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3920. {
  3921. front: {
  3922. height: math.unit(6, "feet"),
  3923. weight: math.unit(275, "lbs"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/kaylum/front.svg",
  3927. bottom: 0.01,
  3928. extra: 1166 / 1031
  3929. }
  3930. },
  3931. frontWingless: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(275, "lbs"),
  3934. name: "Front (Wingless)",
  3935. image: {
  3936. source: "./media/characters/kaylum/front-wingless.svg",
  3937. bottom: 0.01,
  3938. extra: 1117 / 1031
  3939. }
  3940. }
  3941. },
  3942. [
  3943. {
  3944. name: "Normal",
  3945. height: math.unit(3.05, "meters")
  3946. },
  3947. {
  3948. name: "Master",
  3949. height: math.unit(5.5, "meters")
  3950. },
  3951. {
  3952. name: "Rampage",
  3953. height: math.unit(19, "meters")
  3954. },
  3955. {
  3956. name: "Macro Lite",
  3957. height: math.unit(37, "meters")
  3958. },
  3959. {
  3960. name: "Hyper Predator",
  3961. height: math.unit(61, "meters")
  3962. },
  3963. {
  3964. name: "Macro",
  3965. height: math.unit(138, "meters"),
  3966. default: true
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(150, "lbs"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/geta/front.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Micro",
  3985. height: math.unit(3, "inches"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Normal",
  3990. height: math.unit(5 + 5 / 12, "feet")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(300, "lbs"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/tyrnn/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Main Height",
  4009. height: math.unit(355, "feet"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Fave. Height",
  4014. height: math.unit(2400, "feet")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(6, "feet"),
  4023. weight: math.unit(300, "lbs"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/appledectomy/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(2500, "feet")
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(50, "miles"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Gigamacro",
  4042. height: math.unit(5000, "miles")
  4043. },
  4044. {
  4045. name: "Teramacro",
  4046. height: math.unit(250000, "miles")
  4047. },
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(200, "lbs"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/vulpes/front.svg",
  4059. extra: 573 / 543,
  4060. bottom: 0.033
  4061. }
  4062. },
  4063. side: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(200, "lbs"),
  4066. name: "Side",
  4067. image: {
  4068. source: "./media/characters/vulpes/side.svg",
  4069. extra: 573 / 543,
  4070. bottom: 0.01
  4071. }
  4072. },
  4073. back: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(200, "lbs"),
  4076. name: "Back",
  4077. image: {
  4078. source: "./media/characters/vulpes/back.svg",
  4079. extra: 573 / 543,
  4080. }
  4081. },
  4082. feet: {
  4083. height: math.unit(1.276, "feet"),
  4084. name: "Feet",
  4085. image: {
  4086. source: "./media/characters/vulpes/feet.svg"
  4087. }
  4088. },
  4089. maw: {
  4090. height: math.unit(1.18, "feet"),
  4091. name: "Maw",
  4092. image: {
  4093. source: "./media/characters/vulpes/maw.svg"
  4094. }
  4095. },
  4096. },
  4097. [
  4098. {
  4099. name: "Micro",
  4100. height: math.unit(2, "inches")
  4101. },
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(6.3, "feet")
  4105. },
  4106. {
  4107. name: "Macro",
  4108. height: math.unit(850, "feet")
  4109. },
  4110. {
  4111. name: "Megamacro",
  4112. height: math.unit(7500, "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Gigamacro",
  4117. height: math.unit(570000, "miles")
  4118. }
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4123. {
  4124. front: {
  4125. height: math.unit(6, "feet"),
  4126. weight: math.unit(210, "lbs"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/rain-fallen/front.svg"
  4130. }
  4131. },
  4132. side: {
  4133. height: math.unit(6, "feet"),
  4134. weight: math.unit(210, "lbs"),
  4135. name: "Side",
  4136. image: {
  4137. source: "./media/characters/rain-fallen/side.svg"
  4138. }
  4139. },
  4140. back: {
  4141. height: math.unit(6, "feet"),
  4142. weight: math.unit(210, "lbs"),
  4143. name: "Back",
  4144. image: {
  4145. source: "./media/characters/rain-fallen/back.svg"
  4146. }
  4147. },
  4148. feral: {
  4149. height: math.unit(9, "feet"),
  4150. weight: math.unit(700, "lbs"),
  4151. name: "Feral",
  4152. image: {
  4153. source: "./media/characters/rain-fallen/feral.svg"
  4154. }
  4155. },
  4156. },
  4157. [
  4158. {
  4159. name: "Normal",
  4160. height: math.unit(5, "meter")
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(150, "meter"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Megamacro",
  4169. height: math.unit(278e6, "meter")
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(2e9, "meter")
  4174. },
  4175. {
  4176. name: "Teramacro",
  4177. height: math.unit(8e12, "meter")
  4178. },
  4179. {
  4180. name: "Devourer",
  4181. height: math.unit(14, "zettameters")
  4182. },
  4183. {
  4184. name: "Scarlet King",
  4185. height: math.unit(18, "yottameters")
  4186. },
  4187. {
  4188. name: "Void",
  4189. height: math.unit(6.66e66, "yottameters")
  4190. }
  4191. ]
  4192. ))
  4193. characterMakers.push(() => makeCharacter(
  4194. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4195. {
  4196. standing: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(180, "lbs"),
  4199. name: "Standing",
  4200. image: {
  4201. source: "./media/characters/zaakira/standing.svg"
  4202. }
  4203. },
  4204. laying: {
  4205. height: math.unit(3, "feet"),
  4206. weight: math.unit(180, "lbs"),
  4207. name: "Laying",
  4208. image: {
  4209. source: "./media/characters/zaakira/laying.svg"
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Normal",
  4216. height: math.unit(12, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(279, "feet"),
  4221. default: true
  4222. }
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4227. {
  4228. femSfw: {
  4229. height: math.unit(8, "feet"),
  4230. weight: math.unit(350, "lb"),
  4231. name: "Fem",
  4232. image: {
  4233. source: "./media/characters/sigvald/fem-sfw.svg",
  4234. extra: 182/164,
  4235. bottom: 8.7/190.5
  4236. }
  4237. },
  4238. femNsfw: {
  4239. height: math.unit(8, "feet"),
  4240. weight: math.unit(350, "lb"),
  4241. name: "Fem (NSFW)",
  4242. image: {
  4243. source: "./media/characters/sigvald/fem-nsfw.svg",
  4244. extra: 182/164,
  4245. bottom: 8.7/190.5
  4246. }
  4247. },
  4248. maleNsfw: {
  4249. height: math.unit(8, "feet"),
  4250. weight: math.unit(350, "lb"),
  4251. name: "Male (NSFW)",
  4252. image: {
  4253. source: "./media/characters/sigvald/male-nsfw.svg",
  4254. extra: 182/164,
  4255. bottom: 8.7/190.5
  4256. }
  4257. },
  4258. hermNsfw: {
  4259. height: math.unit(8, "feet"),
  4260. weight: math.unit(350, "lb"),
  4261. name: "Herm (NSFW)",
  4262. image: {
  4263. source: "./media/characters/sigvald/herm-nsfw.svg",
  4264. extra: 182/164,
  4265. bottom: 8.7/190.5
  4266. }
  4267. },
  4268. dick: {
  4269. height: math.unit(2.36, "feet"),
  4270. name: "Dick",
  4271. image: {
  4272. source: "./media/characters/sigvald/dick.svg"
  4273. }
  4274. },
  4275. eye: {
  4276. height: math.unit(0.31, "feet"),
  4277. name: "Eye",
  4278. image: {
  4279. source: "./media/characters/sigvald/eye.svg"
  4280. }
  4281. },
  4282. mouth: {
  4283. height: math.unit(0.92, "feet"),
  4284. name: "Mouth",
  4285. image: {
  4286. source: "./media/characters/sigvald/mouth.svg"
  4287. }
  4288. },
  4289. paws: {
  4290. height: math.unit(2.2, "feet"),
  4291. name: "Paws",
  4292. image: {
  4293. source: "./media/characters/sigvald/paws.svg"
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(8, "feet")
  4301. },
  4302. {
  4303. name: "Large",
  4304. height: math.unit(12, "feet")
  4305. },
  4306. {
  4307. name: "Larger",
  4308. height: math.unit(20, "feet")
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(150, "feet")
  4313. },
  4314. {
  4315. name: "Macro+",
  4316. height: math.unit(200, "feet"),
  4317. default: true
  4318. },
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4323. {
  4324. side: {
  4325. height: math.unit(12, "feet"),
  4326. weight: math.unit(2000, "kg"),
  4327. name: "Side",
  4328. image: {
  4329. source: "./media/characters/scott/side.svg",
  4330. extra: 754 / 724,
  4331. bottom: 0.069
  4332. }
  4333. },
  4334. upright: {
  4335. height: math.unit(12, "feet"),
  4336. weight: math.unit(2000, "kg"),
  4337. name: "Upright",
  4338. image: {
  4339. source: "./media/characters/scott/upright.svg",
  4340. extra: 3881 / 3722,
  4341. bottom: 0.05
  4342. }
  4343. },
  4344. },
  4345. [
  4346. {
  4347. name: "Normal",
  4348. height: math.unit(12, "feet"),
  4349. default: true
  4350. },
  4351. ]
  4352. ))
  4353. characterMakers.push(() => makeCharacter(
  4354. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4355. {
  4356. side: {
  4357. height: math.unit(8, "meters"),
  4358. weight: math.unit(84755, "lbs"),
  4359. name: "Side",
  4360. image: {
  4361. source: "./media/characters/tobias/side.svg",
  4362. extra: 1474 / 1096,
  4363. bottom: 38.9 / 1513.1235
  4364. }
  4365. },
  4366. },
  4367. [
  4368. {
  4369. name: "Normal",
  4370. height: math.unit(8, "meters"),
  4371. default: true
  4372. },
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4377. {
  4378. front: {
  4379. height: math.unit(5.5, "feet"),
  4380. weight: math.unit(400, "lbs"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/kieran/front.svg",
  4384. extra: 2694 / 2364,
  4385. bottom: 217 / 2908
  4386. }
  4387. },
  4388. side: {
  4389. height: math.unit(5.5, "feet"),
  4390. weight: math.unit(400, "lbs"),
  4391. name: "Side",
  4392. image: {
  4393. source: "./media/characters/kieran/side.svg",
  4394. extra: 875 / 777,
  4395. bottom: 84.6 / 959
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(5.5, "feet"),
  4403. default: true
  4404. },
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4409. {
  4410. side: {
  4411. height: math.unit(2, "meters"),
  4412. weight: math.unit(70, "kg"),
  4413. name: "Side",
  4414. image: {
  4415. source: "./media/characters/sanya/side.svg",
  4416. bottom: 0.02,
  4417. extra: 1.02
  4418. }
  4419. },
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(2, "meters")
  4425. },
  4426. {
  4427. name: "Normal",
  4428. height: math.unit(3, "meters")
  4429. },
  4430. {
  4431. name: "Macro",
  4432. height: math.unit(16, "meters"),
  4433. default: true
  4434. },
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4439. {
  4440. front: {
  4441. height: math.unit(2, "meters"),
  4442. weight: math.unit(120, "kg"),
  4443. name: "Front",
  4444. image: {
  4445. source: "./media/characters/miranda/front.svg",
  4446. extra: 195/185,
  4447. bottom: 10.9/206.5
  4448. }
  4449. },
  4450. back: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(120, "kg"),
  4453. name: "Back",
  4454. image: {
  4455. source: "./media/characters/miranda/back.svg",
  4456. extra: 201/193,
  4457. bottom: 2.3/203.7
  4458. }
  4459. },
  4460. },
  4461. [
  4462. {
  4463. name: "Normal",
  4464. height: math.unit(10, "feet"),
  4465. default: true
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "James", species: ["deer"], tags: ["anthro"] },
  4471. {
  4472. side: {
  4473. height: math.unit(2, "meters"),
  4474. weight: math.unit(100, "kg"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/james/front.svg",
  4478. extra: 10 / 8.5
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Normal",
  4485. height: math.unit(8.5, "feet"),
  4486. default: true
  4487. }
  4488. ]
  4489. ))
  4490. characterMakers.push(() => makeCharacter(
  4491. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4492. {
  4493. side: {
  4494. height: math.unit(9.5, "feet"),
  4495. weight: math.unit(2500, "lbs"),
  4496. name: "Side",
  4497. image: {
  4498. source: "./media/characters/heather/side.svg"
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(9.5, "feet"),
  4506. default: true
  4507. }
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4512. {
  4513. side: {
  4514. height: math.unit(6.5, "feet"),
  4515. weight: math.unit(400, "lbs"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/lukas/side.svg",
  4519. extra: 7.25 / 6.5
  4520. }
  4521. },
  4522. },
  4523. [
  4524. {
  4525. name: "Normal",
  4526. height: math.unit(6.5, "feet"),
  4527. default: true
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4533. {
  4534. side: {
  4535. height: math.unit(5, "feet"),
  4536. weight: math.unit(3000, "lbs"),
  4537. name: "Side",
  4538. image: {
  4539. source: "./media/characters/louise/side.svg"
  4540. }
  4541. },
  4542. },
  4543. [
  4544. {
  4545. name: "Normal",
  4546. height: math.unit(5, "feet"),
  4547. default: true
  4548. }
  4549. ]
  4550. ))
  4551. characterMakers.push(() => makeCharacter(
  4552. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4553. {
  4554. side: {
  4555. height: math.unit(6, "feet"),
  4556. weight: math.unit(150, "lbs"),
  4557. name: "Side",
  4558. image: {
  4559. source: "./media/characters/ramona/side.svg"
  4560. }
  4561. },
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(5.3, "meters"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Macro",
  4571. height: math.unit(20, "stories")
  4572. },
  4573. {
  4574. name: "Macro+",
  4575. height: math.unit(50, "stories")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4581. {
  4582. standing: {
  4583. height: math.unit(5.75, "feet"),
  4584. weight: math.unit(160, "lbs"),
  4585. name: "Standing",
  4586. image: {
  4587. source: "./media/characters/deerpuff/standing.svg",
  4588. extra: 682 / 624
  4589. }
  4590. },
  4591. sitting: {
  4592. height: math.unit(5.75 / 1.79, "feet"),
  4593. weight: math.unit(160, "lbs"),
  4594. name: "Sitting",
  4595. image: {
  4596. source: "./media/characters/deerpuff/sitting.svg",
  4597. bottom: 44 / 400,
  4598. extra: 1
  4599. }
  4600. },
  4601. taurLaying: {
  4602. height: math.unit(6, "feet"),
  4603. weight: math.unit(400, "lbs"),
  4604. name: "Taur (Laying)",
  4605. image: {
  4606. source: "./media/characters/deerpuff/taur-laying.svg"
  4607. }
  4608. },
  4609. },
  4610. [
  4611. {
  4612. name: "Puffball",
  4613. height: math.unit(6, "inches")
  4614. },
  4615. {
  4616. name: "Normalpuff",
  4617. height: math.unit(5.75, "feet")
  4618. },
  4619. {
  4620. name: "Macropuff",
  4621. height: math.unit(1500, "feet"),
  4622. default: true
  4623. },
  4624. {
  4625. name: "Megapuff",
  4626. height: math.unit(500, "miles")
  4627. },
  4628. {
  4629. name: "Gigapuff",
  4630. height: math.unit(250000, "miles")
  4631. },
  4632. {
  4633. name: "Omegapuff",
  4634. height: math.unit(1000, "lightyears")
  4635. },
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4640. {
  4641. stomping: {
  4642. height: math.unit(6, "feet"),
  4643. weight: math.unit(170, "lbs"),
  4644. name: "Stomping",
  4645. image: {
  4646. source: "./media/characters/vivian/stomping.svg"
  4647. }
  4648. },
  4649. sitting: {
  4650. height: math.unit(6 / 1.75, "feet"),
  4651. weight: math.unit(170, "lbs"),
  4652. name: "Sitting",
  4653. image: {
  4654. source: "./media/characters/vivian/sitting.svg",
  4655. bottom: 1 / 6.4,
  4656. extra: 1,
  4657. }
  4658. },
  4659. },
  4660. [
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(7, "feet"),
  4664. default: true
  4665. },
  4666. {
  4667. name: "Macro",
  4668. height: math.unit(10, "stories")
  4669. },
  4670. {
  4671. name: "Macro+",
  4672. height: math.unit(30, "stories")
  4673. },
  4674. {
  4675. name: "Megamacro",
  4676. height: math.unit(10, "miles")
  4677. },
  4678. {
  4679. name: "Megamacro+",
  4680. height: math.unit(2750000, "meters")
  4681. },
  4682. ]
  4683. ))
  4684. characterMakers.push(() => makeCharacter(
  4685. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4686. {
  4687. front: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(160, "lbs"),
  4690. name: "Front",
  4691. image: {
  4692. source: "./media/characters/prince/front.svg",
  4693. extra: 3400 / 3000
  4694. }
  4695. },
  4696. jumping: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(160, "lbs"),
  4699. name: "Jumping",
  4700. image: {
  4701. source: "./media/characters/prince/jump.svg",
  4702. extra: 2555 / 2134
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7.75, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Not cute",
  4714. height: math.unit(17, "feet")
  4715. },
  4716. {
  4717. name: "I said NOT",
  4718. height: math.unit(91, "feet")
  4719. },
  4720. {
  4721. name: "Please stop",
  4722. height: math.unit(560, "feet")
  4723. },
  4724. {
  4725. name: "What have you done",
  4726. height: math.unit(2200, "feet")
  4727. },
  4728. {
  4729. name: "Deer God",
  4730. height: math.unit(3.6, "miles")
  4731. },
  4732. ]
  4733. ))
  4734. characterMakers.push(() => makeCharacter(
  4735. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4736. {
  4737. standing: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(300, "lbs"),
  4740. name: "Standing",
  4741. image: {
  4742. source: "./media/characters/psymon/standing.svg",
  4743. extra: 1888 / 1810,
  4744. bottom: 0.05
  4745. }
  4746. },
  4747. slithering: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(300, "lbs"),
  4750. name: "Slithering",
  4751. image: {
  4752. source: "./media/characters/psymon/slithering.svg",
  4753. extra: 1330 / 1224
  4754. }
  4755. },
  4756. slitheringAlt: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(300, "lbs"),
  4759. name: "Slithering (Alt)",
  4760. image: {
  4761. source: "./media/characters/psymon/slithering-alt.svg",
  4762. extra: 1330 / 1224
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(11.25, "feet"),
  4770. default: true
  4771. },
  4772. {
  4773. name: "Large",
  4774. height: math.unit(27, "feet")
  4775. },
  4776. {
  4777. name: "Giant",
  4778. height: math.unit(87, "feet")
  4779. },
  4780. {
  4781. name: "Macro",
  4782. height: math.unit(365, "feet")
  4783. },
  4784. {
  4785. name: "Megamacro",
  4786. height: math.unit(3, "miles")
  4787. },
  4788. {
  4789. name: "World Serpent",
  4790. height: math.unit(8000, "miles")
  4791. },
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4796. {
  4797. front: {
  4798. height: math.unit(6, "feet"),
  4799. weight: math.unit(180, "lbs"),
  4800. name: "Front",
  4801. image: {
  4802. source: "./media/characters/daimos/front.svg",
  4803. extra: 4160 / 3897,
  4804. bottom: 0.021
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(8, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Big Dog",
  4816. height: math.unit(22, "feet")
  4817. },
  4818. {
  4819. name: "Macro",
  4820. height: math.unit(127, "feet")
  4821. },
  4822. {
  4823. name: "Megamacro",
  4824. height: math.unit(3600, "feet")
  4825. },
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4830. {
  4831. side: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(180, "lbs"),
  4834. name: "Side",
  4835. image: {
  4836. source: "./media/characters/blake/side.svg",
  4837. extra: 1212 / 1120,
  4838. bottom: 0.05
  4839. }
  4840. },
  4841. crouched: {
  4842. height: math.unit(6 * 0.57, "feet"),
  4843. weight: math.unit(180, "lbs"),
  4844. name: "Crouched",
  4845. image: {
  4846. source: "./media/characters/blake/crouched.svg",
  4847. extra: 840 / 587,
  4848. bottom: 0.04
  4849. }
  4850. },
  4851. bent: {
  4852. height: math.unit(6 * 0.75, "feet"),
  4853. weight: math.unit(180, "lbs"),
  4854. name: "Bent",
  4855. image: {
  4856. source: "./media/characters/blake/bent.svg",
  4857. extra: 592 / 544,
  4858. bottom: 0.035
  4859. }
  4860. },
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(8 + 1 / 6, "feet"),
  4866. default: true
  4867. },
  4868. {
  4869. name: "Big Backside",
  4870. height: math.unit(37, "feet")
  4871. },
  4872. {
  4873. name: "Subway Shredder",
  4874. height: math.unit(72, "feet")
  4875. },
  4876. {
  4877. name: "City Carver",
  4878. height: math.unit(1675, "feet")
  4879. },
  4880. {
  4881. name: "Tectonic Tweaker",
  4882. height: math.unit(2300, "miles")
  4883. },
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4888. {
  4889. front: {
  4890. height: math.unit(6, "feet"),
  4891. weight: math.unit(180, "lbs"),
  4892. name: "Front",
  4893. image: {
  4894. source: "./media/characters/guisetto/front.svg",
  4895. extra: 856 / 817,
  4896. bottom: 0.06
  4897. }
  4898. },
  4899. airborne: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(180, "lbs"),
  4902. name: "Airborne",
  4903. image: {
  4904. source: "./media/characters/guisetto/airborne.svg",
  4905. extra: 584 / 525
  4906. }
  4907. },
  4908. },
  4909. [
  4910. {
  4911. name: "Normal",
  4912. height: math.unit(10 + 11 / 12, "feet"),
  4913. default: true
  4914. },
  4915. {
  4916. name: "Large",
  4917. height: math.unit(35, "feet")
  4918. },
  4919. {
  4920. name: "Macro",
  4921. height: math.unit(475, "feet")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(180, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/luxor/front.svg",
  4934. extra: 2940 / 2152
  4935. }
  4936. },
  4937. back: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(180, "lbs"),
  4940. name: "Back",
  4941. image: {
  4942. source: "./media/characters/luxor/back.svg",
  4943. extra: 1083 / 960
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(5 + 5 / 6, "feet"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Lamp",
  4955. height: math.unit(50, "feet")
  4956. },
  4957. {
  4958. name: "Lämp",
  4959. height: math.unit(300, "feet")
  4960. },
  4961. {
  4962. name: "The sun is a lamp",
  4963. height: math.unit(250000, "miles")
  4964. },
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4969. {
  4970. front: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(50, "lbs"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/huoyan/front.svg"
  4976. }
  4977. },
  4978. side: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(180, "lbs"),
  4981. name: "Side",
  4982. image: {
  4983. source: "./media/characters/huoyan/side.svg"
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Chef",
  4990. height: math.unit(9, "feet")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(65, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(780, "feet")
  5000. },
  5001. {
  5002. name: "Flaming Mountain",
  5003. height: math.unit(4.8, "miles")
  5004. },
  5005. {
  5006. name: "Celestial",
  5007. height: math.unit(765000, "miles")
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(5 + 3 / 4, "feet"),
  5016. weight: math.unit(120, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/tails/front.svg"
  5020. }
  5021. }
  5022. },
  5023. [
  5024. {
  5025. name: "Normal",
  5026. height: math.unit(5 + 3 / 4, "feet"),
  5027. default: true
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5033. {
  5034. front: {
  5035. height: math.unit(4, "feet"),
  5036. weight: math.unit(50, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/rainy/front.svg"
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Macro",
  5046. height: math.unit(800, "feet"),
  5047. default: true
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(150, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/rainier/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Micro",
  5066. height: math.unit(2, "mm"),
  5067. default: true
  5068. }
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5073. {
  5074. front: {
  5075. height: math.unit(6, "feet"),
  5076. weight: math.unit(180, "lbs"),
  5077. name: "Front",
  5078. image: {
  5079. source: "./media/characters/andy/front.svg"
  5080. }
  5081. }
  5082. },
  5083. [
  5084. {
  5085. name: "Normal",
  5086. height: math.unit(8, "feet"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Macro",
  5091. height: math.unit(1000, "feet")
  5092. },
  5093. {
  5094. name: "Megamacro",
  5095. height: math.unit(5, "miles")
  5096. },
  5097. {
  5098. name: "Gigamacro",
  5099. height: math.unit(5000, "miles")
  5100. },
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5105. {
  5106. front: {
  5107. height: math.unit(6, "feet"),
  5108. weight: math.unit(210, "lbs"),
  5109. name: "Front",
  5110. image: {
  5111. source: "./media/characters/cimmaron/front-sfw.svg",
  5112. extra: 701 / 676,
  5113. bottom: 0.046
  5114. }
  5115. },
  5116. back: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(210, "lbs"),
  5119. name: "Back",
  5120. image: {
  5121. source: "./media/characters/cimmaron/back-sfw.svg",
  5122. extra: 701 / 676,
  5123. bottom: 0.046
  5124. }
  5125. },
  5126. frontNsfw: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(210, "lbs"),
  5129. name: "Front (NSFW)",
  5130. image: {
  5131. source: "./media/characters/cimmaron/front-nsfw.svg",
  5132. extra: 701 / 676,
  5133. bottom: 0.046
  5134. }
  5135. },
  5136. backNsfw: {
  5137. height: math.unit(6, "feet"),
  5138. weight: math.unit(210, "lbs"),
  5139. name: "Back (NSFW)",
  5140. image: {
  5141. source: "./media/characters/cimmaron/back-nsfw.svg",
  5142. extra: 701 / 676,
  5143. bottom: 0.046
  5144. }
  5145. },
  5146. dick: {
  5147. height: math.unit(1.714, "feet"),
  5148. name: "Dick",
  5149. image: {
  5150. source: "./media/characters/cimmaron/dick.svg"
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(6, "feet"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Macro Mayor",
  5162. height: math.unit(350, "meters")
  5163. },
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5168. {
  5169. front: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(200, "lbs"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/akari/front.svg",
  5175. extra: 962 / 901,
  5176. bottom: 0.04
  5177. }
  5178. }
  5179. },
  5180. [
  5181. {
  5182. name: "Micro",
  5183. height: math.unit(5, "inches"),
  5184. default: true
  5185. },
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(7, "feet")
  5189. },
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(140, "lbs"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/cynosura/front.svg",
  5201. extra: 896 / 847
  5202. }
  5203. },
  5204. back: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(140, "lbs"),
  5207. name: "Back",
  5208. image: {
  5209. source: "./media/characters/cynosura/back.svg",
  5210. extra: 1365 / 1250
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Micro",
  5217. height: math.unit(4, "inches")
  5218. },
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(5.75, "feet"),
  5222. default: true
  5223. },
  5224. {
  5225. name: "Tall",
  5226. height: math.unit(10, "feet")
  5227. },
  5228. {
  5229. name: "Big",
  5230. height: math.unit(20, "feet")
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(50, "feet")
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(170, "lbs"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/gin/front.svg",
  5247. extra: 1.053,
  5248. bottom: 0.025
  5249. }
  5250. },
  5251. foot: {
  5252. height: math.unit(6 / 4.25, "feet"),
  5253. name: "Foot",
  5254. image: {
  5255. source: "./media/characters/gin/foot.svg"
  5256. }
  5257. },
  5258. sole: {
  5259. height: math.unit(6 / 4.40, "feet"),
  5260. name: "Sole",
  5261. image: {
  5262. source: "./media/characters/gin/sole.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Normal",
  5269. height: math.unit(13 + 2 / 12, "feet")
  5270. },
  5271. {
  5272. name: "Macro",
  5273. height: math.unit(1500, "feet")
  5274. },
  5275. {
  5276. name: "Megamacro",
  5277. height: math.unit(200, "miles"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Gigamacro",
  5282. height: math.unit(500, "megameters")
  5283. },
  5284. {
  5285. name: "Teramacro",
  5286. height: math.unit(15, "lightyears")
  5287. }
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5292. {
  5293. front: {
  5294. height: math.unit(6 + 1 / 6, "feet"),
  5295. weight: math.unit(178, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/guy/front.svg"
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(6 + 1 / 6, "feet"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Large",
  5310. height: math.unit(25 + 7 / 12, "feet")
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(60 + 9 / 12, "feet")
  5315. },
  5316. {
  5317. name: "Macro+",
  5318. height: math.unit(246, "feet")
  5319. },
  5320. {
  5321. name: "Macro++",
  5322. height: math.unit(878, "feet")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(9, "feet"),
  5331. weight: math.unit(800, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/tiberius/front.svg",
  5335. extra: 2295 / 2071
  5336. }
  5337. },
  5338. back: {
  5339. height: math.unit(9, "feet"),
  5340. weight: math.unit(800, "lbs"),
  5341. name: "Back",
  5342. image: {
  5343. source: "./media/characters/tiberius/back.svg",
  5344. extra: 2373 / 2160
  5345. }
  5346. },
  5347. },
  5348. [
  5349. {
  5350. name: "Normal",
  5351. height: math.unit(9, "feet"),
  5352. default: true
  5353. }
  5354. ]
  5355. ))
  5356. characterMakers.push(() => makeCharacter(
  5357. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5358. {
  5359. front: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(600, "lbs"),
  5362. name: "Front",
  5363. image: {
  5364. source: "./media/characters/surgo/front.svg",
  5365. extra: 3591 / 2227
  5366. }
  5367. },
  5368. back: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(600, "lbs"),
  5371. name: "Back",
  5372. image: {
  5373. source: "./media/characters/surgo/back.svg",
  5374. extra: 3557 / 2228
  5375. }
  5376. },
  5377. laying: {
  5378. height: math.unit(6 * 0.85, "feet"),
  5379. weight: math.unit(600, "lbs"),
  5380. name: "Laying",
  5381. image: {
  5382. source: "./media/characters/surgo/laying.svg"
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(6, "feet"),
  5390. default: true
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5396. {
  5397. side: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(150, "lbs"),
  5400. name: "Side",
  5401. image: {
  5402. source: "./media/characters/cibus/side.svg",
  5403. extra: 800 / 400
  5404. }
  5405. },
  5406. },
  5407. [
  5408. {
  5409. name: "Normal",
  5410. height: math.unit(6, "feet"),
  5411. default: true
  5412. }
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(240, "lbs"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/nibbles/front.svg"
  5424. }
  5425. },
  5426. side: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(240, "lbs"),
  5429. name: "Side",
  5430. image: {
  5431. source: "./media/characters/nibbles/side.svg"
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(9, "feet"),
  5439. default: true
  5440. }
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5445. {
  5446. side: {
  5447. height: math.unit(5 + 1 / 6, "feet"),
  5448. weight: math.unit(130, "lbs"),
  5449. name: "Side",
  5450. image: {
  5451. source: "./media/characters/rikky/side.svg",
  5452. extra: 851/801
  5453. }
  5454. },
  5455. },
  5456. [
  5457. {
  5458. name: "Normal",
  5459. height: math.unit(5 + 1 / 6, "feet")
  5460. },
  5461. {
  5462. name: "Macro",
  5463. height: math.unit(152, "feet"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "Megamacro",
  5468. height: math.unit(7, "miles")
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5474. {
  5475. side: {
  5476. height: math.unit(370, "cm"),
  5477. weight: math.unit(350, "lbs"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/malfressa/side.svg"
  5481. }
  5482. },
  5483. walking: {
  5484. height: math.unit(370, "cm"),
  5485. weight: math.unit(350, "lbs"),
  5486. name: "Walking",
  5487. image: {
  5488. source: "./media/characters/malfressa/walking.svg"
  5489. }
  5490. },
  5491. feral: {
  5492. height: math.unit(2500, "cm"),
  5493. weight: math.unit(100000, "lbs"),
  5494. name: "Feral",
  5495. image: {
  5496. source: "./media/characters/malfressa/feral.svg",
  5497. extra: 2108 / 837,
  5498. bottom: 0.02
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Normal",
  5505. height: math.unit(370, "cm")
  5506. },
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(300, "meters"),
  5510. default: true
  5511. }
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(60, "kg"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/jaro/front.svg"
  5523. }
  5524. },
  5525. back: {
  5526. height: math.unit(6, "feet"),
  5527. weight: math.unit(60, "kg"),
  5528. name: "Back",
  5529. image: {
  5530. source: "./media/characters/jaro/back.svg"
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "Micro",
  5537. height: math.unit(7, "inches")
  5538. },
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(5.5, "feet"),
  5542. default: true
  5543. },
  5544. {
  5545. name: "Minimacro",
  5546. height: math.unit(20, "feet")
  5547. },
  5548. {
  5549. name: "Macro",
  5550. height: math.unit(200, "meters")
  5551. }
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(6, "feet"),
  5559. weight: math.unit(195, "lb"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/rogue/front.svg"
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "Macro",
  5569. height: math.unit(90, "feet"),
  5570. default: true
  5571. },
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5576. {
  5577. front: {
  5578. height: math.unit(5 + 8 / 12, "feet"),
  5579. weight: math.unit(140, "lb"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/piper/front.svg",
  5583. extra: 3928 / 3681
  5584. }
  5585. },
  5586. },
  5587. [
  5588. {
  5589. name: "Micro",
  5590. height: math.unit(2, "inches")
  5591. },
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(5 + 8 / 12, "feet")
  5595. },
  5596. {
  5597. name: "Macro",
  5598. height: math.unit(250, "feet"),
  5599. default: true
  5600. },
  5601. {
  5602. name: "Megamacro",
  5603. height: math.unit(7, "miles")
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5609. {
  5610. front: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(220, "lb"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/gemini/front.svg"
  5616. }
  5617. },
  5618. back: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(220, "lb"),
  5621. name: "Back",
  5622. image: {
  5623. source: "./media/characters/gemini/back.svg"
  5624. }
  5625. },
  5626. kneeling: {
  5627. height: math.unit(6 / 1.5, "feet"),
  5628. weight: math.unit(220, "lb"),
  5629. name: "Kneeling",
  5630. image: {
  5631. source: "./media/characters/gemini/kneeling.svg",
  5632. bottom: 0.02
  5633. }
  5634. },
  5635. },
  5636. [
  5637. {
  5638. name: "Macro",
  5639. height: math.unit(300, "meters"),
  5640. default: true
  5641. },
  5642. {
  5643. name: "Megamacro",
  5644. height: math.unit(6900, "meters")
  5645. },
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5650. {
  5651. anthro: {
  5652. height: math.unit(2.35, "meters"),
  5653. weight: math.unit(73, "kg"),
  5654. name: "Anthro",
  5655. image: {
  5656. source: "./media/characters/alicia/anthro.svg",
  5657. extra: 2571 / 2385,
  5658. bottom: 75 / 2648
  5659. }
  5660. },
  5661. paw: {
  5662. height: math.unit(1.32, "feet"),
  5663. name: "Paw",
  5664. image: {
  5665. source: "./media/characters/alicia/paw.svg"
  5666. }
  5667. },
  5668. feral: {
  5669. height: math.unit(1.69, "meters"),
  5670. weight: math.unit(73, "kg"),
  5671. name: "Feral",
  5672. image: {
  5673. source: "./media/characters/alicia/feral.svg",
  5674. extra: 2123 / 1715,
  5675. bottom: 222 / 2349
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(2.35, "meters")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(60, "meters"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(10000, "kilometers")
  5692. },
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5697. {
  5698. front: {
  5699. height: math.unit(7, "feet"),
  5700. weight: math.unit(250, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/archy/front.svg"
  5704. }
  5705. }
  5706. },
  5707. [
  5708. {
  5709. name: "Micro",
  5710. height: math.unit(1, "inch")
  5711. },
  5712. {
  5713. name: "Shorty",
  5714. height: math.unit(5, "feet")
  5715. },
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(7, "feet")
  5719. },
  5720. {
  5721. name: "Macro",
  5722. height: math.unit(600, "meters"),
  5723. default: true
  5724. },
  5725. {
  5726. name: "Megamacro",
  5727. height: math.unit(1, "mile")
  5728. },
  5729. ]
  5730. ))
  5731. characterMakers.push(() => makeCharacter(
  5732. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5733. {
  5734. front: {
  5735. height: math.unit(1.65, "meters"),
  5736. weight: math.unit(74, "kg"),
  5737. name: "Front",
  5738. image: {
  5739. source: "./media/characters/berri/front.svg",
  5740. extra: 857 / 837,
  5741. bottom: 18 / 877
  5742. }
  5743. },
  5744. bum: {
  5745. height: math.unit(1.46, "feet"),
  5746. name: "Bum",
  5747. image: {
  5748. source: "./media/characters/berri/bum.svg"
  5749. }
  5750. },
  5751. mouth: {
  5752. height: math.unit(0.44, "feet"),
  5753. name: "Mouth",
  5754. image: {
  5755. source: "./media/characters/berri/mouth.svg"
  5756. }
  5757. },
  5758. paw: {
  5759. height: math.unit(0.826, "feet"),
  5760. name: "Paw",
  5761. image: {
  5762. source: "./media/characters/berri/paw.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(1.65, "meters")
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(60, "m"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Megamacro",
  5778. height: math.unit(9.213, "km")
  5779. },
  5780. {
  5781. name: "Planet Eater",
  5782. height: math.unit(489, "megameters")
  5783. },
  5784. {
  5785. name: "Teramacro",
  5786. height: math.unit(2471635000000, "meters")
  5787. },
  5788. {
  5789. name: "Examacro",
  5790. height: math.unit(8.0624e+26, "meters")
  5791. }
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(1.72, "meters"),
  5799. weight: math.unit(68, "kg"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/lexi/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Very Smol",
  5809. height: math.unit(10, "mm")
  5810. },
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(6.8, "cm"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(1.72, "m")
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(1.69, "meters"),
  5827. weight: math.unit(68, "kg"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/martin/front.svg",
  5831. extra: 596 / 581
  5832. }
  5833. }
  5834. },
  5835. [
  5836. {
  5837. name: "Micro",
  5838. height: math.unit(6.85, "cm"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(1.69, "m")
  5844. }
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5849. {
  5850. front: {
  5851. height: math.unit(1.69, "meters"),
  5852. weight: math.unit(68, "kg"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/juno/front.svg"
  5856. }
  5857. }
  5858. },
  5859. [
  5860. {
  5861. name: "Micro",
  5862. height: math.unit(7, "cm")
  5863. },
  5864. {
  5865. name: "Normal",
  5866. height: math.unit(1.89, "m")
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(353, "meters"),
  5871. default: true
  5872. }
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5877. {
  5878. front: {
  5879. height: math.unit(1.93, "meters"),
  5880. weight: math.unit(83, "kg"),
  5881. name: "Front",
  5882. image: {
  5883. source: "./media/characters/samantha/front.svg"
  5884. }
  5885. },
  5886. frontClothed: {
  5887. height: math.unit(1.93, "meters"),
  5888. weight: math.unit(83, "kg"),
  5889. name: "Front (Clothed)",
  5890. image: {
  5891. source: "./media/characters/samantha/front-clothed.svg"
  5892. }
  5893. },
  5894. back: {
  5895. height: math.unit(1.93, "meters"),
  5896. weight: math.unit(83, "kg"),
  5897. name: "Back",
  5898. image: {
  5899. source: "./media/characters/samantha/back.svg"
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(1.93, "m")
  5907. },
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(74, "meters"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Macro+",
  5915. height: math.unit(223, "meters"),
  5916. },
  5917. {
  5918. name: "Megamacro",
  5919. height: math.unit(8381, "meters"),
  5920. },
  5921. {
  5922. name: "Megamacro+",
  5923. height: math.unit(12000, "kilometers")
  5924. },
  5925. ]
  5926. ))
  5927. characterMakers.push(() => makeCharacter(
  5928. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5929. {
  5930. front: {
  5931. height: math.unit(1.92, "meters"),
  5932. weight: math.unit(80, "kg"),
  5933. name: "Front",
  5934. image: {
  5935. source: "./media/characters/dr-clay/front.svg"
  5936. }
  5937. },
  5938. frontClothed: {
  5939. height: math.unit(1.92, "meters"),
  5940. weight: math.unit(80, "kg"),
  5941. name: "Front (Clothed)",
  5942. image: {
  5943. source: "./media/characters/dr-clay/front-clothed.svg"
  5944. }
  5945. }
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(1.92, "m")
  5951. },
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(214, "meters"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Macro+",
  5959. height: math.unit(12.237, "meters"),
  5960. },
  5961. {
  5962. name: "Megamacro",
  5963. height: math.unit(557, "megameters"),
  5964. },
  5965. {
  5966. name: "Unimaginable",
  5967. height: math.unit(120e9, "lightyears")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(2, "meters"),
  5976. weight: math.unit(80, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5980. }
  5981. }
  5982. },
  5983. [
  5984. {
  5985. name: "Teramacro",
  5986. height: math.unit(500000, "lightyears"),
  5987. default: true
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(2, "meters"),
  5996. weight: math.unit(150, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/vemus/front.svg",
  6000. extra: 2384 / 2084,
  6001. bottom: 0.0123
  6002. }
  6003. }
  6004. },
  6005. [
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(3.75, "meters"),
  6009. default: true
  6010. },
  6011. {
  6012. name: "Big",
  6013. height: math.unit(8, "meters")
  6014. },
  6015. {
  6016. name: "Macro",
  6017. height: math.unit(100, "meters")
  6018. },
  6019. {
  6020. name: "Macro+",
  6021. height: math.unit(1500, "meters")
  6022. },
  6023. {
  6024. name: "Stellar",
  6025. height: math.unit(14e8, "meters")
  6026. },
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6031. {
  6032. front: {
  6033. height: math.unit(2, "meters"),
  6034. weight: math.unit(70, "kg"),
  6035. name: "Front",
  6036. image: {
  6037. source: "./media/characters/beherit/front.svg",
  6038. extra: 1408 / 1242
  6039. }
  6040. }
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(6, "feet")
  6046. },
  6047. {
  6048. name: "Lorg",
  6049. height: math.unit(25, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Lorger",
  6054. height: math.unit(75, "feet")
  6055. },
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(200, "meters")
  6059. },
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(2, "meters"),
  6067. weight: math.unit(150, "kg"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/everett/front.svg",
  6071. extra: 2038 / 1737,
  6072. bottom: 0.03
  6073. }
  6074. },
  6075. paw: {
  6076. height: math.unit(2 / 3.6, "meters"),
  6077. name: "Paw",
  6078. image: {
  6079. source: "./media/characters/everett/paw.svg"
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(15, "feet"),
  6087. default: true
  6088. },
  6089. {
  6090. name: "Lorg",
  6091. height: math.unit(70, "feet"),
  6092. default: true
  6093. },
  6094. {
  6095. name: "Lorger",
  6096. height: math.unit(250, "feet")
  6097. },
  6098. {
  6099. name: "Macro",
  6100. height: math.unit(500, "meters")
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6106. {
  6107. front: {
  6108. height: math.unit(2, "meters"),
  6109. weight: math.unit(86, "kg"),
  6110. name: "Front",
  6111. image: {
  6112. source: "./media/characters/rose-lion/front.svg"
  6113. }
  6114. },
  6115. bent: {
  6116. height: math.unit(2 / 1.4288, "meters"),
  6117. weight: math.unit(86, "kg"),
  6118. name: "Bent",
  6119. image: {
  6120. source: "./media/characters/rose-lion/bent.svg"
  6121. }
  6122. }
  6123. },
  6124. [
  6125. {
  6126. name: "Mini-Micro",
  6127. height: math.unit(1, "cm")
  6128. },
  6129. {
  6130. name: "Micro",
  6131. height: math.unit(3.5, "inches"),
  6132. default: true
  6133. },
  6134. {
  6135. name: "Normal",
  6136. height: math.unit(6 + 1 / 6, "feet")
  6137. },
  6138. {
  6139. name: "Mini-Macro",
  6140. height: math.unit(9 + 10 / 12, "feet")
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6146. {
  6147. front: {
  6148. height: math.unit(2, "meters"),
  6149. weight: math.unit(350, "lbs"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/regal/front.svg"
  6153. }
  6154. },
  6155. back: {
  6156. height: math.unit(2, "meters"),
  6157. weight: math.unit(350, "lbs"),
  6158. name: "Back",
  6159. image: {
  6160. source: "./media/characters/regal/back.svg"
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(350, "feet"),
  6168. default: true
  6169. }
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6174. {
  6175. front: {
  6176. height: math.unit(4 + 11 / 12, "feet"),
  6177. weight: math.unit(100, "lbs"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/opal/front.svg"
  6181. }
  6182. },
  6183. frontAlt: {
  6184. height: math.unit(4 + 11 / 12, "feet"),
  6185. weight: math.unit(100, "lbs"),
  6186. name: "Front (Alt)",
  6187. image: {
  6188. source: "./media/characters/opal/front-alt.svg"
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Small",
  6195. height: math.unit(4 + 11 / 12, "feet")
  6196. },
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(20, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(120, "feet")
  6205. },
  6206. {
  6207. name: "Megamacro",
  6208. height: math.unit(80, "miles")
  6209. },
  6210. {
  6211. name: "True Size",
  6212. height: math.unit(100000, "lightyears")
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(6, "feet"),
  6221. weight: math.unit(200, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/vector-wuff/front.svg"
  6225. }
  6226. }
  6227. },
  6228. [
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(2.8, "meters")
  6232. },
  6233. {
  6234. name: "Macro",
  6235. height: math.unit(450, "meters"),
  6236. default: true
  6237. },
  6238. {
  6239. name: "Megamacro",
  6240. height: math.unit(15, "kilometers")
  6241. }
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(6, "feet"),
  6249. weight: math.unit(256, "lbs"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/dannik/front.svg"
  6253. }
  6254. }
  6255. },
  6256. [
  6257. {
  6258. name: "Macro",
  6259. height: math.unit(69.57, "meters"),
  6260. default: true
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(120, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/azura-saharah/front.svg"
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(120, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/azura-saharah/back.svg"
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Macro",
  6287. height: math.unit(100, "feet"),
  6288. default: true
  6289. },
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6294. {
  6295. side: {
  6296. height: math.unit(5 + 4 / 12, "feet"),
  6297. weight: math.unit(163, "lbs"),
  6298. name: "Side",
  6299. image: {
  6300. source: "./media/characters/kennedy/side.svg"
  6301. }
  6302. }
  6303. },
  6304. [
  6305. {
  6306. name: "Standard Doggo",
  6307. height: math.unit(5 + 4 / 12, "feet")
  6308. },
  6309. {
  6310. name: "Big Doggo",
  6311. height: math.unit(25 + 3 / 12, "feet"),
  6312. default: true
  6313. },
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6318. {
  6319. front: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(90, "lbs"),
  6322. name: "Front",
  6323. image: {
  6324. source: "./media/characters/odi-lunar/front.svg"
  6325. }
  6326. }
  6327. },
  6328. [
  6329. {
  6330. name: "Micro",
  6331. height: math.unit(3, "inches"),
  6332. default: true
  6333. },
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(5.5, "feet")
  6337. }
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6342. {
  6343. back: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(220, "lbs"),
  6346. name: "Back",
  6347. image: {
  6348. source: "./media/characters/mandake/back.svg"
  6349. }
  6350. }
  6351. },
  6352. [
  6353. {
  6354. name: "Normal",
  6355. height: math.unit(7, "feet"),
  6356. default: true
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(78, "feet")
  6361. },
  6362. {
  6363. name: "Macro+",
  6364. height: math.unit(300, "meters")
  6365. },
  6366. {
  6367. name: "Macro++",
  6368. height: math.unit(2400, "feet")
  6369. },
  6370. {
  6371. name: "Megamacro",
  6372. height: math.unit(5167, "meters")
  6373. },
  6374. {
  6375. name: "Gigamacro",
  6376. height: math.unit(41769, "miles")
  6377. },
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(120, "lbs"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/yozey/front.svg"
  6389. }
  6390. },
  6391. frontAlt: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(120, "lbs"),
  6394. name: "Front (Alt)",
  6395. image: {
  6396. source: "./media/characters/yozey/front-alt.svg"
  6397. }
  6398. },
  6399. side: {
  6400. height: math.unit(6, "feet"),
  6401. weight: math.unit(120, "lbs"),
  6402. name: "Side",
  6403. image: {
  6404. source: "./media/characters/yozey/side.svg"
  6405. }
  6406. },
  6407. },
  6408. [
  6409. {
  6410. name: "Micro",
  6411. height: math.unit(3, "inches"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Normal",
  6416. height: math.unit(6, "feet")
  6417. }
  6418. ]
  6419. ))
  6420. characterMakers.push(() => makeCharacter(
  6421. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6422. {
  6423. front: {
  6424. height: math.unit(6, "feet"),
  6425. weight: math.unit(103, "lbs"),
  6426. name: "Front",
  6427. image: {
  6428. source: "./media/characters/valeska-voss/front.svg"
  6429. }
  6430. }
  6431. },
  6432. [
  6433. {
  6434. name: "Mini-Sized Sub",
  6435. height: math.unit(3.1, "inches")
  6436. },
  6437. {
  6438. name: "Mid-Sized Sub",
  6439. height: math.unit(6.2, "inches")
  6440. },
  6441. {
  6442. name: "Full-Sized Sub",
  6443. height: math.unit(9.3, "inches")
  6444. },
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(5 + 2 / 12, "foot"),
  6448. default: true
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(160, "lbs"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/gene-zeta/front.svg",
  6461. bottom: 0.03,
  6462. extra: 1
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(6.25, "foot"),
  6470. default: true
  6471. },
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(350, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/razinox/front.svg",
  6483. extra: 1686 / 1548,
  6484. bottom: 28.2 / 1868
  6485. }
  6486. },
  6487. back: {
  6488. height: math.unit(6, "feet"),
  6489. weight: math.unit(350, "lbs"),
  6490. name: "Back",
  6491. image: {
  6492. source: "./media/characters/razinox/back.svg",
  6493. extra: 1660 / 1590,
  6494. bottom: 15 / 1665
  6495. }
  6496. },
  6497. },
  6498. [
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(10 + 8 / 12, "foot")
  6502. },
  6503. {
  6504. name: "Minimacro",
  6505. height: math.unit(15, "foot")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(60, "foot"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Megamacro",
  6514. height: math.unit(5, "miles")
  6515. },
  6516. {
  6517. name: "Gigamacro",
  6518. height: math.unit(6000, "miles")
  6519. },
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(150, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/cobalt/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(8 + 1 / 12, "foot")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(111, "foot"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Supracosmic",
  6546. height: math.unit(1e42, "feet")
  6547. },
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(140, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/amanda/front.svg"
  6559. }
  6560. }
  6561. },
  6562. [
  6563. {
  6564. name: "Micro",
  6565. height: math.unit(5, "inches"),
  6566. default: true
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(5.59, "feet"),
  6575. weight: math.unit(250, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/teal/front.svg"
  6579. }
  6580. },
  6581. frontAlt: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(250, "lbs"),
  6584. name: "Front (Alt)",
  6585. image: {
  6586. source: "./media/characters/teal/front-alt.svg",
  6587. bottom: 0.04,
  6588. extra: 1
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(12, "feet"),
  6596. default: true
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(300, "feet")
  6601. },
  6602. ]
  6603. ))
  6604. characterMakers.push(() => makeCharacter(
  6605. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6606. {
  6607. frontCat: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(180, "lbs"),
  6610. name: "Front (Cat)",
  6611. image: {
  6612. source: "./media/characters/ravin-amulet/front-cat.svg"
  6613. }
  6614. },
  6615. frontCatAlt: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(180, "lbs"),
  6618. name: "Front (Alt, Cat)",
  6619. image: {
  6620. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6621. }
  6622. },
  6623. frontWerewolf: {
  6624. height: math.unit(6 * 1.2, "feet"),
  6625. weight: math.unit(225, "lbs"),
  6626. name: "Front (Werewolf)",
  6627. image: {
  6628. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6629. }
  6630. },
  6631. backWerewolf: {
  6632. height: math.unit(6 * 1.2, "feet"),
  6633. weight: math.unit(225, "lbs"),
  6634. name: "Back (Werewolf)",
  6635. image: {
  6636. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6637. }
  6638. },
  6639. },
  6640. [
  6641. {
  6642. name: "Nano",
  6643. height: math.unit(1, "micrometer")
  6644. },
  6645. {
  6646. name: "Micro",
  6647. height: math.unit(1, "inch")
  6648. },
  6649. {
  6650. name: "Normal",
  6651. height: math.unit(6, "feet"),
  6652. default: true
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(60, "feet")
  6657. }
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(165, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/fluoresce/front.svg"
  6669. }
  6670. }
  6671. },
  6672. [
  6673. {
  6674. name: "Micro",
  6675. height: math.unit(6, "cm")
  6676. },
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(5 + 7 / 12, "feet"),
  6680. default: true
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(56, "feet")
  6685. },
  6686. {
  6687. name: "Megamacro",
  6688. height: math.unit(1.9, "miles")
  6689. },
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6694. {
  6695. front: {
  6696. height: math.unit(9 + 6 / 12, "feet"),
  6697. weight: math.unit(523, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/aurora/side.svg"
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(9 + 6 / 12, "feet")
  6708. },
  6709. {
  6710. name: "Macro",
  6711. height: math.unit(96, "feet"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Macro+",
  6716. height: math.unit(243, "feet")
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6722. {
  6723. front: {
  6724. height: math.unit(194, "cm"),
  6725. weight: math.unit(90, "kg"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/ranek/front.svg"
  6729. }
  6730. },
  6731. side: {
  6732. height: math.unit(194, "cm"),
  6733. weight: math.unit(90, "kg"),
  6734. name: "Side",
  6735. image: {
  6736. source: "./media/characters/ranek/side.svg"
  6737. }
  6738. },
  6739. back: {
  6740. height: math.unit(194, "cm"),
  6741. weight: math.unit(90, "kg"),
  6742. name: "Back",
  6743. image: {
  6744. source: "./media/characters/ranek/back.svg"
  6745. }
  6746. },
  6747. feral: {
  6748. height: math.unit(30, "cm"),
  6749. weight: math.unit(1.6, "lbs"),
  6750. name: "Feral",
  6751. image: {
  6752. source: "./media/characters/ranek/feral.svg"
  6753. }
  6754. },
  6755. },
  6756. [
  6757. {
  6758. name: "Normal",
  6759. height: math.unit(194, "cm"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Macro",
  6764. height: math.unit(100, "meters")
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(5 + 6 / 12, "feet"),
  6773. weight: math.unit(153, "lbs"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/andrew-cooper/front.svg"
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Nano",
  6783. height: math.unit(1, "mm")
  6784. },
  6785. {
  6786. name: "Micro",
  6787. height: math.unit(2, "inches")
  6788. },
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(5 + 6 / 12, "feet"),
  6792. default: true
  6793. }
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(6, "feet"),
  6801. weight: math.unit(180, "lbs"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/akane-sato/front.svg",
  6805. extra: 1219 / 1140
  6806. }
  6807. },
  6808. back: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(180, "lbs"),
  6811. name: "Back",
  6812. image: {
  6813. source: "./media/characters/akane-sato/back.svg",
  6814. extra: 1219 / 1170
  6815. }
  6816. },
  6817. },
  6818. [
  6819. {
  6820. name: "Normal",
  6821. height: math.unit(2.5, "meters")
  6822. },
  6823. {
  6824. name: "Macro",
  6825. height: math.unit(250, "meters"),
  6826. default: true
  6827. },
  6828. {
  6829. name: "Megamacro",
  6830. height: math.unit(25, "km")
  6831. },
  6832. ]
  6833. ))
  6834. characterMakers.push(() => makeCharacter(
  6835. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6836. {
  6837. front: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(65, "kg"),
  6840. name: "Front",
  6841. image: {
  6842. source: "./media/characters/rook/front.svg",
  6843. extra: 960 / 950
  6844. }
  6845. }
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(8.8, "feet")
  6851. },
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(88, "feet"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Megamacro",
  6859. height: math.unit(8, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(12 + 2 / 12, "feet"),
  6868. weight: math.unit(808, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/prodigy/front.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(12 + 2 / 12, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(143, "feet")
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(400, "feet")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(225, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/daniel/front.svg"
  6900. }
  6901. },
  6902. leaning: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(225, "lbs"),
  6905. name: "Leaning",
  6906. image: {
  6907. source: "./media/characters/daniel/leaning.svg"
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(1000, "feet"),
  6915. default: true
  6916. },
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(88, "lbs"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/chiros/front.svg",
  6928. extra: 306 / 226
  6929. }
  6930. },
  6931. side: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(88, "lbs"),
  6934. name: "Side",
  6935. image: {
  6936. source: "./media/characters/chiros/side.svg",
  6937. extra: 306 / 226
  6938. }
  6939. },
  6940. },
  6941. [
  6942. {
  6943. name: "Normal",
  6944. height: math.unit(6, "cm"),
  6945. default: true
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(100, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/selka/front.svg",
  6958. extra: 947 / 887
  6959. }
  6960. }
  6961. },
  6962. [
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(5, "cm"),
  6966. default: true
  6967. },
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(8 + 3 / 12, "feet"),
  6975. weight: math.unit(424, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/verin/front.svg",
  6979. extra: 1845 / 1550
  6980. }
  6981. },
  6982. frontArmored: {
  6983. height: math.unit(8 + 3 / 12, "feet"),
  6984. weight: math.unit(424, "lbs"),
  6985. name: "Front (Armored)",
  6986. image: {
  6987. source: "./media/characters/verin/front-armor.svg",
  6988. extra: 1845 / 1550,
  6989. bottom: 0.01
  6990. }
  6991. },
  6992. back: {
  6993. height: math.unit(8 + 3 / 12, "feet"),
  6994. weight: math.unit(424, "lbs"),
  6995. name: "Back",
  6996. image: {
  6997. source: "./media/characters/verin/back.svg",
  6998. bottom: 0.1,
  6999. extra: 1
  7000. }
  7001. },
  7002. foot: {
  7003. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7004. name: "Foot",
  7005. image: {
  7006. source: "./media/characters/verin/foot.svg"
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Normal",
  7013. height: math.unit(8 + 3 / 12, "feet")
  7014. },
  7015. {
  7016. name: "Minimacro",
  7017. height: math.unit(21, "feet"),
  7018. default: true
  7019. },
  7020. {
  7021. name: "Macro",
  7022. height: math.unit(626, "feet")
  7023. },
  7024. ]
  7025. ))
  7026. characterMakers.push(() => makeCharacter(
  7027. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7028. {
  7029. front: {
  7030. height: math.unit(2.718, "meters"),
  7031. weight: math.unit(150, "lbs"),
  7032. name: "Front",
  7033. image: {
  7034. source: "./media/characters/sovrim-terraquian/front.svg"
  7035. }
  7036. },
  7037. back: {
  7038. height: math.unit(2.718, "meters"),
  7039. weight: math.unit(150, "lbs"),
  7040. name: "Back",
  7041. image: {
  7042. source: "./media/characters/sovrim-terraquian/back.svg"
  7043. }
  7044. }
  7045. },
  7046. [
  7047. {
  7048. name: "Micro",
  7049. height: math.unit(2, "inches")
  7050. },
  7051. {
  7052. name: "Small",
  7053. height: math.unit(1, "meter")
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(Math.E, "meters"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Macro",
  7062. height: math.unit(20, "meters")
  7063. },
  7064. {
  7065. name: "Macro+",
  7066. height: math.unit(400, "meters")
  7067. },
  7068. ]
  7069. ))
  7070. characterMakers.push(() => makeCharacter(
  7071. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7072. {
  7073. front: {
  7074. height: math.unit(7, "feet"),
  7075. weight: math.unit(489, "lbs"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/reece-silvermane/front.svg",
  7079. bottom: 0.02,
  7080. extra: 1
  7081. }
  7082. },
  7083. },
  7084. [
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(1.5, "miles"),
  7088. default: true
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(78, "kg"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/kane/front.svg",
  7101. extra: 978 / 899
  7102. }
  7103. },
  7104. },
  7105. [
  7106. {
  7107. name: "Normal",
  7108. height: math.unit(2.1, "m"),
  7109. },
  7110. {
  7111. name: "Macro",
  7112. height: math.unit(1, "km"),
  7113. default: true
  7114. },
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(200, "kg"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/tegon/front.svg",
  7126. bottom: 0.01,
  7127. extra: 1
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Micro",
  7134. height: math.unit(1, "inch")
  7135. },
  7136. {
  7137. name: "Normal",
  7138. height: math.unit(6 + 3 / 12, "feet"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Macro",
  7143. height: math.unit(300, "feet")
  7144. },
  7145. {
  7146. name: "Megamacro",
  7147. height: math.unit(69, "miles")
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7153. {
  7154. side: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(2304, "lbs"),
  7157. name: "Side",
  7158. image: {
  7159. source: "./media/characters/arcturax/side.svg",
  7160. extra: 790 / 376,
  7161. bottom: 0.01
  7162. }
  7163. },
  7164. },
  7165. [
  7166. {
  7167. name: "Micro",
  7168. height: math.unit(2, "inch")
  7169. },
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(6, "feet")
  7173. },
  7174. {
  7175. name: "Macro",
  7176. height: math.unit(39, "feet"),
  7177. default: true
  7178. },
  7179. {
  7180. name: "Megamacro",
  7181. height: math.unit(7, "miles")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(6, "feet"),
  7190. weight: math.unit(50, "lbs"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/sentri/front.svg",
  7194. extra: 1750 / 1570,
  7195. bottom: 0.025
  7196. }
  7197. },
  7198. frontAlt: {
  7199. height: math.unit(6, "feet"),
  7200. weight: math.unit(50, "lbs"),
  7201. name: "Front (Alt)",
  7202. image: {
  7203. source: "./media/characters/sentri/front-alt.svg",
  7204. extra: 1750 / 1570,
  7205. bottom: 0.025
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(15, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(2500, "feet")
  7218. }
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(5 + 8 / 12, "feet"),
  7226. weight: math.unit(130, "lbs"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/corvin/front.svg",
  7230. extra: 1803 / 1629
  7231. }
  7232. },
  7233. frontShirt: {
  7234. height: math.unit(5 + 8 / 12, "feet"),
  7235. weight: math.unit(130, "lbs"),
  7236. name: "Front (Shirt)",
  7237. image: {
  7238. source: "./media/characters/corvin/front-shirt.svg",
  7239. extra: 1803 / 1629
  7240. }
  7241. },
  7242. frontPoncho: {
  7243. height: math.unit(5 + 8 / 12, "feet"),
  7244. weight: math.unit(130, "lbs"),
  7245. name: "Front (Poncho)",
  7246. image: {
  7247. source: "./media/characters/corvin/front-poncho.svg",
  7248. extra: 1803 / 1629
  7249. }
  7250. },
  7251. side: {
  7252. height: math.unit(5 + 8 / 12, "feet"),
  7253. weight: math.unit(130, "lbs"),
  7254. name: "Side",
  7255. image: {
  7256. source: "./media/characters/corvin/side.svg",
  7257. extra: 1012 / 945
  7258. }
  7259. },
  7260. back: {
  7261. height: math.unit(5 + 8 / 12, "feet"),
  7262. weight: math.unit(130, "lbs"),
  7263. name: "Back",
  7264. image: {
  7265. source: "./media/characters/corvin/back.svg",
  7266. extra: 1803 / 1629
  7267. }
  7268. },
  7269. },
  7270. [
  7271. {
  7272. name: "Micro",
  7273. height: math.unit(3, "inches")
  7274. },
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(5 + 8 / 12, "feet")
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(300, "feet"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(500, "miles")
  7287. }
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(135, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/q/front.svg",
  7299. extra: 854 / 752,
  7300. bottom: 0.005
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(130, "lbs"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/q/back.svg",
  7309. extra: 854 / 752
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Macro",
  7316. height: math.unit(90, "feet"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Extra Macro",
  7321. height: math.unit(300, "feet"),
  7322. },
  7323. {
  7324. name: "BIG WALF",
  7325. height: math.unit(750, "feet"),
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(150, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/carley/front.svg",
  7338. extra: 3927 / 3540,
  7339. bottom: 29.2/735
  7340. }
  7341. }
  7342. },
  7343. [
  7344. {
  7345. name: "Normal",
  7346. height: math.unit(6 + 3 / 12, "feet")
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(185, "feet"),
  7351. default: true
  7352. },
  7353. {
  7354. name: "Megamacro",
  7355. height: math.unit(8, "miles"),
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(3, "feet"),
  7364. weight: math.unit(28, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/citrine/front.svg"
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(3, "feet"),
  7375. default: true
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7381. {
  7382. front: {
  7383. height: math.unit(14, "feet"),
  7384. weight: math.unit(1450, "kg"),
  7385. capacity: math.unit(15, "people"),
  7386. name: "Front",
  7387. image: {
  7388. source: "./media/characters/aura-starwind/front.svg",
  7389. extra: 1455 / 1335
  7390. }
  7391. },
  7392. side: {
  7393. height: math.unit(14, "feet"),
  7394. weight: math.unit(1450, "kg"),
  7395. capacity: math.unit(15, "people"),
  7396. name: "Side",
  7397. image: {
  7398. source: "./media/characters/aura-starwind/side.svg",
  7399. extra: 1654 / 1497
  7400. }
  7401. },
  7402. taur: {
  7403. height: math.unit(18, "feet"),
  7404. weight: math.unit(5500, "kg"),
  7405. capacity: math.unit(50, "people"),
  7406. name: "Taur",
  7407. image: {
  7408. source: "./media/characters/aura-starwind/taur.svg",
  7409. extra: 1760 / 1650
  7410. }
  7411. },
  7412. feral: {
  7413. height: math.unit(46, "feet"),
  7414. weight: math.unit(25000, "kg"),
  7415. capacity: math.unit(120, "people"),
  7416. name: "Feral",
  7417. image: {
  7418. source: "./media/characters/aura-starwind/feral.svg"
  7419. }
  7420. },
  7421. },
  7422. [
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(14, "feet"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(50, "meters")
  7431. },
  7432. {
  7433. name: "Megamacro",
  7434. height: math.unit(5000, "meters")
  7435. },
  7436. {
  7437. name: "Gigamacro",
  7438. height: math.unit(100000, "kilometers")
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(2 + 7 / 12, "feet"),
  7447. weight: math.unit(32, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/rivet/front.svg",
  7451. extra: 1716 / 1658,
  7452. bottom: 0.03
  7453. }
  7454. },
  7455. foot: {
  7456. height: math.unit(0.551, "feet"),
  7457. name: "Rivet's Foot",
  7458. image: {
  7459. source: "./media/characters/rivet/foot.svg"
  7460. },
  7461. rename: true
  7462. }
  7463. },
  7464. [
  7465. {
  7466. name: "Micro",
  7467. height: math.unit(1.5, "inches"),
  7468. },
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(2 + 7 / 12, "feet"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(85, "feet")
  7477. },
  7478. {
  7479. name: "Megamacro",
  7480. height: math.unit(2.2, "km")
  7481. }
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(5 + 9 / 12, "feet"),
  7489. weight: math.unit(150, "lbs"),
  7490. name: "Front",
  7491. image: {
  7492. source: "./media/characters/coffee/front.svg",
  7493. extra: 3666 / 3032,
  7494. bottom: 0.04
  7495. }
  7496. },
  7497. foot: {
  7498. height: math.unit(1.29, "feet"),
  7499. name: "Foot",
  7500. image: {
  7501. source: "./media/characters/coffee/foot.svg"
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(2, "inches"),
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(5 + 9 / 12, "feet"),
  7513. default: true
  7514. },
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(800, "feet")
  7518. },
  7519. {
  7520. name: "Megamacro",
  7521. height: math.unit(25, "miles")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(6, "feet"),
  7530. weight: math.unit(200, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/chari-gal/front.svg",
  7534. extra: 1568 / 1385,
  7535. bottom: 0.047
  7536. }
  7537. },
  7538. gigantamax: {
  7539. height: math.unit(6 * 16, "feet"),
  7540. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7541. name: "Gigantamax",
  7542. image: {
  7543. source: "./media/characters/chari-gal/gigantamax.svg",
  7544. extra: 1124 / 888,
  7545. bottom: 0.03
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(5 + 7 / 12, "feet")
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(200, "feet"),
  7557. default: true
  7558. }
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(150, "lbs"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/nova/front.svg",
  7570. extra: 5000 / 4722,
  7571. bottom: 0.02
  7572. }
  7573. }
  7574. },
  7575. [
  7576. {
  7577. name: "Micro-",
  7578. height: math.unit(0.8, "inches")
  7579. },
  7580. {
  7581. name: "Micro",
  7582. height: math.unit(2, "inches"),
  7583. default: true
  7584. },
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7589. {
  7590. front: {
  7591. height: math.unit(3 + 1 / 12, "feet"),
  7592. weight: math.unit(21.7, "lbs"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/argent/front.svg",
  7596. extra: 1471 / 1331,
  7597. bottom: 100.8 / 1575.5
  7598. }
  7599. }
  7600. },
  7601. [
  7602. {
  7603. name: "Micro",
  7604. height: math.unit(2, "inches")
  7605. },
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(3 + 1 / 12, "feet"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(120, "feet")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7619. {
  7620. lamp: {
  7621. height: math.unit(7 * 1559 / 989, "feet"),
  7622. name: "Magic Lamp",
  7623. image: {
  7624. source: "./media/characters/mira-al-cul/lamp.svg",
  7625. extra: 1617 / 1559
  7626. }
  7627. },
  7628. front: {
  7629. height: math.unit(7, "feet"),
  7630. name: "Front",
  7631. image: {
  7632. source: "./media/characters/mira-al-cul/front.svg",
  7633. extra: 1044 / 990
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Heavily Restricted",
  7640. height: math.unit(7 * 1559 / 989, "feet")
  7641. },
  7642. {
  7643. name: "Freshly Freed",
  7644. height: math.unit(50 * 1559 / 989, "feet")
  7645. },
  7646. {
  7647. name: "World Encompassing",
  7648. height: math.unit(10000 * 1559 / 989, "miles")
  7649. },
  7650. {
  7651. name: "Galactic",
  7652. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7653. },
  7654. {
  7655. name: "Palmed Universe",
  7656. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Multiversal Matriarch",
  7661. height: math.unit(8.87e10, "yottameters")
  7662. },
  7663. {
  7664. name: "Void Mother",
  7665. height: math.unit(3.14e110, "yottaparsecs")
  7666. },
  7667. {
  7668. name: "Toying with Transcendence",
  7669. height: math.unit(1e307, "meters")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7675. {
  7676. front: {
  7677. height: math.unit(17 + 1 / 12, "feet"),
  7678. weight: math.unit(476.2 * 5, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/kuro-shi-uchū/front.svg",
  7682. extra: 2329 / 1835,
  7683. bottom: 0.02
  7684. }
  7685. },
  7686. },
  7687. [
  7688. {
  7689. name: "Micro",
  7690. height: math.unit(2, "inches")
  7691. },
  7692. {
  7693. name: "Normal",
  7694. height: math.unit(12, "meters")
  7695. },
  7696. {
  7697. name: "Planetary",
  7698. height: math.unit(0.00929, "AU"),
  7699. default: true
  7700. },
  7701. {
  7702. name: "Universal",
  7703. height: math.unit(20, "gigaparsecs")
  7704. },
  7705. ]
  7706. ))
  7707. characterMakers.push(() => makeCharacter(
  7708. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7709. {
  7710. front: {
  7711. height: math.unit(5 + 2 / 12, "feet"),
  7712. weight: math.unit(120, "lbs"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/katherine/front.svg",
  7716. extra: 2075 / 1969
  7717. }
  7718. },
  7719. dress: {
  7720. height: math.unit(5 + 2 / 12, "feet"),
  7721. weight: math.unit(120, "lbs"),
  7722. name: "Dress",
  7723. image: {
  7724. source: "./media/characters/katherine/dress.svg",
  7725. extra: 2258 / 2064
  7726. }
  7727. },
  7728. },
  7729. [
  7730. {
  7731. name: "Micro",
  7732. height: math.unit(1, "inches"),
  7733. default: true
  7734. },
  7735. {
  7736. name: "Normal",
  7737. height: math.unit(5 + 2 / 12, "feet")
  7738. },
  7739. {
  7740. name: "Macro",
  7741. height: math.unit(100, "meters")
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(80, "miles")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(7 + 8 / 12, "feet"),
  7754. weight: math.unit(250, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/yevis/front.svg",
  7758. extra: 1938 / 1755
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Mortal",
  7765. height: math.unit(7 + 8 / 12, "feet")
  7766. },
  7767. {
  7768. name: "Battle",
  7769. height: math.unit(25 + 11 / 12, "feet")
  7770. },
  7771. {
  7772. name: "Wrath",
  7773. height: math.unit(1654 + 11 / 12, "feet")
  7774. },
  7775. {
  7776. name: "Planet Destroyer",
  7777. height: math.unit(12000, "miles")
  7778. },
  7779. {
  7780. name: "Galaxy Conqueror",
  7781. height: math.unit(1.45, "zettameters"),
  7782. default: true
  7783. },
  7784. {
  7785. name: "Universal War",
  7786. height: math.unit(184, "gigaparsecs")
  7787. },
  7788. {
  7789. name: "Eternity War",
  7790. height: math.unit(1.98e55, "yottaparsecs")
  7791. },
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7796. {
  7797. front: {
  7798. height: math.unit(5 + 8 / 12, "feet"),
  7799. weight: math.unit(63, "kg"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/xavier/front.svg",
  7803. extra: 944 / 883
  7804. }
  7805. },
  7806. frontStretch: {
  7807. height: math.unit(5 + 8 / 12, "feet"),
  7808. weight: math.unit(63, "kg"),
  7809. name: "Stretching",
  7810. image: {
  7811. source: "./media/characters/xavier/front-stretch.svg",
  7812. extra: 962 / 820
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(5 + 8 / 12, "feet")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(100, "meters"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "McLargeHuge",
  7828. height: math.unit(10, "miles")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(5 + 5 / 12, "feet"),
  7837. weight: math.unit(150, "lb"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/joshii/front.svg"
  7841. }
  7842. },
  7843. foot: {
  7844. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7845. name: "Foot",
  7846. image: {
  7847. source: "./media/characters/joshii/foot.svg"
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(2, "inches")
  7855. },
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(5 + 5 / 12, "feet"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Macro",
  7863. height: math.unit(785, "feet")
  7864. },
  7865. {
  7866. name: "Megamacro",
  7867. height: math.unit(24.5, "miles")
  7868. },
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(6, "feet"),
  7876. weight: math.unit(150, "lb"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/goddess-elizabeth/front.svg",
  7880. extra: 1800 / 1525,
  7881. bottom: 0.005
  7882. }
  7883. },
  7884. foot: {
  7885. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7886. name: "Foot",
  7887. image: {
  7888. source: "./media/characters/goddess-elizabeth/foot.svg"
  7889. }
  7890. },
  7891. mouth: {
  7892. height: math.unit(6, "feet"),
  7893. name: "Mouth",
  7894. image: {
  7895. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7896. }
  7897. },
  7898. },
  7899. [
  7900. {
  7901. name: "Micro",
  7902. height: math.unit(12, "feet")
  7903. },
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(80, "miles"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Macro",
  7911. height: math.unit(15000, "parsecs")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(5 + 9 / 12, "feet"),
  7920. weight: math.unit(144, "lb"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/kara/front.svg"
  7924. }
  7925. },
  7926. feet: {
  7927. height: math.unit(6 / 6.765, "feet"),
  7928. name: "Kara's Feet",
  7929. rename: true,
  7930. image: {
  7931. source: "./media/characters/kara/feet.svg"
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(5 + 9 / 12, "feet")
  7939. },
  7940. {
  7941. name: "Macro",
  7942. height: math.unit(174, "feet"),
  7943. default: true
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(18, "feet"),
  7952. weight: math.unit(4050, "lb"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/tyrone/front.svg",
  7956. extra: 2520 / 2402,
  7957. bottom: 0.025
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(18, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(300, "feet")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(7 + 8 / 12, "feet"),
  7978. weight: math.unit(120, "lb"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/danny/front.svg",
  7982. extra: 1490 / 1350
  7983. }
  7984. },
  7985. back: {
  7986. height: math.unit(7 + 8 / 12, "feet"),
  7987. weight: math.unit(120, "lb"),
  7988. name: "Back",
  7989. image: {
  7990. source: "./media/characters/danny/back.svg",
  7991. extra: 1490 / 1350
  7992. }
  7993. },
  7994. },
  7995. [
  7996. {
  7997. name: "Normal",
  7998. height: math.unit(7 + 8 / 12, "feet"),
  7999. default: true
  8000. },
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(3.5, "inches"),
  8008. weight: math.unit(19, "grams"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/mallow/front.svg",
  8012. extra: 471 / 431
  8013. }
  8014. },
  8015. back: {
  8016. height: math.unit(3.5, "inches"),
  8017. weight: math.unit(19, "grams"),
  8018. name: "Back",
  8019. image: {
  8020. source: "./media/characters/mallow/back.svg",
  8021. extra: 471 / 431
  8022. }
  8023. },
  8024. },
  8025. [
  8026. {
  8027. name: "Normal",
  8028. height: math.unit(3.5, "inches"),
  8029. default: true
  8030. },
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(9, "feet"),
  8038. weight: math.unit(230, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/starry-aqua/front.svg"
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(9, "feet"),
  8046. weight: math.unit(230, "kg"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/starry-aqua/back.svg"
  8050. }
  8051. },
  8052. hand: {
  8053. height: math.unit(9 * 0.1168, "feet"),
  8054. name: "Hand",
  8055. image: {
  8056. source: "./media/characters/starry-aqua/hand.svg"
  8057. }
  8058. },
  8059. foot: {
  8060. height: math.unit(9 * 0.18, "feet"),
  8061. name: "Foot",
  8062. image: {
  8063. source: "./media/characters/starry-aqua/foot.svg"
  8064. }
  8065. }
  8066. },
  8067. [
  8068. {
  8069. name: "Micro",
  8070. height: math.unit(3, "inches")
  8071. },
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(9, "feet")
  8075. },
  8076. {
  8077. name: "Macro",
  8078. height: math.unit(300, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Megamacro",
  8083. height: math.unit(3200, "feet")
  8084. }
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8089. {
  8090. front: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(230, "lb"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/luka/front.svg",
  8096. extra: 1,
  8097. bottom: 0.025
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(12 + 8 / 12, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Minimacro",
  8109. height: math.unit(20, "feet")
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(250, "feet")
  8114. },
  8115. {
  8116. name: "Megamacro",
  8117. height: math.unit(5, "miles")
  8118. },
  8119. {
  8120. name: "Gigamacro",
  8121. height: math.unit(8000, "miles")
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(150, "lb"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/natalie-nightring/front.svg",
  8134. extra: 1,
  8135. bottom: 0.06
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Uh Oh",
  8142. height: math.unit(0.1, "mm")
  8143. },
  8144. {
  8145. name: "Small",
  8146. height: math.unit(3, "inches")
  8147. },
  8148. {
  8149. name: "Human Scale",
  8150. height: math.unit(6, "feet")
  8151. },
  8152. {
  8153. name: "Librarian",
  8154. height: math.unit(50, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Immense",
  8159. height: math.unit(200, "miles")
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(180, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/danni-rosie/front.svg",
  8172. extra: 1260 / 1128,
  8173. bottom: 0.022
  8174. }
  8175. },
  8176. },
  8177. [
  8178. {
  8179. name: "Micro",
  8180. height: math.unit(2, "inches"),
  8181. default: true
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(5 + 9 / 12, "feet"),
  8190. weight: math.unit(220, "lb"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/samantha-kruse/front.svg",
  8194. extra: (985 / 935),
  8195. bottom: 0.03
  8196. }
  8197. },
  8198. frontUndressed: {
  8199. height: math.unit(5 + 9 / 12, "feet"),
  8200. weight: math.unit(220, "lb"),
  8201. name: "Front (Undressed)",
  8202. image: {
  8203. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8204. extra: (973 / 923),
  8205. bottom: 0.025
  8206. }
  8207. },
  8208. fat: {
  8209. height: math.unit(5 + 9 / 12, "feet"),
  8210. weight: math.unit(900, "lb"),
  8211. name: "Front (Fat)",
  8212. image: {
  8213. source: "./media/characters/samantha-kruse/fat.svg",
  8214. extra: 2688 / 2561
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(5 + 9 / 12, "feet"),
  8222. default: true
  8223. }
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8228. {
  8229. back: {
  8230. height: math.unit(5 + 4 / 12, "feet"),
  8231. weight: math.unit(4963, "lb"),
  8232. name: "Back",
  8233. image: {
  8234. source: "./media/characters/amelia-rosie/back.svg",
  8235. extra: 1113 / 963,
  8236. bottom: 0.01
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Level 0",
  8243. height: math.unit(5 + 4 / 12, "feet")
  8244. },
  8245. {
  8246. name: "Level 1",
  8247. height: math.unit(164597, "feet"),
  8248. default: true
  8249. },
  8250. {
  8251. name: "Level 2",
  8252. height: math.unit(956243, "miles")
  8253. },
  8254. {
  8255. name: "Level 3",
  8256. height: math.unit(29421709423, "miles")
  8257. },
  8258. {
  8259. name: "Level 4",
  8260. height: math.unit(154, "lightyears")
  8261. },
  8262. {
  8263. name: "Level 5",
  8264. height: math.unit(4738272, "lightyears")
  8265. },
  8266. {
  8267. name: "Level 6",
  8268. height: math.unit(145787152896, "lightyears")
  8269. },
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8274. {
  8275. front: {
  8276. height: math.unit(5 + 11 / 12, "feet"),
  8277. weight: math.unit(65, "kg"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/rook-kitara/front.svg",
  8281. extra: 1347 / 1274,
  8282. bottom: 0.005
  8283. }
  8284. },
  8285. },
  8286. [
  8287. {
  8288. name: "Totally Unfair",
  8289. height: math.unit(1.8, "mm")
  8290. },
  8291. {
  8292. name: "Lap Rookie",
  8293. height: math.unit(1.4, "feet")
  8294. },
  8295. {
  8296. name: "Normal",
  8297. height: math.unit(5 + 11 / 12, "feet"),
  8298. default: true
  8299. },
  8300. {
  8301. name: "How Did This Happen",
  8302. height: math.unit(80, "miles")
  8303. }
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(7, "feet"),
  8311. weight: math.unit(300, "lb"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/pisces/front.svg",
  8315. extra: 2255 / 2115,
  8316. bottom: 0.03
  8317. }
  8318. },
  8319. back: {
  8320. height: math.unit(7, "feet"),
  8321. weight: math.unit(300, "lb"),
  8322. name: "Back",
  8323. image: {
  8324. source: "./media/characters/pisces/back.svg",
  8325. extra: 2146 / 2055,
  8326. bottom: 0.04
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Normal",
  8333. height: math.unit(7, "feet"),
  8334. default: true
  8335. },
  8336. {
  8337. name: "Swimming Pool",
  8338. height: math.unit(12.2, "meters")
  8339. },
  8340. {
  8341. name: "Olympic Swimming Pool",
  8342. height: math.unit(56.3, "meters")
  8343. },
  8344. {
  8345. name: "Lake Superior",
  8346. height: math.unit(93900, "meters")
  8347. },
  8348. {
  8349. name: "Mediterranean Sea",
  8350. height: math.unit(644457, "meters")
  8351. },
  8352. {
  8353. name: "World's Oceans",
  8354. height: math.unit(4567491, "meters")
  8355. },
  8356. ]
  8357. ))
  8358. characterMakers.push(() => makeCharacter(
  8359. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8360. {
  8361. front: {
  8362. height: math.unit(2.3, "meters"),
  8363. weight: math.unit(120, "kg"),
  8364. name: "Front",
  8365. image: {
  8366. source: "./media/characters/zelas/front.svg"
  8367. }
  8368. },
  8369. side: {
  8370. height: math.unit(2.3, "meters"),
  8371. weight: math.unit(120, "kg"),
  8372. name: "Side",
  8373. image: {
  8374. source: "./media/characters/zelas/side.svg"
  8375. }
  8376. },
  8377. back: {
  8378. height: math.unit(2.3, "meters"),
  8379. weight: math.unit(120, "kg"),
  8380. name: "Back",
  8381. image: {
  8382. source: "./media/characters/zelas/back.svg"
  8383. }
  8384. },
  8385. foot: {
  8386. height: math.unit(1.116, "feet"),
  8387. name: "Foot",
  8388. image: {
  8389. source: "./media/characters/zelas/foot.svg"
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Normal",
  8396. height: math.unit(2.3, "meters")
  8397. },
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(30, "meters"),
  8401. default: true
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8407. {
  8408. front: {
  8409. height: math.unit(1, "inch"),
  8410. weight: math.unit(0.21, "grams"),
  8411. name: "Front",
  8412. image: {
  8413. source: "./media/characters/talbot/front.svg",
  8414. extra: 594 / 544
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Micro",
  8421. height: math.unit(1, "inch"),
  8422. default: true
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8428. {
  8429. front: {
  8430. height: math.unit(3 + 3 / 12, "feet"),
  8431. weight: math.unit(51.8, "lb"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/fliss/front.svg",
  8435. extra: 840 / 640
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Teeny Tiny",
  8442. height: math.unit(1, "mm")
  8443. },
  8444. {
  8445. name: "Small",
  8446. height: math.unit(1, "inch"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Standard Sylveon",
  8451. height: math.unit(3 + 3 / 12, "feet")
  8452. },
  8453. {
  8454. name: "Large Nuisance",
  8455. height: math.unit(33, "feet")
  8456. },
  8457. {
  8458. name: "City Filler",
  8459. height: math.unit(3000, "feet")
  8460. },
  8461. {
  8462. name: "New Horizon",
  8463. height: math.unit(6000, "miles")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(5, "cm"),
  8472. weight: math.unit(1.94, "g"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/fleta/front.svg",
  8476. extra: 835 / 803
  8477. }
  8478. },
  8479. back: {
  8480. height: math.unit(5, "cm"),
  8481. weight: math.unit(1.94, "g"),
  8482. name: "Back",
  8483. image: {
  8484. source: "./media/characters/fleta/back.svg",
  8485. extra: 835 / 803
  8486. }
  8487. },
  8488. },
  8489. [
  8490. {
  8491. name: "Micro",
  8492. height: math.unit(5, "cm"),
  8493. default: true
  8494. },
  8495. ]
  8496. ))
  8497. characterMakers.push(() => makeCharacter(
  8498. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8499. {
  8500. front: {
  8501. height: math.unit(6, "feet"),
  8502. weight: math.unit(225, "lb"),
  8503. name: "Front",
  8504. image: {
  8505. source: "./media/characters/dominic/front.svg",
  8506. extra: 1770 / 1620,
  8507. bottom: 0.025
  8508. }
  8509. },
  8510. back: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(225, "lb"),
  8513. name: "Back",
  8514. image: {
  8515. source: "./media/characters/dominic/back.svg",
  8516. extra: 1745 / 1620,
  8517. bottom: 0.065
  8518. }
  8519. },
  8520. },
  8521. [
  8522. {
  8523. name: "Nano",
  8524. height: math.unit(0.1, "mm")
  8525. },
  8526. {
  8527. name: "Micro-",
  8528. height: math.unit(1, "mm")
  8529. },
  8530. {
  8531. name: "Micro",
  8532. height: math.unit(4, "inches")
  8533. },
  8534. {
  8535. name: "Normal",
  8536. height: math.unit(6 + 4 / 12, "feet"),
  8537. default: true
  8538. },
  8539. {
  8540. name: "Macro",
  8541. height: math.unit(115, "feet")
  8542. },
  8543. {
  8544. name: "Macro+",
  8545. height: math.unit(955, "feet")
  8546. },
  8547. {
  8548. name: "Megamacro",
  8549. height: math.unit(8990, "feet")
  8550. },
  8551. {
  8552. name: "Gigmacro",
  8553. height: math.unit(9310, "miles")
  8554. },
  8555. {
  8556. name: "Teramacro",
  8557. height: math.unit(1567005010, "miles")
  8558. },
  8559. {
  8560. name: "Examacro",
  8561. height: math.unit(1425, "parsecs")
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(400, "feet"),
  8570. weight: math.unit(44444444, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/major-colonel/front.svg"
  8574. }
  8575. },
  8576. back: {
  8577. height: math.unit(400, "feet"),
  8578. weight: math.unit(44444444, "lb"),
  8579. name: "Back",
  8580. image: {
  8581. source: "./media/characters/major-colonel/back.svg"
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Macro",
  8588. height: math.unit(400, "feet"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8595. {
  8596. catFront: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(120, "lb"),
  8599. name: "Front (Cat Side)",
  8600. image: {
  8601. source: "./media/characters/axel-lycan/cat-front.svg",
  8602. extra: 430 / 402,
  8603. bottom: 43 / 472.35
  8604. }
  8605. },
  8606. catBack: {
  8607. height: math.unit(6, "feet"),
  8608. weight: math.unit(120, "lb"),
  8609. name: "Back (Cat Side)",
  8610. image: {
  8611. source: "./media/characters/axel-lycan/cat-back.svg",
  8612. extra: 447 / 419,
  8613. bottom: 23.3 / 469
  8614. }
  8615. },
  8616. wolfFront: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(120, "lb"),
  8619. name: "Front (Wolf Side)",
  8620. image: {
  8621. source: "./media/characters/axel-lycan/wolf-front.svg",
  8622. extra: 485 / 456,
  8623. bottom: 19 / 504
  8624. }
  8625. },
  8626. wolfBack: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(120, "lb"),
  8629. name: "Back (Wolf Side)",
  8630. image: {
  8631. source: "./media/characters/axel-lycan/wolf-back.svg",
  8632. extra: 475 / 438,
  8633. bottom: 39.2 / 514
  8634. }
  8635. },
  8636. },
  8637. [
  8638. {
  8639. name: "Macro",
  8640. height: math.unit(1, "km"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(5 + 9 / 12, "feet"),
  8650. weight: math.unit(175, "lb"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/vanrel-hyena/front.svg",
  8654. extra: 1086 / 1010,
  8655. bottom: 0.04
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 9 / 12, "feet"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(103, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/abbott-absol/front.svg",
  8676. extra: 2010 / 1842
  8677. }
  8678. },
  8679. },
  8680. [
  8681. {
  8682. name: "Megamicro",
  8683. height: math.unit(0.1, "mm")
  8684. },
  8685. {
  8686. name: "Micro",
  8687. height: math.unit(1, "inch")
  8688. },
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(6, "feet"),
  8692. default: true
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(264, "lb"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/hector/front.svg",
  8705. extra: 2280 / 2130,
  8706. bottom: 0.07
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(12.25, "foot"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(160, "feet")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(150, "lb"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/sal/front.svg",
  8731. extra: 1846 / 1699,
  8732. bottom: 0.04
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Megamacro",
  8739. height: math.unit(10, "miles"),
  8740. default: true
  8741. },
  8742. ]
  8743. ))
  8744. characterMakers.push(() => makeCharacter(
  8745. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8746. {
  8747. front: {
  8748. height: math.unit(3, "meters"),
  8749. weight: math.unit(450, "kg"),
  8750. name: "front",
  8751. image: {
  8752. source: "./media/characters/ranger/front.svg",
  8753. extra: 2401 / 2243,
  8754. bottom: 0.05
  8755. }
  8756. },
  8757. },
  8758. [
  8759. {
  8760. name: "Normal",
  8761. height: math.unit(3, "meters"),
  8762. default: true
  8763. },
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(14, "feet"),
  8771. weight: math.unit(800, "kg"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/theresa/front.svg",
  8775. extra: 3575 / 3346,
  8776. bottom: 0.03
  8777. }
  8778. },
  8779. },
  8780. [
  8781. {
  8782. name: "Normal",
  8783. height: math.unit(14, "feet"),
  8784. default: true
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8790. {
  8791. front: {
  8792. height: math.unit(6, "feet"),
  8793. weight: math.unit(3, "kg"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/ine/front.svg",
  8797. extra: 678 / 539,
  8798. bottom: 0.023
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Normal",
  8805. height: math.unit(2.265, "feet"),
  8806. default: true
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(5, "feet"),
  8815. weight: math.unit(30, "kg"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/vial/front.svg",
  8819. extra: 1365 / 1277,
  8820. bottom: 0.04
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(5, "feet"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8834. {
  8835. side: {
  8836. height: math.unit(3.4, "meters"),
  8837. weight: math.unit(1000, "lb"),
  8838. name: "Side",
  8839. image: {
  8840. source: "./media/characters/rovoska/side.svg",
  8841. extra: 4403 / 1515
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(3.4, "meters"),
  8849. default: true
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(8, "feet"),
  8858. weight: math.unit(315, "lb"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/gunner-rotthbauer/front.svg"
  8862. }
  8863. },
  8864. back: {
  8865. height: math.unit(8, "feet"),
  8866. weight: math.unit(315, "lb"),
  8867. name: "Back",
  8868. image: {
  8869. source: "./media/characters/gunner-rotthbauer/back.svg"
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Micro",
  8876. height: math.unit(3.5, "inches")
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(8, "feet"),
  8881. default: true
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(250, "feet")
  8886. },
  8887. {
  8888. name: "Megamacro",
  8889. height: math.unit(1, "AU")
  8890. },
  8891. ]
  8892. ))
  8893. characterMakers.push(() => makeCharacter(
  8894. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8895. {
  8896. front: {
  8897. height: math.unit(5 + 5 / 12, "feet"),
  8898. weight: math.unit(140, "lb"),
  8899. name: "Front",
  8900. image: {
  8901. source: "./media/characters/allatia/front.svg",
  8902. extra: 1227 / 1180,
  8903. bottom: 0.027
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(5 + 5 / 12, "feet")
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(250, "feet"),
  8915. default: true
  8916. },
  8917. {
  8918. name: "Megamacro",
  8919. height: math.unit(8, "miles")
  8920. }
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(120, "lb"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/tene/front.svg",
  8932. extra: 1728 / 1578,
  8933. bottom: 0.022
  8934. }
  8935. },
  8936. stomping: {
  8937. height: math.unit(2.025, "meters"),
  8938. weight: math.unit(120, "lb"),
  8939. name: "Stomping",
  8940. image: {
  8941. source: "./media/characters/tene/stomping.svg",
  8942. extra: 938 / 873,
  8943. bottom: 0.01
  8944. }
  8945. },
  8946. sitting: {
  8947. height: math.unit(1, "meter"),
  8948. weight: math.unit(120, "lb"),
  8949. name: "Sitting",
  8950. image: {
  8951. source: "./media/characters/tene/sitting.svg",
  8952. extra: 437 / 415,
  8953. bottom: 0.1
  8954. }
  8955. },
  8956. feral: {
  8957. height: math.unit(3.9, "feet"),
  8958. weight: math.unit(250, "lb"),
  8959. name: "Feral",
  8960. image: {
  8961. source: "./media/characters/tene/feral.svg",
  8962. extra: 717 / 458,
  8963. bottom: 0.179
  8964. }
  8965. },
  8966. },
  8967. [
  8968. {
  8969. name: "Normal",
  8970. height: math.unit(6, "feet")
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(300, "feet"),
  8975. default: true
  8976. },
  8977. {
  8978. name: "Megamacro",
  8979. height: math.unit(5, "miles")
  8980. },
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8985. {
  8986. side: {
  8987. height: math.unit(6, "feet"),
  8988. name: "Side",
  8989. image: {
  8990. source: "./media/characters/evander/side.svg",
  8991. extra: 877 / 477
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(0.83, "meters"),
  8999. default: true
  9000. },
  9001. ]
  9002. ))
  9003. characterMakers.push(() => makeCharacter(
  9004. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9005. {
  9006. front: {
  9007. height: math.unit(12, "feet"),
  9008. weight: math.unit(1000, "lb"),
  9009. name: "Front",
  9010. image: {
  9011. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9012. extra: 1762 / 1611
  9013. }
  9014. },
  9015. back: {
  9016. height: math.unit(12, "feet"),
  9017. weight: math.unit(1000, "lb"),
  9018. name: "Back",
  9019. image: {
  9020. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9021. extra: 1762 / 1611
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(12, "feet"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Kaiju",
  9033. height: math.unit(150, "feet")
  9034. },
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(150, "lb"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/zero-alurus/front.svg"
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(150, "lb"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/zero-alurus/back.svg"
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 10 / 12, "feet")
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(60, "feet"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Macro+",
  9069. height: math.unit(450, "feet")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(200, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/mega-shi/front.svg",
  9082. extra: 1279 / 1250,
  9083. bottom: 0.02
  9084. }
  9085. },
  9086. back: {
  9087. height: math.unit(6, "feet"),
  9088. weight: math.unit(200, "lb"),
  9089. name: "Back",
  9090. image: {
  9091. source: "./media/characters/mega-shi/back.svg",
  9092. extra: 1279 / 1250,
  9093. bottom: 0.02
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Micro",
  9100. height: math.unit(16 + 6 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Third Dimension",
  9104. height: math.unit(40, "meters")
  9105. },
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(660, "feet"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Megamacro",
  9113. height: math.unit(10, "miles")
  9114. },
  9115. {
  9116. name: "Planetary Launch",
  9117. height: math.unit(500, "miles")
  9118. },
  9119. {
  9120. name: "Interstellar",
  9121. height: math.unit(1e9, "miles")
  9122. },
  9123. {
  9124. name: "Leaving the Universe",
  9125. height: math.unit(1, "gigaparsec")
  9126. },
  9127. {
  9128. name: "Travelling Universes",
  9129. height: math.unit(30e15, "parsecs")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(150, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/odyssey/front.svg",
  9142. extra: 1782 / 1582,
  9143. bottom: 0.01
  9144. }
  9145. },
  9146. side: {
  9147. height: math.unit(5.7, "feet"),
  9148. weight: math.unit(140, "lb"),
  9149. name: "Side",
  9150. image: {
  9151. source: "./media/characters/odyssey/side.svg",
  9152. extra: 6462 / 5700
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Normal",
  9159. height: math.unit(5 + 4 / 12, "feet")
  9160. },
  9161. {
  9162. name: "Macro",
  9163. height: math.unit(1, "km")
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(3000, "km")
  9168. },
  9169. {
  9170. name: "Gigamacro",
  9171. height: math.unit(1, "AU"),
  9172. default: true
  9173. },
  9174. {
  9175. name: "Omniversal",
  9176. height: math.unit(100e14, "lightyears")
  9177. },
  9178. ]
  9179. ))
  9180. characterMakers.push(() => makeCharacter(
  9181. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9182. {
  9183. front: {
  9184. height: math.unit(6, "feet"),
  9185. weight: math.unit(300, "lb"),
  9186. name: "Front",
  9187. image: {
  9188. source: "./media/characters/mekuto/front.svg",
  9189. extra: 921 / 832,
  9190. bottom: 0.03
  9191. }
  9192. },
  9193. hand: {
  9194. height: math.unit(6 / 10.24, "feet"),
  9195. name: "Hand",
  9196. image: {
  9197. source: "./media/characters/mekuto/hand.svg"
  9198. }
  9199. },
  9200. foot: {
  9201. height: math.unit(6 / 5.05, "feet"),
  9202. name: "Foot",
  9203. image: {
  9204. source: "./media/characters/mekuto/foot.svg"
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Minimicro",
  9211. height: math.unit(0.2, "inches")
  9212. },
  9213. {
  9214. name: "Micro",
  9215. height: math.unit(1.5, "inches")
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(5 + 11 / 12, "feet"),
  9220. default: true
  9221. },
  9222. {
  9223. name: "Minimacro",
  9224. height: math.unit(17 + 9 / 12, "feet")
  9225. },
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(177.5, "feet")
  9229. },
  9230. {
  9231. name: "Megamacro",
  9232. height: math.unit(152, "miles")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9238. {
  9239. front: {
  9240. height: math.unit(6.5, "inches"),
  9241. weight: math.unit(13, "oz"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/dafydd-tomos/front.svg",
  9245. extra: 2990 / 2603,
  9246. bottom: 0.03
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Micro",
  9253. height: math.unit(6.5, "inches"),
  9254. default: true
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(6, "feet"),
  9263. weight: math.unit(150, "lb"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/splinter/front.svg",
  9267. extra: 2990 / 2882,
  9268. bottom: 0.04
  9269. }
  9270. },
  9271. back: {
  9272. height: math.unit(6, "feet"),
  9273. weight: math.unit(150, "lb"),
  9274. name: "Back",
  9275. image: {
  9276. source: "./media/characters/splinter/back.svg",
  9277. extra: 2990 / 2882,
  9278. bottom: 0.04
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(6, "feet")
  9286. },
  9287. {
  9288. name: "Macro",
  9289. height: math.unit(230, "meters"),
  9290. default: true
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(4 + 10 / 12, "feet"),
  9299. weight: math.unit(480, "lb"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/snow-gabumon/front.svg",
  9303. extra: 1140 / 963,
  9304. bottom: 0.058
  9305. }
  9306. },
  9307. back: {
  9308. height: math.unit(4 + 10 / 12, "feet"),
  9309. weight: math.unit(480, "lb"),
  9310. name: "Back",
  9311. image: {
  9312. source: "./media/characters/snow-gabumon/back.svg",
  9313. extra: 1115 / 962,
  9314. bottom: 0.041
  9315. }
  9316. },
  9317. frontUndresed: {
  9318. height: math.unit(4 + 10 / 12, "feet"),
  9319. weight: math.unit(480, "lb"),
  9320. name: "Front (Undressed)",
  9321. image: {
  9322. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9323. extra: 1061 / 960,
  9324. bottom: 0.045
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Micro",
  9331. height: math.unit(1, "inch")
  9332. },
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(4 + 10 / 12, "feet"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Macro",
  9340. height: math.unit(200, "feet")
  9341. },
  9342. {
  9343. name: "Megamacro",
  9344. height: math.unit(120, "miles")
  9345. },
  9346. {
  9347. name: "Gigamacro",
  9348. height: math.unit(9800, "miles")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(1.7, "meters"),
  9357. weight: math.unit(140, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/moody/front.svg",
  9361. extra: 3226 / 3007,
  9362. bottom: 0.087
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "mm")
  9370. },
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(1.7, "meters"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Macro",
  9378. height: math.unit(80, "meters")
  9379. },
  9380. {
  9381. name: "Macro+",
  9382. height: math.unit(500, "meters")
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(150, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/zyas/front.svg",
  9395. extra: 1180 / 1120,
  9396. bottom: 0.045
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(10, "feet"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(500, "feet")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(5, "miles")
  9413. },
  9414. {
  9415. name: "Teramacro",
  9416. height: math.unit(150000, "miles")
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(150, "lb"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/cuon/front.svg",
  9429. extra: 1390 / 1320,
  9430. bottom: 0.008
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(3, "inches")
  9438. },
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(18 + 9 / 12, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Macro",
  9446. height: math.unit(360, "feet")
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(360, "miles")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(2.4, "meters"),
  9459. weight: math.unit(70, "kg"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/nyanuxk/front.svg",
  9463. extra: 1172 / 1084,
  9464. bottom: 0.065
  9465. }
  9466. },
  9467. side: {
  9468. height: math.unit(2.4, "meters"),
  9469. weight: math.unit(70, "kg"),
  9470. name: "Side",
  9471. image: {
  9472. source: "./media/characters/nyanuxk/side.svg",
  9473. extra: 1190 / 1132,
  9474. bottom: 0.007
  9475. }
  9476. },
  9477. back: {
  9478. height: math.unit(2.4, "meters"),
  9479. weight: math.unit(70, "kg"),
  9480. name: "Back",
  9481. image: {
  9482. source: "./media/characters/nyanuxk/back.svg",
  9483. extra: 1200 / 1141,
  9484. bottom: 0.015
  9485. }
  9486. },
  9487. foot: {
  9488. height: math.unit(0.52, "meters"),
  9489. name: "Foot",
  9490. image: {
  9491. source: "./media/characters/nyanuxk/foot.svg"
  9492. }
  9493. },
  9494. },
  9495. [
  9496. {
  9497. name: "Micro",
  9498. height: math.unit(2, "cm")
  9499. },
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(2.4, "meters"),
  9503. default: true
  9504. },
  9505. {
  9506. name: "Smaller Macro",
  9507. height: math.unit(120, "meters")
  9508. },
  9509. {
  9510. name: "Bigger Macro",
  9511. height: math.unit(1.2, "km")
  9512. },
  9513. {
  9514. name: "Megamacro",
  9515. height: math.unit(15, "kilometers")
  9516. },
  9517. {
  9518. name: "Gigamacro",
  9519. height: math.unit(2000, "km")
  9520. },
  9521. {
  9522. name: "Teramacro",
  9523. height: math.unit(500000, "km")
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9529. {
  9530. side: {
  9531. height: math.unit(6, "feet"),
  9532. name: "Side",
  9533. image: {
  9534. source: "./media/characters/ailbhe/side.svg",
  9535. extra: 757 / 464,
  9536. bottom: 0.041
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Normal",
  9543. height: math.unit(1.07, "meters"),
  9544. default: true
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(120, "kg"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/zevulfius/front.svg",
  9557. extra: 965 / 903
  9558. }
  9559. },
  9560. side: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(120, "kg"),
  9563. name: "Side",
  9564. image: {
  9565. source: "./media/characters/zevulfius/side.svg",
  9566. extra: 939 / 900
  9567. }
  9568. },
  9569. back: {
  9570. height: math.unit(6, "feet"),
  9571. weight: math.unit(120, "kg"),
  9572. name: "Back",
  9573. image: {
  9574. source: "./media/characters/zevulfius/back.svg",
  9575. extra: 918 / 854,
  9576. bottom: 0.005
  9577. }
  9578. },
  9579. foot: {
  9580. height: math.unit(6 / 3.72, "feet"),
  9581. name: "Foot",
  9582. image: {
  9583. source: "./media/characters/zevulfius/foot.svg"
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Macro",
  9590. height: math.unit(750, "meters")
  9591. },
  9592. {
  9593. name: "Megamacro",
  9594. height: math.unit(20, "km"),
  9595. default: true
  9596. },
  9597. {
  9598. name: "Gigamacro",
  9599. height: math.unit(2000, "km")
  9600. },
  9601. {
  9602. name: "Teramacro",
  9603. height: math.unit(250000, "km")
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(100, "feet"),
  9612. weight: math.unit(350, "kg"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/rikes/front.svg",
  9616. extra: 1565 / 1483,
  9617. bottom: 0.017
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(100, "feet"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9631. {
  9632. anthro: {
  9633. height: math.unit(8, "feet"),
  9634. weight: math.unit(120, "kg"),
  9635. name: "Anthro",
  9636. image: {
  9637. source: "./media/characters/adam-silver-mane/anthro.svg",
  9638. extra: 5743 / 5339,
  9639. bottom: 0.07
  9640. }
  9641. },
  9642. taur: {
  9643. height: math.unit(16, "feet"),
  9644. weight: math.unit(1500, "kg"),
  9645. name: "Taur",
  9646. image: {
  9647. source: "./media/characters/adam-silver-mane/taur.svg",
  9648. extra: 1713 / 1571,
  9649. bottom: 0.01
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(8, "feet")
  9657. },
  9658. {
  9659. name: "Minimacro",
  9660. height: math.unit(80, "feet")
  9661. },
  9662. {
  9663. name: "Macro",
  9664. height: math.unit(800, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Megamacro",
  9669. height: math.unit(8000, "feet")
  9670. },
  9671. {
  9672. name: "Gigamacro",
  9673. height: math.unit(800, "miles")
  9674. },
  9675. {
  9676. name: "Teramacro",
  9677. height: math.unit(80000, "miles")
  9678. },
  9679. {
  9680. name: "Celestial",
  9681. height: math.unit(8e6, "miles")
  9682. },
  9683. {
  9684. name: "Star Dragon",
  9685. height: math.unit(800000, "parsecs")
  9686. },
  9687. {
  9688. name: "Godly",
  9689. height: math.unit(800, "teraparsecs")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(150, "lb"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/ky'owin/front.svg",
  9702. extra: 3888 / 3068,
  9703. bottom: 0.015
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(6 + 8 / 12, "feet")
  9711. },
  9712. {
  9713. name: "Large",
  9714. height: math.unit(68, "feet")
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(132, "feet")
  9719. },
  9720. {
  9721. name: "Macro+",
  9722. height: math.unit(340, "feet")
  9723. },
  9724. {
  9725. name: "Macro++",
  9726. height: math.unit(680, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(1, "mile")
  9732. },
  9733. {
  9734. name: "Megamacro+",
  9735. height: math.unit(10, "miles")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(4, "feet"),
  9744. weight: math.unit(50, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/mal/front.svg",
  9748. extra: 785 / 724,
  9749. bottom: 0.07
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(4, "inches")
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(4, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(200, "feet")
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(6, "feet"),
  9774. weight: math.unit(150, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/jordan-deware/front.svg",
  9778. extra: 1191 / 1012
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Nano",
  9785. height: math.unit(0.01, "mm")
  9786. },
  9787. {
  9788. name: "Minimicro",
  9789. height: math.unit(1, "mm")
  9790. },
  9791. {
  9792. name: "Micro",
  9793. height: math.unit(0.5, "inches")
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(4, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Minimacro",
  9802. height: math.unit(40, "meters")
  9803. },
  9804. {
  9805. name: "Small Macro",
  9806. height: math.unit(400, "meters")
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(4, "miles")
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(40, "miles")
  9815. },
  9816. {
  9817. name: "Megamacro+",
  9818. height: math.unit(400, "miles")
  9819. },
  9820. {
  9821. name: "Gigamacro",
  9822. height: math.unit(400000, "miles")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9828. {
  9829. side: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(150, "lb"),
  9832. name: "Side",
  9833. image: {
  9834. source: "./media/characters/kimiko/side.svg",
  9835. extra: 600 / 358
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(15, "feet"),
  9843. default: true
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(220, "feet")
  9848. },
  9849. {
  9850. name: "Macro+",
  9851. height: math.unit(1450, "feet")
  9852. },
  9853. {
  9854. name: "Megamacro",
  9855. height: math.unit(11500, "feet")
  9856. },
  9857. {
  9858. name: "Gigamacro",
  9859. height: math.unit(9500, "miles")
  9860. },
  9861. {
  9862. name: "Teramacro",
  9863. height: math.unit(2208005005, "miles")
  9864. },
  9865. {
  9866. name: "Examacro",
  9867. height: math.unit(2750, "parsecs")
  9868. },
  9869. {
  9870. name: "Zettamacro",
  9871. height: math.unit(101500, "parsecs")
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(6, "feet"),
  9880. weight: math.unit(70, "kg"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/andrew-sleepy/front.svg"
  9884. }
  9885. },
  9886. side: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(70, "kg"),
  9889. name: "Side",
  9890. image: {
  9891. source: "./media/characters/andrew-sleepy/side.svg"
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Micro",
  9898. height: math.unit(1, "mm"),
  9899. default: true
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(150, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/judio/front.svg",
  9912. extra: 1258 / 1110
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(5 + 6 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(1000, "feet"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(10, "miles")
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9934. {
  9935. front: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(68, "kg"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/nomaxice/front.svg",
  9941. extra: 1498 / 1073,
  9942. bottom: 0.075
  9943. }
  9944. },
  9945. foot: {
  9946. height: math.unit(1.1, "feet"),
  9947. name: "Foot",
  9948. image: {
  9949. source: "./media/characters/nomaxice/foot.svg"
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Micro",
  9956. height: math.unit(8, "cm")
  9957. },
  9958. {
  9959. name: "Norm",
  9960. height: math.unit(1.82, "m")
  9961. },
  9962. {
  9963. name: "Norm+",
  9964. height: math.unit(8.8, "feet")
  9965. },
  9966. {
  9967. name: "Big",
  9968. height: math.unit(8, "meters"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Macro",
  9973. height: math.unit(18, "meters")
  9974. },
  9975. {
  9976. name: "Macro+",
  9977. height: math.unit(88, "meters")
  9978. },
  9979. ]
  9980. ))
  9981. characterMakers.push(() => makeCharacter(
  9982. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9983. {
  9984. front: {
  9985. height: math.unit(12, "feet"),
  9986. weight: math.unit(1.5, "tons"),
  9987. name: "Front",
  9988. image: {
  9989. source: "./media/characters/dydros/front.svg",
  9990. extra: 863 / 800,
  9991. bottom: 0.015
  9992. }
  9993. },
  9994. back: {
  9995. height: math.unit(12, "feet"),
  9996. weight: math.unit(1.5, "tons"),
  9997. name: "Back",
  9998. image: {
  9999. source: "./media/characters/dydros/back.svg",
  10000. extra: 900 / 843,
  10001. bottom: 0.005
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(12, "feet"),
  10009. default: true
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(100, "kg"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/riggi/front.svg",
  10022. extra: 5787 / 5303
  10023. }
  10024. },
  10025. hyper: {
  10026. height: math.unit(6 * 5 / 3, "feet"),
  10027. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10028. name: "Hyper",
  10029. image: {
  10030. source: "./media/characters/riggi/hyper.svg",
  10031. extra: 3595 / 3485
  10032. }
  10033. },
  10034. },
  10035. [
  10036. {
  10037. name: "Small Macro",
  10038. height: math.unit(50, "feet")
  10039. },
  10040. {
  10041. name: "Default",
  10042. height: math.unit(200, "feet"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Loom",
  10047. height: math.unit(10000, "feet")
  10048. },
  10049. {
  10050. name: "Cruising Altitude",
  10051. height: math.unit(30000, "feet")
  10052. },
  10053. {
  10054. name: "Megamacro",
  10055. height: math.unit(100, "miles")
  10056. },
  10057. {
  10058. name: "Continent Sized",
  10059. height: math.unit(2800, "miles")
  10060. },
  10061. {
  10062. name: "Earth Sized",
  10063. height: math.unit(8000, "miles")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(250, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/alexi/front.svg",
  10076. extra: 3483 / 3291,
  10077. bottom: 0.04
  10078. }
  10079. },
  10080. back: {
  10081. height: math.unit(6, "feet"),
  10082. weight: math.unit(250, "lb"),
  10083. name: "Back",
  10084. image: {
  10085. source: "./media/characters/alexi/back.svg",
  10086. extra: 3533 / 3356,
  10087. bottom: 0.021
  10088. }
  10089. },
  10090. frontTransforming: {
  10091. height: math.unit(8.58, "feet"),
  10092. weight: math.unit(1300, "lb"),
  10093. name: "Transforming",
  10094. image: {
  10095. source: "./media/characters/alexi/front-transforming.svg",
  10096. extra: 437 / 409,
  10097. bottom: 19 / 458.66
  10098. }
  10099. },
  10100. frontTransformed: {
  10101. height: math.unit(12.5, "feet"),
  10102. weight: math.unit(4000, "lb"),
  10103. name: "Transformed",
  10104. image: {
  10105. source: "./media/characters/alexi/front-transformed.svg",
  10106. extra: 639 / 614,
  10107. bottom: 30.55 / 671
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Normal",
  10114. height: math.unit(3, "meters"),
  10115. default: true
  10116. },
  10117. {
  10118. name: "Minimacro",
  10119. height: math.unit(30, "meters")
  10120. },
  10121. {
  10122. name: "Macro",
  10123. height: math.unit(500, "meters")
  10124. },
  10125. {
  10126. name: "Megamacro",
  10127. height: math.unit(9000, "km")
  10128. },
  10129. {
  10130. name: "Teramacro",
  10131. height: math.unit(384000, "km")
  10132. },
  10133. ]
  10134. ))
  10135. characterMakers.push(() => makeCharacter(
  10136. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10137. {
  10138. front: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(150, "lb"),
  10141. name: "Front",
  10142. image: {
  10143. source: "./media/characters/kayroo/front.svg",
  10144. extra: 1153 / 1038,
  10145. bottom: 0.06
  10146. }
  10147. },
  10148. foot: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(150, "lb"),
  10151. name: "Foot",
  10152. image: {
  10153. source: "./media/characters/kayroo/foot.svg"
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(8, "feet"),
  10161. default: true
  10162. },
  10163. {
  10164. name: "Minimacro",
  10165. height: math.unit(250, "feet")
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(2800, "feet")
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(5200, "feet")
  10174. },
  10175. {
  10176. name: "Gigamacro",
  10177. height: math.unit(27000, "feet")
  10178. },
  10179. {
  10180. name: "Omega",
  10181. height: math.unit(45000, "feet")
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(18, "feet"),
  10190. weight: math.unit(5800, "lb"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/rhys/front.svg",
  10194. extra: 3386 / 3090,
  10195. bottom: 0.07
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(18, "feet"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Working Size",
  10207. height: math.unit(200, "feet")
  10208. },
  10209. {
  10210. name: "Demolition Size",
  10211. height: math.unit(2000, "feet")
  10212. },
  10213. {
  10214. name: "Maximum Licensed Size",
  10215. height: math.unit(5, "miles")
  10216. },
  10217. {
  10218. name: "Maximum Observed Size",
  10219. height: math.unit(10, "yottameters")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10225. {
  10226. front: {
  10227. height: math.unit(6, "feet"),
  10228. weight: math.unit(250, "lb"),
  10229. name: "Front",
  10230. image: {
  10231. source: "./media/characters/toto/front.svg",
  10232. extra: 527 / 479,
  10233. bottom: 0.05
  10234. }
  10235. },
  10236. },
  10237. [
  10238. {
  10239. name: "Micro",
  10240. height: math.unit(3, "feet")
  10241. },
  10242. {
  10243. name: "Normal",
  10244. height: math.unit(10, "feet")
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(150, "feet"),
  10249. default: true
  10250. },
  10251. {
  10252. name: "Megamacro",
  10253. height: math.unit(1200, "feet")
  10254. },
  10255. ]
  10256. ))
  10257. characterMakers.push(() => makeCharacter(
  10258. { name: "King", species: ["lion"], tags: ["anthro"] },
  10259. {
  10260. back: {
  10261. height: math.unit(6, "feet"),
  10262. weight: math.unit(150, "lb"),
  10263. name: "Back",
  10264. image: {
  10265. source: "./media/characters/king/back.svg"
  10266. }
  10267. },
  10268. },
  10269. [
  10270. {
  10271. name: "Micro",
  10272. height: math.unit(2, "inches")
  10273. },
  10274. {
  10275. name: "Normal",
  10276. height: math.unit(8, "feet")
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(200, "feet"),
  10281. default: true
  10282. },
  10283. {
  10284. name: "Megamacro",
  10285. height: math.unit(50, "miles")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10291. {
  10292. anthro: {
  10293. height: math.unit(6 + 5 / 12, "feet"),
  10294. weight: math.unit(280, "lb"),
  10295. name: "Anthro",
  10296. image: {
  10297. source: "./media/characters/cordite/anthro.svg",
  10298. extra: 1986 / 1905,
  10299. bottom: 0.025
  10300. }
  10301. },
  10302. feral: {
  10303. height: math.unit(2, "feet"),
  10304. weight: math.unit(90, "lb"),
  10305. name: "Feral",
  10306. image: {
  10307. source: "./media/characters/cordite/feral.svg",
  10308. extra: 1260 / 755,
  10309. bottom: 0.05
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Normal",
  10316. height: math.unit(6 + 5 / 12, "feet"),
  10317. default: true
  10318. },
  10319. ]
  10320. ))
  10321. characterMakers.push(() => makeCharacter(
  10322. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10323. {
  10324. front: {
  10325. height: math.unit(6, "feet"),
  10326. weight: math.unit(150, "lb"),
  10327. name: "Front",
  10328. image: {
  10329. source: "./media/characters/pianostrong/front.svg",
  10330. extra: 6577 / 6254,
  10331. bottom: 0.02
  10332. }
  10333. },
  10334. side: {
  10335. height: math.unit(6, "feet"),
  10336. weight: math.unit(150, "lb"),
  10337. name: "Side",
  10338. image: {
  10339. source: "./media/characters/pianostrong/side.svg",
  10340. extra: 6106 / 5730
  10341. }
  10342. },
  10343. back: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(150, "lb"),
  10346. name: "Back",
  10347. image: {
  10348. source: "./media/characters/pianostrong/back.svg",
  10349. extra: 6085 / 5733,
  10350. bottom: 0.01
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Macro",
  10357. height: math.unit(100, "feet")
  10358. },
  10359. {
  10360. name: "Macro+",
  10361. height: math.unit(300, "feet"),
  10362. default: true
  10363. },
  10364. {
  10365. name: "Macro++",
  10366. height: math.unit(1000, "feet")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(150, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/kona/front.svg",
  10379. extra: 2960 / 2629,
  10380. bottom: 0.005
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(11 + 8 / 12, "feet")
  10388. },
  10389. {
  10390. name: "Macro",
  10391. height: math.unit(850, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Macro+",
  10396. height: math.unit(1.5, "km"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Megamacro",
  10401. height: math.unit(80, "miles")
  10402. },
  10403. {
  10404. name: "Gigamacro",
  10405. height: math.unit(3500, "miles")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10411. {
  10412. side: {
  10413. height: math.unit(1.9, "meters"),
  10414. weight: math.unit(326, "kg"),
  10415. name: "Side",
  10416. image: {
  10417. source: "./media/characters/levi/side.svg",
  10418. extra: 1704 / 1334,
  10419. bottom: 0.02
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(1.9, "meters"),
  10427. default: true
  10428. },
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(20, "meters")
  10432. },
  10433. {
  10434. name: "Macro+",
  10435. height: math.unit(200, "meters")
  10436. },
  10437. {
  10438. name: "Megamacro",
  10439. height: math.unit(2, "km")
  10440. },
  10441. {
  10442. name: "Megamacro+",
  10443. height: math.unit(20, "km")
  10444. },
  10445. {
  10446. name: "Gigamacro",
  10447. height: math.unit(2500, "km")
  10448. },
  10449. {
  10450. name: "Gigamacro+",
  10451. height: math.unit(120000, "km")
  10452. },
  10453. {
  10454. name: "Teramacro",
  10455. height: math.unit(7.77e6, "km")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(6 + 4 / 12, "feet"),
  10464. weight: math.unit(188, "lb"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/bmc/front.svg",
  10468. extra: 1067 / 1022,
  10469. bottom: 0.047
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Human-sized",
  10476. height: math.unit(6 + 4 / 12, "feet")
  10477. },
  10478. {
  10479. name: "Small",
  10480. height: math.unit(250, "feet")
  10481. },
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(1250, "feet"),
  10485. default: true
  10486. },
  10487. {
  10488. name: "Good Day",
  10489. height: math.unit(88, "miles")
  10490. },
  10491. {
  10492. name: "Largest Measured Size",
  10493. height: math.unit(11.2e6, "lightyears")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(20, "feet"),
  10502. weight: math.unit(2016, "kg"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/sven-the-kaiju/front.svg",
  10506. extra: 1479 / 1449,
  10507. bottom: 0.05
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Fairy",
  10514. height: math.unit(6, "inches")
  10515. },
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(20, "feet"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Rampage",
  10523. height: math.unit(200, "feet")
  10524. },
  10525. {
  10526. name: "Archfey Forest Guardian",
  10527. height: math.unit(1, "mile")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(4, "meters"),
  10536. weight: math.unit(2, "tons"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/marik/front.svg",
  10540. extra: 1057 / 1003,
  10541. bottom: 0.08
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(4, "meters"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(20, "meters")
  10554. },
  10555. {
  10556. name: "Megamacro",
  10557. height: math.unit(50, "km")
  10558. },
  10559. {
  10560. name: "Gigamacro",
  10561. height: math.unit(100, "km")
  10562. },
  10563. {
  10564. name: "Alpha Macro",
  10565. height: math.unit(7.88e7, "yottameters")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(110, "lb"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/mel/front.svg",
  10578. extra: 736 / 617,
  10579. bottom: 0.017
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Pico",
  10586. height: math.unit(3, "pm")
  10587. },
  10588. {
  10589. name: "Nano",
  10590. height: math.unit(3, "nm")
  10591. },
  10592. {
  10593. name: "Micro",
  10594. height: math.unit(0.3, "mm"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Micro+",
  10599. height: math.unit(3, "mm")
  10600. },
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(5 + 10.5 / 12, "feet")
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10609. {
  10610. kaiju: {
  10611. height: math.unit(1.75, "meters"),
  10612. weight: math.unit(55, "kg"),
  10613. name: "Kaiju",
  10614. image: {
  10615. source: "./media/characters/lykonous/kaiju.svg",
  10616. extra: 1055 / 946,
  10617. bottom: 0.135
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(2.5, "meters"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Kaiju Dragon",
  10629. height: math.unit(60, "meters")
  10630. },
  10631. {
  10632. name: "Mega Kaiju",
  10633. height: math.unit(120, "km")
  10634. },
  10635. {
  10636. name: "Giga Kaiju",
  10637. height: math.unit(200, "megameters")
  10638. },
  10639. {
  10640. name: "Terra Kaiju",
  10641. height: math.unit(400, "gigameters")
  10642. },
  10643. {
  10644. name: "Kaiju Dragon God",
  10645. height: math.unit(13000, "exaparsecs")
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10651. {
  10652. front: {
  10653. height: math.unit(6, "feet"),
  10654. weight: math.unit(150, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/blü/front.svg",
  10658. extra: 1883 / 1564,
  10659. bottom: 0.031
  10660. }
  10661. },
  10662. },
  10663. [
  10664. {
  10665. name: "Normal",
  10666. height: math.unit(13, "feet"),
  10667. default: true
  10668. },
  10669. {
  10670. name: "Big Boi",
  10671. height: math.unit(150, "meters")
  10672. },
  10673. {
  10674. name: "Mini Stomper",
  10675. height: math.unit(300, "meters")
  10676. },
  10677. {
  10678. name: "Macro",
  10679. height: math.unit(1000, "meters")
  10680. },
  10681. {
  10682. name: "Megamacro",
  10683. height: math.unit(11000, "meters")
  10684. },
  10685. {
  10686. name: "Gigamacro",
  10687. height: math.unit(11000, "km")
  10688. },
  10689. {
  10690. name: "Teramacro",
  10691. height: math.unit(420000, "km")
  10692. },
  10693. {
  10694. name: "Examacro",
  10695. height: math.unit(120, "parsecs")
  10696. },
  10697. {
  10698. name: "God Tho",
  10699. height: math.unit(98000000000, "parsecs")
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10705. {
  10706. taurFront: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(200, "lb"),
  10709. name: "Taur (Front)",
  10710. image: {
  10711. source: "./media/characters/scales/taur-front.svg",
  10712. extra: 1,
  10713. bottom: 0.05
  10714. }
  10715. },
  10716. taurBack: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(200, "lb"),
  10719. name: "Taur (Back)",
  10720. image: {
  10721. source: "./media/characters/scales/taur-back.svg",
  10722. extra: 1,
  10723. bottom: 0.08
  10724. }
  10725. },
  10726. anthro: {
  10727. height: math.unit(6 * 7 / 12, "feet"),
  10728. weight: math.unit(100, "lb"),
  10729. name: "Anthro",
  10730. image: {
  10731. source: "./media/characters/scales/anthro.svg",
  10732. extra: 1,
  10733. bottom: 0.06
  10734. }
  10735. },
  10736. },
  10737. [
  10738. {
  10739. name: "Normal",
  10740. height: math.unit(12, "feet"),
  10741. default: true
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(150, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/koragos/front.svg",
  10754. extra: 841 / 794,
  10755. bottom: 0.035
  10756. }
  10757. },
  10758. back: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Back",
  10762. image: {
  10763. source: "./media/characters/koragos/back.svg",
  10764. extra: 841 / 810,
  10765. bottom: 0.022
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Normal",
  10772. height: math.unit(6 + 11 / 12, "feet"),
  10773. default: true
  10774. },
  10775. {
  10776. name: "Macro",
  10777. height: math.unit(490, "feet")
  10778. },
  10779. {
  10780. name: "Megamacro",
  10781. height: math.unit(10, "miles")
  10782. },
  10783. {
  10784. name: "Gigamacro",
  10785. height: math.unit(50, "miles")
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(250, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/xylrem/front.svg",
  10798. extra: 3323 / 3050,
  10799. bottom: 0.065
  10800. }
  10801. },
  10802. },
  10803. [
  10804. {
  10805. name: "Micro",
  10806. height: math.unit(4, "feet")
  10807. },
  10808. {
  10809. name: "Normal",
  10810. height: math.unit(16, "feet"),
  10811. default: true
  10812. },
  10813. {
  10814. name: "Macro",
  10815. height: math.unit(2720, "feet")
  10816. },
  10817. {
  10818. name: "Megamacro",
  10819. height: math.unit(25000, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(8, "feet"),
  10828. weight: math.unit(250, "kg"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/ikideru/front.svg",
  10832. extra: 930 / 870,
  10833. bottom: 0.087
  10834. }
  10835. },
  10836. back: {
  10837. height: math.unit(8, "feet"),
  10838. weight: math.unit(250, "kg"),
  10839. name: "Back",
  10840. image: {
  10841. source: "./media/characters/ikideru/back.svg",
  10842. extra: 919 / 852,
  10843. bottom: 0.055
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Rare",
  10850. height: math.unit(8, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Playful Loom",
  10855. height: math.unit(80, "feet")
  10856. },
  10857. {
  10858. name: "City Leaner",
  10859. height: math.unit(230, "feet")
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(2500, "feet")
  10864. },
  10865. {
  10866. name: "Gigamacro",
  10867. height: math.unit(26400, "feet")
  10868. },
  10869. {
  10870. name: "Tectonic Shifter",
  10871. height: math.unit(1.7, "megameters")
  10872. },
  10873. {
  10874. name: "Planet Carer",
  10875. height: math.unit(21, "megameters")
  10876. },
  10877. {
  10878. name: "God",
  10879. height: math.unit(11157.22, "parsecs")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(6, "feet"),
  10888. weight: math.unit(120, "lb"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/neo/front.svg"
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Micro",
  10898. height: math.unit(2, "inches"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Human Size",
  10903. height: math.unit(5 + 8 / 12, "feet")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(13 + 10 / 12, "feet"),
  10912. weight: math.unit(5320, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/chauncey-chantz/front.svg",
  10916. extra: 1587 / 1435,
  10917. bottom: 0.02
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Normal",
  10924. height: math.unit(13 + 10 / 12, "feet"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(45, "feet")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(250, "miles")
  10934. },
  10935. {
  10936. name: "Planetary",
  10937. height: math.unit(10000, "miles")
  10938. },
  10939. {
  10940. name: "Galactic",
  10941. height: math.unit(40000, "parsecs")
  10942. },
  10943. {
  10944. name: "Universal",
  10945. height: math.unit(1, "yottameter")
  10946. },
  10947. ]
  10948. ))
  10949. characterMakers.push(() => makeCharacter(
  10950. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10951. {
  10952. front: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/epifox/front.svg",
  10958. extra: 1,
  10959. bottom: 0.075
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Micro",
  10966. height: math.unit(6, "inches")
  10967. },
  10968. {
  10969. name: "Normal",
  10970. height: math.unit(12, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(3810, "feet")
  10976. },
  10977. {
  10978. name: "Megamacro",
  10979. height: math.unit(500, "miles")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(1.8796, "m"),
  10988. weight: math.unit(230, "lb"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/colin-t/front.svg",
  10992. extra: 1272 / 1193,
  10993. bottom: 0.07
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(0.571, "meters")
  11001. },
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(1.8796, "meters"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Tall",
  11009. height: math.unit(4, "meters")
  11010. },
  11011. {
  11012. name: "Macro",
  11013. height: math.unit(67.241, "meters")
  11014. },
  11015. {
  11016. name: "Megamacro",
  11017. height: math.unit(371.856, "meters")
  11018. },
  11019. {
  11020. name: "Planetary",
  11021. height: math.unit(12631.5689, "km")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(1.85, "meters"),
  11030. weight: math.unit(80, "kg"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/matvei/front.svg",
  11034. extra: 614 / 594,
  11035. bottom: 0.01
  11036. }
  11037. },
  11038. },
  11039. [
  11040. {
  11041. name: "Normal",
  11042. height: math.unit(1.85, "meters"),
  11043. default: true
  11044. },
  11045. ]
  11046. ))
  11047. characterMakers.push(() => makeCharacter(
  11048. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11049. {
  11050. front: {
  11051. height: math.unit(5 + 9 / 12, "feet"),
  11052. weight: math.unit(70, "lb"),
  11053. name: "Front",
  11054. image: {
  11055. source: "./media/characters/quincy/front.svg",
  11056. extra: 3041 / 2751
  11057. }
  11058. },
  11059. back: {
  11060. height: math.unit(5 + 9 / 12, "feet"),
  11061. weight: math.unit(70, "lb"),
  11062. name: "Back",
  11063. image: {
  11064. source: "./media/characters/quincy/back.svg",
  11065. extra: 3041 / 2751
  11066. }
  11067. },
  11068. flying: {
  11069. height: math.unit(5 + 4 / 12, "feet"),
  11070. weight: math.unit(70, "lb"),
  11071. name: "Flying",
  11072. image: {
  11073. source: "./media/characters/quincy/flying.svg",
  11074. extra: 1044 / 930
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Micro",
  11081. height: math.unit(3, "cm")
  11082. },
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(5 + 9 / 12, "feet")
  11086. },
  11087. {
  11088. name: "Macro",
  11089. height: math.unit(200, "meters"),
  11090. default: true
  11091. },
  11092. {
  11093. name: "Megamacro",
  11094. height: math.unit(1000, "meters")
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11100. {
  11101. front: {
  11102. height: math.unit(4 + 7 / 12, "feet"),
  11103. weight: math.unit(150, "lb"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/vanrel/front.svg",
  11107. extra: 1,
  11108. bottom: 0.02
  11109. }
  11110. },
  11111. elemental: {
  11112. height: math.unit(3, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Elemental",
  11115. image: {
  11116. source: "./media/characters/vanrel/elemental.svg",
  11117. extra: 192.3 / 162.8,
  11118. bottom: 1.79 / 194.17
  11119. }
  11120. },
  11121. side: {
  11122. height: math.unit(4 + 7 / 12, "feet"),
  11123. weight: math.unit(150, "lb"),
  11124. name: "Side",
  11125. image: {
  11126. source: "./media/characters/vanrel/side.svg",
  11127. extra: 1,
  11128. bottom: 0.025
  11129. }
  11130. },
  11131. tome: {
  11132. height: math.unit(1.35, "feet"),
  11133. weight: math.unit(10, "lb"),
  11134. name: "Vanrel's Tome",
  11135. rename: true,
  11136. image: {
  11137. source: "./media/characters/vanrel/tome.svg"
  11138. }
  11139. },
  11140. beans: {
  11141. height: math.unit(0.89, "feet"),
  11142. name: "Beans",
  11143. image: {
  11144. source: "./media/characters/vanrel/beans.svg"
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(4 + 7 / 12, "feet"),
  11152. default: true
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(7 + 5 / 12, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/kuiper-vanrel/front.svg",
  11165. extra: 1118 / 1068,
  11166. bottom: 0.09
  11167. }
  11168. },
  11169. foot: {
  11170. height: math.unit(0.55, "meters"),
  11171. name: "Foot",
  11172. image: {
  11173. source: "./media/characters/kuiper-vanrel/foot.svg",
  11174. }
  11175. },
  11176. battle: {
  11177. height: math.unit(6.824, "feet"),
  11178. weight: math.unit(150, "lb"),
  11179. name: "Battle",
  11180. image: {
  11181. source: "./media/characters/kuiper-vanrel/battle.svg",
  11182. extra: 1466 / 1327,
  11183. bottom: 29 / 1492.5
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Normal",
  11190. height: math.unit(7 + 5 / 12, "feet"),
  11191. default: true
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11197. {
  11198. front: {
  11199. height: math.unit(8 + 5 / 12, "feet"),
  11200. weight: math.unit(150, "lb"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/keset-vanrel/front.svg",
  11204. extra: 1150 / 1084,
  11205. bottom: 0.05
  11206. }
  11207. },
  11208. hand: {
  11209. height: math.unit(0.6, "meters"),
  11210. name: "Hand",
  11211. image: {
  11212. source: "./media/characters/keset-vanrel/hand.svg"
  11213. }
  11214. },
  11215. foot: {
  11216. height: math.unit(0.94978, "meters"),
  11217. name: "Foot",
  11218. image: {
  11219. source: "./media/characters/keset-vanrel/foot.svg"
  11220. }
  11221. },
  11222. battle: {
  11223. height: math.unit(7.408, "feet"),
  11224. weight: math.unit(150, "lb"),
  11225. name: "Battle",
  11226. image: {
  11227. source: "./media/characters/keset-vanrel/battle.svg",
  11228. extra: 1890 / 1386,
  11229. bottom: 73.28 / 1970
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(8 + 5 / 12, "feet"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11243. {
  11244. front: {
  11245. height: math.unit(6, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Front",
  11248. image: {
  11249. source: "./media/characters/neos/front.svg",
  11250. extra: 1696 / 992,
  11251. bottom: 0.14
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(54, "cm"),
  11259. default: true
  11260. },
  11261. {
  11262. name: "Macro",
  11263. height: math.unit(100, "m")
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(10, "km")
  11268. },
  11269. {
  11270. name: "Megamacro+",
  11271. height: math.unit(100, "km")
  11272. },
  11273. {
  11274. name: "Gigamacro",
  11275. height: math.unit(100, "Mm")
  11276. },
  11277. {
  11278. name: "Teramacro",
  11279. height: math.unit(100, "Gm")
  11280. },
  11281. {
  11282. name: "Examacro",
  11283. height: math.unit(100, "Em")
  11284. },
  11285. {
  11286. name: "Godly",
  11287. height: math.unit(10000, "Ym")
  11288. },
  11289. {
  11290. name: "Beyond Godly",
  11291. height: math.unit(25, "multiverses")
  11292. },
  11293. ]
  11294. ))
  11295. characterMakers.push(() => makeCharacter(
  11296. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11297. {
  11298. feminine: {
  11299. height: math.unit(5, "feet"),
  11300. weight: math.unit(100, "lb"),
  11301. name: "Feminine",
  11302. image: {
  11303. source: "./media/characters/sammy-mouse/feminine.svg",
  11304. extra: 2526 / 2425,
  11305. bottom: 0.123
  11306. }
  11307. },
  11308. masculine: {
  11309. height: math.unit(5, "feet"),
  11310. weight: math.unit(100, "lb"),
  11311. name: "Masculine",
  11312. image: {
  11313. source: "./media/characters/sammy-mouse/masculine.svg",
  11314. extra: 2526 / 2425,
  11315. bottom: 0.123
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Micro",
  11322. height: math.unit(5, "inches")
  11323. },
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(5, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro",
  11331. height: math.unit(60, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(4, "feet"),
  11340. weight: math.unit(50, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/kole/front.svg",
  11344. extra: 1423 / 1303,
  11345. bottom: 0.025
  11346. }
  11347. },
  11348. back: {
  11349. height: math.unit(4, "feet"),
  11350. weight: math.unit(50, "lb"),
  11351. name: "Back",
  11352. image: {
  11353. source: "./media/characters/kole/back.svg",
  11354. extra: 1426 / 1280,
  11355. bottom: 0.02
  11356. }
  11357. },
  11358. },
  11359. [
  11360. {
  11361. name: "Normal",
  11362. height: math.unit(4, "feet"),
  11363. default: true
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(2 + 6 / 12, "feet"),
  11372. weight: math.unit(20, "lb"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/rufran/front.svg",
  11376. extra: 2041 / 1839,
  11377. bottom: 0.055
  11378. }
  11379. },
  11380. back: {
  11381. height: math.unit(2 + 6 / 12, "feet"),
  11382. weight: math.unit(20, "lb"),
  11383. name: "Back",
  11384. image: {
  11385. source: "./media/characters/rufran/back.svg",
  11386. extra: 2054 / 1839,
  11387. bottom: 0.01
  11388. }
  11389. },
  11390. hand: {
  11391. height: math.unit(0.2166, "meters"),
  11392. name: "Hand",
  11393. image: {
  11394. source: "./media/characters/rufran/hand.svg"
  11395. }
  11396. },
  11397. foot: {
  11398. height: math.unit(0.185, "meters"),
  11399. name: "Foot",
  11400. image: {
  11401. source: "./media/characters/rufran/foot.svg"
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Micro",
  11408. height: math.unit(1, "inch")
  11409. },
  11410. {
  11411. name: "Normal",
  11412. height: math.unit(2 + 6 / 12, "feet"),
  11413. default: true
  11414. },
  11415. {
  11416. name: "Big",
  11417. height: math.unit(60, "feet")
  11418. },
  11419. {
  11420. name: "Macro",
  11421. height: math.unit(325, "feet")
  11422. },
  11423. ]
  11424. ))
  11425. characterMakers.push(() => makeCharacter(
  11426. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11427. {
  11428. front: {
  11429. height: math.unit(0.3, "meters"),
  11430. weight: math.unit(3.5, "kg"),
  11431. name: "Front",
  11432. image: {
  11433. source: "./media/characters/chip/front.svg",
  11434. extra: 748 / 674
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Micro",
  11441. height: math.unit(1, "inch"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11448. {
  11449. side: {
  11450. height: math.unit(2.3, "meters"),
  11451. weight: math.unit(3500, "lb"),
  11452. name: "Side",
  11453. image: {
  11454. source: "./media/characters/torvid/side.svg",
  11455. extra: 1972 / 722,
  11456. bottom: 0.035
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(2.3, "meters"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(2, "meters"),
  11473. weight: math.unit(150.5, "kg"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/susan/front.svg",
  11477. extra: 693 / 635,
  11478. bottom: 0.05
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(505, "miles"),
  11486. default: true
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(150, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/raindrops/front.svg",
  11499. extra: 2655 / 2461,
  11500. bottom: 49/2705
  11501. }
  11502. },
  11503. back: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(150, "lb"),
  11506. name: "Back",
  11507. image: {
  11508. source: "./media/characters/raindrops/back.svg",
  11509. extra: 2574 / 2400,
  11510. bottom: 65/2634
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Micro",
  11517. height: math.unit(6, "inches")
  11518. },
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(6 + 2 / 12, "feet")
  11522. },
  11523. {
  11524. name: "Macro",
  11525. height: math.unit(131, "feet"),
  11526. default: true
  11527. },
  11528. {
  11529. name: "Megamacro",
  11530. height: math.unit(15, "miles")
  11531. },
  11532. {
  11533. name: "Gigamacro",
  11534. height: math.unit(4000, "miles")
  11535. },
  11536. {
  11537. name: "Teramacro",
  11538. height: math.unit(315000, "miles")
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(2.794, "meters"),
  11547. weight: math.unit(325, "kg"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/tezwa/front.svg",
  11551. extra: 2083 / 1906,
  11552. bottom: 0.031
  11553. }
  11554. },
  11555. foot: {
  11556. height: math.unit(0.687, "meters"),
  11557. name: "Foot",
  11558. image: {
  11559. source: "./media/characters/tezwa/foot.svg"
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Normal",
  11566. height: math.unit(9 + 2 / 12, "feet"),
  11567. default: true
  11568. },
  11569. ]
  11570. ))
  11571. characterMakers.push(() => makeCharacter(
  11572. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11573. {
  11574. front: {
  11575. height: math.unit(58, "feet"),
  11576. weight: math.unit(89000, "lb"),
  11577. name: "Front",
  11578. image: {
  11579. source: "./media/characters/typhus/front.svg",
  11580. extra: 816 / 800,
  11581. bottom: 0.065
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(58, "feet"),
  11589. default: true
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11595. {
  11596. front: {
  11597. height: math.unit(12, "feet"),
  11598. weight: math.unit(6, "tonnes"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/lyra-von-wulf/front.svg",
  11602. extra: 1,
  11603. bottom: 0.10
  11604. }
  11605. },
  11606. frontMecha: {
  11607. height: math.unit(12, "feet"),
  11608. weight: math.unit(12, "tonnes"),
  11609. name: "Front (Mecha)",
  11610. image: {
  11611. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11612. extra: 1,
  11613. bottom: 0.042
  11614. }
  11615. },
  11616. maw: {
  11617. height: math.unit(2.2, "feet"),
  11618. name: "Maw",
  11619. image: {
  11620. source: "./media/characters/lyra-von-wulf/maw.svg"
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Normal",
  11627. height: math.unit(12, "feet"),
  11628. default: true
  11629. },
  11630. {
  11631. name: "Classic",
  11632. height: math.unit(50, "feet")
  11633. },
  11634. {
  11635. name: "Macro",
  11636. height: math.unit(500, "feet")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(1, "mile")
  11641. },
  11642. {
  11643. name: "Gigamacro",
  11644. height: math.unit(400, "miles")
  11645. },
  11646. {
  11647. name: "Teramacro",
  11648. height: math.unit(22000, "miles")
  11649. },
  11650. {
  11651. name: "Solarmacro",
  11652. height: math.unit(8600000, "miles")
  11653. },
  11654. {
  11655. name: "Galactic",
  11656. height: math.unit(1057000, "lightyears")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(6 + 10 / 12, "feet"),
  11665. weight: math.unit(150, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/dixon/front.svg",
  11669. extra: 3361 / 3209,
  11670. bottom: 0.01
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(6 + 10 / 12, "feet"),
  11678. default: true
  11679. },
  11680. {
  11681. name: "Big",
  11682. height: math.unit(12, "meters")
  11683. },
  11684. {
  11685. name: "Macro",
  11686. height: math.unit(500, "meters")
  11687. },
  11688. {
  11689. name: "Megamacro",
  11690. height: math.unit(2, "km")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(185, "cm"),
  11699. weight: math.unit(68, "kg"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/kauko/front.svg",
  11703. extra: 1455 / 1421,
  11704. bottom: 0.03
  11705. }
  11706. },
  11707. back: {
  11708. height: math.unit(185, "cm"),
  11709. weight: math.unit(68, "kg"),
  11710. name: "Back",
  11711. image: {
  11712. source: "./media/characters/kauko/back.svg",
  11713. extra: 1455 / 1421,
  11714. bottom: 0.004
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(185, "cm"),
  11722. default: true
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(150, "kg"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/varg/front.svg",
  11735. extra: 1108 / 1018,
  11736. bottom: 0.0375
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5, "meters")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(200, "meters")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(20, "kilometers")
  11752. },
  11753. {
  11754. name: "True Size",
  11755. height: math.unit(211, "km"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Gigamacro",
  11760. height: math.unit(1000, "km")
  11761. },
  11762. {
  11763. name: "Gigamacro+",
  11764. height: math.unit(8000, "km")
  11765. },
  11766. {
  11767. name: "Teramacro",
  11768. height: math.unit(1000000, "km")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(7 + 7 / 12, "feet"),
  11777. weight: math.unit(267, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/dayza/front.svg",
  11781. extra: 1262 / 1200,
  11782. bottom: 0.035
  11783. }
  11784. },
  11785. side: {
  11786. height: math.unit(7 + 7 / 12, "feet"),
  11787. weight: math.unit(267, "lb"),
  11788. name: "Side",
  11789. image: {
  11790. source: "./media/characters/dayza/side.svg",
  11791. extra: 1295 / 1245,
  11792. bottom: 0.05
  11793. }
  11794. },
  11795. back: {
  11796. height: math.unit(7 + 7 / 12, "feet"),
  11797. weight: math.unit(267, "lb"),
  11798. name: "Back",
  11799. image: {
  11800. source: "./media/characters/dayza/back.svg",
  11801. extra: 1241 / 1170
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(7 + 7 / 12, "feet"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(155, "feet")
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(6 + 5 / 12, "feet"),
  11822. weight: math.unit(160, "lb"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/xanthos/front.svg",
  11826. extra: 1,
  11827. bottom: 0.04
  11828. }
  11829. },
  11830. back: {
  11831. height: math.unit(6 + 5 / 12, "feet"),
  11832. weight: math.unit(160, "lb"),
  11833. name: "Back",
  11834. image: {
  11835. source: "./media/characters/xanthos/back.svg",
  11836. extra: 1,
  11837. bottom: 0.03
  11838. }
  11839. },
  11840. hand: {
  11841. height: math.unit(0.928, "feet"),
  11842. name: "Hand",
  11843. image: {
  11844. source: "./media/characters/xanthos/hand.svg"
  11845. }
  11846. },
  11847. foot: {
  11848. height: math.unit(1.286, "feet"),
  11849. name: "Foot",
  11850. image: {
  11851. source: "./media/characters/xanthos/foot.svg"
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(6 + 5 / 12, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Normal+",
  11863. height: math.unit(6, "meters")
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(40, "feet")
  11868. },
  11869. {
  11870. name: "Macro+",
  11871. height: math.unit(200, "meters")
  11872. },
  11873. {
  11874. name: "Megamacro",
  11875. height: math.unit(20, "km")
  11876. },
  11877. {
  11878. name: "Megamacro+",
  11879. height: math.unit(100, "km")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11885. {
  11886. front: {
  11887. height: math.unit(6 + 3 / 12, "feet"),
  11888. weight: math.unit(215, "lb"),
  11889. name: "Front",
  11890. image: {
  11891. source: "./media/characters/grynn/front.svg",
  11892. extra: 4627 / 4209,
  11893. bottom: 0.047
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(6, "inches")
  11901. },
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(6 + 3 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Big",
  11909. height: math.unit(104, "feet")
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(944, "feet")
  11914. },
  11915. {
  11916. name: "Macro+",
  11917. height: math.unit(9480, "feet")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(78752, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro+",
  11925. height: math.unit(630128, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro++",
  11929. height: math.unit(3150695, "feet")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(7 + 5 / 12, "feet"),
  11938. weight: math.unit(450, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/mocha-aura/front.svg",
  11942. extra: 1907 / 1817,
  11943. bottom: 0.04
  11944. }
  11945. },
  11946. back: {
  11947. height: math.unit(7 + 5 / 12, "feet"),
  11948. weight: math.unit(450, "lb"),
  11949. name: "Back",
  11950. image: {
  11951. source: "./media/characters/mocha-aura/back.svg",
  11952. extra: 1900 / 1825,
  11953. bottom: 0.045
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Nano",
  11960. height: math.unit(1, "nm")
  11961. },
  11962. {
  11963. name: "Megamicro",
  11964. height: math.unit(1, "mm")
  11965. },
  11966. {
  11967. name: "Micro",
  11968. height: math.unit(3, "inches")
  11969. },
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(7 + 5 / 12, "feet"),
  11973. default: true
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(30, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(3500, "feet")
  11982. },
  11983. {
  11984. name: "Teramacro",
  11985. height: math.unit(500000, "miles")
  11986. },
  11987. {
  11988. name: "Petamacro",
  11989. height: math.unit(50000000000000000, "parsecs")
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11995. {
  11996. front: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(150, "lb"),
  11999. name: "Front",
  12000. image: {
  12001. source: "./media/characters/ilisha-devya/front.svg",
  12002. extra: 1,
  12003. bottom: 0.175
  12004. }
  12005. },
  12006. back: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(150, "lb"),
  12009. name: "Back",
  12010. image: {
  12011. source: "./media/characters/ilisha-devya/back.svg",
  12012. extra: 1,
  12013. bottom: 0.015
  12014. }
  12015. },
  12016. },
  12017. [
  12018. {
  12019. name: "Macro",
  12020. height: math.unit(500, "feet"),
  12021. default: true
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(10, "miles")
  12026. },
  12027. {
  12028. name: "Gigamacro",
  12029. height: math.unit(100000, "miles")
  12030. },
  12031. {
  12032. name: "Examacro",
  12033. height: math.unit(1e9, "lightyears")
  12034. },
  12035. {
  12036. name: "Omniversal",
  12037. height: math.unit(1e33, "lightyears")
  12038. },
  12039. {
  12040. name: "Beyond Infinite",
  12041. height: math.unit(1e100, "lightyears")
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12047. {
  12048. Side: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(150, "lb"),
  12051. name: "Side",
  12052. image: {
  12053. source: "./media/characters/mira/side.svg",
  12054. extra: 900 / 799,
  12055. bottom: 0.02
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Human Size",
  12062. height: math.unit(6, "feet")
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(100, "feet"),
  12067. default: true
  12068. },
  12069. {
  12070. name: "Megamacro",
  12071. height: math.unit(10, "miles")
  12072. },
  12073. {
  12074. name: "Gigamacro",
  12075. height: math.unit(25000, "miles")
  12076. },
  12077. {
  12078. name: "Teramacro",
  12079. height: math.unit(300, "AU")
  12080. },
  12081. {
  12082. name: "Full Size",
  12083. height: math.unit(4.5e10, "lightyears")
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(6, "feet"),
  12092. weight: math.unit(150, "lb"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/holly/front.svg",
  12096. extra: 639 / 606
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(150, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/holly/back.svg",
  12105. extra: 623 / 598
  12106. }
  12107. },
  12108. frontWorking: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front (Working)",
  12112. image: {
  12113. source: "./media/characters/holly/front-working.svg",
  12114. extra: 607 / 577,
  12115. bottom: 0.048
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Normal",
  12122. height: math.unit(12 + 3 / 12, "feet"),
  12123. default: true
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/porter/front.svg",
  12136. extra: 1,
  12137. bottom: 0.01
  12138. }
  12139. },
  12140. frontRobes: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(150, "lb"),
  12143. name: "Front (Robes)",
  12144. image: {
  12145. source: "./media/characters/porter/front-robes.svg",
  12146. extra: 1.01,
  12147. bottom: 0.01
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(11 + 9 / 12, "feet"),
  12155. default: true
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12161. {
  12162. legendary: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(150, "lb"),
  12165. name: "Legendary",
  12166. image: {
  12167. source: "./media/characters/lucy/legendary.svg",
  12168. extra: 1355 / 1100,
  12169. bottom: 0.045
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Legendary",
  12176. height: math.unit(86882 * 2, "miles"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(150, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/drusilla/front.svg",
  12190. extra: 678 / 635,
  12191. bottom: 0.03
  12192. }
  12193. },
  12194. back: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/drusilla/back.svg",
  12200. extra: 678 / 635,
  12201. bottom: 0.005
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Macro",
  12208. height: math.unit(100, "feet")
  12209. },
  12210. {
  12211. name: "Canon Height",
  12212. height: math.unit(2000, "feet"),
  12213. default: true
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(6, "feet"),
  12222. weight: math.unit(180, "lb"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/renard-thatch/front.svg",
  12226. extra: 2411 / 2275,
  12227. bottom: 0.01
  12228. }
  12229. },
  12230. frontPosing: {
  12231. height: math.unit(6, "feet"),
  12232. weight: math.unit(180, "lb"),
  12233. name: "Front (Posing)",
  12234. image: {
  12235. source: "./media/characters/renard-thatch/front-posing.svg",
  12236. extra: 2381 / 2261,
  12237. bottom: 0.01
  12238. }
  12239. },
  12240. back: {
  12241. height: math.unit(6, "feet"),
  12242. weight: math.unit(180, "lb"),
  12243. name: "Back",
  12244. image: {
  12245. source: "./media/characters/renard-thatch/back.svg",
  12246. extra: 2428 / 2288
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Micro",
  12253. height: math.unit(3, "inches")
  12254. },
  12255. {
  12256. name: "Default",
  12257. height: math.unit(6, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(75, "feet")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(1450, "feet"),
  12271. weight: math.unit(1.21e6, "tons"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/sekvra/front.svg",
  12275. extra: 1,
  12276. bottom: 0.03
  12277. }
  12278. },
  12279. frontClothed: {
  12280. height: math.unit(1450, "feet"),
  12281. weight: math.unit(1.21e6, "tons"),
  12282. name: "Front (Clothed)",
  12283. image: {
  12284. source: "./media/characters/sekvra/front-clothed.svg",
  12285. extra: 1,
  12286. bottom: 0.03
  12287. }
  12288. },
  12289. side: {
  12290. height: math.unit(1450, "feet"),
  12291. weight: math.unit(1.21e6, "tons"),
  12292. name: "Side",
  12293. image: {
  12294. source: "./media/characters/sekvra/side.svg",
  12295. extra: 1,
  12296. bottom: 0.025
  12297. }
  12298. },
  12299. back: {
  12300. height: math.unit(1450, "feet"),
  12301. weight: math.unit(1.21e6, "tons"),
  12302. name: "Back",
  12303. image: {
  12304. source: "./media/characters/sekvra/back.svg",
  12305. extra: 1,
  12306. bottom: 0.005
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Macro",
  12313. height: math.unit(1450, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(15000, "feet")
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12324. {
  12325. front: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(150, "lb"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/carmine/front.svg",
  12331. extra: 1,
  12332. bottom: 0.035
  12333. }
  12334. },
  12335. frontArmor: {
  12336. height: math.unit(6, "feet"),
  12337. weight: math.unit(150, "lb"),
  12338. name: "Front (Armor)",
  12339. image: {
  12340. source: "./media/characters/carmine/front-armor.svg",
  12341. extra: 1,
  12342. bottom: 0.035
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Large",
  12349. height: math.unit(1, "mile")
  12350. },
  12351. {
  12352. name: "Huge",
  12353. height: math.unit(40, "miles"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Colossal",
  12358. height: math.unit(2500, "miles")
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(6, "feet"),
  12367. weight: math.unit(150, "lb"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/elyssia/front.svg",
  12371. extra: 2201 / 2035,
  12372. bottom: 0.05
  12373. }
  12374. },
  12375. frontClothed: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(150, "lb"),
  12378. name: "Front (Clothed)",
  12379. image: {
  12380. source: "./media/characters/elyssia/front-clothed.svg",
  12381. extra: 2201 / 2035,
  12382. bottom: 0.05
  12383. }
  12384. },
  12385. back: {
  12386. height: math.unit(6, "feet"),
  12387. weight: math.unit(150, "lb"),
  12388. name: "Back",
  12389. image: {
  12390. source: "./media/characters/elyssia/back.svg",
  12391. extra: 2201 / 2035,
  12392. bottom: 0.013
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Smaller",
  12399. height: math.unit(150, "feet")
  12400. },
  12401. {
  12402. name: "Standard",
  12403. height: math.unit(1400, "feet"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Distracted",
  12408. height: math.unit(15000, "feet")
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12414. {
  12415. front: {
  12416. height: math.unit(7 + 4 / 12, "feet"),
  12417. weight: math.unit(500, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/geno-maxwell/front.svg",
  12421. extra: 2207 / 2040,
  12422. bottom: 0.015
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Micro",
  12429. height: math.unit(3, "inches")
  12430. },
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(7 + 4 / 12, "feet"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Macro",
  12438. height: math.unit(220, "feet")
  12439. },
  12440. {
  12441. name: "Megamacro",
  12442. height: math.unit(11, "miles")
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(7 + 4 / 12, "feet"),
  12451. weight: math.unit(500, "lb"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/regena-maxwell/front.svg",
  12455. extra: 3115 / 2770,
  12456. bottom: 0.02
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(7 + 4 / 12, "feet"),
  12464. default: true
  12465. },
  12466. {
  12467. name: "Macro",
  12468. height: math.unit(220, "feet")
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(11, "miles")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12478. {
  12479. front: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Front",
  12483. image: {
  12484. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12485. extra: 860 / 690,
  12486. bottom: 0.03
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(1.7, "meters"),
  12494. default: true
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12500. {
  12501. front: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(150, "lb"),
  12504. name: "Front",
  12505. image: {
  12506. source: "./media/characters/quilly/front.svg",
  12507. extra: 890 / 776
  12508. }
  12509. },
  12510. },
  12511. [
  12512. {
  12513. name: "Gigamacro",
  12514. height: math.unit(404090, "miles"),
  12515. default: true
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(7 + 8 / 12, "feet"),
  12524. weight: math.unit(350, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/tempest/front.svg",
  12528. extra: 1175 / 1086,
  12529. bottom: 0.02
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Normal",
  12536. height: math.unit(7 + 8 / 12, "feet"),
  12537. default: true
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12543. {
  12544. side: {
  12545. height: math.unit(4 + 5 / 12, "feet"),
  12546. weight: math.unit(80, "lb"),
  12547. name: "Side",
  12548. image: {
  12549. source: "./media/characters/rodger/side.svg",
  12550. extra: 1235 / 1118
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Micro",
  12557. height: math.unit(1, "inch")
  12558. },
  12559. {
  12560. name: "Normal",
  12561. height: math.unit(4 + 5 / 12, "feet"),
  12562. default: true
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(120, "feet")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/danyel/front.svg",
  12579. extra: 1185 / 1123,
  12580. bottom: 0.05
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Shrunken",
  12587. height: math.unit(0.5, "mm")
  12588. },
  12589. {
  12590. name: "Micro",
  12591. height: math.unit(1, "mm"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Upsized",
  12596. height: math.unit(5 + 5 / 12, "feet")
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(5 + 6 / 12, "feet"),
  12605. weight: math.unit(200, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/vivian-bijoux/front.svg",
  12609. extra: 1,
  12610. bottom: 0.072
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(5 + 6 / 12, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Bad Dream",
  12622. height: math.unit(500, "feet")
  12623. },
  12624. {
  12625. name: "Nightmare",
  12626. height: math.unit(500, "miles")
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6 + 1 / 12, "feet"),
  12635. weight: math.unit(260, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/zeta/front.svg",
  12639. extra: 1968 / 1889,
  12640. bottom: 0.06
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(6 + 1 / 12, "feet"),
  12645. weight: math.unit(260, "lb"),
  12646. name: "Back",
  12647. image: {
  12648. source: "./media/characters/zeta/back.svg",
  12649. extra: 1944 / 1858,
  12650. bottom: 0.03
  12651. }
  12652. },
  12653. hand: {
  12654. height: math.unit(1.112, "feet"),
  12655. name: "Hand",
  12656. image: {
  12657. source: "./media/characters/zeta/hand.svg"
  12658. }
  12659. },
  12660. foot: {
  12661. height: math.unit(1.48, "feet"),
  12662. name: "Foot",
  12663. image: {
  12664. source: "./media/characters/zeta/foot.svg"
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Micro",
  12671. height: math.unit(6, "inches")
  12672. },
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(6 + 1 / 12, "feet"),
  12676. default: true
  12677. },
  12678. {
  12679. name: "Macro",
  12680. height: math.unit(20, "feet")
  12681. },
  12682. ]
  12683. ))
  12684. characterMakers.push(() => makeCharacter(
  12685. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12686. {
  12687. front: {
  12688. height: math.unit(6, "feet"),
  12689. weight: math.unit(150, "lb"),
  12690. name: "Front",
  12691. image: {
  12692. source: "./media/characters/jamie-larsen/front.svg",
  12693. extra: 962 / 933,
  12694. bottom: 0.02
  12695. }
  12696. },
  12697. back: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(150, "lb"),
  12700. name: "Back",
  12701. image: {
  12702. source: "./media/characters/jamie-larsen/back.svg",
  12703. extra: 997 / 946
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Macro",
  12710. height: math.unit(28 + 7 / 12, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Macro+",
  12715. height: math.unit(180, "feet")
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(10, "miles")
  12720. },
  12721. {
  12722. name: "Gigamacro",
  12723. height: math.unit(200000, "miles")
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(6, "feet"),
  12732. weight: math.unit(120, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/vance/front.svg",
  12736. extra: 1980 / 1890,
  12737. bottom: 0.09
  12738. }
  12739. },
  12740. back: {
  12741. height: math.unit(6, "feet"),
  12742. weight: math.unit(120, "lb"),
  12743. name: "Back",
  12744. image: {
  12745. source: "./media/characters/vance/back.svg",
  12746. extra: 2081 / 1994,
  12747. bottom: 0.014
  12748. }
  12749. },
  12750. hand: {
  12751. height: math.unit(0.88, "feet"),
  12752. name: "Hand",
  12753. image: {
  12754. source: "./media/characters/vance/hand.svg"
  12755. }
  12756. },
  12757. foot: {
  12758. height: math.unit(0.64, "feet"),
  12759. name: "Foot",
  12760. image: {
  12761. source: "./media/characters/vance/foot.svg"
  12762. }
  12763. },
  12764. },
  12765. [
  12766. {
  12767. name: "Small",
  12768. height: math.unit(90, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Macro",
  12773. height: math.unit(100, "meters")
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(15, "miles")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(180, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/xochitl/front.svg",
  12790. extra: 2297 / 2261,
  12791. bottom: 0.065
  12792. }
  12793. },
  12794. back: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(180, "lb"),
  12797. name: "Back",
  12798. image: {
  12799. source: "./media/characters/xochitl/back.svg",
  12800. extra: 2386 / 2354,
  12801. bottom: 0.01
  12802. }
  12803. },
  12804. foot: {
  12805. height: math.unit(6 / 5 * 1.15, "feet"),
  12806. weight: math.unit(150, "lb"),
  12807. name: "Foot",
  12808. image: {
  12809. source: "./media/characters/xochitl/foot.svg"
  12810. }
  12811. },
  12812. },
  12813. [
  12814. {
  12815. name: "Macro",
  12816. height: math.unit(80, "feet")
  12817. },
  12818. {
  12819. name: "Macro+",
  12820. height: math.unit(400, "feet"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Gigamacro",
  12825. height: math.unit(80000, "miles")
  12826. },
  12827. {
  12828. name: "Gigamacro+",
  12829. height: math.unit(400000, "miles")
  12830. },
  12831. {
  12832. name: "Teramacro",
  12833. height: math.unit(300, "AU")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(6, "feet"),
  12842. weight: math.unit(150, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/vincent/front.svg",
  12846. extra: 1130 / 1080,
  12847. bottom: 0.055
  12848. }
  12849. },
  12850. beak: {
  12851. height: math.unit(6 * 0.1, "feet"),
  12852. name: "Beak",
  12853. image: {
  12854. source: "./media/characters/vincent/beak.svg"
  12855. }
  12856. },
  12857. hand: {
  12858. height: math.unit(6 * 0.85, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Hand",
  12861. image: {
  12862. source: "./media/characters/vincent/hand.svg"
  12863. }
  12864. },
  12865. foot: {
  12866. height: math.unit(6 * 0.19, "feet"),
  12867. weight: math.unit(150, "lb"),
  12868. name: "Foot",
  12869. image: {
  12870. source: "./media/characters/vincent/foot.svg"
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Base",
  12877. height: math.unit(6 + 5 / 12, "feet"),
  12878. default: true
  12879. },
  12880. {
  12881. name: "Macro",
  12882. height: math.unit(300, "feet")
  12883. },
  12884. {
  12885. name: "Megamacro",
  12886. height: math.unit(2, "miles")
  12887. },
  12888. {
  12889. name: "Gigamacro",
  12890. height: math.unit(1000, "miles")
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12896. {
  12897. front: {
  12898. height: math.unit(6 + 2 / 12, "feet"),
  12899. weight: math.unit(265, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/jay/front.svg",
  12903. extra: 1510 / 1430,
  12904. bottom: 0.042
  12905. }
  12906. },
  12907. back: {
  12908. height: math.unit(6 + 2 / 12, "feet"),
  12909. weight: math.unit(265, "lb"),
  12910. name: "Back",
  12911. image: {
  12912. source: "./media/characters/jay/back.svg",
  12913. extra: 1510 / 1430,
  12914. bottom: 0.025
  12915. }
  12916. },
  12917. clothed: {
  12918. height: math.unit(6 + 2 / 12, "feet"),
  12919. weight: math.unit(265, "lb"),
  12920. name: "Front (Clothed)",
  12921. image: {
  12922. source: "./media/characters/jay/clothed.svg",
  12923. extra: 744 / 699,
  12924. bottom: 0.043
  12925. }
  12926. },
  12927. head: {
  12928. height: math.unit(1.772, "feet"),
  12929. name: "Head",
  12930. image: {
  12931. source: "./media/characters/jay/head.svg"
  12932. }
  12933. },
  12934. sizeRay: {
  12935. height: math.unit(1.331, "feet"),
  12936. name: "Size Ray",
  12937. image: {
  12938. source: "./media/characters/jay/size-ray.svg"
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Micro",
  12945. height: math.unit(1, "inch")
  12946. },
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(6 + 2 / 12, "feet"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(1, "mile")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(100, "miles")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(2, "meters"),
  12967. weight: math.unit(500, "kg"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/coatl/front.svg",
  12971. extra: 3948 / 3500,
  12972. bottom: 0.082
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(4, "meters")
  12980. },
  12981. {
  12982. name: "Macro",
  12983. height: math.unit(100, "meters"),
  12984. default: true
  12985. },
  12986. {
  12987. name: "Macro+",
  12988. height: math.unit(300, "meters")
  12989. },
  12990. {
  12991. name: "Megamacro",
  12992. height: math.unit(3, "gigameters")
  12993. },
  12994. {
  12995. name: "Megamacro+",
  12996. height: math.unit(300, "terameters")
  12997. },
  12998. {
  12999. name: "Megamacro++",
  13000. height: math.unit(3, "lightyears")
  13001. },
  13002. ]
  13003. ))
  13004. characterMakers.push(() => makeCharacter(
  13005. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13006. {
  13007. front: {
  13008. height: math.unit(6, "feet"),
  13009. weight: math.unit(50, "kg"),
  13010. name: "front",
  13011. image: {
  13012. source: "./media/characters/shiroryu/front.svg",
  13013. extra: 1990 / 1935
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Mortal Mingling",
  13020. height: math.unit(3, "meters")
  13021. },
  13022. {
  13023. name: "Kaiju-ish",
  13024. height: math.unit(250, "meters")
  13025. },
  13026. {
  13027. name: "Somewhat Godly",
  13028. height: math.unit(400, "km"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Planetary",
  13033. height: math.unit(300, "megameters")
  13034. },
  13035. {
  13036. name: "Galaxy-dwarfing",
  13037. height: math.unit(450, "kiloparsecs")
  13038. },
  13039. {
  13040. name: "Universe Eater",
  13041. height: math.unit(150, "gigaparsecs")
  13042. },
  13043. {
  13044. name: "Almost Immeasurable",
  13045. height: math.unit(1.3e266, "yottaparsecs")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/umeko/front.svg",
  13058. extra: 1,
  13059. bottom: 0.019
  13060. }
  13061. },
  13062. frontArmored: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(150, "lb"),
  13065. name: "Front (Armored)",
  13066. image: {
  13067. source: "./media/characters/umeko/front-armored.svg",
  13068. extra: 1,
  13069. bottom: 0.021
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Macro",
  13076. height: math.unit(220, "feet"),
  13077. default: true
  13078. },
  13079. {
  13080. name: "Guardian Dragon",
  13081. height: math.unit(50, "miles")
  13082. },
  13083. {
  13084. name: "Cosmic",
  13085. height: math.unit(800000, "miles")
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/cassidy/front.svg",
  13098. extra: 1,
  13099. bottom: 0.043
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Canon Height",
  13106. height: math.unit(120, "feet"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Macro+",
  13111. height: math.unit(400, "feet")
  13112. },
  13113. {
  13114. name: "Macro++",
  13115. height: math.unit(4000, "feet")
  13116. },
  13117. {
  13118. name: "Megamacro",
  13119. height: math.unit(3, "miles")
  13120. },
  13121. ]
  13122. ))
  13123. characterMakers.push(() => makeCharacter(
  13124. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13125. {
  13126. front: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(150, "lb"),
  13129. name: "Front",
  13130. image: {
  13131. source: "./media/characters/isaac/front.svg",
  13132. extra: 896 / 815,
  13133. bottom: 0.11
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Human Size",
  13140. height: math.unit(8, "feet"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Macro",
  13145. height: math.unit(400, "feet")
  13146. },
  13147. {
  13148. name: "Megamacro",
  13149. height: math.unit(50, "miles")
  13150. },
  13151. {
  13152. name: "Canon Height",
  13153. height: math.unit(200, "AU")
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13159. {
  13160. front: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(72, "kg"),
  13163. name: "Front",
  13164. image: {
  13165. source: "./media/characters/sleekit/front.svg",
  13166. extra: 4693 / 4487,
  13167. bottom: 0.012
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Minimum Height",
  13174. height: math.unit(10, "meters")
  13175. },
  13176. {
  13177. name: "Smaller",
  13178. height: math.unit(25, "meters")
  13179. },
  13180. {
  13181. name: "Larger",
  13182. height: math.unit(38, "meters"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Maximum height",
  13187. height: math.unit(100, "meters")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/nillia/front.svg",
  13200. extra: 2195 / 2037,
  13201. bottom: 0.005
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/nillia/back.svg",
  13210. extra: 2195 / 2037,
  13211. bottom: 0.005
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Canon Height",
  13218. height: math.unit(489, "feet"),
  13219. default: true
  13220. }
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/mesmyriza/front.svg",
  13232. extra: 2067 / 1784,
  13233. bottom: 0.035
  13234. }
  13235. },
  13236. foot: {
  13237. height: math.unit(6 / (250 / 35), "feet"),
  13238. name: "Foot",
  13239. image: {
  13240. source: "./media/characters/mesmyriza/foot.svg"
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(457, "meters"),
  13248. default: true
  13249. },
  13250. {
  13251. name: "Megamacro",
  13252. height: math.unit(8, "megameters")
  13253. },
  13254. ]
  13255. ))
  13256. characterMakers.push(() => makeCharacter(
  13257. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13258. {
  13259. front: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(250, "lb"),
  13262. name: "Front",
  13263. image: {
  13264. source: "./media/characters/saudade/front.svg",
  13265. extra: 1172 / 1139,
  13266. bottom: 0.035
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Micro",
  13273. height: math.unit(3, "inches")
  13274. },
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(6, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Macro",
  13282. height: math.unit(50, "feet")
  13283. },
  13284. {
  13285. name: "Megamacro",
  13286. height: math.unit(2800, "feet")
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(5 + 4 / 12, "feet"),
  13295. weight: math.unit(100, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/keireer/front.svg",
  13299. extra: 716 / 666,
  13300. bottom: 0.05
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(5 + 4 / 12, "feet"),
  13308. default: true
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(90, "kg"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/mirja/front.svg",
  13321. extra: 1789 / 1683,
  13322. bottom: 0.05
  13323. }
  13324. },
  13325. frontDressed: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(90, "lb"),
  13328. name: "Front (Dressed)",
  13329. image: {
  13330. source: "./media/characters/mirja/front-dressed.svg",
  13331. extra: 1789 / 1683,
  13332. bottom: 0.05
  13333. }
  13334. },
  13335. back: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(90, "lb"),
  13338. name: "Back",
  13339. image: {
  13340. source: "./media/characters/mirja/back.svg",
  13341. extra: 953 / 917,
  13342. bottom: 0.017
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "\"Incognito\"",
  13349. height: math.unit(3, "meters")
  13350. },
  13351. {
  13352. name: "Strolling Size",
  13353. height: math.unit(15, "km")
  13354. },
  13355. {
  13356. name: "Larger Strolling Size",
  13357. height: math.unit(400, "km")
  13358. },
  13359. {
  13360. name: "Preferred Size",
  13361. height: math.unit(5000, "km")
  13362. },
  13363. {
  13364. name: "True Size",
  13365. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13366. default: true
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(15, "feet"),
  13375. weight: math.unit(880, "kg"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/nightraver/front.svg",
  13379. extra: 2444 / 2160,
  13380. bottom: 0.027
  13381. }
  13382. },
  13383. back: {
  13384. height: math.unit(15, "feet"),
  13385. weight: math.unit(880, "kg"),
  13386. name: "Back",
  13387. image: {
  13388. source: "./media/characters/nightraver/back.svg",
  13389. extra: 2309 / 2180,
  13390. bottom: 0.005
  13391. }
  13392. },
  13393. sole: {
  13394. height: math.unit(2.878, "feet"),
  13395. name: "Sole",
  13396. image: {
  13397. source: "./media/characters/nightraver/sole.svg"
  13398. }
  13399. },
  13400. foot: {
  13401. height: math.unit(2.285, "feet"),
  13402. name: "Foot",
  13403. image: {
  13404. source: "./media/characters/nightraver/foot.svg"
  13405. }
  13406. },
  13407. maw: {
  13408. height: math.unit(2.67, "feet"),
  13409. name: "Maw",
  13410. image: {
  13411. source: "./media/characters/nightraver/maw.svg"
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Micro",
  13418. height: math.unit(1, "cm")
  13419. },
  13420. {
  13421. name: "Normal",
  13422. height: math.unit(15, "feet"),
  13423. default: true
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(300, "feet")
  13428. },
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(300, "miles")
  13432. },
  13433. {
  13434. name: "Gigamacro",
  13435. height: math.unit(10000, "miles")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13441. {
  13442. side: {
  13443. height: math.unit(2, "inches"),
  13444. weight: math.unit(5, "grams"),
  13445. name: "Side",
  13446. image: {
  13447. source: "./media/characters/arc/side.svg"
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Micro",
  13454. height: math.unit(2, "inches"),
  13455. default: true
  13456. },
  13457. ]
  13458. ))
  13459. characterMakers.push(() => makeCharacter(
  13460. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13461. {
  13462. front: {
  13463. height: math.unit(1.1938, "meters"),
  13464. weight: math.unit(54, "kg"),
  13465. name: "Front",
  13466. image: {
  13467. source: "./media/characters/nebula-shahar/front.svg",
  13468. extra: 1642 / 1436,
  13469. bottom: 0.06
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Megamicro",
  13476. height: math.unit(0.3, "mm")
  13477. },
  13478. {
  13479. name: "Micro",
  13480. height: math.unit(3, "cm")
  13481. },
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(138, "cm"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(30, "m")
  13490. },
  13491. ]
  13492. ))
  13493. characterMakers.push(() => makeCharacter(
  13494. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13495. {
  13496. front: {
  13497. height: math.unit(5.24, "feet"),
  13498. weight: math.unit(150, "lb"),
  13499. name: "Front",
  13500. image: {
  13501. source: "./media/characters/shayla/front.svg",
  13502. extra: 1512 / 1414,
  13503. bottom: 0.01
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(5.24, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/shayla/back.svg",
  13512. extra: 1512 / 1414
  13513. }
  13514. },
  13515. hand: {
  13516. height: math.unit(0.7781496062992126, "feet"),
  13517. name: "Hand",
  13518. image: {
  13519. source: "./media/characters/shayla/hand.svg"
  13520. }
  13521. },
  13522. foot: {
  13523. height: math.unit(1.4206036745406823, "feet"),
  13524. name: "Foot",
  13525. image: {
  13526. source: "./media/characters/shayla/foot.svg"
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Micro",
  13533. height: math.unit(0.32, "feet")
  13534. },
  13535. {
  13536. name: "Normal",
  13537. height: math.unit(5.24, "feet"),
  13538. default: true
  13539. },
  13540. {
  13541. name: "Macro",
  13542. height: math.unit(492.12, "feet")
  13543. },
  13544. {
  13545. name: "Megamacro",
  13546. height: math.unit(186.41, "miles")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(2.2, "m"),
  13555. weight: math.unit(120, "kg"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/pia-jr/front.svg",
  13559. extra: 1000 / 970,
  13560. bottom: 0.035
  13561. }
  13562. },
  13563. hand: {
  13564. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13565. name: "Hand",
  13566. image: {
  13567. source: "./media/characters/pia-jr/hand.svg"
  13568. }
  13569. },
  13570. paw: {
  13571. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13572. name: "Paw",
  13573. image: {
  13574. source: "./media/characters/pia-jr/paw.svg"
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Micro",
  13581. height: math.unit(1.2, "cm")
  13582. },
  13583. {
  13584. name: "Normal",
  13585. height: math.unit(2.2, "m"),
  13586. default: true
  13587. },
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(180, "m")
  13591. },
  13592. {
  13593. name: "Megamacro",
  13594. height: math.unit(420, "km")
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(2, "m"),
  13603. weight: math.unit(115, "kg"),
  13604. name: "Front",
  13605. image: {
  13606. source: "./media/characters/pia-sr/front.svg",
  13607. extra: 760 / 730,
  13608. bottom: 0.015
  13609. }
  13610. },
  13611. back: {
  13612. height: math.unit(2, "m"),
  13613. weight: math.unit(115, "kg"),
  13614. name: "Back",
  13615. image: {
  13616. source: "./media/characters/pia-sr/back.svg",
  13617. extra: 760 / 730,
  13618. bottom: 0.01
  13619. }
  13620. },
  13621. hand: {
  13622. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13623. name: "Hand",
  13624. image: {
  13625. source: "./media/characters/pia-sr/hand.svg"
  13626. }
  13627. },
  13628. foot: {
  13629. height: math.unit(1.83, "feet"),
  13630. name: "Foot",
  13631. image: {
  13632. source: "./media/characters/pia-sr/foot.svg"
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Micro",
  13639. height: math.unit(88, "mm")
  13640. },
  13641. {
  13642. name: "Normal",
  13643. height: math.unit(2, "m"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Macro",
  13648. height: math.unit(200, "m")
  13649. },
  13650. {
  13651. name: "Megamacro",
  13652. height: math.unit(420, "km")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(8 + 2 / 12, "feet"),
  13661. weight: math.unit(300, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/kibibyte/front.svg",
  13665. extra: 2221 / 2098,
  13666. bottom: 0.04
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(8 + 2 / 12, "feet"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Socialable Macro",
  13678. height: math.unit(50, "feet")
  13679. },
  13680. {
  13681. name: "Macro",
  13682. height: math.unit(300, "feet")
  13683. },
  13684. {
  13685. name: "Megamacro",
  13686. height: math.unit(500, "miles")
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13692. {
  13693. front: {
  13694. height: math.unit(6, "feet"),
  13695. weight: math.unit(150, "lb"),
  13696. name: "Front",
  13697. image: {
  13698. source: "./media/characters/felix/front.svg",
  13699. extra: 762 / 722,
  13700. bottom: 0.02
  13701. }
  13702. },
  13703. frontClothed: {
  13704. height: math.unit(6, "feet"),
  13705. weight: math.unit(150, "lb"),
  13706. name: "Front (Clothed)",
  13707. image: {
  13708. source: "./media/characters/felix/front-clothed.svg",
  13709. extra: 762 / 722,
  13710. bottom: 0.02
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(6 + 8 / 12, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Macro",
  13722. height: math.unit(2600, "feet")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(450, "miles")
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(6 + 1 / 12, "feet"),
  13735. weight: math.unit(250, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/tobo/front.svg",
  13739. extra: 608 / 586,
  13740. bottom: 0.023
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(6 + 1 / 12, "feet"),
  13745. weight: math.unit(250, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/tobo/back.svg",
  13749. extra: 608 / 586
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Nano",
  13756. height: math.unit(2, "nm")
  13757. },
  13758. {
  13759. name: "Megamicro",
  13760. height: math.unit(0.1, "mm")
  13761. },
  13762. {
  13763. name: "Micro",
  13764. height: math.unit(1, "inch"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Human-sized",
  13769. height: math.unit(6 + 1 / 12, "feet")
  13770. },
  13771. {
  13772. name: "Macro",
  13773. height: math.unit(250, "feet")
  13774. },
  13775. {
  13776. name: "Megamacro",
  13777. height: math.unit(75, "miles")
  13778. },
  13779. {
  13780. name: "Texas-sized",
  13781. height: math.unit(750, "miles")
  13782. },
  13783. {
  13784. name: "Teramacro",
  13785. height: math.unit(50000, "miles")
  13786. },
  13787. ]
  13788. ))
  13789. characterMakers.push(() => makeCharacter(
  13790. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13791. {
  13792. front: {
  13793. height: math.unit(6, "feet"),
  13794. weight: math.unit(269, "lb"),
  13795. name: "Front",
  13796. image: {
  13797. source: "./media/characters/danny-kapowsky/front.svg",
  13798. extra: 766 / 736,
  13799. bottom: 0.044
  13800. }
  13801. },
  13802. back: {
  13803. height: math.unit(6, "feet"),
  13804. weight: math.unit(269, "lb"),
  13805. name: "Back",
  13806. image: {
  13807. source: "./media/characters/danny-kapowsky/back.svg",
  13808. extra: 797 / 760,
  13809. bottom: 0.025
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(150, "feet"),
  13817. default: true
  13818. },
  13819. {
  13820. name: "Macro+",
  13821. height: math.unit(200, "feet")
  13822. },
  13823. {
  13824. name: "Macro++",
  13825. height: math.unit(300, "feet")
  13826. },
  13827. {
  13828. name: "Macro+++",
  13829. height: math.unit(400, "feet")
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13835. {
  13836. side: {
  13837. height: math.unit(6, "feet"),
  13838. weight: math.unit(170, "lb"),
  13839. name: "Side",
  13840. image: {
  13841. source: "./media/characters/finn/side.svg",
  13842. extra: 1953 / 1807,
  13843. bottom: 0.057
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Megamacro",
  13850. height: math.unit(14445, "feet"),
  13851. default: true
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13857. {
  13858. front: {
  13859. height: math.unit(5 + 6 / 12, "feet"),
  13860. weight: math.unit(125, "lb"),
  13861. name: "Front",
  13862. image: {
  13863. source: "./media/characters/roy/front.svg",
  13864. extra: 1,
  13865. bottom: 0.11
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(3, "inches"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Normal",
  13877. height: math.unit(5 + 6 / 12, "feet")
  13878. },
  13879. {
  13880. name: "Lesser Macro",
  13881. height: math.unit(60, "feet")
  13882. },
  13883. {
  13884. name: "Greater Macro",
  13885. height: math.unit(120, "feet")
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(100, "lb"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/aevsivs/front.svg",
  13898. extra: 1,
  13899. bottom: 0.03
  13900. }
  13901. },
  13902. back: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(100, "lb"),
  13905. name: "Back",
  13906. image: {
  13907. source: "./media/characters/aevsivs/back.svg"
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Micro",
  13914. height: math.unit(2, "inches"),
  13915. default: true
  13916. },
  13917. {
  13918. name: "Normal",
  13919. height: math.unit(5, "feet")
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(5 + 7 / 12, "feet"),
  13928. weight: math.unit(159, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/hildegard/front.svg",
  13932. extra: 289 / 269,
  13933. bottom: 7.63/297.8
  13934. }
  13935. },
  13936. back: {
  13937. height: math.unit(5 + 7 / 12, "feet"),
  13938. weight: math.unit(159, "lb"),
  13939. name: "Back",
  13940. image: {
  13941. source: "./media/characters/hildegard/back.svg",
  13942. extra: 280/260,
  13943. bottom: 2.3/282
  13944. }
  13945. },
  13946. },
  13947. [
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(5 + 7 / 12, "feet"),
  13951. default: true
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13957. {
  13958. bernard: {
  13959. height: math.unit(2 + 7 / 12, "feet"),
  13960. weight: math.unit(66, "lb"),
  13961. name: "Bernard",
  13962. rename: true,
  13963. image: {
  13964. source: "./media/characters/bernard-wilder/bernard.svg",
  13965. extra: 192 / 128,
  13966. bottom: 0.05
  13967. }
  13968. },
  13969. wilder: {
  13970. height: math.unit(5 + 8 / 12, "feet"),
  13971. weight: math.unit(143, "lb"),
  13972. name: "Wilder",
  13973. rename: true,
  13974. image: {
  13975. source: "./media/characters/bernard-wilder/wilder.svg",
  13976. extra: 361 / 312,
  13977. bottom: 0.02
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Normal",
  13984. height: math.unit(2 + 7 / 12, "feet"),
  13985. default: true
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13991. {
  13992. anthro: {
  13993. height: math.unit(6 + 1 / 12, "feet"),
  13994. weight: math.unit(155, "lb"),
  13995. name: "Anthro",
  13996. image: {
  13997. source: "./media/characters/hearth/anthro.svg",
  13998. extra: 260 / 250,
  13999. bottom: 0.02
  14000. }
  14001. },
  14002. feral: {
  14003. height: math.unit(3.78, "feet"),
  14004. weight: math.unit(35, "kg"),
  14005. name: "Feral",
  14006. image: {
  14007. source: "./media/characters/hearth/feral.svg",
  14008. extra: 153 / 135,
  14009. bottom: 0.03
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Normal",
  14016. height: math.unit(6 + 1 / 12, "feet"),
  14017. default: true
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(6, "feet"),
  14026. weight: math.unit(182, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/ingrid/front.svg",
  14030. extra: 294 / 268,
  14031. bottom: 0.027
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(6, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14045. {
  14046. eevee: {
  14047. height: math.unit(2 + 10 / 12, "feet"),
  14048. weight: math.unit(86, "lb"),
  14049. name: "Malgam",
  14050. image: {
  14051. source: "./media/characters/malgam/eevee.svg",
  14052. extra: 218 / 180,
  14053. bottom: 0.2
  14054. }
  14055. },
  14056. sylveon: {
  14057. height: math.unit(4, "feet"),
  14058. weight: math.unit(101, "lb"),
  14059. name: "Future Malgam",
  14060. rename: true,
  14061. image: {
  14062. source: "./media/characters/malgam/sylveon.svg",
  14063. extra: 371 / 325,
  14064. bottom: 0.015
  14065. }
  14066. },
  14067. gigantamax: {
  14068. height: math.unit(50, "feet"),
  14069. name: "Gigantamax Malgam",
  14070. rename: true,
  14071. image: {
  14072. source: "./media/characters/malgam/gigantamax.svg"
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Normal",
  14079. height: math.unit(2 + 10 / 12, "feet"),
  14080. default: true
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(5 + 11 / 12, "feet"),
  14089. weight: math.unit(188, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/fleur/front.svg",
  14093. extra: 309 / 283,
  14094. bottom: 0.007
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(5 + 11 / 12, "feet"),
  14102. default: true
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(5 + 4 / 12, "feet"),
  14111. weight: math.unit(122, "lb"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/jude/front.svg",
  14115. extra: 288 / 273,
  14116. bottom: 0.03
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5 + 4 / 12, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(5 + 11 / 12, "feet"),
  14133. weight: math.unit(190, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/seara/front.svg",
  14137. extra: 1,
  14138. bottom: 0.05
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(5 + 11 / 12, "feet"),
  14146. default: true
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(16 + 5 / 12, "feet"),
  14155. weight: math.unit(524, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/caspian/front.svg",
  14159. extra: 1,
  14160. bottom: 0.04
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(16 + 5 / 12, "feet"),
  14168. default: true
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(5 + 7 / 12, "feet"),
  14177. weight: math.unit(170, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/mika/front.svg",
  14181. extra: 1,
  14182. bottom: 0.016
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(5 + 7 / 12, "feet"),
  14190. default: true
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(6 + 2 / 12, "feet"),
  14199. weight: math.unit(268, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/sol/front.svg",
  14203. extra: 247 / 231,
  14204. bottom: 0.05
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(6 + 2 / 12, "feet"),
  14212. default: true
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14218. {
  14219. buizel: {
  14220. height: math.unit(2 + 5 / 12, "feet"),
  14221. weight: math.unit(87, "lb"),
  14222. name: "Buizel",
  14223. image: {
  14224. source: "./media/characters/umiko/buizel.svg",
  14225. extra: 172 / 157,
  14226. bottom: 0.01
  14227. }
  14228. },
  14229. floatzel: {
  14230. height: math.unit(5 + 9 / 12, "feet"),
  14231. weight: math.unit(250, "lb"),
  14232. name: "Floatzel",
  14233. image: {
  14234. source: "./media/characters/umiko/floatzel.svg",
  14235. extra: 262 / 248
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(2 + 5 / 12, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14249. {
  14250. front: {
  14251. height: math.unit(6 + 2 / 12, "feet"),
  14252. weight: math.unit(146, "lb"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/iliac/front.svg",
  14256. extra: 389 / 365,
  14257. bottom: 0.035
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(6 + 2 / 12, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14271. {
  14272. front: {
  14273. height: math.unit(6, "feet"),
  14274. weight: math.unit(170, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/topaz/front.svg",
  14278. extra: 317 / 303,
  14279. bottom: 0.055
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Normal",
  14286. height: math.unit(6, "feet"),
  14287. default: true
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(5 + 11 / 12, "feet"),
  14296. weight: math.unit(144, "lb"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/gabriel/front.svg",
  14300. extra: 285 / 262,
  14301. bottom: 0.004
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Normal",
  14308. height: math.unit(5 + 11 / 12, "feet"),
  14309. default: true
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14315. {
  14316. side: {
  14317. height: math.unit(6 + 5 / 12, "feet"),
  14318. weight: math.unit(300, "lb"),
  14319. name: "Side",
  14320. image: {
  14321. source: "./media/characters/tempest-suicune/side.svg",
  14322. extra: 195 / 154,
  14323. bottom: 0.04
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(6 + 5 / 12, "feet"),
  14331. default: true
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(7 + 2 / 12, "feet"),
  14340. weight: math.unit(322, "lb"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/vulcan/front.svg",
  14344. extra: 154 / 147,
  14345. bottom: 0.04
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(7 + 2 / 12, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(5 + 10 / 12, "feet"),
  14362. weight: math.unit(264, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/gault/front.svg",
  14366. extra: 161 / 140,
  14367. bottom: 0.028
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(5 + 10 / 12, "feet"),
  14375. default: true
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(6, "feet"),
  14384. weight: math.unit(150, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/shard/front.svg",
  14388. extra: 273 / 238,
  14389. bottom: 0.02
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(3 + 6 / 12, "feet"),
  14397. default: true
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(5 + 11 / 12, "feet"),
  14406. weight: math.unit(146, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/ashe/front.svg",
  14410. extra: 400 / 373,
  14411. bottom: 0.01
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(5 + 11 / 12, "feet"),
  14419. default: true
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(5 + 5 / 12, "feet"),
  14428. weight: math.unit(135, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/beatrix/front.svg",
  14432. extra: 392 / 379,
  14433. bottom: 0.01
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(6, "feet"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/ignatius/front.svg",
  14454. extra: 245 / 222,
  14455. bottom: 0.01
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(5 + 5 / 12, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(6 + 2 / 12, "feet"),
  14472. weight: math.unit(138, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/mei-li/front.svg",
  14476. extra: 237 / 229,
  14477. bottom: 0.03
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(6 + 2 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(2 + 4 / 12, "feet"),
  14494. weight: math.unit(62, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/puru/front.svg",
  14498. extra: 206 / 149,
  14499. bottom: 0.06
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(2 + 4 / 12, "feet"),
  14507. default: true
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14513. {
  14514. taur: {
  14515. height: math.unit(11, "feet"),
  14516. weight: math.unit(500, "lb"),
  14517. name: "Taur",
  14518. image: {
  14519. source: "./media/characters/kee/taur.svg",
  14520. extra: 1,
  14521. bottom: 0.04
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(11, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14535. {
  14536. anthro: {
  14537. height: math.unit(7, "feet"),
  14538. weight: math.unit(190, "lb"),
  14539. name: "Anthro",
  14540. image: {
  14541. source: "./media/characters/cobalt-dracha/anthro.svg",
  14542. extra: 231 / 225,
  14543. bottom: 0.04
  14544. }
  14545. },
  14546. feral: {
  14547. height: math.unit(9 + 7 / 12, "feet"),
  14548. weight: math.unit(294, "lb"),
  14549. name: "Feral",
  14550. image: {
  14551. source: "./media/characters/cobalt-dracha/feral.svg",
  14552. extra: 692 / 633,
  14553. bottom: 0.05
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(7, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14567. {
  14568. fallen: {
  14569. height: math.unit(11 + 8 / 12, "feet"),
  14570. weight: math.unit(485, "lb"),
  14571. name: "Java (Fallen)",
  14572. rename: true,
  14573. image: {
  14574. source: "./media/characters/java/fallen.svg",
  14575. extra: 226 / 208,
  14576. bottom: 0.005
  14577. }
  14578. },
  14579. godkin: {
  14580. height: math.unit(10 + 6 / 12, "feet"),
  14581. weight: math.unit(328, "lb"),
  14582. name: "Java (Godkin)",
  14583. rename: true,
  14584. image: {
  14585. source: "./media/characters/java/godkin.svg",
  14586. extra: 270 / 262,
  14587. bottom: 0.02
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Normal",
  14594. height: math.unit(11 + 8 / 12, "feet"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(7 + 8 / 12, "feet"),
  14604. weight: math.unit(320, "lb"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/skoll/front.svg",
  14608. extra: 232 / 220,
  14609. bottom: 0.02
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(7 + 8 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(5 + 9 / 12, "feet"),
  14626. weight: math.unit(170, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/purna/front.svg",
  14630. extra: 239 / 229,
  14631. bottom: 0.01
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(5 + 9 / 12, "feet"),
  14639. default: true
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(5 + 9 / 12, "feet"),
  14648. weight: math.unit(142, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/kuva/front.svg",
  14652. extra: 281 / 271,
  14653. bottom: 0.006
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Normal",
  14660. height: math.unit(5 + 9 / 12, "feet"),
  14661. default: true
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14667. {
  14668. anthro: {
  14669. height: math.unit(9 + 2 / 12, "feet"),
  14670. weight: math.unit(270, "lb"),
  14671. name: "Anthro",
  14672. image: {
  14673. source: "./media/characters/embra/anthro.svg",
  14674. extra: 200 / 187,
  14675. bottom: 0.02
  14676. }
  14677. },
  14678. feral: {
  14679. height: math.unit(18 + 8 / 12, "feet"),
  14680. weight: math.unit(576, "lb"),
  14681. name: "Feral",
  14682. image: {
  14683. source: "./media/characters/embra/feral.svg",
  14684. extra: 152 / 137,
  14685. bottom: 0.037
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(9 + 2 / 12, "feet"),
  14693. default: true
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14699. {
  14700. anthro: {
  14701. height: math.unit(10 + 9 / 12, "feet"),
  14702. weight: math.unit(224, "lb"),
  14703. name: "Anthro",
  14704. image: {
  14705. source: "./media/characters/grottos/anthro.svg",
  14706. extra: 350 / 332,
  14707. bottom: 0.045
  14708. }
  14709. },
  14710. feral: {
  14711. height: math.unit(20 + 7 / 12, "feet"),
  14712. weight: math.unit(629, "lb"),
  14713. name: "Feral",
  14714. image: {
  14715. source: "./media/characters/grottos/feral.svg",
  14716. extra: 207 / 190,
  14717. bottom: 0.05
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(10 + 9 / 12, "feet"),
  14725. default: true
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14731. {
  14732. anthro: {
  14733. height: math.unit(9 + 6 / 12, "feet"),
  14734. weight: math.unit(298, "lb"),
  14735. name: "Anthro",
  14736. image: {
  14737. source: "./media/characters/frifna/anthro.svg",
  14738. extra: 282 / 269,
  14739. bottom: 0.015
  14740. }
  14741. },
  14742. feral: {
  14743. height: math.unit(16 + 2 / 12, "feet"),
  14744. weight: math.unit(624, "lb"),
  14745. name: "Feral",
  14746. image: {
  14747. source: "./media/characters/frifna/feral.svg"
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(9 + 6 / 12, "feet"),
  14755. default: true
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6 + 2 / 12, "feet"),
  14764. weight: math.unit(168, "lb"),
  14765. name: "Front",
  14766. image: {
  14767. source: "./media/characters/elise/front.svg",
  14768. extra: 276 / 271
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(6 + 2 / 12, "feet"),
  14776. default: true
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14782. {
  14783. front: {
  14784. height: math.unit(5 + 10 / 12, "feet"),
  14785. weight: math.unit(210, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/glade/front.svg",
  14789. extra: 258 / 247,
  14790. bottom: 0.008
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(5 + 10 / 12, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(5 + 10 / 12, "feet"),
  14807. weight: math.unit(129, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/rina/front.svg",
  14811. extra: 266 / 255,
  14812. bottom: 0.005
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(5 + 10 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(6 + 1 / 12, "feet"),
  14829. weight: math.unit(192, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/veronica/front.svg",
  14833. extra: 319 / 309,
  14834. bottom: 0.005
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(6 + 1 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(9 + 3 / 12, "feet"),
  14851. weight: math.unit(1100, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/braxton/front.svg",
  14855. extra: 1057 / 984,
  14856. bottom: 0.05
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(9 + 3 / 12, "feet")
  14864. },
  14865. {
  14866. name: "Giant",
  14867. height: math.unit(300, "feet"),
  14868. default: true
  14869. },
  14870. {
  14871. name: "Macro",
  14872. height: math.unit(700, "feet")
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(6000, "feet")
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6 + 7 / 12, "feet"),
  14885. weight: math.unit(150, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/blue-feyonics/front.svg",
  14889. extra: 1403 / 1306,
  14890. bottom: 0.047
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 7 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(1.8, "meters"),
  14907. weight: math.unit(60, "kg"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/maxwell/front.svg",
  14911. extra: 2060 / 1873
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Micro",
  14918. height: math.unit(1, "mm")
  14919. },
  14920. {
  14921. name: "Normal",
  14922. height: math.unit(1.8, "meter"),
  14923. default: true
  14924. },
  14925. {
  14926. name: "Macro",
  14927. height: math.unit(30, "meters")
  14928. },
  14929. {
  14930. name: "Megamacro",
  14931. height: math.unit(10, "km")
  14932. },
  14933. ]
  14934. ))
  14935. characterMakers.push(() => makeCharacter(
  14936. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14937. {
  14938. front: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Front",
  14942. image: {
  14943. source: "./media/characters/jack/front.svg",
  14944. extra: 1754 / 1640,
  14945. bottom: 0.01
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Normal",
  14952. height: math.unit(80000, "feet"),
  14953. default: true
  14954. },
  14955. {
  14956. name: "Max size",
  14957. height: math.unit(10, "lightyears")
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14963. {
  14964. upright: {
  14965. height: math.unit(7, "feet"),
  14966. weight: math.unit(170, "lb"),
  14967. name: "Upright",
  14968. image: {
  14969. source: "./media/characters/cafat/upright.svg",
  14970. bottom: 0.01
  14971. }
  14972. },
  14973. uprightFull: {
  14974. height: math.unit(7, "feet"),
  14975. weight: math.unit(170, "lb"),
  14976. name: "Upright (Full)",
  14977. image: {
  14978. source: "./media/characters/cafat/upright-full.svg",
  14979. bottom: 0.01
  14980. }
  14981. },
  14982. side: {
  14983. height: math.unit(5, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Side",
  14986. image: {
  14987. source: "./media/characters/cafat/side.svg"
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Small",
  14994. height: math.unit(7, "feet"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Large",
  14999. height: math.unit(15.5, "feet")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(6, "feet"),
  15008. weight: math.unit(150, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/verin-raharra/front.svg",
  15012. extra: 5019 / 4835,
  15013. bottom: 0.023
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(7 + 5 / 12, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Upsized",
  15025. height: math.unit(20, "feet")
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(7, "feet"),
  15034. weight: math.unit(230, "lb"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/nakata/front.svg",
  15038. extra: 1.005,
  15039. bottom: 0.01
  15040. }
  15041. },
  15042. },
  15043. [
  15044. {
  15045. name: "Normal",
  15046. height: math.unit(7, "feet"),
  15047. default: true
  15048. },
  15049. {
  15050. name: "Big",
  15051. height: math.unit(14, "feet")
  15052. },
  15053. {
  15054. name: "Macro",
  15055. height: math.unit(400, "feet")
  15056. },
  15057. ]
  15058. ))
  15059. characterMakers.push(() => makeCharacter(
  15060. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15061. {
  15062. front: {
  15063. height: math.unit(4.91, "feet"),
  15064. weight: math.unit(100, "lb"),
  15065. name: "Front",
  15066. image: {
  15067. source: "./media/characters/lily/front.svg",
  15068. extra: 1585 / 1415,
  15069. bottom: 0.02
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(4.91, "feet"),
  15077. default: true
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15083. {
  15084. laying: {
  15085. height: math.unit(4 + 4 / 12, "feet"),
  15086. weight: math.unit(600, "lb"),
  15087. name: "Laying",
  15088. image: {
  15089. source: "./media/characters/sheila/laying.svg",
  15090. extra: 1333 / 1265,
  15091. bottom: 0.16
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(4 + 4 / 12, "feet"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(190, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/sax/front.svg",
  15112. extra: 1187 / 973,
  15113. bottom: 0.042
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Micro",
  15120. height: math.unit(4, "inches"),
  15121. default: true
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(150, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/pandora/front.svg",
  15134. extra: 2720 / 2556,
  15135. bottom: 0.015
  15136. }
  15137. },
  15138. back: {
  15139. height: math.unit(6, "feet"),
  15140. weight: math.unit(150, "lb"),
  15141. name: "Back",
  15142. image: {
  15143. source: "./media/characters/pandora/back.svg",
  15144. extra: 2720 / 2556,
  15145. bottom: 0.01
  15146. }
  15147. },
  15148. beans: {
  15149. height: math.unit(6 / 8, "feet"),
  15150. name: "Beans",
  15151. image: {
  15152. source: "./media/characters/pandora/beans.svg"
  15153. }
  15154. },
  15155. skirt: {
  15156. height: math.unit(6, "feet"),
  15157. weight: math.unit(150, "lb"),
  15158. name: "Skirt",
  15159. image: {
  15160. source: "./media/characters/pandora/skirt.svg",
  15161. extra: 1622 / 1525,
  15162. bottom: 0.015
  15163. }
  15164. },
  15165. hoodie: {
  15166. height: math.unit(6, "feet"),
  15167. weight: math.unit(150, "lb"),
  15168. name: "Hoodie",
  15169. image: {
  15170. source: "./media/characters/pandora/hoodie.svg",
  15171. extra: 1622 / 1525,
  15172. bottom: 0.015
  15173. }
  15174. },
  15175. casual: {
  15176. height: math.unit(6, "feet"),
  15177. weight: math.unit(150, "lb"),
  15178. name: "Casual",
  15179. image: {
  15180. source: "./media/characters/pandora/casual.svg",
  15181. extra: 1622 / 1525,
  15182. bottom: 0.015
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Normal",
  15189. height: math.unit(6, "feet")
  15190. },
  15191. {
  15192. name: "Big Steppy",
  15193. height: math.unit(1, "km"),
  15194. default: true
  15195. },
  15196. ]
  15197. ))
  15198. characterMakers.push(() => makeCharacter(
  15199. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15200. {
  15201. side: {
  15202. height: math.unit(10, "feet"),
  15203. weight: math.unit(800, "kg"),
  15204. name: "Side",
  15205. image: {
  15206. source: "./media/characters/venio-darcony/side.svg",
  15207. extra: 1373 / 1003,
  15208. bottom: 0.037
  15209. }
  15210. },
  15211. front: {
  15212. height: math.unit(19, "feet"),
  15213. weight: math.unit(800, "kg"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/venio-darcony/front.svg"
  15217. }
  15218. },
  15219. back: {
  15220. height: math.unit(19, "feet"),
  15221. weight: math.unit(800, "kg"),
  15222. name: "Back",
  15223. image: {
  15224. source: "./media/characters/venio-darcony/back.svg"
  15225. }
  15226. },
  15227. sideNsfw: {
  15228. height: math.unit(10, "feet"),
  15229. weight: math.unit(800, "kg"),
  15230. name: "Side (NSFW)",
  15231. image: {
  15232. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15233. extra: 1373 / 1003,
  15234. bottom: 0.037
  15235. }
  15236. },
  15237. frontNsfw: {
  15238. height: math.unit(19, "feet"),
  15239. weight: math.unit(800, "kg"),
  15240. name: "Front (NSFW)",
  15241. image: {
  15242. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15243. }
  15244. },
  15245. backNsfw: {
  15246. height: math.unit(19, "feet"),
  15247. weight: math.unit(800, "kg"),
  15248. name: "Back (NSFW)",
  15249. image: {
  15250. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15251. }
  15252. },
  15253. sideArmored: {
  15254. height: math.unit(10, "feet"),
  15255. weight: math.unit(800, "kg"),
  15256. name: "Side (Armored)",
  15257. image: {
  15258. source: "./media/characters/venio-darcony/side-armored.svg",
  15259. extra: 1373 / 1003,
  15260. bottom: 0.037
  15261. }
  15262. },
  15263. frontArmored: {
  15264. height: math.unit(19, "feet"),
  15265. weight: math.unit(900, "kg"),
  15266. name: "Front (Armored)",
  15267. image: {
  15268. source: "./media/characters/venio-darcony/front-armored.svg"
  15269. }
  15270. },
  15271. backArmored: {
  15272. height: math.unit(19, "feet"),
  15273. weight: math.unit(900, "kg"),
  15274. name: "Back (Armored)",
  15275. image: {
  15276. source: "./media/characters/venio-darcony/back-armored.svg"
  15277. }
  15278. },
  15279. sword: {
  15280. height: math.unit(10, "feet"),
  15281. weight: math.unit(50, "lb"),
  15282. name: "Sword",
  15283. image: {
  15284. source: "./media/characters/venio-darcony/sword.svg"
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(10, "feet")
  15292. },
  15293. {
  15294. name: "Macro",
  15295. height: math.unit(130, "feet"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Macro+",
  15300. height: math.unit(240, "feet")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(6, "feet"),
  15309. weight: math.unit(150, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/veski/front.svg",
  15313. extra: 1299 / 1225,
  15314. bottom: 0.04
  15315. }
  15316. },
  15317. back: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(150, "lb"),
  15320. name: "Back",
  15321. image: {
  15322. source: "./media/characters/veski/back.svg",
  15323. extra: 1299 / 1225,
  15324. bottom: 0.008
  15325. }
  15326. },
  15327. maw: {
  15328. height: math.unit(1.5 * 1.21, "feet"),
  15329. name: "Maw",
  15330. image: {
  15331. source: "./media/characters/veski/maw.svg"
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Macro",
  15338. height: math.unit(2, "km"),
  15339. default: true
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(5 + 7 / 12, "feet"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/isabelle/front.svg",
  15351. extra: 2130 / 1976,
  15352. bottom: 0.05
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Supermicro",
  15359. height: math.unit(10, "micrometers")
  15360. },
  15361. {
  15362. name: "Micro",
  15363. height: math.unit(1, "inch")
  15364. },
  15365. {
  15366. name: "Tiny",
  15367. height: math.unit(5, "inches")
  15368. },
  15369. {
  15370. name: "Standard",
  15371. height: math.unit(5 + 7 / 12, "inches")
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(80, "meters"),
  15376. default: true
  15377. },
  15378. {
  15379. name: "Megamacro",
  15380. height: math.unit(250, "meters")
  15381. },
  15382. {
  15383. name: "Gigamacro",
  15384. height: math.unit(5, "km")
  15385. },
  15386. {
  15387. name: "Cosmic",
  15388. height: math.unit(2.5e6, "miles")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(6, "feet"),
  15397. weight: math.unit(150, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/hanzo/front.svg",
  15401. extra: 374 / 344,
  15402. bottom: 0.02
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Normal",
  15409. height: math.unit(8, "feet"),
  15410. default: true
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(7, "feet"),
  15419. weight: math.unit(130, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/anna/front.svg",
  15423. extra: 169 / 145,
  15424. bottom: 0.06
  15425. }
  15426. },
  15427. full: {
  15428. height: math.unit(4.96, "feet"),
  15429. weight: math.unit(220, "lb"),
  15430. name: "Full",
  15431. image: {
  15432. source: "./media/characters/anna/full.svg",
  15433. extra: 138 / 114,
  15434. bottom: 0.15
  15435. }
  15436. },
  15437. tongue: {
  15438. height: math.unit(2.53, "feet"),
  15439. name: "Tongue",
  15440. image: {
  15441. source: "./media/characters/anna/tongue.svg"
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(7, "feet"),
  15449. default: true
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(7, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/ian-corvid/front.svg",
  15462. extra: 150 / 142,
  15463. bottom: 0.02
  15464. }
  15465. },
  15466. back: {
  15467. height: math.unit(7, "feet"),
  15468. weight: math.unit(150, "lb"),
  15469. name: "Back",
  15470. image: {
  15471. source: "./media/characters/ian-corvid/back.svg",
  15472. extra: 150 / 143,
  15473. bottom: 0.01
  15474. }
  15475. },
  15476. stomping: {
  15477. height: math.unit(7, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Stomping",
  15480. image: {
  15481. source: "./media/characters/ian-corvid/stomping.svg",
  15482. extra: 76 / 72
  15483. }
  15484. },
  15485. sitting: {
  15486. height: math.unit(7 / 1.8, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Sitting",
  15489. image: {
  15490. source: "./media/characters/ian-corvid/sitting.svg",
  15491. extra: 1400 / 1269,
  15492. bottom: 0.15
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Tiny Microw",
  15499. height: math.unit(1, "inch")
  15500. },
  15501. {
  15502. name: "Microw",
  15503. height: math.unit(6, "inches")
  15504. },
  15505. {
  15506. name: "Crow",
  15507. height: math.unit(7 + 1 / 12, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Macrow",
  15512. height: math.unit(176, "feet")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(5 + 7 / 12, "feet"),
  15521. weight: math.unit(147, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/natalie-kellon/front.svg",
  15525. extra: 1214 / 1141,
  15526. bottom: 0.02
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(1 / 16, "inch")
  15534. },
  15535. {
  15536. name: "Tiny",
  15537. height: math.unit(4, "inches")
  15538. },
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(5 + 7 / 12, "feet"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Amazon",
  15546. height: math.unit(12, "feet")
  15547. },
  15548. {
  15549. name: "Giantess",
  15550. height: math.unit(160, "meters")
  15551. },
  15552. {
  15553. name: "Titaness",
  15554. height: math.unit(800, "meters")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/alluria/front.svg",
  15567. extra: 806 / 738,
  15568. bottom: 0.01
  15569. }
  15570. },
  15571. side: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(150, "lb"),
  15574. name: "Side",
  15575. image: {
  15576. source: "./media/characters/alluria/side.svg",
  15577. extra: 800 / 750,
  15578. }
  15579. },
  15580. back: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Back",
  15584. image: {
  15585. source: "./media/characters/alluria/back.svg",
  15586. extra: 806 / 738,
  15587. }
  15588. },
  15589. frontMaid: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Front (Maid)",
  15593. image: {
  15594. source: "./media/characters/alluria/front-maid.svg",
  15595. extra: 806 / 738,
  15596. bottom: 0.01
  15597. }
  15598. },
  15599. sideMaid: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Side (Maid)",
  15603. image: {
  15604. source: "./media/characters/alluria/side-maid.svg",
  15605. extra: 800 / 750,
  15606. bottom: 0.005
  15607. }
  15608. },
  15609. backMaid: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Back (Maid)",
  15613. image: {
  15614. source: "./media/characters/alluria/back-maid.svg",
  15615. extra: 806 / 738,
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Micro",
  15622. height: math.unit(6, "inches"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(150, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/kyle/front.svg",
  15636. extra: 1069 / 962,
  15637. bottom: 77.228 / 1727.45
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Macro",
  15644. height: math.unit(150, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(300, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/duncan/front.svg",
  15658. extra: 1650 / 1482,
  15659. bottom: 0.05
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Macro",
  15666. height: math.unit(100, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(5 + 4 / 12, "feet"),
  15676. weight: math.unit(220, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/memory/front.svg",
  15680. extra: 3641 / 3545,
  15681. bottom: 0.03
  15682. }
  15683. },
  15684. back: {
  15685. height: math.unit(5 + 4 / 12, "feet"),
  15686. weight: math.unit(220, "lb"),
  15687. name: "Back",
  15688. image: {
  15689. source: "./media/characters/memory/back.svg",
  15690. extra: 3641 / 3545,
  15691. bottom: 0.025
  15692. }
  15693. },
  15694. frontSkirt: {
  15695. height: math.unit(5 + 4 / 12, "feet"),
  15696. weight: math.unit(220, "lb"),
  15697. name: "Front (Skirt)",
  15698. image: {
  15699. source: "./media/characters/memory/front-skirt.svg",
  15700. extra: 3641 / 3545,
  15701. bottom: 0.03
  15702. }
  15703. },
  15704. frontDress: {
  15705. height: math.unit(5 + 4 / 12, "feet"),
  15706. weight: math.unit(220, "lb"),
  15707. name: "Front (Dress)",
  15708. image: {
  15709. source: "./media/characters/memory/front-dress.svg",
  15710. extra: 3641 / 3545,
  15711. bottom: 0.03
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Micro",
  15718. height: math.unit(6, "inches"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Normal",
  15723. height: math.unit(5 + 4 / 12, "feet")
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(4 + 11 / 12, "feet"),
  15732. weight: math.unit(100, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/luno/front.svg",
  15736. extra: 1535 / 1487,
  15737. bottom: 0.03
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Micro",
  15744. height: math.unit(3, "inches")
  15745. },
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(4 + 11 / 12, "feet"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Macro",
  15753. height: math.unit(300, "feet")
  15754. },
  15755. {
  15756. name: "Megamacro",
  15757. height: math.unit(700, "miles")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15763. {
  15764. front: {
  15765. height: math.unit(6 + 2 / 12, "feet"),
  15766. weight: math.unit(170, "lb"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/jamesy/front.svg",
  15770. extra: 440 / 382,
  15771. bottom: 0.005
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Micro",
  15778. height: math.unit(3, "inches")
  15779. },
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(6 + 2 / 12, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(300, "feet")
  15788. },
  15789. {
  15790. name: "Megamacro",
  15791. height: math.unit(700, "miles")
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(6, "feet"),
  15800. weight: math.unit(160, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/mark/front.svg",
  15804. extra: 3300 / 3100,
  15805. bottom: 136.42 / 3440.47
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Macro",
  15812. height: math.unit(120, "meters")
  15813. },
  15814. {
  15815. name: "Bigger Macro",
  15816. height: math.unit(350, "meters")
  15817. },
  15818. {
  15819. name: "Megamacro",
  15820. height: math.unit(8, "km"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Continental",
  15825. height: math.unit(4550, "km")
  15826. },
  15827. {
  15828. name: "Planetary",
  15829. height: math.unit(65000, "km")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(400, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/mac/front.svg",
  15842. extra: 1048 / 987.7,
  15843. bottom: 60 / 1107.6,
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(500, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(5 + 2 / 12, "feet"),
  15860. weight: math.unit(190, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/bari/front.svg",
  15864. extra: 3156 / 2880,
  15865. bottom: 0.03
  15866. }
  15867. },
  15868. back: {
  15869. height: math.unit(5 + 2 / 12, "feet"),
  15870. weight: math.unit(190, "lb"),
  15871. name: "Back",
  15872. image: {
  15873. source: "./media/characters/bari/back.svg",
  15874. extra: 3260 / 2834,
  15875. bottom: 0.025
  15876. }
  15877. },
  15878. frontPlush: {
  15879. height: math.unit(5 + 2 / 12, "feet"),
  15880. weight: math.unit(190, "lb"),
  15881. name: "Front (Plush)",
  15882. image: {
  15883. source: "./media/characters/bari/front-plush.svg",
  15884. extra: 1112 / 1061,
  15885. bottom: 0.002
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Micro",
  15892. height: math.unit(3, "inches")
  15893. },
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(5 + 2 / 12, "feet"),
  15897. default: true
  15898. },
  15899. {
  15900. name: "Macro",
  15901. height: math.unit(20, "feet")
  15902. },
  15903. ]
  15904. ))
  15905. characterMakers.push(() => makeCharacter(
  15906. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15907. {
  15908. front: {
  15909. height: math.unit(6 + 1 / 12, "feet"),
  15910. weight: math.unit(275, "lb"),
  15911. name: "Front",
  15912. image: {
  15913. source: "./media/characters/hunter-misha-raven/front.svg"
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Mortal",
  15920. height: math.unit(6 + 1 / 12, "feet")
  15921. },
  15922. {
  15923. name: "Divine",
  15924. height: math.unit(1.12134e34, "parsecs"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(6 + 3 / 12, "feet"),
  15934. weight: math.unit(220, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/max-calore/front.svg",
  15938. extra: 1700 / 1648,
  15939. bottom: 0.01
  15940. }
  15941. },
  15942. back: {
  15943. height: math.unit(6 + 3 / 12, "feet"),
  15944. weight: math.unit(220, "lb"),
  15945. name: "Back",
  15946. image: {
  15947. source: "./media/characters/max-calore/back.svg",
  15948. extra: 1700 / 1648,
  15949. bottom: 0.01
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(6 + 3 / 12, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15963. {
  15964. side: {
  15965. height: math.unit(2 + 8 / 12, "feet"),
  15966. weight: math.unit(99, "lb"),
  15967. name: "Side",
  15968. image: {
  15969. source: "./media/characters/aspen/side.svg",
  15970. extra: 152 / 138,
  15971. bottom: 0.032
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(2 + 8 / 12, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15985. {
  15986. side: {
  15987. height: math.unit(3 + 2 / 12, "feet"),
  15988. weight: math.unit(224, "lb"),
  15989. name: "Side",
  15990. image: {
  15991. source: "./media/characters/sheila-feral-wolf/side.svg",
  15992. extra: 179 / 166,
  15993. bottom: 0.03
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(3 + 2 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16007. {
  16008. side: {
  16009. height: math.unit(1 + 9 / 12, "feet"),
  16010. weight: math.unit(38, "lb"),
  16011. name: "Side",
  16012. image: {
  16013. source: "./media/characters/michelle/side.svg",
  16014. extra: 147 / 136.7,
  16015. bottom: 0.03
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(1 + 9 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16029. {
  16030. front: {
  16031. height: math.unit(1 + 1 / 12, "feet"),
  16032. weight: math.unit(18, "lb"),
  16033. name: "Front",
  16034. image: {
  16035. source: "./media/characters/nino/front.svg"
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(1 + 1 / 12, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(1, "feet"),
  16052. weight: math.unit(16, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/viola/front.svg"
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(1, "feet"),
  16063. default: true
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(6 + 5 / 12, "feet"),
  16072. weight: math.unit(580, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/atlas/front.svg",
  16076. extra: 298.5 / 290,
  16077. bottom: 0.015
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(6 + 5 / 12, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16091. {
  16092. side: {
  16093. height: math.unit(1 + 10 / 12, "feet"),
  16094. weight: math.unit(25, "lb"),
  16095. name: "Side",
  16096. image: {
  16097. source: "./media/characters/davy/side.svg",
  16098. extra: 200 / 170,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(1 + 10 / 12, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16113. {
  16114. side: {
  16115. height: math.unit(4 + 8 / 12, "feet"),
  16116. weight: math.unit(166, "lb"),
  16117. name: "Side",
  16118. image: {
  16119. source: "./media/characters/fiona/side.svg",
  16120. extra: 232 / 220,
  16121. bottom: 0.03
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(4 + 8 / 12, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16135. {
  16136. front: {
  16137. height: math.unit(2, "feet"),
  16138. weight: math.unit(62, "lb"),
  16139. name: "Front",
  16140. image: {
  16141. source: "./media/characters/lyla/front.svg",
  16142. bottom: 0.1
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(2, "feet"),
  16150. default: true
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16156. {
  16157. side: {
  16158. height: math.unit(1.8, "feet"),
  16159. weight: math.unit(44, "lb"),
  16160. name: "Side",
  16161. image: {
  16162. source: "./media/characters/perseus/side.svg",
  16163. bottom: 0.21
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(1.8, "feet"),
  16171. default: true
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16177. {
  16178. side: {
  16179. height: math.unit(4 + 2 / 12, "feet"),
  16180. weight: math.unit(20, "lb"),
  16181. name: "Side",
  16182. image: {
  16183. source: "./media/characters/remus/side.svg"
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(4 + 2 / 12, "feet"),
  16191. default: true
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(4 + 11 / 12, "feet"),
  16200. weight: math.unit(114, "lb"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/raf/front.svg",
  16204. bottom: 20.5/1863
  16205. }
  16206. },
  16207. side: {
  16208. height: math.unit(4 + 11 / 12, "feet"),
  16209. weight: math.unit(114, "lb"),
  16210. name: "Side",
  16211. image: {
  16212. source: "./media/characters/raf/side.svg",
  16213. bottom: 22/1822
  16214. }
  16215. },
  16216. },
  16217. [
  16218. {
  16219. name: "Micro",
  16220. height: math.unit(2, "inches")
  16221. },
  16222. {
  16223. name: "Normal",
  16224. height: math.unit(4 + 11 / 12, "feet"),
  16225. default: true
  16226. },
  16227. {
  16228. name: "Macro",
  16229. height: math.unit(70, "feet")
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16235. {
  16236. front: {
  16237. height: math.unit(1.5, "meters"),
  16238. weight: math.unit(68, "kg"),
  16239. name: "Front",
  16240. image: {
  16241. source: "./media/characters/liam-einarr/front.svg",
  16242. extra: 2822 / 2666
  16243. }
  16244. },
  16245. back: {
  16246. height: math.unit(1.5, "meters"),
  16247. weight: math.unit(68, "kg"),
  16248. name: "Back",
  16249. image: {
  16250. source: "./media/characters/liam-einarr/back.svg",
  16251. extra: 2822 / 2666,
  16252. bottom: 0.015
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(1.5, "meters"),
  16260. default: true
  16261. },
  16262. {
  16263. name: "Macro",
  16264. height: math.unit(150, "meters")
  16265. },
  16266. {
  16267. name: "Megamacro",
  16268. height: math.unit(35, "km")
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(75, "kg"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/linda/front.svg",
  16281. extra: 930 / 874,
  16282. bottom: 0.004
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(6, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6 + 8 / 12, "feet"),
  16299. weight: math.unit(220, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/caylex/front.svg",
  16303. extra: 821 / 772,
  16304. bottom: 0.07
  16305. }
  16306. },
  16307. back: {
  16308. height: math.unit(6 + 8 / 12, "feet"),
  16309. weight: math.unit(220, "lb"),
  16310. name: "Back",
  16311. image: {
  16312. source: "./media/characters/caylex/back.svg",
  16313. extra: 821 / 772,
  16314. bottom: 0.022
  16315. }
  16316. },
  16317. hand: {
  16318. height: math.unit(1.25, "feet"),
  16319. name: "Hand",
  16320. image: {
  16321. source: "./media/characters/caylex/hand.svg"
  16322. }
  16323. },
  16324. foot: {
  16325. height: math.unit(1.6, "feet"),
  16326. name: "Foot",
  16327. image: {
  16328. source: "./media/characters/caylex/foot.svg"
  16329. }
  16330. },
  16331. armored: {
  16332. height: math.unit(6 + 8 / 12, "feet"),
  16333. weight: math.unit(250, "lb"),
  16334. name: "Armored",
  16335. image: {
  16336. source: "./media/characters/caylex/armored.svg",
  16337. extra: 1420 / 1310,
  16338. bottom: 0.045
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(6 + 8 / 12, "feet"),
  16346. default: true
  16347. },
  16348. {
  16349. name: "Normal+",
  16350. height: math.unit(12, "feet")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(7 + 6 / 12, "feet"),
  16359. weight: math.unit(288, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/alana/front.svg",
  16363. extra: 679 / 653,
  16364. bottom: 22.5 / 701
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(7 + 6 / 12, "feet")
  16372. },
  16373. {
  16374. name: "Large",
  16375. height: math.unit(50, "feet")
  16376. },
  16377. {
  16378. name: "Macro",
  16379. height: math.unit(100, "feet"),
  16380. default: true
  16381. },
  16382. {
  16383. name: "Macro+",
  16384. height: math.unit(200, "feet")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6 + 1 / 12, "feet"),
  16393. weight: math.unit(210, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/hasani/front.svg",
  16397. extra: 244 / 232,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. back: {
  16402. height: math.unit(6 + 1 / 12, "feet"),
  16403. weight: math.unit(210, "lb"),
  16404. name: "Back",
  16405. image: {
  16406. source: "./media/characters/hasani/back.svg",
  16407. extra: 244 / 232,
  16408. bottom: 0.01
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(6 + 1 / 12, "feet")
  16416. },
  16417. {
  16418. name: "Macro",
  16419. height: math.unit(175, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(1.82, "meters"),
  16429. weight: math.unit(140, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/nita/front.svg",
  16433. extra: 2473 / 2363,
  16434. bottom: 0.01
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(1.82, "m")
  16442. },
  16443. {
  16444. name: "Macro",
  16445. height: math.unit(300, "m")
  16446. },
  16447. {
  16448. name: "Mistake Canon",
  16449. height: math.unit(0.5, "miles"),
  16450. default: true
  16451. },
  16452. {
  16453. name: "Big Mistake",
  16454. height: math.unit(13, "miles")
  16455. },
  16456. {
  16457. name: "Playing God",
  16458. height: math.unit(2450, "miles")
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(4, "feet"),
  16467. weight: math.unit(120, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/shiriko/front.svg",
  16471. extra: 195 / 188
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Normal",
  16478. height: math.unit(4, "feet"),
  16479. default: true
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(6, "feet"),
  16488. name: "front",
  16489. image: {
  16490. source: "./media/characters/deja/front.svg",
  16491. extra: 926 / 840,
  16492. bottom: 0.07
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Planck Length",
  16499. height: math.unit(1.6e-35, "meters")
  16500. },
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(30.48, "meters"),
  16504. default: true
  16505. },
  16506. {
  16507. name: "Universal",
  16508. height: math.unit(8.8e26, "meters")
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16514. {
  16515. side: {
  16516. height: math.unit(8, "feet"),
  16517. weight: math.unit(6300, "lb"),
  16518. name: "Side",
  16519. image: {
  16520. source: "./media/characters/anima/side.svg",
  16521. bottom: 0.035
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(8, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(8, "feet"),
  16538. weight: math.unit(350, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/bianca/front.svg",
  16542. extra: 234 / 225,
  16543. bottom: 0.03
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(8, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(6, "feet"),
  16560. weight: math.unit(150, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/adinia/front.svg",
  16564. extra: 1845 / 1672,
  16565. bottom: 0.02
  16566. }
  16567. },
  16568. back: {
  16569. height: math.unit(6, "feet"),
  16570. weight: math.unit(150, "lb"),
  16571. name: "Back",
  16572. image: {
  16573. source: "./media/characters/adinia/back.svg",
  16574. extra: 1845 / 1672,
  16575. bottom: 0.002
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(11 + 5 / 12, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(3, "meters"),
  16592. weight: math.unit(200, "kg"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/lykasa/front.svg",
  16596. extra: 1076 / 976,
  16597. bottom: 0.06
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(3, "meters")
  16605. },
  16606. {
  16607. name: "Kaiju",
  16608. height: math.unit(120, "meters"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Mega Kaiju",
  16613. height: math.unit(240, "km")
  16614. },
  16615. {
  16616. name: "Giga Kaiju",
  16617. height: math.unit(400, "megameters")
  16618. },
  16619. {
  16620. name: "Tera Kaiju",
  16621. height: math.unit(800, "gigameters")
  16622. },
  16623. {
  16624. name: "Kaiju Dragon Goddess",
  16625. height: math.unit(26, "zettaparsecs")
  16626. },
  16627. ]
  16628. ))
  16629. characterMakers.push(() => makeCharacter(
  16630. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16631. {
  16632. side: {
  16633. height: math.unit(283 / 124 * 6, "feet"),
  16634. weight: math.unit(35000, "lb"),
  16635. name: "Side",
  16636. image: {
  16637. source: "./media/characters/malfaren/side.svg",
  16638. extra: 2500 / 1010,
  16639. bottom: 0.01
  16640. }
  16641. },
  16642. front: {
  16643. height: math.unit(22.36, "feet"),
  16644. weight: math.unit(35000, "lb"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/malfaren/front.svg",
  16648. extra: 1631 / 1476,
  16649. bottom: 0.01
  16650. }
  16651. },
  16652. maw: {
  16653. height: math.unit(6.9, "feet"),
  16654. name: "Maw",
  16655. image: {
  16656. source: "./media/characters/malfaren/maw.svg"
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Big",
  16663. height: math.unit(283 / 162 * 6, "feet"),
  16664. },
  16665. {
  16666. name: "Bigger",
  16667. height: math.unit(283 / 124 * 6, "feet")
  16668. },
  16669. {
  16670. name: "Massive",
  16671. height: math.unit(283 / 92 * 6, "feet"),
  16672. default: true
  16673. },
  16674. {
  16675. name: "👀💦",
  16676. height: math.unit(283 / 73 * 6, "feet"),
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16682. {
  16683. front: {
  16684. height: math.unit(1.7, "m"),
  16685. weight: math.unit(70, "kg"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/kernel/front.svg",
  16689. extra: 222 / 210,
  16690. bottom: 0.007
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Nano",
  16697. height: math.unit(17, "micrometers")
  16698. },
  16699. {
  16700. name: "Micro",
  16701. height: math.unit(1.7, "mm")
  16702. },
  16703. {
  16704. name: "Small",
  16705. height: math.unit(1.7, "cm")
  16706. },
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(1.7, "m"),
  16710. default: true
  16711. },
  16712. ]
  16713. ))
  16714. characterMakers.push(() => makeCharacter(
  16715. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16716. {
  16717. front: {
  16718. height: math.unit(1.75, "meters"),
  16719. weight: math.unit(65, "kg"),
  16720. name: "Front",
  16721. image: {
  16722. source: "./media/characters/jayne-folest/front.svg",
  16723. extra: 2115 / 2007,
  16724. bottom: 0.02
  16725. }
  16726. },
  16727. back: {
  16728. height: math.unit(1.75, "meters"),
  16729. weight: math.unit(65, "kg"),
  16730. name: "Back",
  16731. image: {
  16732. source: "./media/characters/jayne-folest/back.svg",
  16733. extra: 2115 / 2007,
  16734. bottom: 0.005
  16735. }
  16736. },
  16737. frontClothed: {
  16738. height: math.unit(1.75, "meters"),
  16739. weight: math.unit(65, "kg"),
  16740. name: "Front (Clothed)",
  16741. image: {
  16742. source: "./media/characters/jayne-folest/front-clothed.svg",
  16743. extra: 2115 / 2007,
  16744. bottom: 0.035
  16745. }
  16746. },
  16747. hand: {
  16748. height: math.unit(1 / 1.260, "feet"),
  16749. name: "Hand",
  16750. image: {
  16751. source: "./media/characters/jayne-folest/hand.svg"
  16752. }
  16753. },
  16754. foot: {
  16755. height: math.unit(1 / 0.918, "feet"),
  16756. name: "Foot",
  16757. image: {
  16758. source: "./media/characters/jayne-folest/foot.svg"
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Micro",
  16765. height: math.unit(4, "cm")
  16766. },
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(1.75, "meters")
  16770. },
  16771. {
  16772. name: "Macro",
  16773. height: math.unit(47.5, "meters"),
  16774. default: true
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16780. {
  16781. front: {
  16782. height: math.unit(180, "cm"),
  16783. weight: math.unit(70, "kg"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/algier/front.svg",
  16787. extra: 596 / 572,
  16788. bottom: 0.04
  16789. }
  16790. },
  16791. back: {
  16792. height: math.unit(180, "cm"),
  16793. weight: math.unit(70, "kg"),
  16794. name: "Back",
  16795. image: {
  16796. source: "./media/characters/algier/back.svg",
  16797. extra: 596 / 572,
  16798. bottom: 0.025
  16799. }
  16800. },
  16801. frontdressed: {
  16802. height: math.unit(180, "cm"),
  16803. weight: math.unit(150, "kg"),
  16804. name: "Front-dressed",
  16805. image: {
  16806. source: "./media/characters/algier/front-dressed.svg",
  16807. extra: 596 / 572,
  16808. bottom: 0.038
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Micro",
  16815. height: math.unit(5, "cm")
  16816. },
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(180, "cm"),
  16820. default: true
  16821. },
  16822. {
  16823. name: "Macro",
  16824. height: math.unit(64, "m")
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16830. {
  16831. upright: {
  16832. height: math.unit(7, "feet"),
  16833. weight: math.unit(300, "lb"),
  16834. name: "Upright",
  16835. image: {
  16836. source: "./media/characters/pretzel/upright.svg",
  16837. extra: 534 / 522,
  16838. bottom: 0.065
  16839. }
  16840. },
  16841. sprawling: {
  16842. height: math.unit(3.75, "feet"),
  16843. weight: math.unit(300, "lb"),
  16844. name: "Sprawling",
  16845. image: {
  16846. source: "./media/characters/pretzel/sprawling.svg",
  16847. extra: 314 / 281,
  16848. bottom: 0.1
  16849. }
  16850. },
  16851. tongue: {
  16852. height: math.unit(2, "feet"),
  16853. name: "Tongue",
  16854. image: {
  16855. source: "./media/characters/pretzel/tongue.svg"
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(7, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Oversized",
  16867. height: math.unit(15, "feet")
  16868. },
  16869. {
  16870. name: "Huge",
  16871. height: math.unit(30, "feet")
  16872. },
  16873. {
  16874. name: "Macro",
  16875. height: math.unit(250, "feet")
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16881. {
  16882. sideFront: {
  16883. height: math.unit(5 + 2 / 12, "feet"),
  16884. weight: math.unit(120, "lb"),
  16885. name: "Front Side",
  16886. image: {
  16887. source: "./media/characters/roxi/side-front.svg",
  16888. extra: 2924 / 2717,
  16889. bottom: 0.08
  16890. }
  16891. },
  16892. sideBack: {
  16893. height: math.unit(5 + 2 / 12, "feet"),
  16894. weight: math.unit(120, "lb"),
  16895. name: "Back Side",
  16896. image: {
  16897. source: "./media/characters/roxi/side-back.svg",
  16898. extra: 2904 / 2693,
  16899. bottom: 0.06
  16900. }
  16901. },
  16902. front: {
  16903. height: math.unit(5 + 2 / 12, "feet"),
  16904. weight: math.unit(120, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/roxi/front.svg",
  16908. extra: 2028 / 1907,
  16909. bottom: 0.01
  16910. }
  16911. },
  16912. frontAlt: {
  16913. height: math.unit(5 + 2 / 12, "feet"),
  16914. weight: math.unit(120, "lb"),
  16915. name: "Front (Alt)",
  16916. image: {
  16917. source: "./media/characters/roxi/front-alt.svg",
  16918. extra: 1828 / 1798,
  16919. bottom: 0.01
  16920. }
  16921. },
  16922. sitting: {
  16923. height: math.unit(2.8, "feet"),
  16924. weight: math.unit(120, "lb"),
  16925. name: "Sitting",
  16926. image: {
  16927. source: "./media/characters/roxi/sitting.svg",
  16928. extra: 2660 / 2462,
  16929. bottom: 0.1
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(5 + 2 / 12, "feet"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16943. {
  16944. side: {
  16945. height: math.unit(55, "feet"),
  16946. weight: math.unit(153, "tons"),
  16947. name: "Side",
  16948. image: {
  16949. source: "./media/characters/shadow/side.svg",
  16950. extra: 701 / 628,
  16951. bottom: 0.02
  16952. }
  16953. },
  16954. flying: {
  16955. height: math.unit(145, "feet"),
  16956. weight: math.unit(153, "tons"),
  16957. name: "Flying",
  16958. image: {
  16959. source: "./media/characters/shadow/flying.svg"
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(55, "feet"),
  16967. default: true
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(200, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/marcie/front.svg",
  16980. extra: 960 / 876,
  16981. bottom: 58 / 1017.87
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(1, "mile"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(7, "feet"),
  16998. weight: math.unit(200, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/kachina/front.svg",
  17002. extra: 1290.68 / 1119,
  17003. bottom: 36.5 / 1327.18
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(7, "feet"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17017. {
  17018. looking: {
  17019. height: math.unit(2, "meters"),
  17020. weight: math.unit(300, "kg"),
  17021. name: "Looking",
  17022. image: {
  17023. source: "./media/characters/kash/looking.svg",
  17024. extra: 474 / 344,
  17025. bottom: 0.03
  17026. }
  17027. },
  17028. side: {
  17029. height: math.unit(2, "meters"),
  17030. weight: math.unit(300, "kg"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/kash/side.svg",
  17034. extra: 302 / 251,
  17035. bottom: 0.03
  17036. }
  17037. },
  17038. front: {
  17039. height: math.unit(2, "meters"),
  17040. weight: math.unit(300, "kg"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/kash/front.svg",
  17044. extra: 495 / 360,
  17045. bottom: 0.015
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(2, "meters"),
  17053. default: true
  17054. },
  17055. {
  17056. name: "Big",
  17057. height: math.unit(3, "meters")
  17058. },
  17059. {
  17060. name: "Large",
  17061. height: math.unit(5, "meters")
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17067. {
  17068. feeding: {
  17069. height: math.unit(6.7, "feet"),
  17070. weight: math.unit(350, "lb"),
  17071. name: "Feeding",
  17072. image: {
  17073. source: "./media/characters/lalim/feeding.svg",
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(6.7, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(9.5, "feet"),
  17090. weight: math.unit(600, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/de'vout/front.svg",
  17094. extra: 1443 / 1328,
  17095. bottom: 0.025
  17096. }
  17097. },
  17098. back: {
  17099. height: math.unit(9.5, "feet"),
  17100. weight: math.unit(600, "lb"),
  17101. name: "Back",
  17102. image: {
  17103. source: "./media/characters/de'vout/back.svg",
  17104. extra: 1443 / 1328
  17105. }
  17106. },
  17107. frontDressed: {
  17108. height: math.unit(9.5, "feet"),
  17109. weight: math.unit(600, "lb"),
  17110. name: "Front (Dressed",
  17111. image: {
  17112. source: "./media/characters/de'vout/front-dressed.svg",
  17113. extra: 1443 / 1328,
  17114. bottom: 0.025
  17115. }
  17116. },
  17117. backDressed: {
  17118. height: math.unit(9.5, "feet"),
  17119. weight: math.unit(600, "lb"),
  17120. name: "Back (Dressed",
  17121. image: {
  17122. source: "./media/characters/de'vout/back-dressed.svg",
  17123. extra: 1443 / 1328
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(9.5, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(8, "feet"),
  17140. weight: math.unit(225, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/talana/front.svg",
  17144. extra: 1410 / 1300,
  17145. bottom: 0.015
  17146. }
  17147. },
  17148. frontDressed: {
  17149. height: math.unit(8, "feet"),
  17150. weight: math.unit(225, "lb"),
  17151. name: "Front (Dressed",
  17152. image: {
  17153. source: "./media/characters/talana/front-dressed.svg",
  17154. extra: 1410 / 1300,
  17155. bottom: 0.015
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(8, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17169. {
  17170. side: {
  17171. height: math.unit(7.2, "feet"),
  17172. weight: math.unit(150, "lb"),
  17173. name: "Side",
  17174. image: {
  17175. source: "./media/characters/xeauvok/side.svg",
  17176. extra: 1975 / 1523,
  17177. bottom: 0.07
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(7.2, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17191. {
  17192. side: {
  17193. height: math.unit(10, "feet"),
  17194. weight: math.unit(900, "kg"),
  17195. name: "Side",
  17196. image: {
  17197. source: "./media/characters/zara/side.svg",
  17198. extra: 504 / 498
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(10, "feet"),
  17206. default: true
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17212. {
  17213. side: {
  17214. height: math.unit(6, "feet"),
  17215. weight: math.unit(150, "lb"),
  17216. name: "Side",
  17217. image: {
  17218. source: "./media/characters/richard-dragon/side.svg",
  17219. extra: 845 / 340,
  17220. bottom: 0.017
  17221. }
  17222. },
  17223. maw: {
  17224. height: math.unit(2.97, "feet"),
  17225. name: "Maw",
  17226. image: {
  17227. source: "./media/characters/richard-dragon/maw.svg"
  17228. }
  17229. },
  17230. },
  17231. [
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(4, "feet"),
  17239. weight: math.unit(100, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/richard-smeargle/front.svg",
  17243. extra: 2952 / 2820,
  17244. bottom: 0.028
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(4, "feet"),
  17252. default: true
  17253. },
  17254. {
  17255. name: "Dynamax",
  17256. height: math.unit(20, "meters")
  17257. },
  17258. ]
  17259. ))
  17260. characterMakers.push(() => makeCharacter(
  17261. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17262. {
  17263. front: {
  17264. height: math.unit(6, "feet"),
  17265. weight: math.unit(110, "lb"),
  17266. name: "Front",
  17267. image: {
  17268. source: "./media/characters/klay/front.svg",
  17269. extra: 962 / 883,
  17270. bottom: 0.04
  17271. }
  17272. },
  17273. back: {
  17274. height: math.unit(6, "feet"),
  17275. weight: math.unit(110, "lb"),
  17276. name: "Back",
  17277. image: {
  17278. source: "./media/characters/klay/back.svg",
  17279. extra: 962 / 883
  17280. }
  17281. },
  17282. beans: {
  17283. height: math.unit(1.15, "feet"),
  17284. name: "Beans",
  17285. image: {
  17286. source: "./media/characters/klay/beans.svg"
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Micro",
  17293. height: math.unit(6, "inches")
  17294. },
  17295. {
  17296. name: "Mini",
  17297. height: math.unit(3, "feet")
  17298. },
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(6, "feet"),
  17302. default: true
  17303. },
  17304. {
  17305. name: "Big",
  17306. height: math.unit(25, "feet")
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(100, "feet")
  17311. },
  17312. {
  17313. name: "Megamacro",
  17314. height: math.unit(400, "feet")
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(6, "feet"),
  17323. weight: math.unit(160, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/marcus/front.svg",
  17327. extra: 734 / 676,
  17328. bottom: 0.03
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Little",
  17335. height: math.unit(6, "feet")
  17336. },
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(110, "feet"),
  17340. default: true
  17341. },
  17342. {
  17343. name: "Macro",
  17344. height: math.unit(250, "feet")
  17345. },
  17346. {
  17347. name: "Megamacro",
  17348. height: math.unit(1000, "feet")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(7, "feet"),
  17357. weight: math.unit(275, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/claude-delroute/front.svg",
  17361. extra: 230 / 214,
  17362. bottom: 0.007
  17363. }
  17364. },
  17365. side: {
  17366. height: math.unit(7, "feet"),
  17367. weight: math.unit(275, "lb"),
  17368. name: "Side",
  17369. image: {
  17370. source: "./media/characters/claude-delroute/side.svg",
  17371. extra: 222 / 214,
  17372. bottom: 0.01
  17373. }
  17374. },
  17375. back: {
  17376. height: math.unit(7, "feet"),
  17377. weight: math.unit(275, "lb"),
  17378. name: "Back",
  17379. image: {
  17380. source: "./media/characters/claude-delroute/back.svg",
  17381. extra: 230 / 214,
  17382. bottom: 0.015
  17383. }
  17384. },
  17385. maw: {
  17386. height: math.unit(0.6407, "meters"),
  17387. name: "Maw",
  17388. image: {
  17389. source: "./media/characters/claude-delroute/maw.svg"
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(7, "feet"),
  17397. default: true
  17398. },
  17399. {
  17400. name: "Lorge",
  17401. height: math.unit(20, "feet")
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(8 + 4 / 12, "feet"),
  17410. weight: math.unit(600, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/dragonien/front.svg",
  17414. extra: 100 / 94,
  17415. bottom: 3.3 / 103.3445
  17416. }
  17417. },
  17418. back: {
  17419. height: math.unit(8 + 4 / 12, "feet"),
  17420. weight: math.unit(600, "lb"),
  17421. name: "Back",
  17422. image: {
  17423. source: "./media/characters/dragonien/back.svg",
  17424. extra: 776 / 746,
  17425. bottom: 6.4 / 782.0616
  17426. }
  17427. },
  17428. foot: {
  17429. height: math.unit(1.54, "feet"),
  17430. name: "Foot",
  17431. image: {
  17432. source: "./media/characters/dragonien/foot.svg",
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(8 + 4 / 12, "feet"),
  17440. default: true
  17441. },
  17442. {
  17443. name: "Macro",
  17444. height: math.unit(200, "feet")
  17445. },
  17446. {
  17447. name: "Megamacro",
  17448. height: math.unit(1, "mile")
  17449. },
  17450. {
  17451. name: "Gigamacro",
  17452. height: math.unit(1000, "miles")
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17458. {
  17459. front: {
  17460. height: math.unit(5 + 2 / 12, "feet"),
  17461. weight: math.unit(110, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/desta/front.svg",
  17465. extra: 767/726,
  17466. bottom: 11.7/779
  17467. }
  17468. },
  17469. back: {
  17470. height: math.unit(5 + 2 / 12, "feet"),
  17471. weight: math.unit(110, "lb"),
  17472. name: "Back",
  17473. image: {
  17474. source: "./media/characters/desta/back.svg",
  17475. extra: 777/728,
  17476. bottom: 6/784
  17477. }
  17478. },
  17479. frontAlt: {
  17480. height: math.unit(5 + 2 / 12, "feet"),
  17481. weight: math.unit(110, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/desta/front-alt.svg",
  17485. extra: 1482 / 1417
  17486. }
  17487. },
  17488. side: {
  17489. height: math.unit(5 + 2 / 12, "feet"),
  17490. weight: math.unit(110, "lb"),
  17491. name: "Side",
  17492. image: {
  17493. source: "./media/characters/desta/side.svg",
  17494. extra: 2579 / 2491,
  17495. bottom: 0.053
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Micro",
  17502. height: math.unit(6, "inches")
  17503. },
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(5 + 2 / 12, "feet"),
  17507. default: true
  17508. },
  17509. {
  17510. name: "Macro",
  17511. height: math.unit(62, "feet")
  17512. },
  17513. {
  17514. name: "Megamacro",
  17515. height: math.unit(1800, "feet")
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17521. {
  17522. front: {
  17523. height: math.unit(10, "feet"),
  17524. weight: math.unit(700, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/storm-alystar/front.svg",
  17528. extra: 2112 / 1898,
  17529. bottom: 0.034
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Micro",
  17536. height: math.unit(3.5, "inches")
  17537. },
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(10, "feet"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Macro",
  17545. height: math.unit(400, "feet")
  17546. },
  17547. {
  17548. name: "Deific",
  17549. height: math.unit(60, "miles")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(2.35, "meters"),
  17558. weight: math.unit(119, "kg"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/ilia/front.svg",
  17562. extra: 1285 / 1255,
  17563. bottom: 0.06
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(2.35, "meters")
  17571. },
  17572. {
  17573. name: "Macro",
  17574. height: math.unit(140, "meters"),
  17575. default: true
  17576. },
  17577. {
  17578. name: "Megamacro",
  17579. height: math.unit(100, "miles")
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6 + 5 / 12, "feet"),
  17588. weight: math.unit(190, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/kingdead/front.svg",
  17592. extra: 1228 / 1177
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Micro",
  17599. height: math.unit(7, "inches")
  17600. },
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(6 + 5 / 12, "feet")
  17604. },
  17605. {
  17606. name: "Macro",
  17607. height: math.unit(150, "feet"),
  17608. default: true
  17609. },
  17610. {
  17611. name: "Megamacro",
  17612. height: math.unit(200, "miles")
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(8, "feet"),
  17621. weight: math.unit(600, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/kyrehx/front.svg",
  17625. extra: 1195 / 1095,
  17626. bottom: 0.034
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Micro",
  17633. height: math.unit(2, "inches")
  17634. },
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(8, "feet"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(255, "feet")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17651. weight: math.unit(184, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/xang/front.svg",
  17655. extra: 845 / 755
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17663. default: true
  17664. },
  17665. {
  17666. name: "Macro",
  17667. height: math.unit(0.935 * 146, "feet")
  17668. },
  17669. {
  17670. name: "Megamacro",
  17671. height: math.unit(0.935 * 3, "miles")
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17677. {
  17678. frontDressed: {
  17679. height: math.unit(5 + 7 / 12, "feet"),
  17680. weight: math.unit(140, "lb"),
  17681. name: "Front (Dressed)",
  17682. image: {
  17683. source: "./media/characters/doc-weardno/front-dressed.svg",
  17684. extra: 263 / 234
  17685. }
  17686. },
  17687. backDressed: {
  17688. height: math.unit(5 + 7 / 12, "feet"),
  17689. weight: math.unit(140, "lb"),
  17690. name: "Back (Dressed)",
  17691. image: {
  17692. source: "./media/characters/doc-weardno/back-dressed.svg",
  17693. extra: 266 / 238
  17694. }
  17695. },
  17696. front: {
  17697. height: math.unit(5 + 7 / 12, "feet"),
  17698. weight: math.unit(140, "lb"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/doc-weardno/front.svg",
  17702. extra: 254 / 233
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Micro",
  17709. height: math.unit(3, "inches")
  17710. },
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(5 + 7 / 12, "feet"),
  17714. default: true
  17715. },
  17716. {
  17717. name: "Macro",
  17718. height: math.unit(25, "feet")
  17719. },
  17720. {
  17721. name: "Megamacro",
  17722. height: math.unit(2, "miles")
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(6 + 2 / 12, "feet"),
  17731. weight: math.unit(153, "lb"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/seth-whilst/front.svg",
  17735. bottom: 0.07
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Micro",
  17742. height: math.unit(5, "inches")
  17743. },
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(6 + 2 / 12, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(3, "inches"),
  17756. weight: math.unit(8, "grams"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/pocket-jabari/front.svg",
  17760. extra: 1024 / 974,
  17761. bottom: 0.039
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Minimicro",
  17768. height: math.unit(8, "mm")
  17769. },
  17770. {
  17771. name: "Micro",
  17772. height: math.unit(3, "inches"),
  17773. default: true
  17774. },
  17775. {
  17776. name: "Normal",
  17777. height: math.unit(3, "feet")
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17783. {
  17784. front: {
  17785. height: math.unit(15, "feet"),
  17786. weight: math.unit(3280, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/sapphy/front.svg",
  17790. extra: 671 / 577,
  17791. bottom: 0.085
  17792. }
  17793. },
  17794. back: {
  17795. height: math.unit(15, "feet"),
  17796. weight: math.unit(3280, "lb"),
  17797. name: "Back",
  17798. image: {
  17799. source: "./media/characters/sapphy/back.svg",
  17800. extra: 631 / 607,
  17801. bottom: 0.045
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(15, "feet")
  17809. },
  17810. {
  17811. name: "Casual Macro",
  17812. height: math.unit(120, "feet")
  17813. },
  17814. {
  17815. name: "Macro",
  17816. height: math.unit(2150, "feet"),
  17817. default: true
  17818. },
  17819. {
  17820. name: "Megamacro",
  17821. height: math.unit(8, "miles")
  17822. },
  17823. {
  17824. name: "Galaxy Mom",
  17825. height: math.unit(6, "megalightyears")
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(6, "feet"),
  17834. weight: math.unit(170, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/kiro/front.svg",
  17838. extra: 1064 / 1012,
  17839. bottom: 0.052
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Micro",
  17846. height: math.unit(6, "inches")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(6, "feet"),
  17851. default: true
  17852. },
  17853. {
  17854. name: "Macro",
  17855. height: math.unit(72, "feet")
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(5 + 9 / 12, "feet"),
  17864. weight: math.unit(175, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/irishfox/front.svg",
  17868. extra: 1912 / 1680,
  17869. bottom: 0.02
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Nano",
  17876. height: math.unit(1, "mm")
  17877. },
  17878. {
  17879. name: "Micro",
  17880. height: math.unit(2, "inches")
  17881. },
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(5 + 9 / 12, "feet"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Macro",
  17889. height: math.unit(45, "feet")
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(6 + 1 / 12, "feet"),
  17898. weight: math.unit(150, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/aronai-sieyes/front.svg",
  17902. extra: 1556 / 1480,
  17903. bottom: 0.015
  17904. }
  17905. },
  17906. side: {
  17907. height: math.unit(6 + 1 / 12, "feet"),
  17908. weight: math.unit(150, "lb"),
  17909. name: "Side",
  17910. image: {
  17911. source: "./media/characters/aronai-sieyes/side.svg",
  17912. extra: 1433 / 1390,
  17913. bottom: 0.0393
  17914. }
  17915. },
  17916. back: {
  17917. height: math.unit(6 + 1 / 12, "feet"),
  17918. weight: math.unit(150, "lb"),
  17919. name: "Back",
  17920. image: {
  17921. source: "./media/characters/aronai-sieyes/back.svg",
  17922. extra: 1544 / 1494,
  17923. bottom: 0.02
  17924. }
  17925. },
  17926. frontClothed: {
  17927. height: math.unit(6 + 1 / 12, "feet"),
  17928. weight: math.unit(150, "lb"),
  17929. name: "Front (Clothed)",
  17930. image: {
  17931. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17932. extra: 1582 / 1527
  17933. }
  17934. },
  17935. feral: {
  17936. height: math.unit(18, "feet"),
  17937. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17938. name: "Feral",
  17939. image: {
  17940. source: "./media/characters/aronai-sieyes/feral.svg",
  17941. extra: 1530 / 1240,
  17942. bottom: 0.035
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Micro",
  17949. height: math.unit(2, "inches")
  17950. },
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(6 + 1 / 12, "feet"),
  17954. default: true
  17955. }
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17960. {
  17961. front: {
  17962. height: math.unit(12, "feet"),
  17963. weight: math.unit(410, "kg"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/xuna/front.svg",
  17967. extra: 2184 / 1980
  17968. }
  17969. },
  17970. side: {
  17971. height: math.unit(12, "feet"),
  17972. weight: math.unit(410, "kg"),
  17973. name: "Side",
  17974. image: {
  17975. source: "./media/characters/xuna/side.svg",
  17976. extra: 2184 / 1980
  17977. }
  17978. },
  17979. back: {
  17980. height: math.unit(12, "feet"),
  17981. weight: math.unit(410, "kg"),
  17982. name: "Back",
  17983. image: {
  17984. source: "./media/characters/xuna/back.svg",
  17985. extra: 2184 / 1980
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Nano glow",
  17992. height: math.unit(10, "nm")
  17993. },
  17994. {
  17995. name: "Micro floof",
  17996. height: math.unit(0.3, "m")
  17997. },
  17998. {
  17999. name: "Huggable softy boi",
  18000. height: math.unit(3.6576, "m"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Admirable floof",
  18005. height: math.unit(80, "meters")
  18006. },
  18007. {
  18008. name: "Gentle macro",
  18009. height: math.unit(300, "meters")
  18010. },
  18011. {
  18012. name: "Very careful floof",
  18013. height: math.unit(3200, "meters")
  18014. },
  18015. {
  18016. name: "The mega floof",
  18017. height: math.unit(36000, "meters")
  18018. },
  18019. {
  18020. name: "Giga-fur-Wicker",
  18021. height: math.unit(4800000, "meters")
  18022. },
  18023. {
  18024. name: "Licky world",
  18025. height: math.unit(20000000, "meters")
  18026. },
  18027. {
  18028. name: "Floofy cyan sun",
  18029. height: math.unit(1500000000, "meters")
  18030. },
  18031. {
  18032. name: "Milky Wicker",
  18033. height: math.unit(1000000000000000000000, "meters")
  18034. },
  18035. {
  18036. name: "The observing Wicker",
  18037. height: math.unit(999999999999999999999999999, "meters")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(5 + 9 / 12, "feet"),
  18046. weight: math.unit(150, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/arokha-sieyes/front.svg",
  18050. extra: 1425 / 1284,
  18051. bottom: 0.05
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(5 + 9 / 12, "feet")
  18059. },
  18060. {
  18061. name: "Macro",
  18062. height: math.unit(30, "meters"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(6, "feet"),
  18072. weight: math.unit(180, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/arokh-sieyes/front.svg",
  18076. extra: 1830 / 1769,
  18077. bottom: 0.01
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(6, "feet")
  18085. },
  18086. {
  18087. name: "Macro",
  18088. height: math.unit(30, "meters"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18095. {
  18096. side: {
  18097. height: math.unit(13 + 1 / 12, "feet"),
  18098. weight: math.unit(8.5, "tonnes"),
  18099. name: "Side",
  18100. image: {
  18101. source: "./media/characters/goldeneye/side.svg",
  18102. extra: 1182 / 778,
  18103. bottom: 0.067
  18104. }
  18105. },
  18106. paw: {
  18107. height: math.unit(3.4, "feet"),
  18108. name: "Paw",
  18109. image: {
  18110. source: "./media/characters/goldeneye/paw.svg"
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(13 + 1 / 12, "feet"),
  18118. default: true
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18124. {
  18125. front: {
  18126. height: math.unit(6 + 1 / 12, "feet"),
  18127. weight: math.unit(210, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/leonardo-lycheborne/front.svg",
  18131. extra: 390 / 365,
  18132. bottom: 0.032
  18133. }
  18134. },
  18135. side: {
  18136. height: math.unit(6 + 1 / 12, "feet"),
  18137. weight: math.unit(210, "lb"),
  18138. name: "Side",
  18139. image: {
  18140. source: "./media/characters/leonardo-lycheborne/side.svg",
  18141. extra: 390 / 365,
  18142. bottom: 0.005
  18143. }
  18144. },
  18145. back: {
  18146. height: math.unit(6 + 1 / 12, "feet"),
  18147. weight: math.unit(210, "lb"),
  18148. name: "Back",
  18149. image: {
  18150. source: "./media/characters/leonardo-lycheborne/back.svg",
  18151. extra: 392 / 366,
  18152. bottom: 0.01
  18153. }
  18154. },
  18155. hand: {
  18156. height: math.unit(1.08, "feet"),
  18157. name: "Hand",
  18158. image: {
  18159. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18160. }
  18161. },
  18162. foot: {
  18163. height: math.unit(1.32, "feet"),
  18164. name: "Foot",
  18165. image: {
  18166. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18167. }
  18168. },
  18169. were: {
  18170. height: math.unit(20, "feet"),
  18171. weight: math.unit(7800, "lb"),
  18172. name: "Were",
  18173. image: {
  18174. source: "./media/characters/leonardo-lycheborne/were.svg",
  18175. extra: 308 / 294,
  18176. bottom: 0.048
  18177. }
  18178. },
  18179. feral: {
  18180. height: math.unit(7.5, "feet"),
  18181. weight: math.unit(600, "lb"),
  18182. name: "Feral",
  18183. image: {
  18184. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18185. extra: 210 / 186,
  18186. bottom: 0.108
  18187. }
  18188. },
  18189. taur: {
  18190. height: math.unit(11, "feet"),
  18191. weight: math.unit(3300, "lb"),
  18192. name: "Taur",
  18193. image: {
  18194. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18195. extra: 320 / 303,
  18196. bottom: 0.025
  18197. }
  18198. },
  18199. barghest: {
  18200. height: math.unit(11, "feet"),
  18201. weight: math.unit(1300, "lb"),
  18202. name: "Barghest",
  18203. image: {
  18204. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18205. extra: 323 / 302,
  18206. bottom: 0.027
  18207. }
  18208. },
  18209. dick: {
  18210. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18211. name: "Dick",
  18212. image: {
  18213. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18214. }
  18215. },
  18216. dickWere: {
  18217. height: math.unit((20) / 3.8, "feet"),
  18218. name: "Dick (Were)",
  18219. image: {
  18220. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(6 + 1 / 12, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(10, "feet"),
  18237. weight: math.unit(350, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/jet/front.svg",
  18241. extra: 2050 / 1980,
  18242. bottom: 0.013
  18243. }
  18244. },
  18245. back: {
  18246. height: math.unit(10, "feet"),
  18247. weight: math.unit(350, "lb"),
  18248. name: "Back",
  18249. image: {
  18250. source: "./media/characters/jet/back.svg",
  18251. extra: 2050 / 1980,
  18252. bottom: 0.013
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Micro",
  18259. height: math.unit(6, "inches")
  18260. },
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(10, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macro",
  18268. height: math.unit(100, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(15, "feet"),
  18277. weight: math.unit(2800, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/tanarath/front.svg",
  18281. extra: 2392 / 2220,
  18282. bottom: 0.03
  18283. }
  18284. },
  18285. back: {
  18286. height: math.unit(15, "feet"),
  18287. weight: math.unit(2800, "lb"),
  18288. name: "Back",
  18289. image: {
  18290. source: "./media/characters/tanarath/back.svg",
  18291. extra: 2392 / 2220,
  18292. bottom: 0.03
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(15, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(7 + 1 / 12, "feet"),
  18309. weight: math.unit(175, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/patty-cattybatty/front.svg",
  18313. extra: 908 / 874,
  18314. bottom: 0.025
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Micro",
  18321. height: math.unit(1, "inch")
  18322. },
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(7 + 1 / 12, "feet")
  18326. },
  18327. {
  18328. name: "Mini Macro",
  18329. height: math.unit(155, "feet")
  18330. },
  18331. {
  18332. name: "Macro",
  18333. height: math.unit(1077, "feet")
  18334. },
  18335. {
  18336. name: "Mega Macro",
  18337. height: math.unit(47650, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Giga Macro",
  18342. height: math.unit(440, "miles")
  18343. },
  18344. {
  18345. name: "Tera Macro",
  18346. height: math.unit(8700, "miles")
  18347. },
  18348. {
  18349. name: "Planetary Macro",
  18350. height: math.unit(32700, "miles")
  18351. },
  18352. {
  18353. name: "Solar Macro",
  18354. height: math.unit(550000, "miles")
  18355. },
  18356. {
  18357. name: "Celestial Macro",
  18358. height: math.unit(2.5, "AU")
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18364. {
  18365. front: {
  18366. height: math.unit(4 + 5 / 12, "feet"),
  18367. weight: math.unit(90, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/cappu/front.svg",
  18371. extra: 1247 / 1152,
  18372. bottom: 0.012
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(4 + 5 / 12, "feet"),
  18380. default: true
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18386. {
  18387. frontDressed: {
  18388. height: math.unit(70, "cm"),
  18389. weight: math.unit(6, "kg"),
  18390. name: "Front (Dressed)",
  18391. image: {
  18392. source: "./media/characters/sebi/front-dressed.svg",
  18393. extra: 713.5 / 686.5,
  18394. bottom: 0.003
  18395. }
  18396. },
  18397. front: {
  18398. height: math.unit(70, "cm"),
  18399. weight: math.unit(5, "kg"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/sebi/front.svg",
  18403. extra: 713.5 / 686.5,
  18404. bottom: 0.003
  18405. }
  18406. }
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(70, "cm"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Macro",
  18416. height: math.unit(8, "meters")
  18417. },
  18418. ]
  18419. ))
  18420. characterMakers.push(() => makeCharacter(
  18421. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18422. {
  18423. front: {
  18424. height: math.unit(6, "feet"),
  18425. weight: math.unit(150, "lb"),
  18426. name: "Front",
  18427. image: {
  18428. source: "./media/characters/typhek/front.svg",
  18429. extra: 1948 / 1929,
  18430. bottom: 0.025
  18431. }
  18432. },
  18433. side: {
  18434. height: math.unit(6, "feet"),
  18435. weight: math.unit(150, "lb"),
  18436. name: "Side",
  18437. image: {
  18438. source: "./media/characters/typhek/side.svg",
  18439. extra: 2034 / 2010,
  18440. bottom: 0.003
  18441. }
  18442. },
  18443. back: {
  18444. height: math.unit(6, "feet"),
  18445. weight: math.unit(150, "lb"),
  18446. name: "Back",
  18447. image: {
  18448. source: "./media/characters/typhek/back.svg",
  18449. extra: 2005 / 1978,
  18450. bottom: 0.004
  18451. }
  18452. },
  18453. palm: {
  18454. height: math.unit(1.2, "feet"),
  18455. name: "Palm",
  18456. image: {
  18457. source: "./media/characters/typhek/palm.svg"
  18458. }
  18459. },
  18460. fist: {
  18461. height: math.unit(1.1, "feet"),
  18462. name: "Fist",
  18463. image: {
  18464. source: "./media/characters/typhek/fist.svg"
  18465. }
  18466. },
  18467. foot: {
  18468. height: math.unit(1.57, "feet"),
  18469. name: "Foot",
  18470. image: {
  18471. source: "./media/characters/typhek/foot.svg"
  18472. }
  18473. },
  18474. sole: {
  18475. height: math.unit(2.05, "feet"),
  18476. name: "Sole",
  18477. image: {
  18478. source: "./media/characters/typhek/sole.svg"
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(40, "stories"),
  18486. default: true
  18487. },
  18488. {
  18489. name: "Megamacro",
  18490. height: math.unit(1, "mile")
  18491. },
  18492. {
  18493. name: "Gigamacro",
  18494. height: math.unit(4000, "solarradii")
  18495. },
  18496. {
  18497. name: "Universal",
  18498. height: math.unit(1.1, "universes")
  18499. }
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18504. {
  18505. side: {
  18506. height: math.unit(5 + 7 / 12, "feet"),
  18507. weight: math.unit(150, "lb"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/kassy/side.svg",
  18511. extra: 1280 / 1225,
  18512. bottom: 0.002
  18513. }
  18514. },
  18515. front: {
  18516. height: math.unit(5 + 7 / 12, "feet"),
  18517. weight: math.unit(150, "lb"),
  18518. name: "Front",
  18519. image: {
  18520. source: "./media/characters/kassy/front.svg",
  18521. extra: 1280 / 1225,
  18522. bottom: 0.025
  18523. }
  18524. },
  18525. back: {
  18526. height: math.unit(5 + 7 / 12, "feet"),
  18527. weight: math.unit(150, "lb"),
  18528. name: "Back",
  18529. image: {
  18530. source: "./media/characters/kassy/back.svg",
  18531. extra: 1280 / 1225,
  18532. bottom: 0.002
  18533. }
  18534. },
  18535. foot: {
  18536. height: math.unit(1.266, "feet"),
  18537. name: "Foot",
  18538. image: {
  18539. source: "./media/characters/kassy/foot.svg"
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Normal",
  18546. height: math.unit(5 + 7 / 12, "feet")
  18547. },
  18548. {
  18549. name: "Macro",
  18550. height: math.unit(137, "feet"),
  18551. default: true
  18552. },
  18553. {
  18554. name: "Megamacro",
  18555. height: math.unit(1, "mile")
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(6 + 1 / 12, "feet"),
  18564. weight: math.unit(200, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/neil/front.svg",
  18568. extra: 1326 / 1250,
  18569. bottom: 0.023
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(6 + 1 / 12, "feet"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Macro",
  18581. height: math.unit(200, "feet")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(5 + 9 / 12, "feet"),
  18590. weight: math.unit(190, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/atticus/front.svg",
  18594. extra: 2934 / 2785,
  18595. bottom: 0.025
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(5 + 9 / 12, "feet"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(180, "feet")
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18613. {
  18614. side: {
  18615. height: math.unit(9, "feet"),
  18616. weight: math.unit(650, "lb"),
  18617. name: "Side",
  18618. image: {
  18619. source: "./media/characters/milo/side.svg",
  18620. extra: 2644 / 2310,
  18621. bottom: 0.032
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(9, "feet"),
  18629. default: true
  18630. },
  18631. {
  18632. name: "Macro",
  18633. height: math.unit(300, "feet")
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18639. {
  18640. side: {
  18641. height: math.unit(8, "meters"),
  18642. weight: math.unit(90000, "kg"),
  18643. name: "Side",
  18644. image: {
  18645. source: "./media/characters/ijzer/side.svg",
  18646. extra: 2756 / 1600,
  18647. bottom: 0.01
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Small",
  18654. height: math.unit(3, "meters")
  18655. },
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(8, "meters"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Normal+",
  18663. height: math.unit(10, "meters")
  18664. },
  18665. {
  18666. name: "Bigger",
  18667. height: math.unit(24, "meters")
  18668. },
  18669. {
  18670. name: "Huge",
  18671. height: math.unit(80, "meters")
  18672. },
  18673. ]
  18674. ))
  18675. characterMakers.push(() => makeCharacter(
  18676. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18677. {
  18678. front: {
  18679. height: math.unit(6 + 2 / 12, "feet"),
  18680. weight: math.unit(153, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/luca-cervicum/front.svg",
  18684. extra: 370 / 327,
  18685. bottom: 0.015
  18686. }
  18687. },
  18688. back: {
  18689. height: math.unit(6 + 2 / 12, "feet"),
  18690. weight: math.unit(153, "lb"),
  18691. name: "Back",
  18692. image: {
  18693. source: "./media/characters/luca-cervicum/back.svg",
  18694. extra: 367 / 333,
  18695. bottom: 0.005
  18696. }
  18697. },
  18698. frontGear: {
  18699. height: math.unit(6 + 2 / 12, "feet"),
  18700. weight: math.unit(173, "lb"),
  18701. name: "Front (Gear)",
  18702. image: {
  18703. source: "./media/characters/luca-cervicum/front-gear.svg",
  18704. extra: 377 / 333,
  18705. bottom: 0.006
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(6 + 2 / 12, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18719. {
  18720. front: {
  18721. height: math.unit(6 + 1 / 12, "feet"),
  18722. weight: math.unit(304, "lb"),
  18723. name: "Front",
  18724. image: {
  18725. source: "./media/characters/oliver/front.svg",
  18726. extra: 157 / 143,
  18727. bottom: 0.08
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(6 + 1 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(5 + 7 / 12, "feet"),
  18744. weight: math.unit(140, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/shane/front.svg",
  18748. extra: 304 / 289,
  18749. bottom: 0.005
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5 + 7 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(5 + 9 / 12, "feet"),
  18766. weight: math.unit(178, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/shin/front.svg",
  18770. extra: 159 / 151,
  18771. bottom: 0.015
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(5 + 9 / 12, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(5 + 10 / 12, "feet"),
  18788. weight: math.unit(168, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/xerxes/front.svg",
  18792. extra: 282 / 260,
  18793. bottom: 0.045
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(5 + 10 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(6 + 7 / 12, "feet"),
  18810. weight: math.unit(208, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/chaska/front.svg",
  18814. extra: 332 / 319,
  18815. bottom: 0.015
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(6 + 7 / 12, "feet"),
  18823. default: true
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(5 + 8 / 12, "feet"),
  18832. weight: math.unit(208, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/enuk/front.svg",
  18836. extra: 437 / 406,
  18837. bottom: 0.02
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(5 + 8 / 12, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(5 + 10 / 12, "feet"),
  18854. weight: math.unit(252, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/bruun/front.svg",
  18858. extra: 197 / 187,
  18859. bottom: 0.012
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5 + 10 / 12, "feet"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(6 + 10 / 12, "feet"),
  18876. weight: math.unit(255, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/alexeev/front.svg",
  18880. extra: 213 / 200,
  18881. bottom: 0.05
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(6 + 10 / 12, "feet"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(2 + 8 / 12, "feet"),
  18898. weight: math.unit(22, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/evelyn/front.svg",
  18902. extra: 208 / 180
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(2 + 8 / 12, "feet"),
  18910. default: true
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(5 + 9 / 12, "feet"),
  18919. weight: math.unit(139, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/inca/front.svg",
  18923. extra: 294 / 291,
  18924. bottom: 0.03
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(5 + 9 / 12, "feet"),
  18932. default: true
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(5 + 1 / 12, "feet"),
  18941. weight: math.unit(84, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/magdalene/front.svg",
  18945. extra: 293 / 273
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Normal",
  18952. height: math.unit(5 + 1 / 12, "feet"),
  18953. default: true
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6 + 3 / 12, "feet"),
  18962. weight: math.unit(185, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/mera/front.svg",
  18966. extra: 291 / 277,
  18967. bottom: 0.03
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(6 + 3 / 12, "feet"),
  18975. default: true
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18981. {
  18982. front: {
  18983. height: math.unit(6 + 7 / 12, "feet"),
  18984. weight: math.unit(160, "lb"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/ceres/front.svg",
  18988. extra: 1023 / 950,
  18989. bottom: 0.027
  18990. }
  18991. },
  18992. back: {
  18993. height: math.unit(6 + 7 / 12, "feet"),
  18994. weight: math.unit(160, "lb"),
  18995. name: "Back",
  18996. image: {
  18997. source: "./media/characters/ceres/back.svg",
  18998. extra: 1023 / 950
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(6 + 7 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(5 + 10 / 12, "feet"),
  19015. weight: math.unit(150, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/kris/front.svg",
  19019. extra: 885 / 803,
  19020. bottom: 0.03
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(5 + 10 / 12, "feet"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(7, "feet"),
  19037. weight: math.unit(120, "kg"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/taluthus/front.svg",
  19041. extra: 903 / 833,
  19042. bottom: 0.015
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(7, "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Macro",
  19054. height: math.unit(300, "feet")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(5 + 9 / 12, "feet"),
  19063. weight: math.unit(145, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/dawn/front.svg",
  19067. extra: 2094 / 2016,
  19068. bottom: 0.025
  19069. }
  19070. },
  19071. back: {
  19072. height: math.unit(5 + 9 / 12, "feet"),
  19073. weight: math.unit(160, "lb"),
  19074. name: "Back",
  19075. image: {
  19076. source: "./media/characters/dawn/back.svg",
  19077. extra: 2112 / 2080,
  19078. bottom: 0.005
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(6 + 7 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19092. {
  19093. anthro: {
  19094. height: math.unit(8 + 3 / 12, "feet"),
  19095. weight: math.unit(450, "lb"),
  19096. name: "Anthro",
  19097. image: {
  19098. source: "./media/characters/arador/anthro.svg",
  19099. extra: 1835 / 1718,
  19100. bottom: 0.025
  19101. }
  19102. },
  19103. feral: {
  19104. height: math.unit(4, "feet"),
  19105. weight: math.unit(200, "lb"),
  19106. name: "Feral",
  19107. image: {
  19108. source: "./media/characters/arador/feral.svg",
  19109. extra: 1683 / 1514,
  19110. bottom: 0.07
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(8 + 3 / 12, "feet")
  19118. },
  19119. {
  19120. name: "Macro",
  19121. height: math.unit(82.5, "feet"),
  19122. default: true
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(5 + 10 / 12, "feet"),
  19131. weight: math.unit(125, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/dharsi/front.svg",
  19135. extra: 716 / 630,
  19136. bottom: 0.035
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Nano",
  19143. height: math.unit(100, "nm")
  19144. },
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(2, "inches")
  19148. },
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(5 + 10 / 12, "feet"),
  19152. default: true
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(1000, "feet")
  19157. },
  19158. {
  19159. name: "Megamacro",
  19160. height: math.unit(10, "miles")
  19161. },
  19162. {
  19163. name: "Gigamacro",
  19164. height: math.unit(3000, "miles")
  19165. },
  19166. {
  19167. name: "Teramacro",
  19168. height: math.unit(500000, "miles")
  19169. },
  19170. {
  19171. name: "Teramacro+",
  19172. height: math.unit(30, "galaxies")
  19173. },
  19174. ]
  19175. ))
  19176. characterMakers.push(() => makeCharacter(
  19177. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19178. {
  19179. front: {
  19180. height: math.unit(6, "feet"),
  19181. weight: math.unit(150, "lb"),
  19182. name: "Front",
  19183. image: {
  19184. source: "./media/characters/deathy/front.svg",
  19185. extra: 1552 / 1463,
  19186. bottom: 0.025
  19187. }
  19188. },
  19189. side: {
  19190. height: math.unit(6, "feet"),
  19191. weight: math.unit(150, "lb"),
  19192. name: "Side",
  19193. image: {
  19194. source: "./media/characters/deathy/side.svg",
  19195. extra: 1604 / 1455,
  19196. bottom: 0.025
  19197. }
  19198. },
  19199. back: {
  19200. height: math.unit(6, "feet"),
  19201. weight: math.unit(150, "lb"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/deathy/back.svg",
  19205. extra: 1580 / 1463,
  19206. bottom: 0.005
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Micro",
  19213. height: math.unit(5, "millimeters")
  19214. },
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(6 + 5 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19224. {
  19225. front: {
  19226. height: math.unit(16, "feet"),
  19227. weight: math.unit(4000, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/juniper/front.svg",
  19231. bottom: 0.04
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(16, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/hipster/front.svg",
  19252. extra: 1312 / 1209,
  19253. bottom: 0.025
  19254. }
  19255. },
  19256. back: {
  19257. height: math.unit(6, "feet"),
  19258. weight: math.unit(150, "lb"),
  19259. name: "Back",
  19260. image: {
  19261. source: "./media/characters/hipster/back.svg",
  19262. extra: 1281 / 1196,
  19263. bottom: 0.01
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Micro",
  19270. height: math.unit(1, "mm")
  19271. },
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(4, "inches"),
  19275. default: true
  19276. },
  19277. {
  19278. name: "Macro",
  19279. height: math.unit(500, "feet")
  19280. },
  19281. {
  19282. name: "Megamacro",
  19283. height: math.unit(1000, "miles")
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(6, "feet"),
  19292. weight: math.unit(150, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/tendirmuldr/front.svg",
  19296. extra: 1878 / 1772,
  19297. bottom: 0.015
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Megamacro",
  19304. height: math.unit(1500, "miles"),
  19305. default: true
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19311. {
  19312. front: {
  19313. height: math.unit(14, "feet"),
  19314. weight: math.unit(12000, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/mort/front.svg",
  19318. extra: 365 / 318,
  19319. bottom: 0.01
  19320. }
  19321. },
  19322. side: {
  19323. height: math.unit(14, "feet"),
  19324. weight: math.unit(12000, "lb"),
  19325. name: "Side",
  19326. image: {
  19327. source: "./media/characters/mort/side.svg",
  19328. extra: 365 / 318,
  19329. bottom: 0.052
  19330. },
  19331. default: true
  19332. },
  19333. back: {
  19334. height: math.unit(14, "feet"),
  19335. weight: math.unit(12000, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/mort/back.svg",
  19339. extra: 371 / 332,
  19340. bottom: 0.18
  19341. }
  19342. },
  19343. },
  19344. [
  19345. {
  19346. name: "Normal",
  19347. height: math.unit(14, "feet"),
  19348. default: true
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19354. {
  19355. front: {
  19356. height: math.unit(8, "feet"),
  19357. weight: math.unit(1, "ton"),
  19358. name: "Front",
  19359. image: {
  19360. source: "./media/characters/lycoa/front.svg",
  19361. extra: 1875 / 1789,
  19362. bottom: 0.022
  19363. }
  19364. },
  19365. back: {
  19366. height: math.unit(8, "feet"),
  19367. weight: math.unit(1, "ton"),
  19368. name: "Back",
  19369. image: {
  19370. source: "./media/characters/lycoa/back.svg",
  19371. extra: 1835 / 1781,
  19372. bottom: 0.03
  19373. }
  19374. },
  19375. head: {
  19376. height: math.unit(2.1, "feet"),
  19377. name: "Head",
  19378. image: {
  19379. source: "./media/characters/lycoa/head.svg"
  19380. }
  19381. },
  19382. tailmaw: {
  19383. height: math.unit(1.9, "feet"),
  19384. name: "Tailmaw",
  19385. image: {
  19386. source: "./media/characters/lycoa/tailmaw.svg"
  19387. }
  19388. },
  19389. tentacles: {
  19390. height: math.unit(2.1, "feet"),
  19391. name: "Tentacles",
  19392. image: {
  19393. source: "./media/characters/lycoa/tentacles.svg"
  19394. }
  19395. },
  19396. dick: {
  19397. height: math.unit(1.73, "feet"),
  19398. name: "Dick",
  19399. image: {
  19400. source: "./media/characters/lycoa/dick.svg"
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(8, "feet"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(30, "feet")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19418. {
  19419. front: {
  19420. height: math.unit(4 + 2 / 12, "feet"),
  19421. weight: math.unit(70, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/naldara/front.svg",
  19425. extra: 841 / 720,
  19426. bottom: 0.04
  19427. }
  19428. },
  19429. naga: {
  19430. height: math.unit(23, "feet"),
  19431. weight: math.unit(15000, "kg"),
  19432. name: "Naga",
  19433. image: {
  19434. source: "./media/characters/naldara/naga.svg",
  19435. extra: 3290/2959,
  19436. bottom: 124/3432
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(4 + 2 / 12, "feet"),
  19444. default: true
  19445. },
  19446. ]
  19447. ))
  19448. characterMakers.push(() => makeCharacter(
  19449. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19450. {
  19451. front: {
  19452. height: math.unit(13 + 7 / 12, "feet"),
  19453. weight: math.unit(1500, "lb"),
  19454. name: "Front",
  19455. image: {
  19456. source: "./media/characters/briar/front.svg",
  19457. extra: 626 / 596,
  19458. bottom: 0.08
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(13 + 7 / 12, "feet"),
  19466. default: true
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19472. {
  19473. side: {
  19474. height: math.unit(10, "feet"),
  19475. weight: math.unit(500, "lb"),
  19476. name: "Side",
  19477. image: {
  19478. source: "./media/characters/vanguard/side.svg",
  19479. extra: 502 / 425,
  19480. bottom: 0.087
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(10, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(7.5, "feet"),
  19497. weight: math.unit(2, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/artemis/front.svg",
  19501. extra: 1192 / 1075,
  19502. bottom: 0.07
  19503. }
  19504. },
  19505. frontNsfw: {
  19506. height: math.unit(7.5, "feet"),
  19507. weight: math.unit(2, "lb"),
  19508. name: "Front (NSFW)",
  19509. image: {
  19510. source: "./media/characters/artemis/front-nsfw.svg",
  19511. extra: 1192 / 1075,
  19512. bottom: 0.07
  19513. }
  19514. },
  19515. frontNsfwer: {
  19516. height: math.unit(7.5, "feet"),
  19517. weight: math.unit(2, "lb"),
  19518. name: "Front (NSFW-er)",
  19519. image: {
  19520. source: "./media/characters/artemis/front-nsfwer.svg",
  19521. extra: 1192 / 1075,
  19522. bottom: 0.07
  19523. }
  19524. },
  19525. side: {
  19526. height: math.unit(7.5, "feet"),
  19527. weight: math.unit(2, "lb"),
  19528. name: "Side",
  19529. image: {
  19530. source: "./media/characters/artemis/side.svg",
  19531. extra: 1192 / 1075,
  19532. bottom: 0.07
  19533. }
  19534. },
  19535. sideNsfw: {
  19536. height: math.unit(7.5, "feet"),
  19537. weight: math.unit(2, "lb"),
  19538. name: "Side (NSFW)",
  19539. image: {
  19540. source: "./media/characters/artemis/side-nsfw.svg",
  19541. extra: 1192 / 1075,
  19542. bottom: 0.07
  19543. }
  19544. },
  19545. sideNsfwer: {
  19546. height: math.unit(7.5, "feet"),
  19547. weight: math.unit(2, "lb"),
  19548. name: "Side (NSFW-er)",
  19549. image: {
  19550. source: "./media/characters/artemis/side-nsfwer.svg",
  19551. extra: 1192 / 1075,
  19552. bottom: 0.07
  19553. }
  19554. },
  19555. maw: {
  19556. height: math.unit(1.1, "feet"),
  19557. name: "Maw",
  19558. image: {
  19559. source: "./media/characters/artemis/maw.svg"
  19560. }
  19561. },
  19562. stomach: {
  19563. height: math.unit(0.95, "feet"),
  19564. name: "Stomach",
  19565. image: {
  19566. source: "./media/characters/artemis/stomach.svg"
  19567. }
  19568. },
  19569. dickCanine: {
  19570. height: math.unit(1, "feet"),
  19571. name: "Dick (Canine)",
  19572. image: {
  19573. source: "./media/characters/artemis/dick-canine.svg"
  19574. }
  19575. },
  19576. dickEquine: {
  19577. height: math.unit(0.85, "feet"),
  19578. name: "Dick (Equine)",
  19579. image: {
  19580. source: "./media/characters/artemis/dick-equine.svg"
  19581. }
  19582. },
  19583. dickExotic: {
  19584. height: math.unit(0.85, "feet"),
  19585. name: "Dick (Exotic)",
  19586. image: {
  19587. source: "./media/characters/artemis/dick-exotic.svg"
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(7.5, "feet"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Enlarged",
  19599. height: math.unit(12, "feet")
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(5 + 3 / 12, "feet"),
  19608. weight: math.unit(160, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/kira/front.svg",
  19612. extra: 906 / 786,
  19613. bottom: 0.01
  19614. }
  19615. },
  19616. back: {
  19617. height: math.unit(5 + 3 / 12, "feet"),
  19618. weight: math.unit(160, "lb"),
  19619. name: "Back",
  19620. image: {
  19621. source: "./media/characters/kira/back.svg",
  19622. extra: 882 / 757,
  19623. bottom: 0.005
  19624. }
  19625. },
  19626. frontDressed: {
  19627. height: math.unit(5 + 3 / 12, "feet"),
  19628. weight: math.unit(160, "lb"),
  19629. name: "Front (Dressed)",
  19630. image: {
  19631. source: "./media/characters/kira/front-dressed.svg",
  19632. extra: 906 / 786,
  19633. bottom: 0.01
  19634. }
  19635. },
  19636. beans: {
  19637. height: math.unit(0.92, "feet"),
  19638. name: "Beans",
  19639. image: {
  19640. source: "./media/characters/kira/beans.svg"
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 3 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(5 + 4 / 12, "feet"),
  19657. weight: math.unit(145, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/scramble/front.svg",
  19661. extra: 763 / 727,
  19662. bottom: 0.05
  19663. }
  19664. },
  19665. back: {
  19666. height: math.unit(5 + 4 / 12, "feet"),
  19667. weight: math.unit(145, "lb"),
  19668. name: "Back",
  19669. image: {
  19670. source: "./media/characters/scramble/back.svg",
  19671. extra: 826 / 737,
  19672. bottom: 0.002
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(5 + 4 / 12, "feet"),
  19680. default: true
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19686. {
  19687. side: {
  19688. height: math.unit(6 + 2 / 12, "feet"),
  19689. weight: math.unit(190, "lb"),
  19690. name: "Side",
  19691. image: {
  19692. source: "./media/characters/biscuit/side.svg",
  19693. extra: 858 / 791,
  19694. bottom: 0.044
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(6 + 2 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(5 + 2 / 12, "feet"),
  19711. weight: math.unit(120, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/poffin/front.svg",
  19715. extra: 786 / 680,
  19716. bottom: 0.005
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(5 + 2 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(6 + 3 / 12, "feet"),
  19733. weight: math.unit(519, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/dhari/front.svg",
  19737. extra: 1048 / 946,
  19738. bottom: 0.015
  19739. }
  19740. },
  19741. back: {
  19742. height: math.unit(6 + 3 / 12, "feet"),
  19743. weight: math.unit(519, "lb"),
  19744. name: "Back",
  19745. image: {
  19746. source: "./media/characters/dhari/back.svg",
  19747. extra: 1048 / 931,
  19748. bottom: 0.005
  19749. }
  19750. },
  19751. frontDressed: {
  19752. height: math.unit(6 + 3 / 12, "feet"),
  19753. weight: math.unit(519, "lb"),
  19754. name: "Front (Dressed)",
  19755. image: {
  19756. source: "./media/characters/dhari/front-dressed.svg",
  19757. extra: 1713 / 1546,
  19758. bottom: 0.02
  19759. }
  19760. },
  19761. backDressed: {
  19762. height: math.unit(6 + 3 / 12, "feet"),
  19763. weight: math.unit(519, "lb"),
  19764. name: "Back (Dressed)",
  19765. image: {
  19766. source: "./media/characters/dhari/back-dressed.svg",
  19767. extra: 1699 / 1537,
  19768. bottom: 0.01
  19769. }
  19770. },
  19771. maw: {
  19772. height: math.unit(0.95, "feet"),
  19773. name: "Maw",
  19774. image: {
  19775. source: "./media/characters/dhari/maw.svg"
  19776. }
  19777. },
  19778. wereFront: {
  19779. height: math.unit(12 + 8 / 12, "feet"),
  19780. weight: math.unit(4000, "lb"),
  19781. name: "Front (Were)",
  19782. image: {
  19783. source: "./media/characters/dhari/were-front.svg",
  19784. extra: 1065 / 969,
  19785. bottom: 0.015
  19786. }
  19787. },
  19788. wereBack: {
  19789. height: math.unit(12 + 8 / 12, "feet"),
  19790. weight: math.unit(4000, "lb"),
  19791. name: "Back (Were)",
  19792. image: {
  19793. source: "./media/characters/dhari/were-back.svg",
  19794. extra: 1065 / 969,
  19795. bottom: 0.012
  19796. }
  19797. },
  19798. wereMaw: {
  19799. height: math.unit(0.625, "meters"),
  19800. name: "Maw (Were)",
  19801. image: {
  19802. source: "./media/characters/dhari/were-maw.svg"
  19803. }
  19804. },
  19805. },
  19806. [
  19807. {
  19808. name: "Normal",
  19809. height: math.unit(6 + 3 / 12, "feet"),
  19810. default: true
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19816. {
  19817. anthro: {
  19818. height: math.unit(5 + 7 / 12, "feet"),
  19819. weight: math.unit(175, "lb"),
  19820. name: "Anthro",
  19821. image: {
  19822. source: "./media/characters/rena-dyne/anthro.svg",
  19823. extra: 1849 / 1785,
  19824. bottom: 0.005
  19825. }
  19826. },
  19827. taur: {
  19828. height: math.unit(15 + 6 / 12, "feet"),
  19829. weight: math.unit(8000, "lb"),
  19830. name: "Taur",
  19831. image: {
  19832. source: "./media/characters/rena-dyne/taur.svg",
  19833. extra: 2315 / 2234,
  19834. bottom: 0.033
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(5 + 7 / 12, "feet"),
  19842. default: true
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(8, "feet"),
  19851. weight: math.unit(600, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/weremeep/front.svg",
  19855. extra: 967 / 862,
  19856. bottom: 0.01
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(8, "feet"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Lorg",
  19868. height: math.unit(12, "feet")
  19869. },
  19870. {
  19871. name: "Oh Lawd She Comin'",
  19872. height: math.unit(20, "feet")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19878. {
  19879. front: {
  19880. height: math.unit(4, "feet"),
  19881. weight: math.unit(90, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/reza/front.svg",
  19885. extra: 1183 / 1111,
  19886. bottom: 0.017
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(4, "feet"),
  19891. weight: math.unit(90, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/reza/back.svg",
  19895. extra: 1183 / 1111,
  19896. bottom: 0.01
  19897. }
  19898. },
  19899. drake: {
  19900. height: math.unit(30, "feet"),
  19901. weight: math.unit(246960, "lb"),
  19902. name: "Drake",
  19903. image: {
  19904. source: "./media/characters/reza/drake.svg",
  19905. extra: 2350 / 2024,
  19906. bottom: 60.7 / 2403
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(4, "feet"),
  19914. default: true
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19920. {
  19921. side: {
  19922. height: math.unit(15, "feet"),
  19923. weight: math.unit(14, "tons"),
  19924. name: "Side",
  19925. image: {
  19926. source: "./media/characters/athea/side.svg",
  19927. extra: 960 / 540,
  19928. bottom: 0.003
  19929. }
  19930. },
  19931. sitting: {
  19932. height: math.unit(6 * 2.85, "feet"),
  19933. weight: math.unit(14, "tons"),
  19934. name: "Sitting",
  19935. image: {
  19936. source: "./media/characters/athea/sitting.svg",
  19937. extra: 621 / 581,
  19938. bottom: 0.075
  19939. }
  19940. },
  19941. maw: {
  19942. height: math.unit(7.59498031496063, "feet"),
  19943. name: "Maw",
  19944. image: {
  19945. source: "./media/characters/athea/maw.svg"
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Lap Cat",
  19952. height: math.unit(2.5, "feet")
  19953. },
  19954. {
  19955. name: "Minimacro",
  19956. height: math.unit(15, "feet"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "Macro",
  19961. height: math.unit(120, "feet")
  19962. },
  19963. {
  19964. name: "Macro+",
  19965. height: math.unit(640, "feet")
  19966. },
  19967. {
  19968. name: "Colossus",
  19969. height: math.unit(2.2, "miles")
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19975. {
  19976. front: {
  19977. height: math.unit(8 + 8 / 12, "feet"),
  19978. weight: math.unit(130, "kg"),
  19979. name: "Front",
  19980. image: {
  19981. source: "./media/characters/seroko/front.svg",
  19982. extra: 1385 / 1280,
  19983. bottom: 0.025
  19984. }
  19985. },
  19986. back: {
  19987. height: math.unit(8 + 8 / 12, "feet"),
  19988. weight: math.unit(130, "kg"),
  19989. name: "Back",
  19990. image: {
  19991. source: "./media/characters/seroko/back.svg",
  19992. extra: 1369 / 1238,
  19993. bottom: 0.018
  19994. }
  19995. },
  19996. frontDressed: {
  19997. height: math.unit(8 + 8 / 12, "feet"),
  19998. weight: math.unit(130, "kg"),
  19999. name: "Front (Dressed)",
  20000. image: {
  20001. source: "./media/characters/seroko/front-dressed.svg",
  20002. extra: 1366 / 1275,
  20003. bottom: 0.03
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(8 + 8 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(5.5, "feet"),
  20020. weight: math.unit(160, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/quatzi/front.svg",
  20024. extra: 2346 / 2242,
  20025. bottom: 0.015
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(5.5, "feet"),
  20033. default: true
  20034. },
  20035. {
  20036. name: "Big",
  20037. height: math.unit(7.7, "feet")
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(5 + 11 / 12, "feet"),
  20046. weight: math.unit(180, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/sen/front.svg",
  20050. extra: 1321 / 1254,
  20051. bottom: 0.015
  20052. }
  20053. },
  20054. side: {
  20055. height: math.unit(5 + 11 / 12, "feet"),
  20056. weight: math.unit(180, "lb"),
  20057. name: "Side",
  20058. image: {
  20059. source: "./media/characters/sen/side.svg",
  20060. extra: 1321 / 1254,
  20061. bottom: 0.007
  20062. }
  20063. },
  20064. back: {
  20065. height: math.unit(5 + 11 / 12, "feet"),
  20066. weight: math.unit(180, "lb"),
  20067. name: "Back",
  20068. image: {
  20069. source: "./media/characters/sen/back.svg",
  20070. extra: 1321 / 1254
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(5 + 11 / 12, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(166.6, "cm"),
  20087. weight: math.unit(66.6, "kg"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/fruity/front.svg",
  20091. extra: 1510 / 1386,
  20092. bottom: 0.04
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(166.6, "cm"),
  20097. weight: math.unit(66.6, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/fruity/back.svg",
  20101. extra: 1563 / 1435,
  20102. bottom: 0.005
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Normal",
  20109. height: math.unit(166.6, "cm"),
  20110. default: true
  20111. },
  20112. {
  20113. name: "Demonic",
  20114. height: math.unit(166.6, "feet")
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20120. {
  20121. side: {
  20122. height: math.unit(10, "feet"),
  20123. weight: math.unit(500, "lb"),
  20124. name: "Side",
  20125. image: {
  20126. source: "./media/characters/zost/side.svg",
  20127. extra: 966 / 880,
  20128. bottom: 0.075
  20129. }
  20130. },
  20131. mawFront: {
  20132. height: math.unit(1.08, "meters"),
  20133. name: "Maw (Front)",
  20134. image: {
  20135. source: "./media/characters/zost/maw-front.svg"
  20136. }
  20137. },
  20138. mawSide: {
  20139. height: math.unit(2.66, "feet"),
  20140. name: "Maw (Side)",
  20141. image: {
  20142. source: "./media/characters/zost/maw-side.svg"
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(10, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(5 + 4 / 12, "feet"),
  20159. weight: math.unit(120, "lb"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/luci/front.svg",
  20163. extra: 1985 / 1884,
  20164. bottom: 0.04
  20165. }
  20166. },
  20167. back: {
  20168. height: math.unit(5 + 4 / 12, "feet"),
  20169. weight: math.unit(120, "lb"),
  20170. name: "Back",
  20171. image: {
  20172. source: "./media/characters/luci/back.svg",
  20173. extra: 1892 / 1791,
  20174. bottom: 0.002
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(5 + 4 / 12, "feet"),
  20182. default: true
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(1500, "feet"),
  20191. weight: math.unit(3.8e6, "tons"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/2th/front.svg",
  20195. extra: 3489 / 3350,
  20196. bottom: 0.1
  20197. }
  20198. },
  20199. foot: {
  20200. height: math.unit(461, "feet"),
  20201. name: "Foot",
  20202. image: {
  20203. source: "./media/characters/2th/foot.svg"
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "\"Micro\"",
  20210. height: math.unit(15 + 7 / 12, "feet")
  20211. },
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(1500, "feet"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Macro",
  20219. height: math.unit(5000, "feet")
  20220. },
  20221. {
  20222. name: "Megamacro",
  20223. height: math.unit(15, "miles")
  20224. },
  20225. {
  20226. name: "Gigamacro",
  20227. height: math.unit(4000, "miles")
  20228. },
  20229. {
  20230. name: "Galactic",
  20231. height: math.unit(50, "AU")
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(5 + 6 / 12, "feet"),
  20240. weight: math.unit(220, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/amethyst/front.svg",
  20244. extra: 2078 / 2040,
  20245. bottom: 0.045
  20246. }
  20247. },
  20248. back: {
  20249. height: math.unit(5 + 6 / 12, "feet"),
  20250. weight: math.unit(220, "lb"),
  20251. name: "Back",
  20252. image: {
  20253. source: "./media/characters/amethyst/back.svg",
  20254. extra: 2021 / 1989,
  20255. bottom: 0.02
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(5 + 6 / 12, "feet"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20269. {
  20270. front: {
  20271. height: math.unit(4 + 11 / 12, "feet"),
  20272. weight: math.unit(120, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/yumi-akiyama/front.svg",
  20276. extra: 1327 / 1235,
  20277. bottom: 0.02
  20278. }
  20279. },
  20280. back: {
  20281. height: math.unit(4 + 11 / 12, "feet"),
  20282. weight: math.unit(120, "lb"),
  20283. name: "Back",
  20284. image: {
  20285. source: "./media/characters/yumi-akiyama/back.svg",
  20286. extra: 1287 / 1245,
  20287. bottom: 0.002
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Galactic",
  20294. height: math.unit(50, "galaxies"),
  20295. default: true
  20296. },
  20297. {
  20298. name: "Universal",
  20299. height: math.unit(100, "universes")
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20305. {
  20306. front: {
  20307. height: math.unit(8, "feet"),
  20308. weight: math.unit(500, "lb"),
  20309. name: "Front",
  20310. image: {
  20311. source: "./media/characters/rifter-yrmori/front.svg",
  20312. extra: 1180 / 1125,
  20313. bottom: 0.02
  20314. }
  20315. },
  20316. back: {
  20317. height: math.unit(8, "feet"),
  20318. weight: math.unit(500, "lb"),
  20319. name: "Back",
  20320. image: {
  20321. source: "./media/characters/rifter-yrmori/back.svg",
  20322. extra: 1190 / 1145,
  20323. bottom: 0.001
  20324. }
  20325. },
  20326. wings: {
  20327. height: math.unit(7.75, "feet"),
  20328. weight: math.unit(500, "lb"),
  20329. name: "Wings",
  20330. image: {
  20331. source: "./media/characters/rifter-yrmori/wings.svg",
  20332. extra: 1357 / 1285
  20333. }
  20334. },
  20335. maw: {
  20336. height: math.unit(0.8, "feet"),
  20337. name: "Maw",
  20338. image: {
  20339. source: "./media/characters/rifter-yrmori/maw.svg"
  20340. }
  20341. },
  20342. mawfront: {
  20343. height: math.unit(1.45, "feet"),
  20344. name: "Maw (Front)",
  20345. image: {
  20346. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(8, "feet"),
  20354. default: true
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(42, "meters")
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20364. {
  20365. were: {
  20366. height: math.unit(25 + 6 / 12, "feet"),
  20367. weight: math.unit(10000, "lb"),
  20368. name: "Were",
  20369. image: {
  20370. source: "./media/characters/tahajin/were.svg",
  20371. extra: 801 / 770,
  20372. bottom: 0.042
  20373. }
  20374. },
  20375. aquatic: {
  20376. height: math.unit(6 + 4 / 12, "feet"),
  20377. weight: math.unit(160, "lb"),
  20378. name: "Aquatic",
  20379. image: {
  20380. source: "./media/characters/tahajin/aquatic.svg",
  20381. extra: 572 / 542,
  20382. bottom: 0.04
  20383. }
  20384. },
  20385. chow: {
  20386. height: math.unit(8 + 11 / 12, "feet"),
  20387. weight: math.unit(450, "lb"),
  20388. name: "Chow",
  20389. image: {
  20390. source: "./media/characters/tahajin/chow.svg",
  20391. extra: 660 / 640,
  20392. bottom: 0.015
  20393. }
  20394. },
  20395. demiNaga: {
  20396. height: math.unit(6 + 8 / 12, "feet"),
  20397. weight: math.unit(300, "lb"),
  20398. name: "Demi Naga",
  20399. image: {
  20400. source: "./media/characters/tahajin/demi-naga.svg",
  20401. extra: 643 / 615,
  20402. bottom: 0.1
  20403. }
  20404. },
  20405. data: {
  20406. height: math.unit(5, "inches"),
  20407. weight: math.unit(0.1, "lb"),
  20408. name: "Data",
  20409. image: {
  20410. source: "./media/characters/tahajin/data.svg"
  20411. }
  20412. },
  20413. fluu: {
  20414. height: math.unit(5 + 7 / 12, "feet"),
  20415. weight: math.unit(140, "lb"),
  20416. name: "Fluu",
  20417. image: {
  20418. source: "./media/characters/tahajin/fluu.svg",
  20419. extra: 628 / 592,
  20420. bottom: 0.02
  20421. }
  20422. },
  20423. starWarrior: {
  20424. height: math.unit(4 + 5 / 12, "feet"),
  20425. weight: math.unit(50, "lb"),
  20426. name: "Star Warrior",
  20427. image: {
  20428. source: "./media/characters/tahajin/star-warrior.svg"
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(25 + 6 / 12, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(8, "feet"),
  20445. weight: math.unit(350, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/gabira/front.svg",
  20449. extra: 608 / 580,
  20450. bottom: 0.03
  20451. }
  20452. },
  20453. back: {
  20454. height: math.unit(8, "feet"),
  20455. weight: math.unit(350, "lb"),
  20456. name: "Back",
  20457. image: {
  20458. source: "./media/characters/gabira/back.svg",
  20459. extra: 608 / 580,
  20460. bottom: 0.03
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(8, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(5 + 3 / 12, "feet"),
  20477. weight: math.unit(137, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/sasha-katraine/front.svg",
  20481. bottom: 0.045
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Micro",
  20488. height: math.unit(5, "inches")
  20489. },
  20490. {
  20491. name: "Normal",
  20492. height: math.unit(5 + 3 / 12, "feet"),
  20493. default: true
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20499. {
  20500. side: {
  20501. height: math.unit(4, "inches"),
  20502. weight: math.unit(200, "grams"),
  20503. name: "Side",
  20504. image: {
  20505. source: "./media/characters/der/side.svg",
  20506. extra: 719 / 400,
  20507. bottom: 30.6 / 749.9187
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Micro",
  20514. height: math.unit(4, "inches"),
  20515. default: true
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20521. {
  20522. side: {
  20523. height: math.unit(30, "meters"),
  20524. weight: math.unit(700, "tonnes"),
  20525. name: "Side",
  20526. image: {
  20527. source: "./media/characters/fixerdragon/side.svg",
  20528. extra: (1293.0514 - 116.03) / 1106.86,
  20529. bottom: 116.03 / 1293.0514
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Planck",
  20536. height: math.unit(1.6e-35, "meters")
  20537. },
  20538. {
  20539. name: "Micro",
  20540. height: math.unit(0.4, "meters")
  20541. },
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(30, "meters"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Megamacro",
  20549. height: math.unit(1.2, "megameters")
  20550. },
  20551. {
  20552. name: "Teramacro",
  20553. height: math.unit(130, "terameters")
  20554. },
  20555. {
  20556. name: "Yottamacro",
  20557. height: math.unit(6200, "yottameters")
  20558. },
  20559. ]
  20560. ));
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(8, "feet"),
  20566. weight: math.unit(250, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/kite/front.svg",
  20570. extra: 2796 / 2659,
  20571. bottom: 0.002
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(8, "feet"),
  20579. default: true
  20580. },
  20581. {
  20582. name: "Macro",
  20583. height: math.unit(360, "feet")
  20584. },
  20585. {
  20586. name: "Megamacro",
  20587. height: math.unit(1500, "feet")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(5 + 10 / 12, "feet"),
  20596. weight: math.unit(150, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/poojawa-vynar/front.svg",
  20600. extra: (1506.1547 - 55) / 1356.6,
  20601. bottom: 55 / 1506.1547
  20602. }
  20603. },
  20604. frontTailless: {
  20605. height: math.unit(5 + 10 / 12, "feet"),
  20606. weight: math.unit(150, "lb"),
  20607. name: "Front (Tailless)",
  20608. image: {
  20609. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20610. extra: (1506.1547 - 55) / 1356.6,
  20611. bottom: 55 / 1506.1547
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(5 + 10 / 12, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(293, "meters"),
  20628. weight: math.unit(70400, "tons"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/violette/front.svg",
  20632. extra: 1227 / 1180,
  20633. bottom: 0.005
  20634. }
  20635. },
  20636. back: {
  20637. height: math.unit(293, "meters"),
  20638. weight: math.unit(70400, "tons"),
  20639. name: "Back",
  20640. image: {
  20641. source: "./media/characters/violette/back.svg",
  20642. extra: 1227 / 1180,
  20643. bottom: 0.005
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Macro",
  20650. height: math.unit(293, "meters"),
  20651. default: true
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20657. {
  20658. front: {
  20659. height: math.unit(1050, "feet"),
  20660. weight: math.unit(200000, "tons"),
  20661. name: "Front",
  20662. image: {
  20663. source: "./media/characters/alessandra/front.svg",
  20664. extra: 960 / 912,
  20665. bottom: 0.06
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Macro",
  20672. height: math.unit(1050, "feet")
  20673. },
  20674. {
  20675. name: "Macro+",
  20676. height: math.unit(900, "meters"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(5, "feet"),
  20686. weight: math.unit(187, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/person/front.svg",
  20690. extra: 3087 / 2945,
  20691. bottom: 91 / 3181
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Micro",
  20698. height: math.unit(3, "inches")
  20699. },
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(5, "feet"),
  20703. default: true
  20704. },
  20705. {
  20706. name: "Macro",
  20707. height: math.unit(90, "feet")
  20708. },
  20709. {
  20710. name: "Max Size",
  20711. height: math.unit(280, "feet")
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(4.5, "meters"),
  20720. weight: math.unit(3200, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/ty/front.svg",
  20724. extra: 1038 / 960,
  20725. bottom: 31.156 / 1068
  20726. }
  20727. },
  20728. back: {
  20729. height: math.unit(4.5, "meters"),
  20730. weight: math.unit(3200, "lb"),
  20731. name: "Back",
  20732. image: {
  20733. source: "./media/characters/ty/back.svg",
  20734. extra: 1044 / 966,
  20735. bottom: 7.48 / 1049
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(4.5, "meters"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(5 + 4 / 12, "feet"),
  20752. weight: math.unit(115, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/rocky/front.svg",
  20756. extra: 1012 / 975,
  20757. bottom: 54 / 1066
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(5 + 4 / 12, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20771. {
  20772. upright: {
  20773. height: math.unit(6, "meters"),
  20774. weight: math.unit(4000, "kg"),
  20775. name: "Upright",
  20776. image: {
  20777. source: "./media/characters/ruin/upright.svg",
  20778. extra: 668 / 661,
  20779. bottom: 42 / 799.8396
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(6, "meters"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(5, "feet"),
  20796. weight: math.unit(106, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/robin/front.svg",
  20800. extra: 862 / 799,
  20801. bottom: 42.4 / 914.8856
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(5, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20815. {
  20816. side: {
  20817. height: math.unit(3, "feet"),
  20818. weight: math.unit(225, "lb"),
  20819. name: "Side",
  20820. image: {
  20821. source: "./media/characters/saian/side.svg",
  20822. extra: 566 / 356,
  20823. bottom: 79.7 / 643
  20824. }
  20825. },
  20826. maw: {
  20827. height: math.unit(2.85, "feet"),
  20828. name: "Maw",
  20829. image: {
  20830. source: "./media/characters/saian/maw.svg"
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(3, "feet"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20844. {
  20845. side: {
  20846. height: math.unit(8, "feet"),
  20847. weight: math.unit(300, "lb"),
  20848. name: "Side",
  20849. image: {
  20850. source: "./media/characters/equus-silvermane/side.svg",
  20851. extra: 2176 / 2050,
  20852. bottom: 65.7 / 2245
  20853. }
  20854. },
  20855. front: {
  20856. height: math.unit(8, "feet"),
  20857. weight: math.unit(300, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/equus-silvermane/front.svg",
  20861. extra: 4633 / 4400,
  20862. bottom: 71.3 / 4706.915
  20863. }
  20864. },
  20865. sideStepping: {
  20866. height: math.unit(8, "feet"),
  20867. weight: math.unit(300, "lb"),
  20868. name: "Side (Stepping)",
  20869. image: {
  20870. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20871. extra: 1968 / 1860,
  20872. bottom: 16.4 / 1989
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(8, "feet")
  20880. },
  20881. {
  20882. name: "Minimacro",
  20883. height: math.unit(75, "feet"),
  20884. default: true
  20885. },
  20886. {
  20887. name: "Macro",
  20888. height: math.unit(150, "feet")
  20889. },
  20890. {
  20891. name: "Macro+",
  20892. height: math.unit(1000, "feet")
  20893. },
  20894. {
  20895. name: "Megamacro",
  20896. height: math.unit(1, "mile")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20902. {
  20903. side: {
  20904. height: math.unit(20, "feet"),
  20905. weight: math.unit(30000, "kg"),
  20906. name: "Side",
  20907. image: {
  20908. source: "./media/characters/windar/side.svg",
  20909. extra: 1491 / 1248,
  20910. bottom: 82.56 / 1568
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(20, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20924. {
  20925. side: {
  20926. height: math.unit(15.66, "feet"),
  20927. weight: math.unit(150, "lb"),
  20928. name: "Side",
  20929. image: {
  20930. source: "./media/characters/melody/side.svg",
  20931. extra: 1097 / 944,
  20932. bottom: 11.8 / 1109
  20933. }
  20934. },
  20935. sideOutfit: {
  20936. height: math.unit(15.66, "feet"),
  20937. weight: math.unit(150, "lb"),
  20938. name: "Side (Outfit)",
  20939. image: {
  20940. source: "./media/characters/melody/side-outfit.svg",
  20941. extra: 1097 / 944,
  20942. bottom: 11.8 / 1109
  20943. }
  20944. },
  20945. },
  20946. [
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(15.66, "feet"),
  20950. default: true
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(8, "feet"),
  20959. weight: math.unit(325, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/windera/front.svg",
  20963. extra: 3180 / 2845,
  20964. bottom: 178 / 3365
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(8, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20978. {
  20979. front: {
  20980. height: math.unit(28.75, "feet"),
  20981. weight: math.unit(2000, "kg"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/sonear/front.svg",
  20985. extra: 1041.1 / 964.9,
  20986. bottom: 53.7 / 1096.6
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(28.75, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21000. {
  21001. side: {
  21002. height: math.unit(25.5, "feet"),
  21003. weight: math.unit(23000, "kg"),
  21004. name: "Side",
  21005. image: {
  21006. source: "./media/characters/kanara/side.svg"
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(25.5, "feet"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21020. {
  21021. side: {
  21022. height: math.unit(10, "feet"),
  21023. weight: math.unit(1000, "kg"),
  21024. name: "Side",
  21025. image: {
  21026. source: "./media/characters/ereus/side.svg",
  21027. extra: 1157 / 959,
  21028. bottom: 153 / 1312.5
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(10, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21042. {
  21043. side: {
  21044. height: math.unit(4.5, "feet"),
  21045. weight: math.unit(500, "lb"),
  21046. name: "Side",
  21047. image: {
  21048. source: "./media/characters/e-ter/side.svg",
  21049. extra: 1550 / 1248,
  21050. bottom: 146 / 1694
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(4.5, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21064. {
  21065. side: {
  21066. height: math.unit(9.7, "feet"),
  21067. weight: math.unit(4000, "kg"),
  21068. name: "Side",
  21069. image: {
  21070. source: "./media/characters/yamie/side.svg"
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(9.7, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21084. {
  21085. front: {
  21086. height: math.unit(50, "feet"),
  21087. weight: math.unit(50000, "kg"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/anders/front.svg",
  21091. extra: 570 / 539,
  21092. bottom: 14.7 / 586.7
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Large",
  21099. height: math.unit(50, "feet")
  21100. },
  21101. {
  21102. name: "Macro",
  21103. height: math.unit(2000, "feet"),
  21104. default: true
  21105. },
  21106. {
  21107. name: "Megamacro",
  21108. height: math.unit(12, "miles")
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(7 + 2 / 12, "feet"),
  21117. weight: math.unit(300, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/reban/front.svg",
  21121. extra: 516 / 487,
  21122. bottom: 42.82 / 558.356
  21123. }
  21124. },
  21125. dick: {
  21126. height: math.unit(7 / 5, "feet"),
  21127. name: "Dick",
  21128. image: {
  21129. source: "./media/characters/reban/dick.svg"
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Natural Height",
  21136. height: math.unit(7 + 2 / 12, "feet")
  21137. },
  21138. {
  21139. name: "Macro",
  21140. height: math.unit(500, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Canon Height",
  21145. height: math.unit(50, "AU")
  21146. },
  21147. ]
  21148. ))
  21149. characterMakers.push(() => makeCharacter(
  21150. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21151. {
  21152. front: {
  21153. height: math.unit(6, "feet"),
  21154. weight: math.unit(150, "lb"),
  21155. name: "Front",
  21156. image: {
  21157. source: "./media/characters/terrance-keayes/front.svg",
  21158. extra: 1.005,
  21159. bottom: 151 / 1615
  21160. }
  21161. },
  21162. side: {
  21163. height: math.unit(6, "feet"),
  21164. weight: math.unit(150, "lb"),
  21165. name: "Side",
  21166. image: {
  21167. source: "./media/characters/terrance-keayes/side.svg",
  21168. extra: 1.005,
  21169. bottom: 129.4 / 1544
  21170. }
  21171. },
  21172. back: {
  21173. height: math.unit(6, "feet"),
  21174. weight: math.unit(150, "lb"),
  21175. name: "Back",
  21176. image: {
  21177. source: "./media/characters/terrance-keayes/back.svg",
  21178. extra: 1.005,
  21179. bottom: 58.4 / 1557.3
  21180. }
  21181. },
  21182. dick: {
  21183. height: math.unit(6 * 0.208, "feet"),
  21184. name: "Dick",
  21185. image: {
  21186. source: "./media/characters/terrance-keayes/dick.svg"
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Canon Height",
  21193. height: math.unit(35, "miles"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(6, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/ofelia/front.svg",
  21207. extra: 546 / 541,
  21208. bottom: 39 / 583
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(6, "feet"),
  21213. weight: math.unit(150, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/ofelia/back.svg",
  21217. extra: 564 / 559.5,
  21218. bottom: 8.69 / 573.02
  21219. }
  21220. },
  21221. maw: {
  21222. height: math.unit(1, "feet"),
  21223. name: "Maw",
  21224. image: {
  21225. source: "./media/characters/ofelia/maw.svg"
  21226. }
  21227. },
  21228. foot: {
  21229. height: math.unit(1.949, "feet"),
  21230. name: "Foot",
  21231. image: {
  21232. source: "./media/characters/ofelia/foot.svg"
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Canon Height",
  21239. height: math.unit(2000, "miles"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(6, "feet"),
  21249. weight: math.unit(150, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/samuel/front.svg",
  21253. extra: 265 / 258,
  21254. bottom: 2 / 266.1566
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Macro",
  21261. height: math.unit(100, "feet"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Full Size",
  21266. height: math.unit(1000, "miles")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(6, "feet"),
  21275. weight: math.unit(300, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/beishir-kiel/front.svg",
  21279. extra: 569 / 547,
  21280. bottom: 41.9 / 609
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(6 * 0.202, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/beishir-kiel/maw.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Macro",
  21294. height: math.unit(300, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(5 + 8 / 12, "feet"),
  21304. weight: math.unit(120, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/logan-grey/front.svg",
  21308. extra: 2539 / 2393,
  21309. bottom: 97.6 / 2636.37
  21310. }
  21311. },
  21312. frontAlt: {
  21313. height: math.unit(5 + 8 / 12, "feet"),
  21314. weight: math.unit(120, "lb"),
  21315. name: "Front (Alt)",
  21316. image: {
  21317. source: "./media/characters/logan-grey/front-alt.svg",
  21318. extra: 958 / 893,
  21319. bottom: 15 / 970.768
  21320. }
  21321. },
  21322. back: {
  21323. height: math.unit(5 + 8 / 12, "feet"),
  21324. weight: math.unit(120, "lb"),
  21325. name: "Back",
  21326. image: {
  21327. source: "./media/characters/logan-grey/back.svg",
  21328. extra: 958 / 893,
  21329. bottom: 2.1881 / 970.9788
  21330. }
  21331. },
  21332. dick: {
  21333. height: math.unit(1.437, "feet"),
  21334. name: "Dick",
  21335. image: {
  21336. source: "./media/characters/logan-grey/dick.svg"
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(5 + 8 / 12, "feet")
  21344. },
  21345. {
  21346. name: "The 500 Foot Femboy",
  21347. height: math.unit(500, "feet"),
  21348. default: true
  21349. },
  21350. {
  21351. name: "Megmacro",
  21352. height: math.unit(20, "miles")
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(8 + 2 / 12, "feet"),
  21361. weight: math.unit(275, "lb"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/draganta/front.svg",
  21365. extra: 1177 / 1135,
  21366. bottom: 33.46 / 1212.1
  21367. }
  21368. },
  21369. },
  21370. [
  21371. {
  21372. name: "Normal",
  21373. height: math.unit(8 + 6 / 12, "feet"),
  21374. default: true
  21375. },
  21376. {
  21377. name: "Macro",
  21378. height: math.unit(150, "feet")
  21379. },
  21380. {
  21381. name: "Megamacro",
  21382. height: math.unit(1000, "miles")
  21383. },
  21384. ]
  21385. ))
  21386. characterMakers.push(() => makeCharacter(
  21387. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21388. {
  21389. front: {
  21390. height: math.unit(1.72, "m"),
  21391. weight: math.unit(80, "lb"),
  21392. name: "Front",
  21393. image: {
  21394. source: "./media/characters/voski/front.svg",
  21395. extra: 2076.22 / 2022.4,
  21396. bottom: 102.7 / 2177.3866
  21397. }
  21398. },
  21399. frontNsfw: {
  21400. height: math.unit(1.72, "m"),
  21401. weight: math.unit(80, "lb"),
  21402. name: "Front (NSFW)",
  21403. image: {
  21404. source: "./media/characters/voski/front-nsfw.svg",
  21405. extra: 2076.22 / 2022.4,
  21406. bottom: 102.7 / 2177.3866
  21407. }
  21408. },
  21409. back: {
  21410. height: math.unit(1.72, "m"),
  21411. weight: math.unit(80, "lb"),
  21412. name: "Back",
  21413. image: {
  21414. source: "./media/characters/voski/back.svg",
  21415. extra: 2104 / 2051,
  21416. bottom: 10.45 / 2113.63
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(1.72, "m")
  21424. },
  21425. {
  21426. name: "Macro",
  21427. height: math.unit(55, "m"),
  21428. default: true
  21429. },
  21430. {
  21431. name: "Macro+",
  21432. height: math.unit(300, "m")
  21433. },
  21434. {
  21435. name: "Macro++",
  21436. height: math.unit(700, "m")
  21437. },
  21438. {
  21439. name: "Macro+++",
  21440. height: math.unit(4500, "m")
  21441. },
  21442. {
  21443. name: "Macro++++",
  21444. height: math.unit(45, "km")
  21445. },
  21446. {
  21447. name: "Macro+++++",
  21448. height: math.unit(1220, "km")
  21449. },
  21450. ]
  21451. ))
  21452. characterMakers.push(() => makeCharacter(
  21453. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21454. {
  21455. front: {
  21456. height: math.unit(2.3, "m"),
  21457. weight: math.unit(304, "kg"),
  21458. name: "Front",
  21459. image: {
  21460. source: "./media/characters/icowom-lee/front.svg",
  21461. extra: 985 / 955,
  21462. bottom: 25.4 / 1012
  21463. }
  21464. },
  21465. fronttentacles: {
  21466. height: math.unit(2.3, "m"),
  21467. weight: math.unit(304, "kg"),
  21468. name: "Front-tentacles",
  21469. image: {
  21470. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21471. extra: 985 / 955,
  21472. bottom: 25.4 / 1012
  21473. }
  21474. },
  21475. back: {
  21476. height: math.unit(2.3, "m"),
  21477. weight: math.unit(304, "kg"),
  21478. name: "Back",
  21479. image: {
  21480. source: "./media/characters/icowom-lee/back.svg",
  21481. extra: 975 / 954,
  21482. bottom: 9.5 / 985
  21483. }
  21484. },
  21485. backtentacles: {
  21486. height: math.unit(2.3, "m"),
  21487. weight: math.unit(304, "kg"),
  21488. name: "Back-tentacles",
  21489. image: {
  21490. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21491. extra: 975 / 954,
  21492. bottom: 9.5 / 985
  21493. }
  21494. },
  21495. frontDressed: {
  21496. height: math.unit(2.3, "m"),
  21497. weight: math.unit(304, "kg"),
  21498. name: "Front (Dressed)",
  21499. image: {
  21500. source: "./media/characters/icowom-lee/front-dressed.svg",
  21501. extra: 3076 / 2933,
  21502. bottom: 51.4 / 3125.1889
  21503. }
  21504. },
  21505. rump: {
  21506. height: math.unit(0.776, "meters"),
  21507. name: "Rump",
  21508. image: {
  21509. source: "./media/characters/icowom-lee/rump.svg"
  21510. }
  21511. },
  21512. genitals: {
  21513. height: math.unit(0.78, "meters"),
  21514. name: "Genitals",
  21515. image: {
  21516. source: "./media/characters/icowom-lee/genitals.svg"
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(2.3, "meters"),
  21524. default: true
  21525. },
  21526. {
  21527. name: "Macro",
  21528. height: math.unit(94, "meters"),
  21529. default: true
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21535. {
  21536. front: {
  21537. height: math.unit(22, "meters"),
  21538. weight: math.unit(21000, "kg"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/shock-diamond/front.svg",
  21542. extra: 2204 / 2053,
  21543. bottom: 65 / 2239.47
  21544. }
  21545. },
  21546. frontNude: {
  21547. height: math.unit(22, "meters"),
  21548. weight: math.unit(21000, "kg"),
  21549. name: "Front (Nude)",
  21550. image: {
  21551. source: "./media/characters/shock-diamond/front-nude.svg",
  21552. extra: 2514 / 2285,
  21553. bottom: 13 / 2527.56
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(3, "meters")
  21561. },
  21562. {
  21563. name: "Macro",
  21564. height: math.unit(22, "meters"),
  21565. default: true
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5 + 4 / 12, "feet"),
  21574. weight: math.unit(120, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/rory/front.svg",
  21578. extra: 589 / 556,
  21579. bottom: 45.7 / 635.76
  21580. }
  21581. },
  21582. frontNude: {
  21583. height: math.unit(5 + 4 / 12, "feet"),
  21584. weight: math.unit(120, "lb"),
  21585. name: "Front (Nude)",
  21586. image: {
  21587. source: "./media/characters/rory/front-nude.svg",
  21588. extra: 589 / 556,
  21589. bottom: 45.7 / 635.76
  21590. }
  21591. },
  21592. side: {
  21593. height: math.unit(5 + 4 / 12, "feet"),
  21594. weight: math.unit(120, "lb"),
  21595. name: "Side",
  21596. image: {
  21597. source: "./media/characters/rory/side.svg",
  21598. extra: 597 / 564,
  21599. bottom: 55 / 653
  21600. }
  21601. },
  21602. back: {
  21603. height: math.unit(5 + 4 / 12, "feet"),
  21604. weight: math.unit(120, "lb"),
  21605. name: "Back",
  21606. image: {
  21607. source: "./media/characters/rory/back.svg",
  21608. extra: 620 / 585,
  21609. bottom: 8.86 / 630.43
  21610. }
  21611. },
  21612. dick: {
  21613. height: math.unit(0.86, "feet"),
  21614. name: "Dick",
  21615. image: {
  21616. source: "./media/characters/rory/dick.svg"
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(5 + 4 / 12, "feet"),
  21624. default: true
  21625. },
  21626. {
  21627. name: "Macro",
  21628. height: math.unit(100, "feet")
  21629. },
  21630. {
  21631. name: "Macro+",
  21632. height: math.unit(140, "feet")
  21633. },
  21634. {
  21635. name: "Macro++",
  21636. height: math.unit(300, "feet")
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(5 + 9 / 12, "feet"),
  21645. weight: math.unit(190, "lb"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/sprisk/front.svg",
  21649. extra: 1225 / 1180,
  21650. bottom: 42.7 / 1266.4
  21651. }
  21652. },
  21653. frontNsfw: {
  21654. height: math.unit(5 + 9 / 12, "feet"),
  21655. weight: math.unit(190, "lb"),
  21656. name: "Front (NSFW)",
  21657. image: {
  21658. source: "./media/characters/sprisk/front-nsfw.svg",
  21659. extra: 1225 / 1180,
  21660. bottom: 42.7 / 1266.4
  21661. }
  21662. },
  21663. back: {
  21664. height: math.unit(5 + 9 / 12, "feet"),
  21665. weight: math.unit(190, "lb"),
  21666. name: "Back",
  21667. image: {
  21668. source: "./media/characters/sprisk/back.svg",
  21669. extra: 1247 / 1200,
  21670. bottom: 5.6 / 1253.04
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Tiny",
  21677. height: math.unit(2, "inches")
  21678. },
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(5 + 9 / 12, "feet"),
  21682. default: true
  21683. },
  21684. {
  21685. name: "Mini Macro",
  21686. height: math.unit(18, "feet")
  21687. },
  21688. {
  21689. name: "Macro",
  21690. height: math.unit(100, "feet")
  21691. },
  21692. {
  21693. name: "MACRO",
  21694. height: math.unit(50, "miles")
  21695. },
  21696. {
  21697. name: "M A C R O",
  21698. height: math.unit(300, "miles")
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21704. {
  21705. side: {
  21706. height: math.unit(15.6, "meters"),
  21707. weight: math.unit(700000, "kg"),
  21708. name: "Side",
  21709. image: {
  21710. source: "./media/characters/bunsen/side.svg",
  21711. extra: 1644 / 358
  21712. }
  21713. },
  21714. foot: {
  21715. height: math.unit(1.611 * 1644 / 358, "meter"),
  21716. name: "Foot",
  21717. image: {
  21718. source: "./media/characters/bunsen/foot.svg"
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Small",
  21725. height: math.unit(10, "feet")
  21726. },
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(15.6, "meters"),
  21730. default: true
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(4 + 11 / 12, "feet"),
  21739. weight: math.unit(140, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/sesh/front.svg",
  21743. extra: 3420 / 3231,
  21744. bottom: 72 / 3949.5
  21745. }
  21746. },
  21747. },
  21748. [
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(4 + 11 / 12, "feet")
  21752. },
  21753. {
  21754. name: "Grown",
  21755. height: math.unit(15, "feet"),
  21756. default: true
  21757. },
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(1500, "feet")
  21761. },
  21762. {
  21763. name: "Megamacro",
  21764. height: math.unit(30, "miles")
  21765. },
  21766. {
  21767. name: "Continental",
  21768. height: math.unit(3000, "miles")
  21769. },
  21770. {
  21771. name: "Gravity Mass",
  21772. height: math.unit(300000, "miles")
  21773. },
  21774. {
  21775. name: "Planet Buster",
  21776. height: math.unit(30000000, "miles")
  21777. },
  21778. {
  21779. name: "Big",
  21780. height: math.unit(3000000000, "miles")
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21786. {
  21787. front: {
  21788. height: math.unit(9, "feet"),
  21789. weight: math.unit(350, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/pepper/front.svg",
  21793. extra: 1448 / 1312,
  21794. bottom: 9.4 / 1457.88
  21795. }
  21796. },
  21797. back: {
  21798. height: math.unit(9, "feet"),
  21799. weight: math.unit(350, "lb"),
  21800. name: "Back",
  21801. image: {
  21802. source: "./media/characters/pepper/back.svg",
  21803. extra: 1423 / 1300,
  21804. bottom: 4.6 / 1429
  21805. }
  21806. },
  21807. maw: {
  21808. height: math.unit(0.932, "feet"),
  21809. name: "Maw",
  21810. image: {
  21811. source: "./media/characters/pepper/maw.svg"
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(9, "feet"),
  21819. default: true
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(6, "feet"),
  21828. weight: math.unit(150, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/maelstrom/front.svg",
  21832. extra: 2100 / 1883,
  21833. bottom: 94 / 2196.7
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Less Kaiju",
  21840. height: math.unit(200, "feet")
  21841. },
  21842. {
  21843. name: "Kaiju",
  21844. height: math.unit(400, "feet"),
  21845. default: true
  21846. },
  21847. {
  21848. name: "Kaiju-er",
  21849. height: math.unit(600, "feet")
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(6 + 5 / 12, "feet"),
  21858. weight: math.unit(180, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/lexir/front.svg",
  21862. extra: 180 / 172,
  21863. bottom: 12 / 192
  21864. }
  21865. },
  21866. back: {
  21867. height: math.unit(6 + 5 / 12, "feet"),
  21868. weight: math.unit(180, "lb"),
  21869. name: "Back",
  21870. image: {
  21871. source: "./media/characters/lexir/back.svg",
  21872. extra: 183.84 / 175.5,
  21873. bottom: 3.1 / 187
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Very Smal",
  21880. height: math.unit(1, "nm")
  21881. },
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(6 + 5 / 12, "feet"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(1, "mile")
  21890. },
  21891. {
  21892. name: "Megamacro",
  21893. height: math.unit(50, "miles")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21899. {
  21900. front: {
  21901. height: math.unit(1.5, "meters"),
  21902. weight: math.unit(100, "lb"),
  21903. name: "Front",
  21904. image: {
  21905. source: "./media/characters/maksio/front.svg",
  21906. extra: 1549 / 1531,
  21907. bottom: 123.7 / 1674.5429
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(1.5, "meters"),
  21912. weight: math.unit(100, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/maksio/back.svg",
  21916. extra: 1541 / 1509,
  21917. bottom: 97 / 1639
  21918. }
  21919. },
  21920. hand: {
  21921. height: math.unit(0.621, "feet"),
  21922. name: "Hand",
  21923. image: {
  21924. source: "./media/characters/maksio/hand.svg"
  21925. }
  21926. },
  21927. foot: {
  21928. height: math.unit(1.611, "feet"),
  21929. name: "Foot",
  21930. image: {
  21931. source: "./media/characters/maksio/foot.svg"
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Shrunken",
  21938. height: math.unit(10, "cm")
  21939. },
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(150, "cm"),
  21943. default: true
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(100, "feet"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/erza-bear/front.svg",
  21955. extra: 2449 / 2390,
  21956. bottom: 46 / 2494
  21957. }
  21958. },
  21959. back: {
  21960. height: math.unit(100, "feet"),
  21961. name: "Back",
  21962. image: {
  21963. source: "./media/characters/erza-bear/back.svg",
  21964. extra: 2489 / 2430,
  21965. bottom: 85.4 / 2480
  21966. }
  21967. },
  21968. tail: {
  21969. height: math.unit(42, "feet"),
  21970. name: "Tail",
  21971. image: {
  21972. source: "./media/characters/erza-bear/tail.svg"
  21973. }
  21974. },
  21975. tongue: {
  21976. height: math.unit(8, "feet"),
  21977. name: "Tongue",
  21978. image: {
  21979. source: "./media/characters/erza-bear/tongue.svg"
  21980. }
  21981. },
  21982. dick: {
  21983. height: math.unit(10.5, "feet"),
  21984. name: "Dick",
  21985. image: {
  21986. source: "./media/characters/erza-bear/dick.svg"
  21987. }
  21988. },
  21989. dickVertical: {
  21990. height: math.unit(16.9, "feet"),
  21991. name: "Dick (Vertical)",
  21992. image: {
  21993. source: "./media/characters/erza-bear/dick-vertical.svg"
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(100, "feet"),
  22001. default: true
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22007. {
  22008. front: {
  22009. height: math.unit(172, "cm"),
  22010. weight: math.unit(73, "kg"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/violet-flor/front.svg",
  22014. extra: 1530 / 1442,
  22015. bottom: 61.9 / 1588.8
  22016. }
  22017. },
  22018. back: {
  22019. height: math.unit(180, "cm"),
  22020. weight: math.unit(73, "kg"),
  22021. name: "Back",
  22022. image: {
  22023. source: "./media/characters/violet-flor/back.svg",
  22024. extra: 1692 / 1630,
  22025. bottom: 20 / 1712
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(172, "cm"),
  22033. default: true
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(6, "feet"),
  22042. weight: math.unit(220, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/lynn-rhea/front.svg",
  22046. extra: 310 / 273
  22047. }
  22048. },
  22049. back: {
  22050. height: math.unit(6, "feet"),
  22051. weight: math.unit(220, "lb"),
  22052. name: "Back",
  22053. image: {
  22054. source: "./media/characters/lynn-rhea/back.svg",
  22055. extra: 310 / 273
  22056. }
  22057. },
  22058. dicks: {
  22059. height: math.unit(0.9, "feet"),
  22060. name: "Dicks",
  22061. image: {
  22062. source: "./media/characters/lynn-rhea/dicks.svg"
  22063. }
  22064. },
  22065. slit: {
  22066. height: math.unit(0.4, "feet"),
  22067. name: "Slit",
  22068. image: {
  22069. source: "./media/characters/lynn-rhea/slit.svg"
  22070. }
  22071. },
  22072. },
  22073. [
  22074. {
  22075. name: "Micro",
  22076. height: math.unit(1, "inch")
  22077. },
  22078. {
  22079. name: "Macro",
  22080. height: math.unit(60, "feet"),
  22081. default: true
  22082. },
  22083. {
  22084. name: "Megamacro",
  22085. height: math.unit(2, "miles")
  22086. },
  22087. {
  22088. name: "Gigamacro",
  22089. height: math.unit(3, "earths")
  22090. },
  22091. {
  22092. name: "Galactic",
  22093. height: math.unit(0.8, "galaxies")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22099. {
  22100. front: {
  22101. height: math.unit(1600, "feet"),
  22102. weight: math.unit(85758785169, "kg"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/valathos/front.svg",
  22106. extra: 1451 / 1339
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Macro",
  22113. height: math.unit(1600, "feet"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(7 + 5 / 12, "feet"),
  22123. weight: math.unit(300, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/azula/front.svg",
  22127. extra: 3208 / 2880,
  22128. bottom: 80.2 / 3277
  22129. }
  22130. },
  22131. back: {
  22132. height: math.unit(7 + 5 / 12, "feet"),
  22133. weight: math.unit(300, "lb"),
  22134. name: "Back",
  22135. image: {
  22136. source: "./media/characters/azula/back.svg",
  22137. extra: 3169 / 2822,
  22138. bottom: 150.6 / 3321
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Normal",
  22145. height: math.unit(7 + 5 / 12, "feet"),
  22146. default: true
  22147. },
  22148. {
  22149. name: "Big",
  22150. height: math.unit(20, "feet")
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(5 + 1 / 12, "feet"),
  22159. weight: math.unit(110, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/rupert/front.svg",
  22163. extra: 1549 / 1495,
  22164. bottom: 54.2 / 1604.4
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Normal",
  22171. height: math.unit(5 + 1 / 12, "feet"),
  22172. default: true
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(8 + 4 / 12, "feet"),
  22181. weight: math.unit(350, "lb"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/sheera-castellar/front.svg",
  22185. extra: 1957 / 1894,
  22186. bottom: 26.97 / 1975.017
  22187. }
  22188. },
  22189. side: {
  22190. height: math.unit(8 + 4 / 12, "feet"),
  22191. weight: math.unit(350, "lb"),
  22192. name: "Side",
  22193. image: {
  22194. source: "./media/characters/sheera-castellar/side.svg",
  22195. extra: 1957 / 1894
  22196. }
  22197. },
  22198. back: {
  22199. height: math.unit(8 + 4 / 12, "feet"),
  22200. weight: math.unit(350, "lb"),
  22201. name: "Back",
  22202. image: {
  22203. source: "./media/characters/sheera-castellar/back.svg",
  22204. extra: 1957 / 1894
  22205. }
  22206. },
  22207. angled: {
  22208. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22209. weight: math.unit(350, "lb"),
  22210. name: "Angled",
  22211. image: {
  22212. source: "./media/characters/sheera-castellar/angled.svg",
  22213. extra: 1807 / 1707,
  22214. bottom: 68 / 1875
  22215. }
  22216. },
  22217. genitals: {
  22218. height: math.unit(2.2, "feet"),
  22219. name: "Genitals",
  22220. image: {
  22221. source: "./media/characters/sheera-castellar/genitals.svg"
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(8 + 4 / 12, "feet")
  22229. },
  22230. {
  22231. name: "Macro",
  22232. height: math.unit(150, "feet"),
  22233. default: true
  22234. },
  22235. {
  22236. name: "Macro+",
  22237. height: math.unit(800, "feet")
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(6, "feet"),
  22246. weight: math.unit(150, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/jaipur/front.svg",
  22250. extra: 3860 / 3731,
  22251. bottom: 287 / 4140
  22252. }
  22253. },
  22254. back: {
  22255. height: math.unit(6, "feet"),
  22256. weight: math.unit(150, "lb"),
  22257. name: "Back",
  22258. image: {
  22259. source: "./media/characters/jaipur/back.svg",
  22260. extra: 4060 / 3930,
  22261. bottom: 151 / 4200
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(1.85, "meters"),
  22269. default: true
  22270. },
  22271. {
  22272. name: "Macro",
  22273. height: math.unit(150, "meters")
  22274. },
  22275. {
  22276. name: "Macro+",
  22277. height: math.unit(0.5, "miles")
  22278. },
  22279. {
  22280. name: "Macro++",
  22281. height: math.unit(2.5, "miles")
  22282. },
  22283. {
  22284. name: "Macro+++",
  22285. height: math.unit(12, "miles")
  22286. },
  22287. {
  22288. name: "Macro++++",
  22289. height: math.unit(120, "miles")
  22290. },
  22291. {
  22292. name: "Macro+++++",
  22293. height: math.unit(1200, "miles")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(6, "feet"),
  22302. weight: math.unit(150, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/sheila-wolf/front.svg",
  22306. extra: 1931 / 1808,
  22307. bottom: 29.5 / 1960
  22308. }
  22309. },
  22310. dick: {
  22311. height: math.unit(1.464, "feet"),
  22312. name: "Dick",
  22313. image: {
  22314. source: "./media/characters/sheila-wolf/dick.svg"
  22315. }
  22316. },
  22317. muzzle: {
  22318. height: math.unit(0.513, "feet"),
  22319. name: "Muzzle",
  22320. image: {
  22321. source: "./media/characters/sheila-wolf/muzzle.svg"
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Macro",
  22328. height: math.unit(70, "feet"),
  22329. default: true
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22335. {
  22336. front: {
  22337. height: math.unit(32, "meters"),
  22338. weight: math.unit(300000, "kg"),
  22339. name: "Front",
  22340. image: {
  22341. source: "./media/characters/almor/front.svg",
  22342. extra: 1408 / 1322,
  22343. bottom: 94.6 / 1506.5
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Macro",
  22350. height: math.unit(32, "meters"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(7, "feet"),
  22360. weight: math.unit(200, "lb"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/silver/front.svg",
  22364. extra: 472.1 / 450.5,
  22365. bottom: 26.5 / 499.424
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(7, "feet"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(800, "feet")
  22378. },
  22379. {
  22380. name: "Megamacro",
  22381. height: math.unit(250, "miles")
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(6, "feet"),
  22390. weight: math.unit(150, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/pliskin/front.svg",
  22394. extra: 1469 / 1359,
  22395. bottom: 70 / 1540
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Micro",
  22402. height: math.unit(3, "inches")
  22403. },
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(5 + 11 / 12, "feet"),
  22407. default: true
  22408. },
  22409. {
  22410. name: "Macro",
  22411. height: math.unit(120, "feet")
  22412. },
  22413. ]
  22414. ))
  22415. characterMakers.push(() => makeCharacter(
  22416. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22417. {
  22418. front: {
  22419. height: math.unit(6, "feet"),
  22420. weight: math.unit(150, "lb"),
  22421. name: "Front",
  22422. image: {
  22423. source: "./media/characters/sammy/front.svg",
  22424. extra: 1193 / 1089,
  22425. bottom: 30.5 / 1226
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Macro",
  22432. height: math.unit(1700, "feet"),
  22433. default: true
  22434. },
  22435. {
  22436. name: "Examacro",
  22437. height: math.unit(2.5e9, "lightyears")
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(21, "meters"),
  22446. weight: math.unit(12, "tonnes"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/kuru/front.svg",
  22450. extra: 4301 / 3785,
  22451. bottom: 371.3 / 4691
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(21, "meters"),
  22459. default: true
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(23, "meters"),
  22468. weight: math.unit(12.2, "tonnes"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/rakka/front.svg",
  22472. extra: 4670 / 4169,
  22473. bottom: 301 / 4968.7
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Macro",
  22480. height: math.unit(23, "meters"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(6, "feet"),
  22490. weight: math.unit(150, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/rhys-feline/front.svg",
  22494. extra: 2488 / 2308,
  22495. bottom: 35.67 / 2519.19
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Really Small",
  22502. height: math.unit(1, "nm")
  22503. },
  22504. {
  22505. name: "Micro",
  22506. height: math.unit(4, "inches")
  22507. },
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(4 + 10 / 12, "feet"),
  22511. default: true
  22512. },
  22513. {
  22514. name: "Macro",
  22515. height: math.unit(100, "feet")
  22516. },
  22517. {
  22518. name: "Megamacto",
  22519. height: math.unit(50, "miles")
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22525. {
  22526. side: {
  22527. height: math.unit(30, "feet"),
  22528. weight: math.unit(35000, "kg"),
  22529. name: "Side",
  22530. image: {
  22531. source: "./media/characters/alydar/side.svg",
  22532. extra: 234 / 222,
  22533. bottom: 6.5 / 241
  22534. }
  22535. },
  22536. front: {
  22537. height: math.unit(30, "feet"),
  22538. weight: math.unit(35000, "kg"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/alydar/front.svg",
  22542. extra: 223.37 / 210.2,
  22543. bottom: 22.3 / 246.76
  22544. }
  22545. },
  22546. top: {
  22547. height: math.unit(64.54, "feet"),
  22548. weight: math.unit(35000, "kg"),
  22549. name: "Top",
  22550. image: {
  22551. source: "./media/characters/alydar/top.svg"
  22552. }
  22553. },
  22554. anthro: {
  22555. height: math.unit(30, "feet"),
  22556. weight: math.unit(9000, "kg"),
  22557. name: "Anthro",
  22558. image: {
  22559. source: "./media/characters/alydar/anthro.svg",
  22560. extra: 432 / 421,
  22561. bottom: 7.18 / 440
  22562. }
  22563. },
  22564. maw: {
  22565. height: math.unit(11.693, "feet"),
  22566. name: "Maw",
  22567. image: {
  22568. source: "./media/characters/alydar/maw.svg"
  22569. }
  22570. },
  22571. head: {
  22572. height: math.unit(11.693, "feet"),
  22573. name: "Head",
  22574. image: {
  22575. source: "./media/characters/alydar/head.svg"
  22576. }
  22577. },
  22578. headAlt: {
  22579. height: math.unit(12.861, "feet"),
  22580. name: "Head (Alt)",
  22581. image: {
  22582. source: "./media/characters/alydar/head-alt.svg"
  22583. }
  22584. },
  22585. wing: {
  22586. height: math.unit(20.712, "feet"),
  22587. name: "Wing",
  22588. image: {
  22589. source: "./media/characters/alydar/wing.svg"
  22590. }
  22591. },
  22592. wingFeather: {
  22593. height: math.unit(9.662, "feet"),
  22594. name: "Wing Feather",
  22595. image: {
  22596. source: "./media/characters/alydar/wing-feather.svg"
  22597. }
  22598. },
  22599. countourFeather: {
  22600. height: math.unit(4.154, "feet"),
  22601. name: "Contour Feather",
  22602. image: {
  22603. source: "./media/characters/alydar/contour-feather.svg"
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Diplomatic",
  22610. height: math.unit(13, "feet"),
  22611. default: true
  22612. },
  22613. {
  22614. name: "Small",
  22615. height: math.unit(30, "feet")
  22616. },
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(95, "feet"),
  22620. default: true
  22621. },
  22622. {
  22623. name: "Large",
  22624. height: math.unit(285, "feet")
  22625. },
  22626. {
  22627. name: "Incomprehensible",
  22628. height: math.unit(450, "megameters")
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22634. {
  22635. side: {
  22636. height: math.unit(11, "feet"),
  22637. weight: math.unit(1750, "kg"),
  22638. name: "Side",
  22639. image: {
  22640. source: "./media/characters/selicia/side.svg",
  22641. extra: 440 / 396,
  22642. bottom: 24.8 / 465.979
  22643. }
  22644. },
  22645. maw: {
  22646. height: math.unit(4.665, "feet"),
  22647. name: "Maw",
  22648. image: {
  22649. source: "./media/characters/selicia/maw.svg"
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(11, "feet"),
  22657. default: true
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22663. {
  22664. side: {
  22665. height: math.unit(2 + 6 / 12, "feet"),
  22666. weight: math.unit(30, "lb"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/layla/side.svg",
  22670. extra: 244 / 188,
  22671. bottom: 18.2 / 262.1
  22672. }
  22673. },
  22674. back: {
  22675. height: math.unit(2 + 6 / 12, "feet"),
  22676. weight: math.unit(30, "lb"),
  22677. name: "Back",
  22678. image: {
  22679. source: "./media/characters/layla/back.svg",
  22680. extra: 308 / 241.5,
  22681. bottom: 8.9 / 316.8
  22682. }
  22683. },
  22684. cumming: {
  22685. height: math.unit(2 + 6 / 12, "feet"),
  22686. weight: math.unit(30, "lb"),
  22687. name: "Cumming",
  22688. image: {
  22689. source: "./media/characters/layla/cumming.svg",
  22690. extra: 342 / 279,
  22691. bottom: 595 / 938
  22692. }
  22693. },
  22694. dickFlaccid: {
  22695. height: math.unit(2.595, "feet"),
  22696. name: "Flaccid Genitals",
  22697. image: {
  22698. source: "./media/characters/layla/dick-flaccid.svg"
  22699. }
  22700. },
  22701. dickErect: {
  22702. height: math.unit(2.359, "feet"),
  22703. name: "Erect Genitals",
  22704. image: {
  22705. source: "./media/characters/layla/dick-erect.svg"
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Micro",
  22712. height: math.unit(1, "inch")
  22713. },
  22714. {
  22715. name: "Small",
  22716. height: math.unit(1, "foot")
  22717. },
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(2 + 6 / 12, "feet"),
  22721. default: true
  22722. },
  22723. {
  22724. name: "Macro",
  22725. height: math.unit(200, "feet")
  22726. },
  22727. {
  22728. name: "Megamacro",
  22729. height: math.unit(1000, "miles")
  22730. },
  22731. {
  22732. name: "Planetary",
  22733. height: math.unit(8000, "miles")
  22734. },
  22735. {
  22736. name: "True Layla",
  22737. height: math.unit(200000 * 7, "multiverses")
  22738. },
  22739. ]
  22740. ))
  22741. characterMakers.push(() => makeCharacter(
  22742. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22743. {
  22744. back: {
  22745. height: math.unit(10.5, "feet"),
  22746. weight: math.unit(800, "lb"),
  22747. name: "Back",
  22748. image: {
  22749. source: "./media/characters/knox/back.svg",
  22750. extra: 1486 / 1089,
  22751. bottom: 107 / 1601.4
  22752. }
  22753. },
  22754. side: {
  22755. height: math.unit(10.5, "feet"),
  22756. weight: math.unit(800, "lb"),
  22757. name: "Side",
  22758. image: {
  22759. source: "./media/characters/knox/side.svg",
  22760. extra: 244 / 218,
  22761. bottom: 14 / 260
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Compact",
  22768. height: math.unit(10.5, "feet"),
  22769. default: true
  22770. },
  22771. {
  22772. name: "Dynamax",
  22773. height: math.unit(210, "feet")
  22774. },
  22775. {
  22776. name: "Full Macro",
  22777. height: math.unit(850, "feet")
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22783. {
  22784. front: {
  22785. height: math.unit(6, "feet"),
  22786. weight: math.unit(152, "lb"),
  22787. name: "Front",
  22788. image: {
  22789. source: "./media/characters/shin-pikachu/front.svg",
  22790. extra: 1574 / 1480,
  22791. bottom: 53.3 / 1626
  22792. }
  22793. },
  22794. hand: {
  22795. height: math.unit(1.055, "feet"),
  22796. name: "Hand",
  22797. image: {
  22798. source: "./media/characters/shin-pikachu/hand.svg"
  22799. }
  22800. },
  22801. foot: {
  22802. height: math.unit(1.1, "feet"),
  22803. name: "Foot",
  22804. image: {
  22805. source: "./media/characters/shin-pikachu/foot.svg"
  22806. }
  22807. },
  22808. collar: {
  22809. height: math.unit(0.386, "feet"),
  22810. name: "Collar",
  22811. image: {
  22812. source: "./media/characters/shin-pikachu/collar.svg"
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Smallest",
  22819. height: math.unit(0.5, "inches")
  22820. },
  22821. {
  22822. name: "Micro",
  22823. height: math.unit(6, "inches")
  22824. },
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(6, "feet"),
  22828. default: true
  22829. },
  22830. {
  22831. name: "Macro",
  22832. height: math.unit(150, "feet")
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(28, "feet"),
  22841. weight: math.unit(10500, "lb"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/kayda/front.svg",
  22845. extra: 1536 / 1428,
  22846. bottom: 68.7 / 1603
  22847. }
  22848. },
  22849. back: {
  22850. height: math.unit(28, "feet"),
  22851. weight: math.unit(10500, "lb"),
  22852. name: "Back",
  22853. image: {
  22854. source: "./media/characters/kayda/back.svg",
  22855. extra: 1557 / 1464,
  22856. bottom: 39.5 / 1597.49
  22857. }
  22858. },
  22859. dick: {
  22860. height: math.unit(3.858, "feet"),
  22861. name: "Dick",
  22862. image: {
  22863. source: "./media/characters/kayda/dick.svg"
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Macro",
  22870. height: math.unit(28, "feet"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(10 + 11 / 12, "feet"),
  22880. weight: math.unit(1400, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/brian/front.svg",
  22884. extra: 737 / 692,
  22885. bottom: 55.4 / 785
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Normal",
  22892. height: math.unit(10 + 11 / 12, "feet"),
  22893. default: true
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(5 + 8 / 12, "feet"),
  22902. weight: math.unit(140, "lb"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/khemri/front.svg",
  22906. extra: 4780 / 4059,
  22907. bottom: 80.1 / 4859.25
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Micro",
  22914. height: math.unit(6, "inches")
  22915. },
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(5 + 8 / 12, "feet"),
  22919. default: true
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22925. {
  22926. front: {
  22927. height: math.unit(13, "feet"),
  22928. weight: math.unit(1700, "lb"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/felix-braveheart/front.svg",
  22932. extra: 1222 / 1157,
  22933. bottom: 53.2 / 1280
  22934. }
  22935. },
  22936. back: {
  22937. height: math.unit(13, "feet"),
  22938. weight: math.unit(1700, "lb"),
  22939. name: "Back",
  22940. image: {
  22941. source: "./media/characters/felix-braveheart/back.svg",
  22942. extra: 1277 / 1203,
  22943. bottom: 50.2 / 1327
  22944. }
  22945. },
  22946. feral: {
  22947. height: math.unit(6, "feet"),
  22948. weight: math.unit(400, "lb"),
  22949. name: "Feral",
  22950. image: {
  22951. source: "./media/characters/felix-braveheart/feral.svg",
  22952. extra: 682 / 625,
  22953. bottom: 6.9 / 688
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(13, "feet"),
  22961. default: true
  22962. },
  22963. ]
  22964. ))
  22965. characterMakers.push(() => makeCharacter(
  22966. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22967. {
  22968. side: {
  22969. height: math.unit(5 + 11 / 12, "feet"),
  22970. weight: math.unit(1400, "lb"),
  22971. name: "Side",
  22972. image: {
  22973. source: "./media/characters/shadow-blade/side.svg",
  22974. extra: 1726 / 1267,
  22975. bottom: 58.4 / 1785
  22976. }
  22977. },
  22978. },
  22979. [
  22980. {
  22981. name: "Normal",
  22982. height: math.unit(5 + 11 / 12, "feet"),
  22983. default: true
  22984. },
  22985. ]
  22986. ))
  22987. characterMakers.push(() => makeCharacter(
  22988. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22989. {
  22990. front: {
  22991. height: math.unit(1 + 6 / 12, "feet"),
  22992. weight: math.unit(25, "lb"),
  22993. name: "Front",
  22994. image: {
  22995. source: "./media/characters/karla-halldor/front.svg",
  22996. extra: 1459 / 1383,
  22997. bottom: 12 / 1472
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Normal",
  23004. height: math.unit(1 + 6 / 12, "feet"),
  23005. default: true
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23011. {
  23012. front: {
  23013. height: math.unit(6 + 2 / 12, "feet"),
  23014. weight: math.unit(160, "lb"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/ariam/front.svg",
  23018. extra: 714 / 617,
  23019. bottom: 23.4 / 737,
  23020. }
  23021. },
  23022. squatting: {
  23023. height: math.unit(4.1, "feet"),
  23024. weight: math.unit(160, "lb"),
  23025. name: "Squatting",
  23026. image: {
  23027. source: "./media/characters/ariam/squatting.svg",
  23028. extra: 2617 / 2112,
  23029. bottom: 61.2 / 2681,
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(6 + 2 / 12, "feet"),
  23037. default: true
  23038. },
  23039. {
  23040. name: "Normal+",
  23041. height: math.unit(4, "meters")
  23042. },
  23043. {
  23044. name: "Macro",
  23045. height: math.unit(50, "meters")
  23046. },
  23047. {
  23048. name: "Macro+",
  23049. height: math.unit(100, "meters")
  23050. },
  23051. {
  23052. name: "Megamacro",
  23053. height: math.unit(20, "km")
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(1.67, "meters"),
  23062. weight: math.unit(140, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23066. extra: 438 / 410,
  23067. bottom: 0.75 / 439
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Shrunken",
  23074. height: math.unit(7.6, "cm")
  23075. },
  23076. {
  23077. name: "Human Scale",
  23078. height: math.unit(1.67, "meters")
  23079. },
  23080. {
  23081. name: "Wolxi Scale",
  23082. height: math.unit(36.7, "meters"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(1.73, "meters"),
  23092. weight: math.unit(240, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/izue-two-mothers/front.svg",
  23096. extra: 469 / 437,
  23097. bottom: 1.24 / 470.6
  23098. }
  23099. },
  23100. },
  23101. [
  23102. {
  23103. name: "Shrunken",
  23104. height: math.unit(7.86, "cm")
  23105. },
  23106. {
  23107. name: "Human Scale",
  23108. height: math.unit(1.73, "meters")
  23109. },
  23110. {
  23111. name: "Wolxi Scale",
  23112. height: math.unit(38, "meters"),
  23113. default: true
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23119. {
  23120. front: {
  23121. height: math.unit(1.55, "meters"),
  23122. weight: math.unit(120, "lb"),
  23123. name: "Front",
  23124. image: {
  23125. source: "./media/characters/teeku-love-shack/front.svg",
  23126. extra: 387 / 362,
  23127. bottom: 1.51 / 388
  23128. }
  23129. },
  23130. },
  23131. [
  23132. {
  23133. name: "Shrunken",
  23134. height: math.unit(7, "cm")
  23135. },
  23136. {
  23137. name: "Human Scale",
  23138. height: math.unit(1.55, "meters")
  23139. },
  23140. {
  23141. name: "Wolxi Scale",
  23142. height: math.unit(34.1, "meters"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(1.83, "meters"),
  23152. weight: math.unit(135, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/dejma-the-red/front.svg",
  23156. extra: 480 / 458,
  23157. bottom: 1.8 / 482
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Shrunken",
  23164. height: math.unit(8.3, "cm")
  23165. },
  23166. {
  23167. name: "Human Scale",
  23168. height: math.unit(1.83, "meters")
  23169. },
  23170. {
  23171. name: "Wolxi Scale",
  23172. height: math.unit(40, "meters"),
  23173. default: true
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(1.78, "meters"),
  23182. weight: math.unit(65, "kg"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/aki/front.svg",
  23186. extra: 452 / 415
  23187. }
  23188. },
  23189. frontNsfw: {
  23190. height: math.unit(1.78, "meters"),
  23191. weight: math.unit(65, "kg"),
  23192. name: "Front (NSFW)",
  23193. image: {
  23194. source: "./media/characters/aki/front-nsfw.svg",
  23195. extra: 452 / 415
  23196. }
  23197. },
  23198. back: {
  23199. height: math.unit(1.78, "meters"),
  23200. weight: math.unit(65, "kg"),
  23201. name: "Back",
  23202. image: {
  23203. source: "./media/characters/aki/back.svg",
  23204. extra: 452 / 415
  23205. }
  23206. },
  23207. rump: {
  23208. height: math.unit(2.05, "feet"),
  23209. name: "Rump",
  23210. image: {
  23211. source: "./media/characters/aki/rump.svg"
  23212. }
  23213. },
  23214. dick: {
  23215. height: math.unit(0.95, "feet"),
  23216. name: "Dick",
  23217. image: {
  23218. source: "./media/characters/aki/dick.svg"
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Micro",
  23225. height: math.unit(15, "cm")
  23226. },
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(178, "cm"),
  23230. default: true
  23231. },
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(214, "m")
  23235. },
  23236. {
  23237. name: "Macro+",
  23238. height: math.unit(534, "m")
  23239. },
  23240. ]
  23241. ))
  23242. characterMakers.push(() => makeCharacter(
  23243. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23244. {
  23245. front: {
  23246. height: math.unit(5 + 5 / 12, "feet"),
  23247. weight: math.unit(120, "lb"),
  23248. name: "Front",
  23249. image: {
  23250. source: "./media/characters/ari/front.svg",
  23251. extra: 714.5 / 682,
  23252. bottom: 8 / 722.5
  23253. }
  23254. },
  23255. },
  23256. [
  23257. {
  23258. name: "Normal",
  23259. height: math.unit(5 + 5 / 12, "feet")
  23260. },
  23261. {
  23262. name: "Macro",
  23263. height: math.unit(100, "feet"),
  23264. default: true
  23265. },
  23266. {
  23267. name: "Megamacro",
  23268. height: math.unit(100, "miles")
  23269. },
  23270. {
  23271. name: "Gigamacro",
  23272. height: math.unit(80000, "miles")
  23273. },
  23274. ]
  23275. ))
  23276. characterMakers.push(() => makeCharacter(
  23277. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23278. {
  23279. side: {
  23280. height: math.unit(9, "feet"),
  23281. weight: math.unit(400, "kg"),
  23282. name: "Side",
  23283. image: {
  23284. source: "./media/characters/bolt/side.svg",
  23285. extra: 1126 / 896,
  23286. bottom: 60 / 1187.3,
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Micro",
  23293. height: math.unit(5, "inches")
  23294. },
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(9, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(700, "feet")
  23303. },
  23304. {
  23305. name: "Max Size",
  23306. height: math.unit(1.52e22, "yottameters")
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(4.53, "meters"),
  23315. weight: math.unit(3, "tons"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/draekon-sylviar/front.svg",
  23319. extra: 1228 / 1068,
  23320. bottom: 41 / 1270
  23321. }
  23322. },
  23323. tail: {
  23324. height: math.unit(1.772, "meter"),
  23325. name: "Tail",
  23326. image: {
  23327. source: "./media/characters/draekon-sylviar/tail.svg"
  23328. }
  23329. },
  23330. head: {
  23331. height: math.unit(1.331, "meter"),
  23332. name: "Head",
  23333. image: {
  23334. source: "./media/characters/draekon-sylviar/head.svg"
  23335. }
  23336. },
  23337. hand: {
  23338. height: math.unit(0.564, "meter"),
  23339. name: "Hand",
  23340. image: {
  23341. source: "./media/characters/draekon-sylviar/hand.svg"
  23342. }
  23343. },
  23344. foot: {
  23345. height: math.unit(0.621, "meter"),
  23346. name: "Foot",
  23347. image: {
  23348. source: "./media/characters/draekon-sylviar/foot.svg",
  23349. bottom: 32 / 324
  23350. }
  23351. },
  23352. dick: {
  23353. height: math.unit(61, "cm"),
  23354. name: "Dick",
  23355. image: {
  23356. source: "./media/characters/draekon-sylviar/dick.svg"
  23357. }
  23358. },
  23359. dickseparated: {
  23360. height: math.unit(61, "cm"),
  23361. name: "Dick-separated",
  23362. image: {
  23363. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23364. }
  23365. },
  23366. },
  23367. [
  23368. {
  23369. name: "Small",
  23370. height: math.unit(4.53 / 2, "meters"),
  23371. default: true
  23372. },
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(4.53, "meters"),
  23376. default: true
  23377. },
  23378. {
  23379. name: "Large",
  23380. height: math.unit(4.53 * 2, "meters"),
  23381. },
  23382. ]
  23383. ))
  23384. characterMakers.push(() => makeCharacter(
  23385. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23386. {
  23387. front: {
  23388. height: math.unit(6 + 2 / 12, "feet"),
  23389. weight: math.unit(180, "lb"),
  23390. name: "Front",
  23391. image: {
  23392. source: "./media/characters/brawler/front.svg",
  23393. extra: 3301 / 3027,
  23394. bottom: 138 / 3439
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(6 + 2 / 12, "feet"),
  23402. default: true
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(11, "feet"),
  23411. weight: math.unit(1000, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/alex/front.svg",
  23415. bottom: 44.5 / 620
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Micro",
  23422. height: math.unit(5, "inches")
  23423. },
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(11, "feet"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "Macro",
  23431. height: math.unit(9.5e9, "feet")
  23432. },
  23433. {
  23434. name: "Max Size",
  23435. height: math.unit(1.4e283, "yottameters")
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23441. {
  23442. female: {
  23443. height: math.unit(29.9, "m"),
  23444. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23445. name: "Female",
  23446. image: {
  23447. source: "./media/characters/zenari/female.svg",
  23448. extra: 3281.6 / 3217,
  23449. bottom: 72.2 / 3353
  23450. }
  23451. },
  23452. male: {
  23453. height: math.unit(27.7, "m"),
  23454. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23455. name: "Male",
  23456. image: {
  23457. source: "./media/characters/zenari/male.svg",
  23458. extra: 3008 / 2991,
  23459. bottom: 54.6 / 3069
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Macro",
  23466. height: math.unit(29.7, "meters"),
  23467. default: true
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23473. {
  23474. female: {
  23475. height: math.unit(23.8, "m"),
  23476. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23477. name: "Female",
  23478. image: {
  23479. source: "./media/characters/mactarian/female.svg",
  23480. extra: 2662 / 2569,
  23481. bottom: 73 / 2736
  23482. }
  23483. },
  23484. male: {
  23485. height: math.unit(23.8, "m"),
  23486. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23487. name: "Male",
  23488. image: {
  23489. source: "./media/characters/mactarian/male.svg",
  23490. extra: 2673 / 2600,
  23491. bottom: 76 / 2750
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Macro",
  23498. height: math.unit(23.8, "meters"),
  23499. default: true
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23505. {
  23506. female: {
  23507. height: math.unit(19.3, "m"),
  23508. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23509. name: "Female",
  23510. image: {
  23511. source: "./media/characters/umok/female.svg",
  23512. extra: 2186 / 2078,
  23513. bottom: 87 / 2277
  23514. }
  23515. },
  23516. male: {
  23517. height: math.unit(19.5, "m"),
  23518. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23519. name: "Male",
  23520. image: {
  23521. source: "./media/characters/umok/male.svg",
  23522. extra: 2233 / 2140,
  23523. bottom: 24.4 / 2258
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Macro",
  23530. height: math.unit(19.3, "meters"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23537. {
  23538. female: {
  23539. height: math.unit(26.15, "m"),
  23540. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23541. name: "Female",
  23542. image: {
  23543. source: "./media/characters/joraxian/female.svg",
  23544. extra: 2912 / 2824,
  23545. bottom: 36 / 2956
  23546. }
  23547. },
  23548. male: {
  23549. height: math.unit(25.4, "m"),
  23550. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23551. name: "Male",
  23552. image: {
  23553. source: "./media/characters/joraxian/male.svg",
  23554. extra: 2877 / 2721,
  23555. bottom: 82 / 2967
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Macro",
  23562. height: math.unit(26.15, "meters"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23569. {
  23570. female: {
  23571. height: math.unit(21.6, "m"),
  23572. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23573. name: "Female",
  23574. image: {
  23575. source: "./media/characters/sthara/female.svg",
  23576. extra: 2516 / 2347,
  23577. bottom: 21.5 / 2537
  23578. }
  23579. },
  23580. male: {
  23581. height: math.unit(24, "m"),
  23582. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23583. name: "Male",
  23584. image: {
  23585. source: "./media/characters/sthara/male.svg",
  23586. extra: 2732 / 2607,
  23587. bottom: 23 / 2732
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Macro",
  23594. height: math.unit(21.6, "meters"),
  23595. default: true
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(6 + 4 / 12, "feet"),
  23604. weight: math.unit(175, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/luka-bryzant/front.svg",
  23608. extra: 311 / 289,
  23609. bottom: 4 / 315
  23610. }
  23611. },
  23612. back: {
  23613. height: math.unit(6 + 4 / 12, "feet"),
  23614. weight: math.unit(175, "lb"),
  23615. name: "Back",
  23616. image: {
  23617. source: "./media/characters/luka-bryzant/back.svg",
  23618. extra: 311 / 289,
  23619. bottom: 3.8 / 313.7
  23620. }
  23621. },
  23622. },
  23623. [
  23624. {
  23625. name: "Micro",
  23626. height: math.unit(10, "inches")
  23627. },
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(6 + 4 / 12, "feet"),
  23631. default: true
  23632. },
  23633. {
  23634. name: "Large",
  23635. height: math.unit(12, "feet")
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(5 + 7 / 12, "feet"),
  23644. weight: math.unit(185, "lb"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/aman-aquila/front.svg",
  23648. extra: 1013 / 976,
  23649. bottom: 45.6 / 1057
  23650. }
  23651. },
  23652. side: {
  23653. height: math.unit(5 + 7 / 12, "feet"),
  23654. weight: math.unit(185, "lb"),
  23655. name: "Side",
  23656. image: {
  23657. source: "./media/characters/aman-aquila/side.svg",
  23658. extra: 1054 / 1011,
  23659. bottom: 15 / 1070
  23660. }
  23661. },
  23662. back: {
  23663. height: math.unit(5 + 7 / 12, "feet"),
  23664. weight: math.unit(185, "lb"),
  23665. name: "Back",
  23666. image: {
  23667. source: "./media/characters/aman-aquila/back.svg",
  23668. extra: 1026 / 970,
  23669. bottom: 12 / 1039
  23670. }
  23671. },
  23672. head: {
  23673. height: math.unit(1.211, "feet"),
  23674. name: "Head",
  23675. image: {
  23676. source: "./media/characters/aman-aquila/head.svg",
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Minimicro",
  23683. height: math.unit(0.057, "inches")
  23684. },
  23685. {
  23686. name: "Micro",
  23687. height: math.unit(7, "inches")
  23688. },
  23689. {
  23690. name: "Mini",
  23691. height: math.unit(3 + 7 / 12, "feet")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(5 + 7 / 12, "feet"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(157 + 7 / 12, "feet")
  23701. },
  23702. {
  23703. name: "Megamacro",
  23704. height: math.unit(1557 + 7 / 12, "feet")
  23705. },
  23706. {
  23707. name: "Gigamacro",
  23708. height: math.unit(15557 + 7 / 12, "feet")
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23714. {
  23715. front: {
  23716. height: math.unit(3 + 2 / 12, "inches"),
  23717. weight: math.unit(0.3, "ounces"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/hiphae/front.svg",
  23721. extra: 1931 / 1683,
  23722. bottom: 24 / 1955
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(3 + 1 / 2, "inches"),
  23730. default: true
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(5 + 10 / 12, "feet"),
  23739. weight: math.unit(165, "lb"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/nicky/front.svg",
  23743. extra: 3144 / 2886,
  23744. bottom: 45.6 / 3192
  23745. }
  23746. },
  23747. back: {
  23748. height: math.unit(5 + 10 / 12, "feet"),
  23749. weight: math.unit(165, "lb"),
  23750. name: "Back",
  23751. image: {
  23752. source: "./media/characters/nicky/back.svg",
  23753. extra: 3055 / 2804,
  23754. bottom: 28.4 / 3087
  23755. }
  23756. },
  23757. frontclothed: {
  23758. height: math.unit(5 + 10 / 12, "feet"),
  23759. weight: math.unit(165, "lb"),
  23760. name: "Front-clothed",
  23761. image: {
  23762. source: "./media/characters/nicky/front-clothed.svg",
  23763. extra: 3184.9 / 2926.9,
  23764. bottom: 86.5 / 3239.9
  23765. }
  23766. },
  23767. foot: {
  23768. height: math.unit(1.16, "feet"),
  23769. name: "Foot",
  23770. image: {
  23771. source: "./media/characters/nicky/foot.svg"
  23772. }
  23773. },
  23774. feet: {
  23775. height: math.unit(1.34, "feet"),
  23776. name: "Feet",
  23777. image: {
  23778. source: "./media/characters/nicky/feet.svg"
  23779. }
  23780. },
  23781. maw: {
  23782. height: math.unit(0.9, "feet"),
  23783. name: "Maw",
  23784. image: {
  23785. source: "./media/characters/nicky/maw.svg"
  23786. }
  23787. },
  23788. },
  23789. [
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(5 + 10 / 12, "feet"),
  23793. default: true
  23794. },
  23795. {
  23796. name: "Macro",
  23797. height: math.unit(60, "feet")
  23798. },
  23799. {
  23800. name: "Megamacro",
  23801. height: math.unit(1, "mile")
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23807. {
  23808. side: {
  23809. height: math.unit(10, "feet"),
  23810. weight: math.unit(600, "lb"),
  23811. name: "Side",
  23812. image: {
  23813. source: "./media/characters/blair/side.svg",
  23814. bottom: 16.6 / 475,
  23815. extra: 458 / 431
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Micro",
  23822. height: math.unit(8, "inches")
  23823. },
  23824. {
  23825. name: "Normal",
  23826. height: math.unit(10, "feet"),
  23827. default: true
  23828. },
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(180, "feet")
  23832. },
  23833. ]
  23834. ))
  23835. characterMakers.push(() => makeCharacter(
  23836. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23837. {
  23838. front: {
  23839. height: math.unit(5 + 4 / 12, "feet"),
  23840. weight: math.unit(125, "lb"),
  23841. name: "Front",
  23842. image: {
  23843. source: "./media/characters/fisher/front.svg",
  23844. extra: 444 / 390,
  23845. bottom: 2 / 444.8
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Micro",
  23852. height: math.unit(4, "inches")
  23853. },
  23854. {
  23855. name: "Normal",
  23856. height: math.unit(5 + 4 / 12, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(100, "feet")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(6.71, "feet"),
  23870. weight: math.unit(200, "lb"),
  23871. capacity: math.unit(1000000, "people"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/gliss/front.svg",
  23875. extra: 2347 / 2231,
  23876. bottom: 113 / 2462
  23877. }
  23878. },
  23879. hammerspaceSize: {
  23880. height: math.unit(6.71 * 717, "feet"),
  23881. weight: math.unit(200, "lb"),
  23882. capacity: math.unit(1000000, "people"),
  23883. name: "Hammerspace Size",
  23884. image: {
  23885. source: "./media/characters/gliss/front.svg",
  23886. extra: 2347 / 2231,
  23887. bottom: 113 / 2462
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Normal",
  23894. height: math.unit(6.71, "feet"),
  23895. default: true
  23896. },
  23897. ]
  23898. ))
  23899. characterMakers.push(() => makeCharacter(
  23900. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23901. {
  23902. side: {
  23903. height: math.unit(1.44, "m"),
  23904. weight: math.unit(80, "kg"),
  23905. name: "Side",
  23906. image: {
  23907. source: "./media/characters/dune-anderson/side.svg",
  23908. bottom: 49 / 1426
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Wolf-sized",
  23915. height: math.unit(1.44, "meters")
  23916. },
  23917. {
  23918. name: "Normal",
  23919. height: math.unit(5.05, "meters"),
  23920. default: true
  23921. },
  23922. {
  23923. name: "Big",
  23924. height: math.unit(14.4, "meters")
  23925. },
  23926. {
  23927. name: "Huge",
  23928. height: math.unit(144, "meters")
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(7, "feet"),
  23937. weight: math.unit(425, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/hind/front.svg",
  23941. extra: 2091 / 1860,
  23942. bottom: 129 / 2220
  23943. }
  23944. },
  23945. back: {
  23946. height: math.unit(7, "feet"),
  23947. weight: math.unit(425, "lb"),
  23948. name: "Back",
  23949. image: {
  23950. source: "./media/characters/hind/back.svg",
  23951. extra: 2091 / 1860,
  23952. bottom: 24.6 / 2309
  23953. }
  23954. },
  23955. tail: {
  23956. height: math.unit(2.8, "feet"),
  23957. name: "Tail",
  23958. image: {
  23959. source: "./media/characters/hind/tail.svg"
  23960. }
  23961. },
  23962. head: {
  23963. height: math.unit(2.55, "feet"),
  23964. name: "Head",
  23965. image: {
  23966. source: "./media/characters/hind/head.svg"
  23967. }
  23968. },
  23969. },
  23970. [
  23971. {
  23972. name: "XS",
  23973. height: math.unit(0.7, "feet")
  23974. },
  23975. {
  23976. name: "Normal",
  23977. height: math.unit(7, "feet"),
  23978. default: true
  23979. },
  23980. {
  23981. name: "XL",
  23982. height: math.unit(70, "feet")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(6, "feet"),
  23991. weight: math.unit(150, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/dylan-skaven/front.svg",
  23995. extra: 2318 / 2063,
  23996. bottom: 93.4 / 2410
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Nano",
  24003. height: math.unit(1, "mm")
  24004. },
  24005. {
  24006. name: "Micro",
  24007. height: math.unit(1, "cm")
  24008. },
  24009. {
  24010. name: "Normal",
  24011. height: math.unit(2.1, "meters"),
  24012. default: true
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(7 + 5 / 12, "feet"),
  24021. weight: math.unit(357, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/solex-draconov/front.svg",
  24025. extra: 1993 / 1865,
  24026. bottom: 117 / 2111
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Natural Height",
  24033. height: math.unit(7 + 5 / 12, "feet"),
  24034. default: true
  24035. },
  24036. {
  24037. name: "Macro",
  24038. height: math.unit(350, "feet")
  24039. },
  24040. {
  24041. name: "Macro+",
  24042. height: math.unit(1000, "feet")
  24043. },
  24044. {
  24045. name: "Megamacro",
  24046. height: math.unit(20, "km")
  24047. },
  24048. {
  24049. name: "Megamacro+",
  24050. height: math.unit(1000, "km")
  24051. },
  24052. {
  24053. name: "Gigamacro",
  24054. height: math.unit(2.5, "Gm")
  24055. },
  24056. {
  24057. name: "Teramacro",
  24058. height: math.unit(15, "Tm")
  24059. },
  24060. {
  24061. name: "Galactic",
  24062. height: math.unit(30, "Zm")
  24063. },
  24064. {
  24065. name: "Universal",
  24066. height: math.unit(21000, "Ym")
  24067. },
  24068. {
  24069. name: "Omniversal",
  24070. height: math.unit(9.861e50, "Ym")
  24071. },
  24072. {
  24073. name: "Existential",
  24074. height: math.unit(1e300, "meters")
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24080. {
  24081. side: {
  24082. height: math.unit(25, "feet"),
  24083. weight: math.unit(90000, "lb"),
  24084. name: "Side",
  24085. image: {
  24086. source: "./media/characters/mandarax/side.svg",
  24087. extra: 614 / 332,
  24088. bottom: 55 / 630
  24089. }
  24090. },
  24091. head: {
  24092. height: math.unit(11.4, "feet"),
  24093. name: "Head",
  24094. image: {
  24095. source: "./media/characters/mandarax/head.svg"
  24096. }
  24097. },
  24098. belly: {
  24099. height: math.unit(33, "feet"),
  24100. name: "Belly",
  24101. capacity: math.unit(500, "people"),
  24102. image: {
  24103. source: "./media/characters/mandarax/belly.svg"
  24104. }
  24105. },
  24106. dick: {
  24107. height: math.unit(8.46, "feet"),
  24108. name: "Dick",
  24109. image: {
  24110. source: "./media/characters/mandarax/dick.svg"
  24111. }
  24112. },
  24113. top: {
  24114. height: math.unit(28, "meters"),
  24115. name: "Top",
  24116. image: {
  24117. source: "./media/characters/mandarax/top.svg"
  24118. }
  24119. },
  24120. },
  24121. [
  24122. {
  24123. name: "Normal",
  24124. height: math.unit(25, "feet"),
  24125. default: true
  24126. },
  24127. ]
  24128. ))
  24129. characterMakers.push(() => makeCharacter(
  24130. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24131. {
  24132. front: {
  24133. height: math.unit(5, "feet"),
  24134. weight: math.unit(90, "lb"),
  24135. name: "Front",
  24136. image: {
  24137. source: "./media/characters/pixil/front.svg",
  24138. extra: 2000 / 1618,
  24139. bottom: 12.3 / 2011
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(5, "feet"),
  24147. default: true
  24148. },
  24149. {
  24150. name: "Megamacro",
  24151. height: math.unit(10, "miles"),
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(7 + 2 / 12, "feet"),
  24160. weight: math.unit(200, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/angel/front.svg",
  24164. extra: 1830 / 1737,
  24165. bottom: 22.6 / 1854,
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(7 + 2 / 12, "feet"),
  24173. default: true
  24174. },
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(1000, "feet")
  24178. },
  24179. {
  24180. name: "Megamacro",
  24181. height: math.unit(2, "miles")
  24182. },
  24183. {
  24184. name: "Gigamacro",
  24185. height: math.unit(20, "earths")
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(5, "feet"),
  24194. weight: math.unit(180, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/mekana/front.svg",
  24198. extra: 1671 / 1605,
  24199. bottom: 3.5 / 1691
  24200. }
  24201. },
  24202. side: {
  24203. height: math.unit(5, "feet"),
  24204. weight: math.unit(180, "lb"),
  24205. name: "Side",
  24206. image: {
  24207. source: "./media/characters/mekana/side.svg",
  24208. extra: 1671 / 1605,
  24209. bottom: 3.5 / 1691
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(5, "feet"),
  24214. weight: math.unit(180, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/mekana/back.svg",
  24218. extra: 1671 / 1605,
  24219. bottom: 3.5 / 1691
  24220. }
  24221. },
  24222. },
  24223. [
  24224. {
  24225. name: "Normal",
  24226. height: math.unit(5, "feet"),
  24227. default: true
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24233. {
  24234. front: {
  24235. height: math.unit(4 + 6 / 12, "feet"),
  24236. weight: math.unit(80, "lb"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/pixie/front.svg",
  24240. extra: 1924 / 1825,
  24241. bottom: 22.4 / 1946
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(4 + 6 / 12, "feet"),
  24249. default: true
  24250. },
  24251. {
  24252. name: "Macro",
  24253. height: math.unit(40, "feet")
  24254. },
  24255. ]
  24256. ))
  24257. characterMakers.push(() => makeCharacter(
  24258. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24259. {
  24260. front: {
  24261. height: math.unit(2.1, "meters"),
  24262. weight: math.unit(200, "lb"),
  24263. name: "Front",
  24264. image: {
  24265. source: "./media/characters/the-lascivious/front.svg",
  24266. extra: 1 / 0.893,
  24267. bottom: 3.5 / 573.7
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Human Scale",
  24274. height: math.unit(2.1, "meters")
  24275. },
  24276. {
  24277. name: "Wolxi Scale",
  24278. height: math.unit(46.2, "m"),
  24279. default: true
  24280. },
  24281. {
  24282. name: "Boinker of Buildings",
  24283. height: math.unit(10, "km")
  24284. },
  24285. {
  24286. name: "Shagger of Skyscrapers",
  24287. height: math.unit(40, "km")
  24288. },
  24289. {
  24290. name: "Banger of Boroughs",
  24291. height: math.unit(4000, "km")
  24292. },
  24293. {
  24294. name: "Screwer of States",
  24295. height: math.unit(100000, "km")
  24296. },
  24297. {
  24298. name: "Pounder of Planets",
  24299. height: math.unit(2000000, "km")
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(6, "feet"),
  24308. weight: math.unit(150, "lb"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/aj/front.svg",
  24312. extra: 2039 / 1562,
  24313. bottom: 40 / 2079
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Normal",
  24320. height: math.unit(11 + 6 / 12, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Megamacro",
  24325. height: math.unit(60, "megameters")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24331. {
  24332. side: {
  24333. height: math.unit(31 + 8/12, "feet"),
  24334. weight: math.unit(75000, "kg"),
  24335. name: "Side",
  24336. image: {
  24337. source: "./media/characters/koros/side.svg",
  24338. extra: 1442/1297,
  24339. bottom: 122.7/1562
  24340. }
  24341. },
  24342. dicksKingsCrown: {
  24343. height: math.unit(6, "feet"),
  24344. name: "Dicks (King's Crown)",
  24345. image: {
  24346. source: "./media/characters/koros/dicks-kings-crown.svg"
  24347. }
  24348. },
  24349. dicksTailSet: {
  24350. height: math.unit(3, "feet"),
  24351. name: "Dicks (Tail Set)",
  24352. image: {
  24353. source: "./media/characters/koros/dicks-tail-set.svg"
  24354. }
  24355. },
  24356. dickCumming: {
  24357. height: math.unit(7.98, "feet"),
  24358. name: "Dick (Cumming)",
  24359. image: {
  24360. source: "./media/characters/koros/dick-cumming.svg"
  24361. }
  24362. },
  24363. dicksBack: {
  24364. height: math.unit(5.9, "feet"),
  24365. name: "Dicks (Back)",
  24366. image: {
  24367. source: "./media/characters/koros/dicks-back.svg"
  24368. }
  24369. },
  24370. dicksFront: {
  24371. height: math.unit(3.72, "feet"),
  24372. name: "Dicks (Front)",
  24373. image: {
  24374. source: "./media/characters/koros/dicks-front.svg"
  24375. }
  24376. },
  24377. dicksPeeking: {
  24378. height: math.unit(3.0, "feet"),
  24379. name: "Dicks (Peeking)",
  24380. image: {
  24381. source: "./media/characters/koros/dicks-peeking.svg"
  24382. }
  24383. },
  24384. eye: {
  24385. height: math.unit(1.7, "feet"),
  24386. name: "Eye",
  24387. image: {
  24388. source: "./media/characters/koros/eye.svg"
  24389. }
  24390. },
  24391. headFront: {
  24392. height: math.unit(11.69, "feet"),
  24393. name: "Head (Front)",
  24394. image: {
  24395. source: "./media/characters/koros/head-front.svg"
  24396. }
  24397. },
  24398. headSide: {
  24399. height: math.unit(14, "feet"),
  24400. name: "Head (Side)",
  24401. image: {
  24402. source: "./media/characters/koros/head-side.svg"
  24403. }
  24404. },
  24405. leg: {
  24406. height: math.unit(17, "feet"),
  24407. name: "Leg",
  24408. image: {
  24409. source: "./media/characters/koros/leg.svg"
  24410. }
  24411. },
  24412. mawSide: {
  24413. height: math.unit(12.8, "feet"),
  24414. name: "Maw (Side)",
  24415. image: {
  24416. source: "./media/characters/koros/maw-side.svg"
  24417. }
  24418. },
  24419. mawSpitting: {
  24420. height: math.unit(17, "feet"),
  24421. name: "Maw (Spitting)",
  24422. image: {
  24423. source: "./media/characters/koros/maw-spitting.svg"
  24424. }
  24425. },
  24426. slit: {
  24427. height: math.unit(2.8, "feet"),
  24428. name: "Slit",
  24429. image: {
  24430. source: "./media/characters/koros/slit.svg"
  24431. }
  24432. },
  24433. stomach: {
  24434. height: math.unit(6.8, "feet"),
  24435. capacity: math.unit(20, "people"),
  24436. name: "Stomach",
  24437. image: {
  24438. source: "./media/characters/koros/stomach.svg"
  24439. }
  24440. },
  24441. wingspanBottom: {
  24442. height: math.unit(114, "feet"),
  24443. name: "Wingspan (Bottom)",
  24444. image: {
  24445. source: "./media/characters/koros/wingspan-bottom.svg"
  24446. }
  24447. },
  24448. wingspanTop: {
  24449. height: math.unit(104, "feet"),
  24450. name: "Wingspan (Top)",
  24451. image: {
  24452. source: "./media/characters/koros/wingspan-top.svg"
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Normal",
  24459. height: math.unit(31 + 8/12, "feet"),
  24460. default: true
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(18 + 5/12, "feet"),
  24469. weight: math.unit(3750, "kg"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/vexx/front.svg",
  24473. extra: 426/396,
  24474. bottom: 31.5/458
  24475. }
  24476. },
  24477. maw: {
  24478. height: math.unit(6, "feet"),
  24479. name: "Maw",
  24480. image: {
  24481. source: "./media/characters/vexx/maw.svg"
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(18 + 5/12, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(17 + 6/12, "feet"),
  24498. weight: math.unit(150, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/baadra/front.svg",
  24502. extra: 3137/2890,
  24503. bottom: 168.4/3305
  24504. }
  24505. },
  24506. back: {
  24507. height: math.unit(17 + 6/12, "feet"),
  24508. weight: math.unit(150, "lb"),
  24509. name: "Back",
  24510. image: {
  24511. source: "./media/characters/baadra/back.svg",
  24512. extra: 3142/2890,
  24513. bottom: 220/3371
  24514. }
  24515. },
  24516. head: {
  24517. height: math.unit(5.45, "feet"),
  24518. name: "Head",
  24519. image: {
  24520. source: "./media/characters/baadra/head.svg"
  24521. }
  24522. },
  24523. headAngry: {
  24524. height: math.unit(4.95, "feet"),
  24525. name: "Head (Angry)",
  24526. image: {
  24527. source: "./media/characters/baadra/head-angry.svg"
  24528. }
  24529. },
  24530. headOpen: {
  24531. height: math.unit(6, "feet"),
  24532. name: "Head (Open)",
  24533. image: {
  24534. source: "./media/characters/baadra/head-open.svg"
  24535. }
  24536. },
  24537. },
  24538. [
  24539. {
  24540. name: "Normal",
  24541. height: math.unit(17 + 6/12, "feet"),
  24542. default: true
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(7 + 3/12, "feet"),
  24551. weight: math.unit(180, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/juri/front.svg",
  24555. extra: 1401/1237,
  24556. bottom: 18.5/1418
  24557. }
  24558. },
  24559. side: {
  24560. height: math.unit(7 + 3/12, "feet"),
  24561. weight: math.unit(180, "lb"),
  24562. name: "Side",
  24563. image: {
  24564. source: "./media/characters/juri/side.svg",
  24565. extra: 1424/1242,
  24566. bottom: 18.5/1447
  24567. }
  24568. },
  24569. sitting: {
  24570. height: math.unit(6, "feet"),
  24571. weight: math.unit(180, "lb"),
  24572. name: "Sitting",
  24573. image: {
  24574. source: "./media/characters/juri/sitting.svg",
  24575. extra: 1270/1143,
  24576. bottom: 100/1343
  24577. }
  24578. },
  24579. back: {
  24580. height: math.unit(7 + 3/12, "feet"),
  24581. weight: math.unit(180, "lb"),
  24582. name: "Back",
  24583. image: {
  24584. source: "./media/characters/juri/back.svg",
  24585. extra: 1377/1240,
  24586. bottom: 23.7/1405
  24587. }
  24588. },
  24589. maw: {
  24590. height: math.unit(2.8, "feet"),
  24591. name: "Maw",
  24592. image: {
  24593. source: "./media/characters/juri/maw.svg"
  24594. }
  24595. },
  24596. stomach: {
  24597. height: math.unit(0.89, "feet"),
  24598. capacity: math.unit(4, "liters"),
  24599. name: "Stomach",
  24600. image: {
  24601. source: "./media/characters/juri/stomach.svg"
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(7 + 3/12, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24615. {
  24616. fox: {
  24617. height: math.unit(5 + 6/12, "feet"),
  24618. weight: math.unit(140, "lb"),
  24619. name: "Fox",
  24620. image: {
  24621. source: "./media/characters/maxene-sita/fox.svg",
  24622. extra: 146/138,
  24623. bottom: 2.1/148.19
  24624. }
  24625. },
  24626. kitsune: {
  24627. height: math.unit(10, "feet"),
  24628. weight: math.unit(800, "lb"),
  24629. name: "Kitsune",
  24630. image: {
  24631. source: "./media/characters/maxene-sita/kitsune.svg",
  24632. extra: 185/176,
  24633. bottom: 4.7/189.9
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(5 + 6/12, "feet"),
  24641. default: true
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24647. {
  24648. front: {
  24649. height: math.unit(3 + 4/12, "feet"),
  24650. weight: math.unit(70, "lb"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/maia/front.svg",
  24654. extra: 227/219.5,
  24655. bottom: 40 / 267
  24656. }
  24657. },
  24658. back: {
  24659. height: math.unit(3 + 4/12, "feet"),
  24660. weight: math.unit(70, "lb"),
  24661. name: "Back",
  24662. image: {
  24663. source: "./media/characters/maia/back.svg",
  24664. extra: 237/225
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Normal",
  24671. height: math.unit(3 + 4/12, "feet"),
  24672. default: true
  24673. },
  24674. ]
  24675. ))
  24676. characterMakers.push(() => makeCharacter(
  24677. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24678. {
  24679. front: {
  24680. height: math.unit(5 + 10/12, "feet"),
  24681. weight: math.unit(197, "lb"),
  24682. name: "Front",
  24683. image: {
  24684. source: "./media/characters/jabaro/front.svg",
  24685. extra: 225/216,
  24686. bottom: 5.06/230
  24687. }
  24688. },
  24689. back: {
  24690. height: math.unit(5 + 10/12, "feet"),
  24691. weight: math.unit(197, "lb"),
  24692. name: "Back",
  24693. image: {
  24694. source: "./media/characters/jabaro/back.svg",
  24695. extra: 225/219,
  24696. bottom: 1.9/227
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Normal",
  24703. height: math.unit(5 + 10/12, "feet"),
  24704. default: true
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(5 + 8/12, "feet"),
  24713. weight: math.unit(139, "lb"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/risa/front.svg",
  24717. extra: 270/260,
  24718. bottom: 11.2/282
  24719. }
  24720. },
  24721. back: {
  24722. height: math.unit(5 + 8/12, "feet"),
  24723. weight: math.unit(139, "lb"),
  24724. name: "Back",
  24725. image: {
  24726. source: "./media/characters/risa/back.svg",
  24727. extra: 264/255,
  24728. bottom: 4/268
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(5 + 8/12, "feet"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(2 + 11/12, "feet"),
  24745. weight: math.unit(30, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/weatley/front.svg",
  24749. bottom: 10.7/414,
  24750. extra: 403.5/362
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(2 + 11/12, "feet"),
  24755. weight: math.unit(30, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/weatley/back.svg",
  24759. bottom: 10.7/414,
  24760. extra: 403.5/362
  24761. }
  24762. },
  24763. },
  24764. [
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(2 + 11/12, "feet"),
  24768. default: true
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(5 + 2/12, "feet"),
  24777. weight: math.unit(50, "kg"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/mercury-crescent/front.svg",
  24781. extra: 1088/1033,
  24782. bottom: 18.9/1109
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(5 + 2/12, "feet"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(2, "feet"),
  24799. weight: math.unit(15, "kg"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/diamond-jones/front.svg",
  24803. bottom: 16/568
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(2, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(3, "feet"),
  24820. weight: math.unit(30, "kg"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/sweet-bit/front.svg",
  24824. extra: 675/567,
  24825. bottom: 27.7/703
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Normal",
  24832. height: math.unit(3, "feet"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24839. {
  24840. side: {
  24841. height: math.unit(9.178, "feet"),
  24842. weight: math.unit(500, "lb"),
  24843. name: "Side",
  24844. image: {
  24845. source: "./media/characters/umbrazen/side.svg",
  24846. extra: 1730/1473,
  24847. bottom: 34.6/1765
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(9.178, "feet"),
  24855. default: true
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24861. {
  24862. front: {
  24863. height: math.unit(10, "feet"),
  24864. weight: math.unit(750, "lb"),
  24865. name: "Front",
  24866. image: {
  24867. source: "./media/characters/arlist/front.svg",
  24868. extra: 961/778,
  24869. bottom: 6.2/986
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(10, "feet"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(5 + 1/12, "feet"),
  24886. weight: math.unit(110, "lb"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/aradel/front.svg",
  24890. extra: 324/303,
  24891. bottom: 3.6/329.4
  24892. }
  24893. },
  24894. },
  24895. [
  24896. {
  24897. name: "Normal",
  24898. height: math.unit(5 + 1/12, "feet"),
  24899. default: true
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(3 + 8/12, "feet"),
  24908. weight: math.unit(50, "lb"),
  24909. name: "Front",
  24910. image: {
  24911. source: "./media/characters/serryn/front.svg",
  24912. extra: 1792/1656,
  24913. bottom: 43.5/1840
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(3 + 8/12, "feet"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Xavier Thyme" },
  24927. {
  24928. front: {
  24929. height: math.unit(7 + 10/12, "feet"),
  24930. weight: math.unit(255, "lb"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/xavier-thyme/front.svg",
  24934. extra: 3733/3642,
  24935. bottom: 131/3869
  24936. }
  24937. },
  24938. frontRaven: {
  24939. height: math.unit(7 + 10/12, "feet"),
  24940. weight: math.unit(255, "lb"),
  24941. name: "Front (Raven)",
  24942. image: {
  24943. source: "./media/characters/xavier-thyme/front-raven.svg",
  24944. extra: 4385/3642,
  24945. bottom: 131/4517
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Normal",
  24952. height: math.unit(7 + 10/12, "feet"),
  24953. default: true
  24954. },
  24955. ]
  24956. ))
  24957. characterMakers.push(() => makeCharacter(
  24958. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24959. {
  24960. front: {
  24961. height: math.unit(1.6, "m"),
  24962. weight: math.unit(50, "kg"),
  24963. name: "Front",
  24964. image: {
  24965. source: "./media/characters/kiki/front.svg",
  24966. extra: 4682/3610,
  24967. bottom: 115/4777
  24968. }
  24969. },
  24970. },
  24971. [
  24972. {
  24973. name: "Normal",
  24974. height: math.unit(1.6, "meters"),
  24975. default: true
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24981. {
  24982. front: {
  24983. height: math.unit(50, "m"),
  24984. weight: math.unit(500, "tonnes"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/ryoko/front.svg",
  24988. extra: 4632/3926,
  24989. bottom: 193/4823
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(50, "meters"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(30, "m"),
  25006. weight: math.unit(22, "tonnes"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/elio/front.svg",
  25010. extra: 4582/3720,
  25011. bottom: 236/4828
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(30, "meters"),
  25019. default: true
  25020. },
  25021. ]
  25022. ))
  25023. characterMakers.push(() => makeCharacter(
  25024. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25025. {
  25026. front: {
  25027. height: math.unit(6 + 3/12, "feet"),
  25028. weight: math.unit(120, "lb"),
  25029. name: "Front",
  25030. image: {
  25031. source: "./media/characters/azura/front.svg",
  25032. extra: 1149/1135,
  25033. bottom: 45/1194
  25034. }
  25035. },
  25036. frontClothed: {
  25037. height: math.unit(6 + 3/12, "feet"),
  25038. weight: math.unit(120, "lb"),
  25039. name: "Front (Clothed)",
  25040. image: {
  25041. source: "./media/characters/azura/front-clothed.svg",
  25042. extra: 1149/1135,
  25043. bottom: 45/1194
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(6 + 3/12, "feet"),
  25051. default: true
  25052. },
  25053. {
  25054. name: "Macro",
  25055. height: math.unit(20 + 6/12, "feet")
  25056. },
  25057. {
  25058. name: "Megamacro",
  25059. height: math.unit(12, "miles")
  25060. },
  25061. {
  25062. name: "Gigamacro",
  25063. height: math.unit(10000, "miles")
  25064. },
  25065. {
  25066. name: "Teramacro",
  25067. height: math.unit(900000, "miles")
  25068. },
  25069. ]
  25070. ))
  25071. characterMakers.push(() => makeCharacter(
  25072. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25073. {
  25074. front: {
  25075. height: math.unit(12, "feet"),
  25076. weight: math.unit(1, "ton"),
  25077. capacity: math.unit(660000, "gallons"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/zeus/front.svg",
  25081. extra: 5005/4717,
  25082. bottom: 363/5388
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(12, "feet")
  25090. },
  25091. {
  25092. name: "Preferred Size",
  25093. height: math.unit(0.5, "miles"),
  25094. default: true
  25095. },
  25096. {
  25097. name: "Giga Horse",
  25098. height: math.unit(300, "miles")
  25099. },
  25100. {
  25101. name: "Riding Planets",
  25102. height: math.unit(30, "megameters")
  25103. },
  25104. {
  25105. name: "Cosmic Giant",
  25106. height: math.unit(3, "zettameters")
  25107. },
  25108. {
  25109. name: "Breeding God",
  25110. height: math.unit(9.92e22, "yottameters")
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25116. {
  25117. side: {
  25118. height: math.unit(9, "feet"),
  25119. weight: math.unit(1500, "kg"),
  25120. name: "Side",
  25121. image: {
  25122. source: "./media/characters/fang/side.svg",
  25123. extra: 924/866,
  25124. bottom: 47.5/972.3
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(9, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Macro",
  25136. height: math.unit(75 + 6/12, "feet")
  25137. },
  25138. {
  25139. name: "Teramacro",
  25140. height: math.unit(50000, "miles")
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(10, "feet"),
  25149. weight: math.unit(2, "tons"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/rekhit/front.svg",
  25153. extra: 2796/2590,
  25154. bottom: 225/3022
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(10, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Macro",
  25166. height: math.unit(500, "feet")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Dahlia Verrick" },
  25172. {
  25173. front: {
  25174. height: math.unit(7 + 6.451/12, "feet"),
  25175. weight: math.unit(310, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/dahlia-verrick/front.svg",
  25179. extra: 1488/1365,
  25180. bottom: 6.2/1495
  25181. }
  25182. },
  25183. back: {
  25184. height: math.unit(7 + 6.451/12, "feet"),
  25185. weight: math.unit(310, "lb"),
  25186. name: "Back",
  25187. image: {
  25188. source: "./media/characters/dahlia-verrick/back.svg",
  25189. extra: 1472/1351,
  25190. bottom: 5.28/1477
  25191. }
  25192. },
  25193. frontBusiness: {
  25194. height: math.unit(7 + 6.451/12, "feet"),
  25195. weight: math.unit(200, "lb"),
  25196. name: "Front (Business)",
  25197. image: {
  25198. source: "./media/characters/dahlia-verrick/front-business.svg",
  25199. extra: 1478/1381,
  25200. bottom: 5.5/1484
  25201. }
  25202. },
  25203. frontCasual: {
  25204. height: math.unit(7 + 6.451/12, "feet"),
  25205. weight: math.unit(200, "lb"),
  25206. name: "Front (Casual)",
  25207. image: {
  25208. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25209. extra: 1478/1381,
  25210. bottom: 5.5/1484
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Travel-Sized",
  25217. height: math.unit(7.45, "inches")
  25218. },
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(7 + 6.451/12, "feet"),
  25222. default: true
  25223. },
  25224. {
  25225. name: "Hitting the Town",
  25226. height: math.unit(37 + 8/12, "feet")
  25227. },
  25228. {
  25229. name: "Stomp in the Suburbs",
  25230. height: math.unit(964 + 9.728/12, "feet")
  25231. },
  25232. {
  25233. name: "Sit on the City",
  25234. height: math.unit(61747 + 10.592/12, "feet")
  25235. },
  25236. {
  25237. name: "Glomp the Globe",
  25238. height: math.unit(252919327 + 4.832/12, "feet")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(6 + 4/12, "feet"),
  25247. weight: math.unit(320, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/balina-mahigan/front.svg",
  25251. extra: 447/428,
  25252. bottom: 18/466
  25253. }
  25254. },
  25255. back: {
  25256. height: math.unit(6 + 4/12, "feet"),
  25257. weight: math.unit(320, "lb"),
  25258. name: "Back",
  25259. image: {
  25260. source: "./media/characters/balina-mahigan/back.svg",
  25261. extra: 445/428,
  25262. bottom: 4.07/448
  25263. }
  25264. },
  25265. arm: {
  25266. height: math.unit(1.88, "feet"),
  25267. name: "Arm",
  25268. image: {
  25269. source: "./media/characters/balina-mahigan/arm.svg"
  25270. }
  25271. },
  25272. backPort: {
  25273. height: math.unit(0.685, "feet"),
  25274. name: "Back Port",
  25275. image: {
  25276. source: "./media/characters/balina-mahigan/back-port.svg"
  25277. }
  25278. },
  25279. hoofpaw: {
  25280. height: math.unit(1.41, "feet"),
  25281. name: "Hoofpaw",
  25282. image: {
  25283. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25284. }
  25285. },
  25286. leftHandBack: {
  25287. height: math.unit(0.938, "feet"),
  25288. name: "Left Hand (Back)",
  25289. image: {
  25290. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25291. }
  25292. },
  25293. leftHandFront: {
  25294. height: math.unit(0.938, "feet"),
  25295. name: "Left Hand (Front)",
  25296. image: {
  25297. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25298. }
  25299. },
  25300. rightHandBack: {
  25301. height: math.unit(0.95, "feet"),
  25302. name: "Right Hand (Back)",
  25303. image: {
  25304. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25305. }
  25306. },
  25307. rightHandFront: {
  25308. height: math.unit(0.95, "feet"),
  25309. name: "Right Hand (Front)",
  25310. image: {
  25311. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(6 + 4/12, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(6, "feet"),
  25328. weight: math.unit(320, "lb"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/balina-mejeri/front.svg",
  25332. extra: 517/488,
  25333. bottom: 44.2/561
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(6 + 4/12, "feet")
  25341. },
  25342. {
  25343. name: "Business",
  25344. height: math.unit(155, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25351. {
  25352. kneeling: {
  25353. height: math.unit(6 + 4/12, "feet"),
  25354. weight: math.unit(300*20, "lb"),
  25355. name: "Kneeling",
  25356. image: {
  25357. source: "./media/characters/balbarian/kneeling.svg",
  25358. extra: 922/862,
  25359. bottom: 42.4/965
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(6 + 4/12, "feet")
  25367. },
  25368. {
  25369. name: "Treasured",
  25370. height: math.unit(18 + 9/12, "feet"),
  25371. default: true
  25372. },
  25373. {
  25374. name: "Macro",
  25375. height: math.unit(900, "feet")
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(6 + 4/12, "feet"),
  25384. weight: math.unit(325, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/balina-amarini/front.svg",
  25388. extra: 415/403,
  25389. bottom: 19/433.4
  25390. }
  25391. },
  25392. back: {
  25393. height: math.unit(6 + 4/12, "feet"),
  25394. weight: math.unit(325, "lb"),
  25395. name: "Back",
  25396. image: {
  25397. source: "./media/characters/balina-amarini/back.svg",
  25398. extra: 415/403,
  25399. bottom: 13.5/432
  25400. }
  25401. },
  25402. overdrive: {
  25403. height: math.unit(6 + 4/12, "feet"),
  25404. weight: math.unit(400, "lb"),
  25405. name: "Overdrive",
  25406. image: {
  25407. source: "./media/characters/balina-amarini/overdrive.svg",
  25408. extra: 269/259,
  25409. bottom: 12/282
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Boom",
  25416. height: math.unit(9 + 10/12, "feet"),
  25417. default: true
  25418. },
  25419. {
  25420. name: "Macro",
  25421. height: math.unit(280, "feet")
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25427. {
  25428. goddess: {
  25429. height: math.unit(600, "feet"),
  25430. weight: math.unit(2000000, "tons"),
  25431. name: "Goddess",
  25432. image: {
  25433. source: "./media/characters/lady-kubwa/goddess.svg",
  25434. extra: 1240.5/1223,
  25435. bottom: 22/1263
  25436. }
  25437. },
  25438. goddesser: {
  25439. height: math.unit(900, "feet"),
  25440. weight: math.unit(20000000, "lb"),
  25441. name: "Goddess-er",
  25442. image: {
  25443. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25444. extra: 899/888,
  25445. bottom: 12.6/912
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(600, "feet"),
  25453. default: true
  25454. },
  25455. {
  25456. name: "Megamacro",
  25457. height: math.unit(250, "miles")
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(7 + 7/12, "feet"),
  25466. weight: math.unit(250, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/tala-grovehorn/front.svg",
  25470. extra: 2636/2525,
  25471. bottom: 147/2781
  25472. }
  25473. },
  25474. back: {
  25475. height: math.unit(7 + 7/12, "feet"),
  25476. weight: math.unit(250, "lb"),
  25477. name: "Back",
  25478. image: {
  25479. source: "./media/characters/tala-grovehorn/back.svg",
  25480. extra: 2635/2539,
  25481. bottom: 100/2732.8
  25482. }
  25483. },
  25484. mouth: {
  25485. height: math.unit(1.15, "feet"),
  25486. name: "Mouth",
  25487. image: {
  25488. source: "./media/characters/tala-grovehorn/mouth.svg"
  25489. }
  25490. },
  25491. dick: {
  25492. height: math.unit(2.36, "feet"),
  25493. name: "Dick",
  25494. image: {
  25495. source: "./media/characters/tala-grovehorn/dick.svg"
  25496. }
  25497. },
  25498. slit: {
  25499. height: math.unit(0.61, "feet"),
  25500. name: "Slit",
  25501. image: {
  25502. source: "./media/characters/tala-grovehorn/slit.svg"
  25503. }
  25504. },
  25505. },
  25506. [
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(7 + 7/12, "feet"),
  25514. weight: math.unit(225, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/epona/front.svg",
  25518. extra: 2445/2290,
  25519. bottom: 251/2696
  25520. }
  25521. },
  25522. back: {
  25523. height: math.unit(7 + 7/12, "feet"),
  25524. weight: math.unit(225, "lb"),
  25525. name: "Back",
  25526. image: {
  25527. source: "./media/characters/epona/back.svg",
  25528. extra: 2546/2408,
  25529. bottom: 44/2589
  25530. }
  25531. },
  25532. genitals: {
  25533. height: math.unit(1.5, "feet"),
  25534. name: "Genitals",
  25535. image: {
  25536. source: "./media/characters/epona/genitals.svg"
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(7 + 7/12, "feet")
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(7, "feet"),
  25552. weight: math.unit(518, "lb"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/avia-bloodbourn/front.svg",
  25556. extra: 1466/1350,
  25557. bottom: 65/1527
  25558. }
  25559. },
  25560. },
  25561. [
  25562. ]
  25563. ))
  25564. characterMakers.push(() => makeCharacter(
  25565. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25566. {
  25567. front: {
  25568. height: math.unit(9.35, "feet"),
  25569. weight: math.unit(600, "lb"),
  25570. name: "Front",
  25571. image: {
  25572. source: "./media/characters/amera/front.svg",
  25573. extra: 891/818,
  25574. bottom: 30/922.7
  25575. }
  25576. },
  25577. back: {
  25578. height: math.unit(9.35, "feet"),
  25579. weight: math.unit(600, "lb"),
  25580. name: "Back",
  25581. image: {
  25582. source: "./media/characters/amera/back.svg",
  25583. extra: 876/824,
  25584. bottom: 6.8/884
  25585. }
  25586. },
  25587. dick: {
  25588. height: math.unit(2.14, "feet"),
  25589. name: "Dick",
  25590. image: {
  25591. source: "./media/characters/amera/dick.svg"
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(9.35, "feet"),
  25599. default: true
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25605. {
  25606. kneeling: {
  25607. height: math.unit(3 + 4/12, "feet"),
  25608. weight: math.unit(90, "lb"),
  25609. name: "Kneeling",
  25610. image: {
  25611. source: "./media/characters/rosewen/kneeling.svg",
  25612. extra: 1835/1571,
  25613. bottom: 27.7/1862
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(3 + 4/12, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(5 + 10/12, "feet"),
  25630. weight: math.unit(200, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/sabah/front.svg",
  25634. extra: 849/763,
  25635. bottom: 33.9/881
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(5 + 10/12, "feet"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25649. {
  25650. front: {
  25651. height: math.unit(3 + 5/12, "feet"),
  25652. weight: math.unit(40, "kg"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/purple-flame/front.svg",
  25656. extra: 1577/1412,
  25657. bottom: 97/1694
  25658. }
  25659. },
  25660. frontDressed: {
  25661. height: math.unit(3 + 5/12, "feet"),
  25662. weight: math.unit(40, "kg"),
  25663. name: "Front (Dressed)",
  25664. image: {
  25665. source: "./media/characters/purple-flame/front-dressed.svg",
  25666. extra: 1577/1412,
  25667. bottom: 97/1694
  25668. }
  25669. },
  25670. headphones: {
  25671. height: math.unit(0.85, "feet"),
  25672. name: "Headphones",
  25673. image: {
  25674. source: "./media/characters/purple-flame/headphones.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Really Small",
  25681. height: math.unit(5, "cm")
  25682. },
  25683. {
  25684. name: "Micro",
  25685. height: math.unit(1 + 5/12, "feet")
  25686. },
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(3 + 5/12, "feet"),
  25690. default: true
  25691. },
  25692. {
  25693. name: "Minimacro",
  25694. height: math.unit(125, "feet")
  25695. },
  25696. {
  25697. name: "Macro",
  25698. height: math.unit(0.5, "miles")
  25699. },
  25700. {
  25701. name: "Megamacro",
  25702. height: math.unit(50, "miles")
  25703. },
  25704. {
  25705. name: "Gigantic",
  25706. height: math.unit(750, "miles")
  25707. },
  25708. {
  25709. name: "Planetary",
  25710. height: math.unit(15000, "miles")
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25716. {
  25717. front: {
  25718. height: math.unit(14, "feet"),
  25719. weight: math.unit(959, "lb"),
  25720. name: "Front",
  25721. image: {
  25722. source: "./media/characters/arsenal/front.svg",
  25723. extra: 2357/2157,
  25724. bottom: 93/2458
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Normal",
  25731. height: math.unit(14, "feet"),
  25732. default: true
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(6, "feet"),
  25741. weight: math.unit(150, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/adira/front.svg",
  25745. extra: 1078/1029,
  25746. bottom: 87/1166
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Micro",
  25753. height: math.unit(4, "inches"),
  25754. default: true
  25755. },
  25756. {
  25757. name: "Macro",
  25758. height: math.unit(50, "feet")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(16, "feet"),
  25767. weight: math.unit(1000, "lb"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/grim/front.svg",
  25771. extra: 622/614,
  25772. bottom: 18.1/642
  25773. }
  25774. },
  25775. back: {
  25776. height: math.unit(16, "feet"),
  25777. weight: math.unit(1000, "lb"),
  25778. name: "Back",
  25779. image: {
  25780. source: "./media/characters/grim/back.svg",
  25781. extra: 610.6/602,
  25782. bottom: 40.8/652
  25783. }
  25784. },
  25785. hunched: {
  25786. height: math.unit(9.75, "feet"),
  25787. weight: math.unit(1000, "lb"),
  25788. name: "Hunched",
  25789. image: {
  25790. source: "./media/characters/grim/hunched.svg",
  25791. extra: 304/297,
  25792. bottom: 35.4/394
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(16, "feet"),
  25800. default: true
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(2.3, "meters"),
  25809. weight: math.unit(300, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/sinja/front-sfw.svg",
  25813. extra: 1393/1294,
  25814. bottom: 70/1463
  25815. }
  25816. },
  25817. frontNsfw: {
  25818. height: math.unit(2.3, "meters"),
  25819. weight: math.unit(300, "lb"),
  25820. name: "Front (NSFW)",
  25821. image: {
  25822. source: "./media/characters/sinja/front-nsfw.svg",
  25823. extra: 1393/1294,
  25824. bottom: 70/1463
  25825. }
  25826. },
  25827. back: {
  25828. height: math.unit(2.3, "meters"),
  25829. weight: math.unit(300, "lb"),
  25830. name: "Back",
  25831. image: {
  25832. source: "./media/characters/sinja/back.svg",
  25833. extra: 1393/1294,
  25834. bottom: 70/1463
  25835. }
  25836. },
  25837. head: {
  25838. height: math.unit(1.771, "feet"),
  25839. name: "Head",
  25840. image: {
  25841. source: "./media/characters/sinja/head.svg"
  25842. }
  25843. },
  25844. slit: {
  25845. height: math.unit(0.8, "feet"),
  25846. name: "Slit",
  25847. image: {
  25848. source: "./media/characters/sinja/slit.svg"
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(2.3, "meters")
  25856. },
  25857. {
  25858. name: "Macro",
  25859. height: math.unit(91, "meters"),
  25860. default: true
  25861. },
  25862. {
  25863. name: "Megamacro",
  25864. height: math.unit(91440, "meters")
  25865. },
  25866. {
  25867. name: "Gigamacro",
  25868. height: math.unit(60960000, "meters")
  25869. },
  25870. {
  25871. name: "Teramacro",
  25872. height: math.unit(9144000000, "meters")
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25878. {
  25879. front: {
  25880. height: math.unit(1.7, "meters"),
  25881. weight: math.unit(130, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/kyu/front.svg",
  25885. extra: 415/395,
  25886. bottom: 5/420
  25887. }
  25888. },
  25889. head: {
  25890. height: math.unit(1.75, "feet"),
  25891. name: "Head",
  25892. image: {
  25893. source: "./media/characters/kyu/head.svg"
  25894. }
  25895. },
  25896. foot: {
  25897. height: math.unit(0.81, "feet"),
  25898. name: "Foot",
  25899. image: {
  25900. source: "./media/characters/kyu/foot.svg"
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(1.7, "meters")
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(131, "feet"),
  25912. default: true
  25913. },
  25914. {
  25915. name: "Megamacro",
  25916. height: math.unit(91440, "meters")
  25917. },
  25918. {
  25919. name: "Gigamacro",
  25920. height: math.unit(60960000, "meters")
  25921. },
  25922. {
  25923. name: "Teramacro",
  25924. height: math.unit(9144000000, "meters")
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(7 + 1/12, "feet"),
  25933. weight: math.unit(250, "lb"),
  25934. name: "Front",
  25935. image: {
  25936. source: "./media/characters/joey/front.svg",
  25937. extra: 1791/1537,
  25938. bottom: 28/1816
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Micro",
  25945. height: math.unit(3, "inches")
  25946. },
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(7 + 1/12, "feet"),
  25950. default: true
  25951. },
  25952. ]
  25953. ))
  25954. characterMakers.push(() => makeCharacter(
  25955. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25956. {
  25957. front: {
  25958. height: math.unit(165, "cm"),
  25959. weight: math.unit(140, "lb"),
  25960. name: "Front",
  25961. image: {
  25962. source: "./media/characters/sam-evans/front.svg",
  25963. extra: 3417/3230,
  25964. bottom: 41.3/3417
  25965. }
  25966. },
  25967. frontSixTails: {
  25968. height: math.unit(165, "cm"),
  25969. weight: math.unit(140, "lb"),
  25970. name: "Front-six-tails",
  25971. image: {
  25972. source: "./media/characters/sam-evans/front-six-tails.svg",
  25973. extra: 3417/3230,
  25974. bottom: 41.3/3417
  25975. }
  25976. },
  25977. back: {
  25978. height: math.unit(165, "cm"),
  25979. weight: math.unit(140, "lb"),
  25980. name: "Back",
  25981. image: {
  25982. source: "./media/characters/sam-evans/back.svg",
  25983. extra: 3227/3032,
  25984. bottom: 6.8/3234
  25985. }
  25986. },
  25987. face: {
  25988. height: math.unit(0.68, "feet"),
  25989. name: "Face",
  25990. image: {
  25991. source: "./media/characters/sam-evans/face.svg"
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Normal",
  25998. height: math.unit(165, "cm"),
  25999. default: true
  26000. },
  26001. {
  26002. name: "Macro",
  26003. height: math.unit(100, "meters")
  26004. },
  26005. {
  26006. name: "Macro+",
  26007. height: math.unit(800, "meters")
  26008. },
  26009. {
  26010. name: "Macro++",
  26011. height: math.unit(3, "km")
  26012. },
  26013. {
  26014. name: "Macro+++",
  26015. height: math.unit(30, "km")
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(10, "feet"),
  26024. weight: math.unit(750, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/juliet-a/front.svg",
  26028. extra: 1766/1720,
  26029. bottom: 43/1809
  26030. }
  26031. },
  26032. back: {
  26033. height: math.unit(10, "feet"),
  26034. weight: math.unit(750, "lb"),
  26035. name: "Back",
  26036. image: {
  26037. source: "./media/characters/juliet-a/back.svg",
  26038. extra: 1781/1734,
  26039. bottom: 35/1810,
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Normal",
  26046. height: math.unit(10, "feet"),
  26047. default: true
  26048. },
  26049. {
  26050. name: "Dragon Form",
  26051. height: math.unit(250, "feet")
  26052. },
  26053. {
  26054. name: "Macro",
  26055. height: math.unit(1000, "feet")
  26056. },
  26057. {
  26058. name: "Megamacro",
  26059. height: math.unit(10000, "feet")
  26060. }
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26065. {
  26066. regular: {
  26067. height: math.unit(7 + 3/12, "feet"),
  26068. weight: math.unit(260, "lb"),
  26069. name: "Regular",
  26070. image: {
  26071. source: "./media/characters/wild/regular.svg",
  26072. extra: 97.45/92,
  26073. bottom: 6.8/104.3
  26074. }
  26075. },
  26076. biggums: {
  26077. height: math.unit(8 + 6 /12, "feet"),
  26078. weight: math.unit(425, "lb"),
  26079. name: "Biggums",
  26080. image: {
  26081. source: "./media/characters/wild/biggums.svg",
  26082. extra: 97.45/92,
  26083. bottom: 7.5/132.34
  26084. }
  26085. },
  26086. mawRegular: {
  26087. height: math.unit(1.24, "feet"),
  26088. name: "Maw (Regular)",
  26089. image: {
  26090. source: "./media/characters/wild/maw.svg"
  26091. }
  26092. },
  26093. mawBiggums: {
  26094. height: math.unit(1.47, "feet"),
  26095. name: "Maw (Biggums)",
  26096. image: {
  26097. source: "./media/characters/wild/maw.svg"
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(7 + 3/12, "feet"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26111. {
  26112. front: {
  26113. height: math.unit(2.5, "meters"),
  26114. weight: math.unit(200, "kg"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/vidar/front.svg",
  26118. extra: 2994/2795,
  26119. bottom: 56/3061
  26120. }
  26121. },
  26122. back: {
  26123. height: math.unit(2.5, "meters"),
  26124. weight: math.unit(200, "kg"),
  26125. name: "Back",
  26126. image: {
  26127. source: "./media/characters/vidar/back.svg",
  26128. extra: 3131/2928,
  26129. bottom: 13.5/3141.5
  26130. }
  26131. },
  26132. feral: {
  26133. height: math.unit(2.5, "meters"),
  26134. weight: math.unit(2000, "kg"),
  26135. name: "Feral",
  26136. image: {
  26137. source: "./media/characters/vidar/feral.svg",
  26138. extra: 2790/1765,
  26139. bottom: 6/2796
  26140. }
  26141. },
  26142. },
  26143. [
  26144. {
  26145. name: "Normal",
  26146. height: math.unit(2.5, "meters"),
  26147. default: true
  26148. },
  26149. {
  26150. name: "Macro",
  26151. height: math.unit(100, "meters")
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(5 + 9/12, "feet"),
  26160. weight: math.unit(120, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/ash/front.svg",
  26164. extra: 2189/1961,
  26165. bottom: 5.2/2194
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(5 + 9/12, "feet"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(9, "feet"),
  26182. weight: math.unit(10000, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/gygabite/front.svg",
  26186. bottom: 31.7/537.8,
  26187. extra: 505/370
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(9, "feet"),
  26195. default: true
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(12, "feet"),
  26204. weight: math.unit(35000, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/p0tat0/front.svg",
  26208. extra: 1065/921,
  26209. bottom: 55.7/1121.25
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(12, "feet"),
  26217. default: true
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26223. {
  26224. side: {
  26225. height: math.unit(6.5, "feet"),
  26226. weight: math.unit(800, "lb"),
  26227. name: "Side",
  26228. image: {
  26229. source: "./media/characters/dusk/side.svg",
  26230. extra: 615/373,
  26231. bottom: 53/664
  26232. }
  26233. },
  26234. sitting: {
  26235. height: math.unit(7, "feet"),
  26236. weight: math.unit(800, "lb"),
  26237. name: "Sitting",
  26238. image: {
  26239. source: "./media/characters/dusk/sitting.svg",
  26240. extra: 753/425,
  26241. bottom: 33/774
  26242. }
  26243. },
  26244. head: {
  26245. height: math.unit(6.1, "feet"),
  26246. name: "Head",
  26247. image: {
  26248. source: "./media/characters/dusk/head.svg"
  26249. }
  26250. },
  26251. },
  26252. [
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(7, "feet"),
  26256. default: true
  26257. },
  26258. ]
  26259. ))
  26260. characterMakers.push(() => makeCharacter(
  26261. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26262. {
  26263. front: {
  26264. height: math.unit(15, "feet"),
  26265. weight: math.unit(7000, "lb"),
  26266. name: "Front",
  26267. image: {
  26268. source: "./media/characters/jay-direwolf/front.svg",
  26269. extra: 1810/1732,
  26270. bottom: 66/1892
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(15, "feet"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(4 + 9/12, "feet"),
  26287. weight: math.unit(130, "lb"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/anchovie/front.svg",
  26291. extra: 382/350,
  26292. bottom: 25/409
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(4 + 9/12, "feet"),
  26297. weight: math.unit(130, "lb"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/anchovie/back.svg",
  26301. extra: 385/352,
  26302. bottom: 16.6/402
  26303. }
  26304. },
  26305. frontDressed: {
  26306. height: math.unit(4 + 9/12, "feet"),
  26307. weight: math.unit(130, "lb"),
  26308. name: "Front (Dressed)",
  26309. image: {
  26310. source: "./media/characters/anchovie/front-dressed.svg",
  26311. extra: 382/350,
  26312. bottom: 25/409
  26313. }
  26314. },
  26315. backDressed: {
  26316. height: math.unit(4 + 9/12, "feet"),
  26317. weight: math.unit(130, "lb"),
  26318. name: "Back (Dressed)",
  26319. image: {
  26320. source: "./media/characters/anchovie/back-dressed.svg",
  26321. extra: 385/352,
  26322. bottom: 16.6/402
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Micro",
  26329. height: math.unit(6.4, "inches")
  26330. },
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(4 + 9/12, "feet"),
  26334. default: true
  26335. },
  26336. ]
  26337. ))
  26338. characterMakers.push(() => makeCharacter(
  26339. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26340. {
  26341. front: {
  26342. height: math.unit(2, "meters"),
  26343. weight: math.unit(180, "lb"),
  26344. name: "Front",
  26345. image: {
  26346. source: "./media/characters/acidrenamon/front.svg",
  26347. extra: 987/890,
  26348. bottom: 22.8/1009
  26349. }
  26350. },
  26351. back: {
  26352. height: math.unit(2, "meters"),
  26353. weight: math.unit(180, "lb"),
  26354. name: "Back",
  26355. image: {
  26356. source: "./media/characters/acidrenamon/back.svg",
  26357. extra: 983/891,
  26358. bottom: 8.4/992
  26359. }
  26360. },
  26361. head: {
  26362. height: math.unit(1.92, "feet"),
  26363. name: "Head",
  26364. image: {
  26365. source: "./media/characters/acidrenamon/head.svg"
  26366. }
  26367. },
  26368. rump: {
  26369. height: math.unit(1.72, "feet"),
  26370. name: "Rump",
  26371. image: {
  26372. source: "./media/characters/acidrenamon/rump.svg"
  26373. }
  26374. },
  26375. tail: {
  26376. height: math.unit(4.2, "feet"),
  26377. name: "Tail",
  26378. image: {
  26379. source: "./media/characters/acidrenamon/tail.svg"
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(2, "meters"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Minimacro",
  26391. height: math.unit(7, "meters")
  26392. },
  26393. {
  26394. name: "Macro",
  26395. height: math.unit(200, "meters")
  26396. },
  26397. {
  26398. name: "Gigamacro",
  26399. height: math.unit(0.2, "earths")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(6, "feet"),
  26408. weight: math.unit(150, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/kenzie-lee/front.svg",
  26412. extra: 1525/1465,
  26413. bottom: 45/1570
  26414. }
  26415. },
  26416. side: {
  26417. height: math.unit(6, "feet"),
  26418. weight: math.unit(150, "lb"),
  26419. name: "Side",
  26420. image: {
  26421. source: "./media/characters/kenzie-lee/side.svg",
  26422. extra: 5505/5383,
  26423. bottom: 60/5573
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(152, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Megamacro",
  26435. height: math.unit(7, "miles")
  26436. },
  26437. {
  26438. name: "Gigamacro",
  26439. height: math.unit(8000, "miles")
  26440. },
  26441. ]
  26442. ))
  26443. characterMakers.push(() => makeCharacter(
  26444. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26445. {
  26446. side: {
  26447. height: math.unit(6, "feet"),
  26448. weight: math.unit(150, "lb"),
  26449. name: "Side",
  26450. image: {
  26451. source: "./media/characters/withers/side.svg",
  26452. extra: 1830/1728,
  26453. bottom: 96/1927
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Normal",
  26460. height: math.unit(6, "feet")
  26461. },
  26462. {
  26463. name: "Macro",
  26464. height: math.unit(50, "feet")
  26465. },
  26466. {
  26467. name: "Megamacro",
  26468. height: math.unit(15, "miles"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Megamacro+",
  26473. height: math.unit(100, "km")
  26474. },
  26475. {
  26476. name: "Gigamacro",
  26477. height: math.unit(4750, "miles")
  26478. },
  26479. {
  26480. name: "Gigamacro+",
  26481. height: math.unit(32000, "miles")
  26482. },
  26483. ]
  26484. ))
  26485. characterMakers.push(() => makeCharacter(
  26486. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26487. {
  26488. front: {
  26489. height: math.unit(6 + 7/12, "feet"),
  26490. weight: math.unit(250, "lb"),
  26491. name: "Front",
  26492. image: {
  26493. source: "./media/characters/nemoskii/front.svg",
  26494. extra: 2270/1734,
  26495. bottom: 86/2354
  26496. }
  26497. },
  26498. back: {
  26499. height: math.unit(6 + 7/12, "feet"),
  26500. weight: math.unit(250, "lb"),
  26501. name: "Back",
  26502. image: {
  26503. source: "./media/characters/nemoskii/back.svg",
  26504. extra: 1845/1788,
  26505. bottom: 10.5/1852
  26506. }
  26507. },
  26508. head: {
  26509. height: math.unit(1.31, "feet"),
  26510. name: "Head",
  26511. image: {
  26512. source: "./media/characters/nemoskii/head.svg"
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Normal",
  26519. height: math.unit(6 + 7/12, "feet"),
  26520. default: true
  26521. },
  26522. ]
  26523. ))
  26524. characterMakers.push(() => makeCharacter(
  26525. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26526. {
  26527. front: {
  26528. height: math.unit(1, "mile"),
  26529. weight: math.unit(265261.9, "lb"),
  26530. name: "Front",
  26531. image: {
  26532. source: "./media/characters/shui/front.svg",
  26533. extra: 1633/1564,
  26534. bottom: 91.5/1726
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Macro",
  26541. height: math.unit(1, "mile"),
  26542. default: true
  26543. },
  26544. ]
  26545. ))
  26546. characterMakers.push(() => makeCharacter(
  26547. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26548. {
  26549. front: {
  26550. height: math.unit(12 + 6/12, "feet"),
  26551. weight: math.unit(1342, "lb"),
  26552. name: "Front",
  26553. image: {
  26554. source: "./media/characters/arokh-takakura/front.svg",
  26555. extra: 1089/1043,
  26556. bottom: 77.4/1176.7
  26557. }
  26558. },
  26559. back: {
  26560. height: math.unit(12 + 6/12, "feet"),
  26561. weight: math.unit(1342, "lb"),
  26562. name: "Back",
  26563. image: {
  26564. source: "./media/characters/arokh-takakura/back.svg",
  26565. extra: 1046/1019,
  26566. bottom: 102/1150
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Big",
  26573. height: math.unit(12 + 6/12, "feet"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26580. {
  26581. front: {
  26582. height: math.unit(5 + 6/12, "feet"),
  26583. weight: math.unit(150, "lb"),
  26584. name: "Front",
  26585. image: {
  26586. source: "./media/characters/theo/front.svg",
  26587. extra: 1184/1131,
  26588. bottom: 7.4/1191
  26589. }
  26590. },
  26591. },
  26592. [
  26593. {
  26594. name: "Micro",
  26595. height: math.unit(5, "inches")
  26596. },
  26597. {
  26598. name: "Normal",
  26599. height: math.unit(5 + 6/12, "feet"),
  26600. default: true
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26606. {
  26607. front: {
  26608. height: math.unit(5 + 9/12, "feet"),
  26609. weight: math.unit(130, "lb"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/cecelia-swift/front.svg",
  26613. extra: 502/484,
  26614. bottom: 23/523
  26615. }
  26616. },
  26617. back: {
  26618. height: math.unit(5 + 9/12, "feet"),
  26619. weight: math.unit(130, "lb"),
  26620. name: "Back",
  26621. image: {
  26622. source: "./media/characters/cecelia-swift/back.svg",
  26623. extra: 499/485,
  26624. bottom: 12/511
  26625. }
  26626. },
  26627. head: {
  26628. height: math.unit(0.90, "feet"),
  26629. name: "Head",
  26630. image: {
  26631. source: "./media/characters/cecelia-swift/head.svg"
  26632. }
  26633. },
  26634. rump: {
  26635. height: math.unit(1.75, "feet"),
  26636. name: "Rump",
  26637. image: {
  26638. source: "./media/characters/cecelia-swift/rump.svg"
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Normal",
  26645. height: math.unit(5 + 9/12, "feet"),
  26646. default: true
  26647. },
  26648. {
  26649. name: "Big",
  26650. height: math.unit(50, "feet")
  26651. },
  26652. {
  26653. name: "Macro",
  26654. height: math.unit(100, "feet")
  26655. },
  26656. {
  26657. name: "Macro+",
  26658. height: math.unit(500, "feet")
  26659. },
  26660. {
  26661. name: "Macro++",
  26662. height: math.unit(1000, "feet")
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(6, "feet"),
  26671. weight: math.unit(150, "lb"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/kaunan/front.svg",
  26675. extra: 2890/2523,
  26676. bottom: 49/2939
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Macro",
  26683. height: math.unit(150, "feet"),
  26684. default: true
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(175, "cm"),
  26693. weight: math.unit(60, "kg"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/fei/front.svg",
  26697. extra: 2581/2400,
  26698. bottom: 82.2/2663
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Mortal",
  26705. height: math.unit(175, "cm")
  26706. },
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(3500, "m"),
  26710. default: true
  26711. },
  26712. {
  26713. name: "Stroll",
  26714. height: math.unit(17.5, "km")
  26715. },
  26716. {
  26717. name: "Showoff",
  26718. height: math.unit(175, "km")
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26724. {
  26725. front: {
  26726. height: math.unit(7, "feet"),
  26727. weight: math.unit(1000, "kg"),
  26728. name: "Front",
  26729. image: {
  26730. source: "./media/characters/edrax/front.svg",
  26731. extra: 2838/2550,
  26732. bottom: 130/2968
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Small",
  26739. height: math.unit(7, "feet")
  26740. },
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(1500, "meters")
  26744. },
  26745. {
  26746. name: "Mega",
  26747. height: math.unit(12000000, "km"),
  26748. default: true
  26749. },
  26750. {
  26751. name: "Megamacro",
  26752. height: math.unit(10600000, "lightyears")
  26753. },
  26754. {
  26755. name: "Hypermacro",
  26756. height: math.unit(256, "yottameters")
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(10, "feet"),
  26765. weight: math.unit(750, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/clove/front.svg",
  26769. extra: 2031/1860,
  26770. bottom: 47.8/2080
  26771. }
  26772. },
  26773. back: {
  26774. height: math.unit(10, "feet"),
  26775. weight: math.unit(750, "lb"),
  26776. name: "Back",
  26777. image: {
  26778. source: "./media/characters/clove/back.svg",
  26779. extra: 2025/1859,
  26780. bottom: 46/2071
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Normal",
  26787. height: math.unit(10, "feet")
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26793. {
  26794. front: {
  26795. height: math.unit(4, "feet"),
  26796. weight: math.unit(50, "lb"),
  26797. name: "Front",
  26798. image: {
  26799. source: "./media/characters/alex-rabbit/front.svg",
  26800. extra: 507/458,
  26801. bottom: 18.5/527
  26802. }
  26803. },
  26804. back: {
  26805. height: math.unit(4, "feet"),
  26806. weight: math.unit(50, "lb"),
  26807. name: "Back",
  26808. image: {
  26809. source: "./media/characters/alex-rabbit/back.svg",
  26810. extra: 502/460,
  26811. bottom: 18.9/521
  26812. }
  26813. },
  26814. },
  26815. [
  26816. {
  26817. name: "Normal",
  26818. height: math.unit(4, "feet"),
  26819. default: true
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(1 + 3 / 12, "feet"),
  26828. weight: math.unit(80, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/zander-rose/front.svg",
  26832. extra: 916 / 797,
  26833. bottom: 17 / 933
  26834. }
  26835. },
  26836. back: {
  26837. height: math.unit(1 + 3 / 12, "feet"),
  26838. weight: math.unit(80, "lb"),
  26839. name: "Back",
  26840. image: {
  26841. source: "./media/characters/zander-rose/back.svg",
  26842. extra: 903/779,
  26843. bottom: 31/934
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(1 + 3 / 12, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26857. {
  26858. anthro: {
  26859. height: math.unit(6, "feet"),
  26860. weight: math.unit(150, "lb"),
  26861. name: "Anthro",
  26862. image: {
  26863. source: "./media/characters/razz/anthro.svg",
  26864. extra: 1437/1343,
  26865. bottom: 48/1485
  26866. }
  26867. },
  26868. feral: {
  26869. height: math.unit(6, "feet"),
  26870. weight: math.unit(150, "lb"),
  26871. name: "Feral",
  26872. image: {
  26873. source: "./media/characters/razz/feral.svg",
  26874. extra: 2569/1385,
  26875. bottom: 95/2664
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(6, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(9 + 4/12, "feet"),
  26892. weight: math.unit(500, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/morrigan/front.svg",
  26896. extra: 2707/2579,
  26897. bottom: 156/2863
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(9 + 4/12, "feet"),
  26905. default: true
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26911. {
  26912. front: {
  26913. height: math.unit(5, "stories"),
  26914. weight: math.unit(4000, "lb"),
  26915. name: "Front",
  26916. image: {
  26917. source: "./media/characters/jenene/front.svg",
  26918. extra: 1780/1710,
  26919. bottom: 57/1837
  26920. }
  26921. },
  26922. },
  26923. [
  26924. {
  26925. name: "Normal",
  26926. height: math.unit(5, "stories"),
  26927. default: true
  26928. },
  26929. ]
  26930. ))
  26931. characterMakers.push(() => makeCharacter(
  26932. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26933. {
  26934. front: {
  26935. height: math.unit(6, "feet"),
  26936. weight: math.unit(150, "lb"),
  26937. name: "Front",
  26938. image: {
  26939. source: "./media/characters/vix-archaser/front.svg",
  26940. extra: 2767/2562,
  26941. bottom: 36/2803
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Micro",
  26948. height: math.unit(1, "foot")
  26949. },
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(6 + 5/12, "feet")
  26953. },
  26954. {
  26955. name: "Minimacro",
  26956. height: math.unit(500, "feet")
  26957. },
  26958. {
  26959. name: "Macro",
  26960. height: math.unit(4, "miles")
  26961. },
  26962. {
  26963. name: "Megamacro",
  26964. height: math.unit(250, "miles"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Gigamacro",
  26969. height: math.unit(1, "universe")
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  26975. {
  26976. taurSfw: {
  26977. height: math.unit(10, "meters"),
  26978. weight: math.unit(17500, "kg"),
  26979. name: "Taur",
  26980. image: {
  26981. source: "./media/characters/faey/taur-sfw.svg",
  26982. extra: 1200/968,
  26983. bottom: 41/1241
  26984. }
  26985. },
  26986. chestmaw: {
  26987. height: math.unit(2.01, "meters"),
  26988. name: "Chestmaw",
  26989. image: {
  26990. source: "./media/characters/faey/chestmaw.svg"
  26991. }
  26992. },
  26993. foot: {
  26994. height: math.unit(2.43, "meters"),
  26995. name: "Foot",
  26996. image: {
  26997. source: "./media/characters/faey/foot.svg"
  26998. }
  26999. },
  27000. jaws: {
  27001. height: math.unit(1.66, "meters"),
  27002. name: "Jaws",
  27003. image: {
  27004. source: "./media/characters/faey/jaws.svg"
  27005. }
  27006. },
  27007. tongues: {
  27008. height: math.unit(2.01, "meters"),
  27009. name: "Tongues",
  27010. image: {
  27011. source: "./media/characters/faey/tongues.svg"
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Small",
  27018. height: math.unit(10, "meters"),
  27019. default: true
  27020. },
  27021. {
  27022. name: "Big",
  27023. height: math.unit(500000, "km")
  27024. },
  27025. ]
  27026. ))
  27027. characterMakers.push(() => makeCharacter(
  27028. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27029. {
  27030. front: {
  27031. height: math.unit(7, "feet"),
  27032. weight: math.unit(275, "lb"),
  27033. name: "Front",
  27034. image: {
  27035. source: "./media/characters/roku/front.svg",
  27036. extra: 903/878,
  27037. bottom: 37/940
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(7, "feet"),
  27045. default: true
  27046. },
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(500, "feet")
  27050. },
  27051. {
  27052. name: "Megamacro",
  27053. height: math.unit(200, "miles")
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(6 + 2/12, "feet"),
  27062. weight: math.unit(150, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/lira/front.svg",
  27066. extra: 1727/1605,
  27067. bottom: 26/1753
  27068. }
  27069. },
  27070. back: {
  27071. height: math.unit(6 + 2/12, "feet"),
  27072. weight: math.unit(150, "lb"),
  27073. name: "Back",
  27074. image: {
  27075. source: "./media/characters/lira/back.svg",
  27076. extra: 1713/159,
  27077. bottom: 20/1733
  27078. }
  27079. },
  27080. hand: {
  27081. height: math.unit(0.75, "feet"),
  27082. name: "Hand",
  27083. image: {
  27084. source: "./media/characters/lira/hand.svg"
  27085. }
  27086. },
  27087. maw: {
  27088. height: math.unit(0.65, "feet"),
  27089. name: "Maw",
  27090. image: {
  27091. source: "./media/characters/lira/maw.svg"
  27092. }
  27093. },
  27094. pawDigi: {
  27095. height: math.unit(1.6, "feet"),
  27096. name: "Paw Digi",
  27097. image: {
  27098. source: "./media/characters/lira/paw-digi.svg"
  27099. }
  27100. },
  27101. pawPlanti: {
  27102. height: math.unit(1.4, "feet"),
  27103. name: "Paw Planti",
  27104. image: {
  27105. source: "./media/characters/lira/paw-planti.svg"
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(6 + 2/12, "feet"),
  27113. default: true
  27114. },
  27115. {
  27116. name: "Macro",
  27117. height: math.unit(100, "feet")
  27118. },
  27119. ]
  27120. ))
  27121. characterMakers.push(() => makeCharacter(
  27122. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27123. {
  27124. front: {
  27125. height: math.unit(6, "feet"),
  27126. weight: math.unit(150, "lb"),
  27127. name: "Front",
  27128. image: {
  27129. source: "./media/characters/hadjet/front.svg",
  27130. extra: 1480/1346,
  27131. bottom: 26/1506
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Macro",
  27138. height: math.unit(10, "stories"),
  27139. default: true
  27140. },
  27141. {
  27142. name: "Megamacro",
  27143. height: math.unit(1.5, "miles")
  27144. },
  27145. {
  27146. name: "Megamacro+",
  27147. height: math.unit(5, "miles")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27153. {
  27154. side: {
  27155. height: math.unit(106, "feet"),
  27156. weight: math.unit(500, "tonnes"),
  27157. name: "Side",
  27158. image: {
  27159. source: "./media/characters/kodran/side.svg",
  27160. extra: 553/480,
  27161. bottom: 33/586
  27162. }
  27163. },
  27164. front: {
  27165. height: math.unit(132, "feet"),
  27166. weight: math.unit(500, "tonnes"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/kodran/front.svg",
  27170. extra: 667/643,
  27171. bottom: 42/709
  27172. }
  27173. },
  27174. flying: {
  27175. height: math.unit(350, "feet"),
  27176. weight: math.unit(500, "tonnes"),
  27177. name: "Flying",
  27178. image: {
  27179. source: "./media/characters/kodran/flying.svg"
  27180. }
  27181. },
  27182. foot: {
  27183. height: math.unit(33, "feet"),
  27184. name: "Foot",
  27185. image: {
  27186. source: "./media/characters/kodran/foot.svg"
  27187. }
  27188. },
  27189. footFront: {
  27190. height: math.unit(19, "feet"),
  27191. name: "Foot (Front)",
  27192. image: {
  27193. source: "./media/characters/kodran/foot-front.svg",
  27194. extra: 261/261,
  27195. bottom: 91/352
  27196. }
  27197. },
  27198. headFront: {
  27199. height: math.unit(53, "feet"),
  27200. name: "Head (Front)",
  27201. image: {
  27202. source: "./media/characters/kodran/head-front.svg"
  27203. }
  27204. },
  27205. headSide: {
  27206. height: math.unit(65, "feet"),
  27207. name: "Head (Side)",
  27208. image: {
  27209. source: "./media/characters/kodran/head-side.svg"
  27210. }
  27211. },
  27212. throat: {
  27213. height: math.unit(79, "feet"),
  27214. name: "Throat",
  27215. image: {
  27216. source: "./media/characters/kodran/throat.svg"
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Large",
  27223. height: math.unit(106, "feet"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. //characters
  27229. function makeCharacters() {
  27230. const results = [];
  27231. characterMakers.forEach(character => {
  27232. results.push(character());
  27233. });
  27234. return results;
  27235. }