less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

28150 linhas
701 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", "candy"]
  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. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. }
  1336. //species
  1337. function getSpeciesInfo(speciesList) {
  1338. let result = new Set();
  1339. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1340. result.add(entry)
  1341. });
  1342. return Array.from(result);
  1343. };
  1344. function getSpeciesInfoHelper(species) {
  1345. if (!speciesData[species]) {
  1346. console.warn(species + " doesn't exist");
  1347. return [];
  1348. }
  1349. if (speciesData[species].parents) {
  1350. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1351. } else {
  1352. return [species];
  1353. }
  1354. }
  1355. characterMakers.push(() => makeCharacter(
  1356. {
  1357. name: "Fen",
  1358. species: ["crux"],
  1359. description: {
  1360. title: "Bio",
  1361. text: "Very furry. Sheds on everything."
  1362. },
  1363. tags: [
  1364. "anthro",
  1365. "goo"
  1366. ]
  1367. },
  1368. {
  1369. back: {
  1370. height: math.unit(2.2428, "meter"),
  1371. weight: math.unit(124.738, "kg"),
  1372. name: "Back",
  1373. image: {
  1374. source: "./media/characters/fen/back.svg",
  1375. extra: 2024/1867,
  1376. bottom: 13/2037
  1377. },
  1378. info: {
  1379. description: {
  1380. mode: "append",
  1381. text: "\n\nHe is not currently looking at you."
  1382. }
  1383. }
  1384. },
  1385. full: {
  1386. height: math.unit(1.34, "meter"),
  1387. weight: math.unit(225, "kg"),
  1388. name: "Full",
  1389. image: {
  1390. source: "./media/characters/fen/full.svg"
  1391. },
  1392. info: {
  1393. description: {
  1394. mode: "append",
  1395. text: "\n\nMunch."
  1396. }
  1397. }
  1398. },
  1399. kneeling: {
  1400. height: math.unit(5.4, "feet"),
  1401. weight: math.unit(124.738, "kg"),
  1402. name: "Kneeling",
  1403. image: {
  1404. source: "./media/characters/fen/kneeling.svg",
  1405. extra: 563 / 507
  1406. }
  1407. },
  1408. goo: {
  1409. height: math.unit(2.8, "feet"),
  1410. weight: math.unit(125, "kg"),
  1411. capacity: math.unit(1, "people"),
  1412. name: "Goo",
  1413. image: {
  1414. source: "./media/characters/fen/goo.svg",
  1415. bottom: 116 / 613
  1416. }
  1417. },
  1418. lounging: {
  1419. height: math.unit(6.5, "feet"),
  1420. weight: math.unit(125, "kg"),
  1421. name: "Lounging",
  1422. image: {
  1423. source: "./media/characters/fen/lounging.svg"
  1424. }
  1425. },
  1426. },
  1427. [
  1428. {
  1429. name: "Normal",
  1430. height: math.unit(2.2428, "meter")
  1431. },
  1432. {
  1433. name: "Big",
  1434. height: math.unit(12, "feet")
  1435. },
  1436. {
  1437. name: "Minimacro",
  1438. height: math.unit(40, "feet"),
  1439. default: true,
  1440. info: {
  1441. description: {
  1442. mode: "append",
  1443. text: "\n\nTOO DAMN BIG"
  1444. }
  1445. }
  1446. },
  1447. {
  1448. name: "Macro",
  1449. height: math.unit(100, "feet"),
  1450. info: {
  1451. description: {
  1452. mode: "append",
  1453. text: "\n\nTOO DAMN BIG"
  1454. }
  1455. }
  1456. },
  1457. {
  1458. name: "Macro+",
  1459. height: math.unit(300, "feet")
  1460. },
  1461. {
  1462. name: "Megamacro",
  1463. height: math.unit(2, "miles")
  1464. }
  1465. ]
  1466. ))
  1467. characterMakers.push(() => makeCharacter(
  1468. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1469. {
  1470. front: {
  1471. height: math.unit(183, "cm"),
  1472. weight: math.unit(80, "kg"),
  1473. name: "Front",
  1474. image: {
  1475. source: "./media/characters/sofia-fluttertail/front.svg",
  1476. bottom: 0.01,
  1477. extra: 2154 / 2081
  1478. }
  1479. },
  1480. frontAlt: {
  1481. height: math.unit(183, "cm"),
  1482. weight: math.unit(80, "kg"),
  1483. name: "Front (alt)",
  1484. image: {
  1485. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1486. }
  1487. },
  1488. back: {
  1489. height: math.unit(183, "cm"),
  1490. weight: math.unit(80, "kg"),
  1491. name: "Back",
  1492. image: {
  1493. source: "./media/characters/sofia-fluttertail/back.svg"
  1494. }
  1495. },
  1496. kneeling: {
  1497. height: math.unit(125, "cm"),
  1498. weight: math.unit(80, "kg"),
  1499. name: "Kneeling",
  1500. image: {
  1501. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1502. extra: 1033 / 977,
  1503. bottom: 23.7 / 1057
  1504. }
  1505. },
  1506. maw: {
  1507. height: math.unit(183 / 5, "cm"),
  1508. name: "Maw",
  1509. image: {
  1510. source: "./media/characters/sofia-fluttertail/maw.svg"
  1511. }
  1512. },
  1513. mawcloseup: {
  1514. height: math.unit(183 / 5 * 0.41, "cm"),
  1515. name: "Maw (Closeup)",
  1516. image: {
  1517. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1518. }
  1519. },
  1520. },
  1521. [
  1522. {
  1523. name: "Normal",
  1524. height: math.unit(1.83, "meter")
  1525. },
  1526. {
  1527. name: "Size Thief",
  1528. height: math.unit(18, "feet")
  1529. },
  1530. {
  1531. name: "50 Foot Collie",
  1532. height: math.unit(50, "feet")
  1533. },
  1534. {
  1535. name: "Macro",
  1536. height: math.unit(96, "feet"),
  1537. default: true
  1538. },
  1539. {
  1540. name: "Megamerger",
  1541. height: math.unit(650, "feet")
  1542. },
  1543. ]
  1544. ))
  1545. characterMakers.push(() => makeCharacter(
  1546. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1547. {
  1548. front: {
  1549. height: math.unit(7, "feet"),
  1550. weight: math.unit(100, "kg"),
  1551. name: "Front",
  1552. image: {
  1553. source: "./media/characters/march/front.svg",
  1554. extra: 1,
  1555. bottom: 0.015
  1556. }
  1557. },
  1558. foot: {
  1559. height: math.unit(0.9, "feet"),
  1560. name: "Foot",
  1561. image: {
  1562. source: "./media/characters/march/foot.svg"
  1563. }
  1564. },
  1565. },
  1566. [
  1567. {
  1568. name: "Normal",
  1569. height: math.unit(7.9, "feet")
  1570. },
  1571. {
  1572. name: "Macro",
  1573. height: math.unit(220, "meters")
  1574. },
  1575. {
  1576. name: "Megamacro",
  1577. height: math.unit(2.98, "km"),
  1578. default: true
  1579. },
  1580. {
  1581. name: "Gigamacro",
  1582. height: math.unit(15963, "km")
  1583. },
  1584. {
  1585. name: "Teramacro",
  1586. height: math.unit(2980000000, "km")
  1587. },
  1588. {
  1589. name: "Examacro",
  1590. height: math.unit(250, "parsecs")
  1591. },
  1592. ]
  1593. ))
  1594. characterMakers.push(() => makeCharacter(
  1595. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1596. {
  1597. front: {
  1598. height: math.unit(6, "feet"),
  1599. weight: math.unit(60, "kg"),
  1600. name: "Front",
  1601. image: {
  1602. source: "./media/characters/noir/front.svg",
  1603. extra: 1,
  1604. bottom: 0.032
  1605. }
  1606. },
  1607. },
  1608. [
  1609. {
  1610. name: "Normal",
  1611. height: math.unit(6.6, "feet")
  1612. },
  1613. {
  1614. name: "Macro",
  1615. height: math.unit(500, "feet")
  1616. },
  1617. {
  1618. name: "Megamacro",
  1619. height: math.unit(2.5, "km"),
  1620. default: true
  1621. },
  1622. {
  1623. name: "Gigamacro",
  1624. height: math.unit(22500, "km")
  1625. },
  1626. {
  1627. name: "Teramacro",
  1628. height: math.unit(2500000000, "km")
  1629. },
  1630. {
  1631. name: "Examacro",
  1632. height: math.unit(200, "parsecs")
  1633. },
  1634. ]
  1635. ))
  1636. characterMakers.push(() => makeCharacter(
  1637. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1638. {
  1639. front: {
  1640. height: math.unit(7, "feet"),
  1641. weight: math.unit(100, "kg"),
  1642. name: "Front",
  1643. image: {
  1644. source: "./media/characters/okuri/front.svg",
  1645. extra: 1,
  1646. bottom: 0.037
  1647. }
  1648. },
  1649. back: {
  1650. height: math.unit(7, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Back",
  1653. image: {
  1654. source: "./media/characters/okuri/back.svg",
  1655. extra: 1,
  1656. bottom: 0.007
  1657. }
  1658. },
  1659. },
  1660. [
  1661. {
  1662. name: "Megamacro",
  1663. height: math.unit(100, "miles"),
  1664. default: true
  1665. },
  1666. ]
  1667. ))
  1668. characterMakers.push(() => makeCharacter(
  1669. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1670. {
  1671. front: {
  1672. height: math.unit(7, "feet"),
  1673. weight: math.unit(100, "kg"),
  1674. name: "Front",
  1675. image: {
  1676. source: "./media/characters/manny/front.svg",
  1677. extra: 1,
  1678. bottom: 0.06
  1679. }
  1680. },
  1681. back: {
  1682. height: math.unit(7, "feet"),
  1683. weight: math.unit(100, "kg"),
  1684. name: "Back",
  1685. image: {
  1686. source: "./media/characters/manny/back.svg",
  1687. extra: 1,
  1688. bottom: 0.014
  1689. }
  1690. },
  1691. },
  1692. [
  1693. {
  1694. name: "Normal",
  1695. height: math.unit(7, "feet"),
  1696. },
  1697. {
  1698. name: "Macro",
  1699. height: math.unit(78, "feet"),
  1700. default: true
  1701. },
  1702. {
  1703. name: "Macro+",
  1704. height: math.unit(300, "meters")
  1705. },
  1706. {
  1707. name: "Macro++",
  1708. height: math.unit(2400, "meters")
  1709. },
  1710. {
  1711. name: "Megamacro",
  1712. height: math.unit(5167, "meters")
  1713. },
  1714. {
  1715. name: "Gigamacro",
  1716. height: math.unit(41769, "miles")
  1717. },
  1718. ]
  1719. ))
  1720. characterMakers.push(() => makeCharacter(
  1721. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1722. {
  1723. front: {
  1724. height: math.unit(7, "feet"),
  1725. weight: math.unit(100, "kg"),
  1726. name: "Front",
  1727. image: {
  1728. source: "./media/characters/adake/front-1.svg"
  1729. }
  1730. },
  1731. frontAlt: {
  1732. height: math.unit(7, "feet"),
  1733. weight: math.unit(100, "kg"),
  1734. name: "Front (Alt)",
  1735. image: {
  1736. source: "./media/characters/adake/front-2.svg",
  1737. extra: 1,
  1738. bottom: 0.01
  1739. }
  1740. },
  1741. back: {
  1742. height: math.unit(7, "feet"),
  1743. weight: math.unit(100, "kg"),
  1744. name: "Back",
  1745. image: {
  1746. source: "./media/characters/adake/back.svg",
  1747. }
  1748. },
  1749. kneel: {
  1750. height: math.unit(5.385, "feet"),
  1751. weight: math.unit(100, "kg"),
  1752. name: "Kneeling",
  1753. image: {
  1754. source: "./media/characters/adake/kneel.svg",
  1755. bottom: 0.052
  1756. }
  1757. },
  1758. },
  1759. [
  1760. {
  1761. name: "Normal",
  1762. height: math.unit(7, "feet"),
  1763. },
  1764. {
  1765. name: "Macro",
  1766. height: math.unit(78, "feet"),
  1767. default: true
  1768. },
  1769. {
  1770. name: "Macro+",
  1771. height: math.unit(300, "meters")
  1772. },
  1773. {
  1774. name: "Macro++",
  1775. height: math.unit(2400, "meters")
  1776. },
  1777. {
  1778. name: "Megamacro",
  1779. height: math.unit(5167, "meters")
  1780. },
  1781. {
  1782. name: "Gigamacro",
  1783. height: math.unit(41769, "miles")
  1784. },
  1785. ]
  1786. ))
  1787. characterMakers.push(() => makeCharacter(
  1788. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1789. {
  1790. front: {
  1791. height: math.unit(1.65, "meters"),
  1792. weight: math.unit(50, "kg"),
  1793. name: "Front",
  1794. image: {
  1795. source: "./media/characters/elijah/front.svg",
  1796. extra: 858 / 830,
  1797. bottom: 95.5 / 953.8559
  1798. }
  1799. },
  1800. back: {
  1801. height: math.unit(1.65, "meters"),
  1802. weight: math.unit(50, "kg"),
  1803. name: "Back",
  1804. image: {
  1805. source: "./media/characters/elijah/back.svg",
  1806. extra: 895 / 850,
  1807. bottom: 5.3 / 897.956
  1808. }
  1809. },
  1810. frontNsfw: {
  1811. height: math.unit(1.65, "meters"),
  1812. weight: math.unit(50, "kg"),
  1813. name: "Front (NSFW)",
  1814. image: {
  1815. source: "./media/characters/elijah/front-nsfw.svg",
  1816. extra: 858 / 830,
  1817. bottom: 95.5 / 953.8559
  1818. }
  1819. },
  1820. backNsfw: {
  1821. height: math.unit(1.65, "meters"),
  1822. weight: math.unit(50, "kg"),
  1823. name: "Back (NSFW)",
  1824. image: {
  1825. source: "./media/characters/elijah/back-nsfw.svg",
  1826. extra: 895 / 850,
  1827. bottom: 5.3 / 897.956
  1828. }
  1829. },
  1830. dick: {
  1831. height: math.unit(1, "feet"),
  1832. name: "Dick",
  1833. image: {
  1834. source: "./media/characters/elijah/dick.svg"
  1835. }
  1836. },
  1837. beakOpen: {
  1838. height: math.unit(1.25, "feet"),
  1839. name: "Beak (Open)",
  1840. image: {
  1841. source: "./media/characters/elijah/beak-open.svg"
  1842. }
  1843. },
  1844. beakShut: {
  1845. height: math.unit(1.25, "feet"),
  1846. name: "Beak (Shut)",
  1847. image: {
  1848. source: "./media/characters/elijah/beak-shut.svg"
  1849. }
  1850. },
  1851. footFlexing: {
  1852. height: math.unit(1.61, "feet"),
  1853. name: "Foot (Flexing)",
  1854. image: {
  1855. source: "./media/characters/elijah/foot-flexing.svg"
  1856. }
  1857. },
  1858. footStepping: {
  1859. height: math.unit(1.44, "feet"),
  1860. name: "Foot (Stepping)",
  1861. image: {
  1862. source: "./media/characters/elijah/foot-stepping.svg"
  1863. }
  1864. },
  1865. plantigradeLeg: {
  1866. height: math.unit(2.34, "feet"),
  1867. name: "Plantigrade Leg",
  1868. image: {
  1869. source: "./media/characters/elijah/plantigrade-leg.svg"
  1870. }
  1871. },
  1872. plantigradeFootLeft: {
  1873. height: math.unit(0.9, "feet"),
  1874. name: "Plantigrade Foot (Left)",
  1875. image: {
  1876. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1877. }
  1878. },
  1879. plantigradeFootRight: {
  1880. height: math.unit(0.9, "feet"),
  1881. name: "Plantigrade Foot (Right)",
  1882. image: {
  1883. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1884. }
  1885. },
  1886. },
  1887. [
  1888. {
  1889. name: "Normal",
  1890. height: math.unit(1.65, "meters")
  1891. },
  1892. {
  1893. name: "Macro",
  1894. height: math.unit(55, "meters"),
  1895. default: true
  1896. },
  1897. {
  1898. name: "Macro+",
  1899. height: math.unit(105, "meters")
  1900. },
  1901. ]
  1902. ))
  1903. characterMakers.push(() => makeCharacter(
  1904. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1905. {
  1906. front: {
  1907. height: math.unit(11, "feet"),
  1908. weight: math.unit(80, "kg"),
  1909. name: "Front",
  1910. image: {
  1911. source: "./media/characters/rai/front.svg",
  1912. extra: 1,
  1913. bottom: 0.03
  1914. }
  1915. },
  1916. side: {
  1917. height: math.unit(11, "feet"),
  1918. weight: math.unit(80, "kg"),
  1919. name: "Side",
  1920. image: {
  1921. source: "./media/characters/rai/side.svg"
  1922. }
  1923. },
  1924. back: {
  1925. height: math.unit(11, "feet"),
  1926. weight: math.unit(80, "lb"),
  1927. name: "Back",
  1928. image: {
  1929. source: "./media/characters/rai/back.svg",
  1930. extra: 1,
  1931. bottom: 0.01
  1932. }
  1933. },
  1934. feral: {
  1935. height: math.unit(11, "feet"),
  1936. weight: math.unit(800, "lb"),
  1937. name: "Feral",
  1938. image: {
  1939. source: "./media/characters/rai/feral.svg",
  1940. extra: 1050 / 659,
  1941. bottom: 0.07
  1942. }
  1943. },
  1944. dragon: {
  1945. height: math.unit(23, "feet"),
  1946. weight: math.unit(50000, "lb"),
  1947. name: "Dragon",
  1948. image: {
  1949. source: "./media/characters/rai/dragon.svg",
  1950. extra: 2498 / 2030,
  1951. bottom: 85.2 / 2584
  1952. }
  1953. },
  1954. maw: {
  1955. height: math.unit(6 / 3.81416, "feet"),
  1956. name: "Maw",
  1957. image: {
  1958. source: "./media/characters/rai/maw.svg"
  1959. }
  1960. },
  1961. },
  1962. [
  1963. {
  1964. name: "Normal",
  1965. height: math.unit(11, "feet")
  1966. },
  1967. {
  1968. name: "Macro",
  1969. height: math.unit(302, "feet"),
  1970. default: true
  1971. },
  1972. ]
  1973. ))
  1974. characterMakers.push(() => makeCharacter(
  1975. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1976. {
  1977. frontDressed: {
  1978. height: math.unit(216, "feet"),
  1979. weight: math.unit(7000000, "lb"),
  1980. name: "Front (Dressed)",
  1981. image: {
  1982. source: "./media/characters/jazzy/front-dressed.svg",
  1983. extra: 2738 / 2651,
  1984. bottom: 41.8 / 2786
  1985. }
  1986. },
  1987. backDressed: {
  1988. height: math.unit(216, "feet"),
  1989. weight: math.unit(7000000, "lb"),
  1990. name: "Back (Dressed)",
  1991. image: {
  1992. source: "./media/characters/jazzy/back-dressed.svg",
  1993. extra: 2775 / 2673,
  1994. bottom: 36.8 / 2817
  1995. }
  1996. },
  1997. front: {
  1998. height: math.unit(216, "feet"),
  1999. weight: math.unit(7000000, "lb"),
  2000. name: "Front",
  2001. image: {
  2002. source: "./media/characters/jazzy/front.svg",
  2003. extra: 2738 / 2651,
  2004. bottom: 41.8 / 2786
  2005. }
  2006. },
  2007. back: {
  2008. height: math.unit(216, "feet"),
  2009. weight: math.unit(7000000, "lb"),
  2010. name: "Back",
  2011. image: {
  2012. source: "./media/characters/jazzy/back.svg",
  2013. extra: 2775 / 2673,
  2014. bottom: 36.8 / 2817
  2015. }
  2016. },
  2017. maw: {
  2018. height: math.unit(20, "feet"),
  2019. name: "Maw",
  2020. image: {
  2021. source: "./media/characters/jazzy/maw.svg"
  2022. }
  2023. },
  2024. paws: {
  2025. height: math.unit(27.5, "feet"),
  2026. name: "Paws",
  2027. image: {
  2028. source: "./media/characters/jazzy/paws.svg"
  2029. }
  2030. },
  2031. eye: {
  2032. height: math.unit(4.4, "feet"),
  2033. name: "Eye",
  2034. image: {
  2035. source: "./media/characters/jazzy/eye.svg"
  2036. }
  2037. },
  2038. droneOffense: {
  2039. height: math.unit(9.5, "inches"),
  2040. name: "Drone (Offense)",
  2041. image: {
  2042. source: "./media/characters/jazzy/drone-offense.svg"
  2043. }
  2044. },
  2045. droneRecon: {
  2046. height: math.unit(9.5, "inches"),
  2047. name: "Drone (Recon)",
  2048. image: {
  2049. source: "./media/characters/jazzy/drone-recon.svg"
  2050. }
  2051. },
  2052. droneDefense: {
  2053. height: math.unit(9.5, "inches"),
  2054. name: "Drone (Defense)",
  2055. image: {
  2056. source: "./media/characters/jazzy/drone-defense.svg"
  2057. }
  2058. },
  2059. },
  2060. [
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(216, "feet"),
  2064. default: true
  2065. },
  2066. ]
  2067. ))
  2068. characterMakers.push(() => makeCharacter(
  2069. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2070. {
  2071. front: {
  2072. height: math.unit(7, "feet"),
  2073. weight: math.unit(80, "kg"),
  2074. name: "Front",
  2075. image: {
  2076. source: "./media/characters/flamm/front.svg",
  2077. extra: 1794 / 1677,
  2078. bottom: 31.7 / 1828.5
  2079. }
  2080. },
  2081. },
  2082. [
  2083. {
  2084. name: "Normal",
  2085. height: math.unit(9.5, "feet")
  2086. },
  2087. {
  2088. name: "Macro",
  2089. height: math.unit(200, "feet"),
  2090. default: true
  2091. },
  2092. ]
  2093. ))
  2094. characterMakers.push(() => makeCharacter(
  2095. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2096. {
  2097. front: {
  2098. height: math.unit(7, "feet"),
  2099. weight: math.unit(80, "kg"),
  2100. name: "Front",
  2101. image: {
  2102. source: "./media/characters/zephiro/front.svg",
  2103. extra: 2309 / 2162,
  2104. bottom: 0.069
  2105. }
  2106. },
  2107. side: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(80, "kg"),
  2110. name: "Side",
  2111. image: {
  2112. source: "./media/characters/zephiro/side.svg",
  2113. extra: 2403 / 2279,
  2114. bottom: 0.015
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(80, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/zephiro/back.svg",
  2123. extra: 2373 / 2244,
  2124. bottom: 0.013
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Micro",
  2131. height: math.unit(3, "inches")
  2132. },
  2133. {
  2134. name: "Normal",
  2135. height: math.unit(5 + 3 / 12, "feet"),
  2136. default: true
  2137. },
  2138. {
  2139. name: "Macro",
  2140. height: math.unit(118, "feet")
  2141. },
  2142. ]
  2143. ))
  2144. characterMakers.push(() => makeCharacter(
  2145. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2146. {
  2147. front: {
  2148. height: math.unit(5, "feet"),
  2149. weight: math.unit(90, "kg"),
  2150. name: "Front",
  2151. image: {
  2152. source: "./media/characters/fory/front.svg",
  2153. extra: 2862 / 2674,
  2154. bottom: 180 / 3043.8
  2155. }
  2156. },
  2157. back: {
  2158. height: math.unit(5, "feet"),
  2159. weight: math.unit(90, "kg"),
  2160. name: "Back",
  2161. image: {
  2162. source: "./media/characters/fory/back.svg",
  2163. extra: 2962 / 2791,
  2164. bottom: 106 / 3071.8
  2165. }
  2166. },
  2167. foot: {
  2168. height: math.unit(2.14, "feet"),
  2169. name: "Foot",
  2170. image: {
  2171. source: "./media/characters/fory/foot.svg"
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(5, "feet")
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(50, "feet"),
  2183. default: true
  2184. },
  2185. {
  2186. name: "Megamacro",
  2187. height: math.unit(10, "miles")
  2188. },
  2189. {
  2190. name: "Gigamacro",
  2191. height: math.unit(5, "earths")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(7, "feet"),
  2200. weight: math.unit(90, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/kurrikage/front.svg",
  2204. extra: 1,
  2205. bottom: 0.035
  2206. }
  2207. },
  2208. back: {
  2209. height: math.unit(7, "feet"),
  2210. weight: math.unit(90, "lb"),
  2211. name: "Back",
  2212. image: {
  2213. source: "./media/characters/kurrikage/back.svg"
  2214. }
  2215. },
  2216. paw: {
  2217. height: math.unit(1.5, "feet"),
  2218. name: "Paw",
  2219. image: {
  2220. source: "./media/characters/kurrikage/paw.svg"
  2221. }
  2222. },
  2223. staff: {
  2224. height: math.unit(6.7, "feet"),
  2225. name: "Staff",
  2226. image: {
  2227. source: "./media/characters/kurrikage/staff.svg"
  2228. }
  2229. },
  2230. peek: {
  2231. height: math.unit(1.05, "feet"),
  2232. name: "Peeking",
  2233. image: {
  2234. source: "./media/characters/kurrikage/peek.svg",
  2235. bottom: 0.08
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(12, "feet"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Big",
  2247. height: math.unit(20, "feet")
  2248. },
  2249. {
  2250. name: "Macro",
  2251. height: math.unit(500, "feet")
  2252. },
  2253. {
  2254. name: "Megamacro",
  2255. height: math.unit(20, "miles")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(6, "feet"),
  2264. weight: math.unit(75, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/shingo/front.svg",
  2268. extra: 3511 / 3338,
  2269. bottom: 0.005
  2270. }
  2271. },
  2272. paw: {
  2273. height: math.unit(1, "feet"),
  2274. name: "Paw",
  2275. image: {
  2276. source: "./media/characters/shingo/paw.svg"
  2277. }
  2278. },
  2279. },
  2280. [
  2281. {
  2282. name: "Micro",
  2283. height: math.unit(4, "inches")
  2284. },
  2285. {
  2286. name: "Normal",
  2287. height: math.unit(6, "feet"),
  2288. default: true
  2289. },
  2290. {
  2291. name: "Macro",
  2292. height: math.unit(108, "feet")
  2293. }
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2298. {
  2299. side: {
  2300. height: math.unit(6, "feet"),
  2301. weight: math.unit(75, "kg"),
  2302. name: "Side",
  2303. image: {
  2304. source: "./media/characters/aigey/side.svg"
  2305. }
  2306. },
  2307. },
  2308. [
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(200, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Megamacro",
  2316. height: math.unit(100, "miles")
  2317. },
  2318. ]
  2319. )
  2320. )
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2323. {
  2324. front: {
  2325. height: math.unit(5 + 5 / 12, "feet"),
  2326. weight: math.unit(75, "kg"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/natasha/front.svg",
  2330. extra: 859 / 824,
  2331. bottom: 23 / 879.6
  2332. }
  2333. },
  2334. frontNsfw: {
  2335. height: math.unit(5 + 5 / 12, "feet"),
  2336. weight: math.unit(75, "kg"),
  2337. name: "Front (NSFW)",
  2338. image: {
  2339. source: "./media/characters/natasha/front-nsfw.svg",
  2340. extra: 859 / 824,
  2341. bottom: 23 / 879.6
  2342. }
  2343. },
  2344. frontErect: {
  2345. height: math.unit(5 + 5 / 12, "feet"),
  2346. weight: math.unit(75, "kg"),
  2347. name: "Front (Erect)",
  2348. image: {
  2349. source: "./media/characters/natasha/front-erect.svg",
  2350. extra: 859 / 824,
  2351. bottom: 23 / 879.6
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(5 + 5 / 12, "feet"),
  2356. weight: math.unit(75, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/natasha/back.svg",
  2360. extra: 887.9 / 852.6,
  2361. bottom: 9.7 / 896.4
  2362. }
  2363. },
  2364. backAlt: {
  2365. height: math.unit(5 + 5 / 12, "feet"),
  2366. weight: math.unit(75, "kg"),
  2367. name: "Back (Alt)",
  2368. image: {
  2369. source: "./media/characters/natasha/back-alt.svg",
  2370. extra: 1236.7 / 1192,
  2371. bottom: 22.3 / 1258.2
  2372. }
  2373. },
  2374. dick: {
  2375. height: math.unit(1.772, "feet"),
  2376. name: "Dick",
  2377. image: {
  2378. source: "./media/characters/natasha/dick.svg"
  2379. }
  2380. },
  2381. },
  2382. [
  2383. {
  2384. name: "Normal",
  2385. height: math.unit(5 + 5 / 12, "feet")
  2386. },
  2387. {
  2388. name: "Large",
  2389. height: math.unit(12, "feet")
  2390. },
  2391. {
  2392. name: "Macro",
  2393. height: math.unit(100, "feet"),
  2394. default: true
  2395. },
  2396. {
  2397. name: "Macro+",
  2398. height: math.unit(260, "feet")
  2399. },
  2400. {
  2401. name: "Macro++",
  2402. height: math.unit(1, "mile")
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(6, "feet"),
  2411. weight: math.unit(75, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/malik/front.svg"
  2415. }
  2416. },
  2417. side: {
  2418. height: math.unit(6, "feet"),
  2419. weight: math.unit(75, "kg"),
  2420. name: "Side",
  2421. image: {
  2422. source: "./media/characters/malik/side.svg",
  2423. extra: 1.1539
  2424. }
  2425. },
  2426. back: {
  2427. height: math.unit(6, "feet"),
  2428. weight: math.unit(75, "kg"),
  2429. name: "Back",
  2430. image: {
  2431. source: "./media/characters/malik/back.svg"
  2432. }
  2433. },
  2434. },
  2435. [
  2436. {
  2437. name: "Macro",
  2438. height: math.unit(156, "feet"),
  2439. default: true
  2440. },
  2441. {
  2442. name: "Macro+",
  2443. height: math.unit(1188, "feet")
  2444. },
  2445. ]
  2446. ))
  2447. characterMakers.push(() => makeCharacter(
  2448. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2449. {
  2450. front: {
  2451. height: math.unit(6, "feet"),
  2452. weight: math.unit(75, "kg"),
  2453. name: "Front",
  2454. image: {
  2455. source: "./media/characters/sefer/front.svg",
  2456. extra: 848 / 659,
  2457. bottom: 28.3 / 876.442
  2458. }
  2459. },
  2460. back: {
  2461. height: math.unit(6, "feet"),
  2462. weight: math.unit(75, "kg"),
  2463. name: "Back",
  2464. image: {
  2465. source: "./media/characters/sefer/back.svg",
  2466. extra: 864 / 695,
  2467. bottom: 10 / 871
  2468. }
  2469. },
  2470. frontDressed: {
  2471. height: math.unit(6, "feet"),
  2472. weight: math.unit(75, "kg"),
  2473. name: "Front (Dressed)",
  2474. image: {
  2475. source: "./media/characters/sefer/front-dressed.svg",
  2476. extra: 839 / 653,
  2477. bottom: 37.6 / 878
  2478. }
  2479. },
  2480. },
  2481. [
  2482. {
  2483. name: "Normal",
  2484. height: math.unit(6, "feet"),
  2485. default: true
  2486. },
  2487. ]
  2488. ))
  2489. characterMakers.push(() => makeCharacter(
  2490. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2491. {
  2492. body: {
  2493. height: math.unit(2.2428, "meter"),
  2494. weight: math.unit(124.738, "kg"),
  2495. name: "Body",
  2496. image: {
  2497. extra: 1225 / 1050,
  2498. source: "./media/characters/north/front.svg"
  2499. }
  2500. }
  2501. },
  2502. [
  2503. {
  2504. name: "Micro",
  2505. height: math.unit(4, "inches")
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(63, "meters")
  2510. },
  2511. {
  2512. name: "Megamacro",
  2513. height: math.unit(101, "miles"),
  2514. default: true
  2515. }
  2516. ]
  2517. ))
  2518. characterMakers.push(() => makeCharacter(
  2519. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2520. {
  2521. angled: {
  2522. height: math.unit(4, "meter"),
  2523. weight: math.unit(150, "kg"),
  2524. name: "Angled",
  2525. image: {
  2526. source: "./media/characters/talan/angled-sfw.svg",
  2527. bottom: 29 / 3734
  2528. }
  2529. },
  2530. angledNsfw: {
  2531. height: math.unit(4, "meter"),
  2532. weight: math.unit(150, "kg"),
  2533. name: "Angled (NSFW)",
  2534. image: {
  2535. source: "./media/characters/talan/angled-nsfw.svg",
  2536. bottom: 29 / 3734
  2537. }
  2538. },
  2539. frontNsfw: {
  2540. height: math.unit(4, "meter"),
  2541. weight: math.unit(150, "kg"),
  2542. name: "Front (NSFW)",
  2543. image: {
  2544. source: "./media/characters/talan/front-nsfw.svg",
  2545. bottom: 29 / 3734
  2546. }
  2547. },
  2548. sideNsfw: {
  2549. height: math.unit(4, "meter"),
  2550. weight: math.unit(150, "kg"),
  2551. name: "Side (NSFW)",
  2552. image: {
  2553. source: "./media/characters/talan/side-nsfw.svg",
  2554. bottom: 29 / 3734
  2555. }
  2556. },
  2557. back: {
  2558. height: math.unit(4, "meter"),
  2559. weight: math.unit(150, "kg"),
  2560. name: "Back",
  2561. image: {
  2562. source: "./media/characters/talan/back.svg"
  2563. }
  2564. },
  2565. dickBottom: {
  2566. height: math.unit(0.621, "meter"),
  2567. name: "Dick (Bottom)",
  2568. image: {
  2569. source: "./media/characters/talan/dick-bottom.svg"
  2570. }
  2571. },
  2572. dickTop: {
  2573. height: math.unit(0.621, "meter"),
  2574. name: "Dick (Top)",
  2575. image: {
  2576. source: "./media/characters/talan/dick-top.svg"
  2577. }
  2578. },
  2579. dickSide: {
  2580. height: math.unit(0.305, "meter"),
  2581. name: "Dick (Side)",
  2582. image: {
  2583. source: "./media/characters/talan/dick-side.svg"
  2584. }
  2585. },
  2586. dickFront: {
  2587. height: math.unit(0.305, "meter"),
  2588. name: "Dick (Front)",
  2589. image: {
  2590. source: "./media/characters/talan/dick-front.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(4, "meters")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(100, "meters")
  2602. },
  2603. {
  2604. name: "Megamacro",
  2605. height: math.unit(2, "miles"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Gigamacro",
  2610. height: math.unit(5000, "miles")
  2611. },
  2612. {
  2613. name: "Teramacro",
  2614. height: math.unit(100, "parsecs")
  2615. }
  2616. ]
  2617. ))
  2618. characterMakers.push(() => makeCharacter(
  2619. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2620. {
  2621. front: {
  2622. height: math.unit(2, "meter"),
  2623. weight: math.unit(90, "kg"),
  2624. name: "Front",
  2625. image: {
  2626. source: "./media/characters/gael'rathus/front.svg"
  2627. }
  2628. },
  2629. frontAlt: {
  2630. height: math.unit(2, "meter"),
  2631. weight: math.unit(90, "kg"),
  2632. name: "Front (alt)",
  2633. image: {
  2634. source: "./media/characters/gael'rathus/front-alt.svg"
  2635. }
  2636. },
  2637. frontAlt2: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(90, "kg"),
  2640. name: "Front (alt 2)",
  2641. image: {
  2642. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2643. }
  2644. }
  2645. },
  2646. [
  2647. {
  2648. name: "Normal",
  2649. height: math.unit(9, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Large",
  2654. height: math.unit(25, "feet")
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(0.25, "miles")
  2659. },
  2660. {
  2661. name: "Megamacro",
  2662. height: math.unit(10, "miles")
  2663. }
  2664. ]
  2665. ))
  2666. characterMakers.push(() => makeCharacter(
  2667. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2668. {
  2669. side: {
  2670. height: math.unit(2, "meter"),
  2671. weight: math.unit(140, "kg"),
  2672. name: "Side",
  2673. image: {
  2674. source: "./media/characters/sosha/side.svg",
  2675. bottom: 0.042
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(12, "feet"),
  2683. default: true
  2684. }
  2685. ]
  2686. ))
  2687. characterMakers.push(() => makeCharacter(
  2688. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2689. {
  2690. side: {
  2691. height: math.unit(5 + 5 / 12, "feet"),
  2692. weight: math.unit(170, "kg"),
  2693. name: "Side",
  2694. image: {
  2695. source: "./media/characters/runnola/side.svg",
  2696. extra: 741 / 448,
  2697. bottom: 0.05
  2698. }
  2699. },
  2700. },
  2701. [
  2702. {
  2703. name: "Small",
  2704. height: math.unit(3, "feet")
  2705. },
  2706. {
  2707. name: "Normal",
  2708. height: math.unit(5 + 5 / 12, "feet"),
  2709. default: true
  2710. },
  2711. {
  2712. name: "Big",
  2713. height: math.unit(10, "feet")
  2714. },
  2715. ]
  2716. ))
  2717. characterMakers.push(() => makeCharacter(
  2718. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2719. {
  2720. front: {
  2721. height: math.unit(2, "meter"),
  2722. weight: math.unit(50, "kg"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/kurribird/front.svg",
  2726. bottom: 0.015
  2727. }
  2728. },
  2729. frontAlt: {
  2730. height: math.unit(1.5, "meter"),
  2731. weight: math.unit(50, "kg"),
  2732. name: "Front (Alt)",
  2733. image: {
  2734. source: "./media/characters/kurribird/front-alt.svg",
  2735. extra: 1.45
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(7, "feet")
  2743. },
  2744. {
  2745. name: "Big",
  2746. height: math.unit(12, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Macro",
  2751. height: math.unit(1500, "feet")
  2752. },
  2753. {
  2754. name: "Megamacro",
  2755. height: math.unit(2, "miles")
  2756. }
  2757. ]
  2758. ))
  2759. characterMakers.push(() => makeCharacter(
  2760. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2761. {
  2762. front: {
  2763. height: math.unit(2, "meter"),
  2764. weight: math.unit(80, "kg"),
  2765. name: "Front",
  2766. image: {
  2767. source: "./media/characters/elbial/front.svg",
  2768. extra: 1643 / 1556,
  2769. bottom: 60.2 / 1696
  2770. }
  2771. },
  2772. side: {
  2773. height: math.unit(2, "meter"),
  2774. weight: math.unit(80, "kg"),
  2775. name: "Side",
  2776. image: {
  2777. source: "./media/characters/elbial/side.svg",
  2778. extra: 1630 / 1565,
  2779. bottom: 71.5 / 1697
  2780. }
  2781. },
  2782. back: {
  2783. height: math.unit(2, "meter"),
  2784. weight: math.unit(80, "kg"),
  2785. name: "Back",
  2786. image: {
  2787. source: "./media/characters/elbial/back.svg",
  2788. extra: 1668 / 1595,
  2789. bottom: 5.6 / 1672
  2790. }
  2791. },
  2792. frontDressed: {
  2793. height: math.unit(2, "meter"),
  2794. weight: math.unit(80, "kg"),
  2795. name: "Front (Dressed)",
  2796. image: {
  2797. source: "./media/characters/elbial/front-dressed.svg",
  2798. extra: 1653 / 1584,
  2799. bottom: 57 / 1708
  2800. }
  2801. },
  2802. genitals: {
  2803. height: math.unit(2 / 3.367, "meter"),
  2804. name: "Genitals",
  2805. image: {
  2806. source: "./media/characters/elbial/genitals.svg"
  2807. }
  2808. },
  2809. },
  2810. [
  2811. {
  2812. name: "Large",
  2813. height: math.unit(100, "feet")
  2814. },
  2815. {
  2816. name: "Macro",
  2817. height: math.unit(500, "feet"),
  2818. default: true
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(10, "miles")
  2823. },
  2824. {
  2825. name: "Gigamacro",
  2826. height: math.unit(25000, "miles")
  2827. },
  2828. {
  2829. name: "Full-Size",
  2830. height: math.unit(8000000, "gigaparsecs")
  2831. }
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2836. {
  2837. front: {
  2838. height: math.unit(2, "meter"),
  2839. weight: math.unit(60, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/noah/front.svg"
  2843. }
  2844. },
  2845. talons: {
  2846. height: math.unit(0.315, "meter"),
  2847. name: "Talons",
  2848. image: {
  2849. source: "./media/characters/noah/talons.svg"
  2850. }
  2851. }
  2852. },
  2853. [
  2854. {
  2855. name: "Large",
  2856. height: math.unit(50, "feet")
  2857. },
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(750, "feet"),
  2861. default: true
  2862. },
  2863. {
  2864. name: "Megamacro",
  2865. height: math.unit(50, "miles")
  2866. },
  2867. {
  2868. name: "Gigamacro",
  2869. height: math.unit(100000, "miles")
  2870. },
  2871. {
  2872. name: "Full-Size",
  2873. height: math.unit(3000000000, "miles")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(80, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/natalya/front.svg"
  2886. }
  2887. },
  2888. back: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(80, "kg"),
  2891. name: "Back",
  2892. image: {
  2893. source: "./media/characters/natalya/back.svg"
  2894. }
  2895. }
  2896. },
  2897. [
  2898. {
  2899. name: "Normal",
  2900. height: math.unit(150, "feet"),
  2901. default: true
  2902. },
  2903. {
  2904. name: "Megamacro",
  2905. height: math.unit(5, "miles")
  2906. },
  2907. {
  2908. name: "Full-Size",
  2909. height: math.unit(600, "kiloparsecs")
  2910. }
  2911. ]
  2912. ))
  2913. characterMakers.push(() => makeCharacter(
  2914. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2915. {
  2916. front: {
  2917. height: math.unit(2, "meter"),
  2918. weight: math.unit(50, "kg"),
  2919. name: "Front",
  2920. image: {
  2921. source: "./media/characters/erestrebah/front.svg",
  2922. extra: 208 / 193,
  2923. bottom: 0.055
  2924. }
  2925. },
  2926. back: {
  2927. height: math.unit(2, "meter"),
  2928. weight: math.unit(50, "kg"),
  2929. name: "Back",
  2930. image: {
  2931. source: "./media/characters/erestrebah/back.svg",
  2932. extra: 1.3
  2933. }
  2934. }
  2935. },
  2936. [
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(10, "feet")
  2940. },
  2941. {
  2942. name: "Large",
  2943. height: math.unit(50, "feet"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Macro",
  2948. height: math.unit(300, "feet")
  2949. },
  2950. {
  2951. name: "Macro+",
  2952. height: math.unit(750, "feet")
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(3, "miles")
  2957. }
  2958. ]
  2959. ))
  2960. characterMakers.push(() => makeCharacter(
  2961. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2962. {
  2963. front: {
  2964. height: math.unit(2, "meter"),
  2965. weight: math.unit(80, "kg"),
  2966. name: "Front",
  2967. image: {
  2968. source: "./media/characters/jennifer/front.svg",
  2969. bottom: 0.11,
  2970. extra: 1.16
  2971. }
  2972. },
  2973. frontAlt: {
  2974. height: math.unit(2, "meter"),
  2975. weight: math.unit(80, "kg"),
  2976. name: "Front (Alt)",
  2977. image: {
  2978. source: "./media/characters/jennifer/front-alt.svg"
  2979. }
  2980. }
  2981. },
  2982. [
  2983. {
  2984. name: "Canon Height",
  2985. height: math.unit(120, "feet"),
  2986. default: true
  2987. },
  2988. {
  2989. name: "Macro+",
  2990. height: math.unit(300, "feet")
  2991. },
  2992. {
  2993. name: "Megamacro",
  2994. height: math.unit(20000, "feet")
  2995. }
  2996. ]
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3000. {
  3001. front: {
  3002. height: math.unit(2, "meter"),
  3003. weight: math.unit(50, "kg"),
  3004. name: "Front",
  3005. image: {
  3006. source: "./media/characters/kalista/front.svg",
  3007. extra: 1947 / 1700,
  3008. bottom: 76.6 / 1412.98
  3009. }
  3010. },
  3011. back: {
  3012. height: math.unit(2, "meter"),
  3013. weight: math.unit(50, "kg"),
  3014. name: "Back",
  3015. image: {
  3016. source: "./media/characters/kalista/back.svg",
  3017. extra: 1366 / 1156,
  3018. bottom: 33.9 / 1362.78
  3019. }
  3020. }
  3021. },
  3022. [
  3023. {
  3024. name: "Uncomfortably Small",
  3025. height: math.unit(10, "feet")
  3026. },
  3027. {
  3028. name: "Small",
  3029. height: math.unit(30, "feet")
  3030. },
  3031. {
  3032. name: "Macro",
  3033. height: math.unit(100, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Macro+",
  3038. height: math.unit(2000, "feet")
  3039. },
  3040. {
  3041. name: "True Form",
  3042. height: math.unit(8924, "miles")
  3043. }
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3048. {
  3049. front: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(120, "kg"),
  3052. name: "Front",
  3053. image: {
  3054. source: "./media/characters/ggv/front.svg"
  3055. }
  3056. },
  3057. side: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(120, "kg"),
  3060. name: "Side",
  3061. image: {
  3062. source: "./media/characters/ggv/side.svg"
  3063. }
  3064. }
  3065. },
  3066. [
  3067. {
  3068. name: "Extremely Puny",
  3069. height: math.unit(9 + 5 / 12, "feet")
  3070. },
  3071. {
  3072. name: "Horribly Small",
  3073. height: math.unit(47.7, "miles"),
  3074. default: true
  3075. },
  3076. {
  3077. name: "Reasonably Sized",
  3078. height: math.unit(25000, "parsecs")
  3079. },
  3080. {
  3081. name: "Slightly Uncompressed",
  3082. height: math.unit(7.77e31, "parsecs")
  3083. },
  3084. {
  3085. name: "Omniversal",
  3086. height: math.unit(1e300, "meters")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(75, "lb"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/napalm/front.svg"
  3099. }
  3100. },
  3101. back: {
  3102. height: math.unit(2, "meter"),
  3103. weight: math.unit(75, "lb"),
  3104. name: "Back",
  3105. image: {
  3106. source: "./media/characters/napalm/back.svg"
  3107. }
  3108. }
  3109. },
  3110. [
  3111. {
  3112. name: "Standard",
  3113. height: math.unit(55, "feet"),
  3114. default: true
  3115. }
  3116. ]
  3117. ))
  3118. characterMakers.push(() => makeCharacter(
  3119. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3120. {
  3121. front: {
  3122. height: math.unit(7 + 5 / 6, "feet"),
  3123. weight: math.unit(325, "lb"),
  3124. name: "Front",
  3125. image: {
  3126. source: "./media/characters/asana/front.svg",
  3127. extra: 1133 / 1060,
  3128. bottom: 15.2/1148.6
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(7 + 5 / 6, "feet"),
  3133. weight: math.unit(325, "lb"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/asana/back.svg",
  3137. extra: 1114 / 1043,
  3138. bottom: 5/1120
  3139. }
  3140. },
  3141. dressedDark: {
  3142. height: math.unit(7 + 5 / 6, "feet"),
  3143. weight: math.unit(325, "lb"),
  3144. name: "Dressed (Dark)",
  3145. image: {
  3146. source: "./media/characters/asana/dressed-dark.svg",
  3147. extra: 1133 / 1060,
  3148. bottom: 15.2/1148.6
  3149. }
  3150. },
  3151. dressedLight: {
  3152. height: math.unit(7 + 5 / 6, "feet"),
  3153. weight: math.unit(325, "lb"),
  3154. name: "Dressed (Light)",
  3155. image: {
  3156. source: "./media/characters/asana/dressed-light.svg",
  3157. extra: 1133 / 1060,
  3158. bottom: 15.2/1148.6
  3159. }
  3160. },
  3161. },
  3162. [
  3163. {
  3164. name: "Standard",
  3165. height: math.unit(7 + 5 / 6, "feet"),
  3166. default: true
  3167. },
  3168. {
  3169. name: "Large",
  3170. height: math.unit(10, "meters")
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(2500, "meters")
  3175. },
  3176. {
  3177. name: "Megamacro",
  3178. height: math.unit(5e6, "meters")
  3179. },
  3180. {
  3181. name: "Examacro",
  3182. height: math.unit(5e12, "lightyears")
  3183. },
  3184. {
  3185. name: "Max Size",
  3186. height: math.unit(1e31, "lightyears")
  3187. }
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3192. {
  3193. front: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(60, "kg"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/ebony/front.svg",
  3199. bottom: 0.03,
  3200. extra: 1045 / 810 + 0.03
  3201. }
  3202. },
  3203. side: {
  3204. height: math.unit(2, "meter"),
  3205. weight: math.unit(60, "kg"),
  3206. name: "Side",
  3207. image: {
  3208. source: "./media/characters/ebony/side.svg",
  3209. bottom: 0.03,
  3210. extra: 1045 / 810 + 0.03
  3211. }
  3212. },
  3213. back: {
  3214. height: math.unit(2, "meter"),
  3215. weight: math.unit(60, "kg"),
  3216. name: "Back",
  3217. image: {
  3218. source: "./media/characters/ebony/back.svg",
  3219. bottom: 0.01,
  3220. extra: 1045 / 810 + 0.01
  3221. }
  3222. },
  3223. },
  3224. [
  3225. // TODO check why I did this lol
  3226. {
  3227. name: "Standard",
  3228. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Macro",
  3233. height: math.unit(200, "feet")
  3234. },
  3235. {
  3236. name: "Gigamacro",
  3237. height: math.unit(13000, "km")
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(6, "feet"),
  3246. weight: math.unit(175, "lb"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/mountain/front.svg",
  3250. extra: 972/955,
  3251. bottom: 64/1036.6
  3252. }
  3253. },
  3254. back: {
  3255. height: math.unit(6, "feet"),
  3256. weight: math.unit(175, "lb"),
  3257. name: "Back",
  3258. image: {
  3259. source: "./media/characters/mountain/back.svg",
  3260. extra: 970/950,
  3261. bottom: 28.25/999
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Large",
  3268. height: math.unit(20, "meters")
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(300, "meters")
  3273. },
  3274. {
  3275. name: "Gigamacro",
  3276. height: math.unit(10000, "km"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Examacro",
  3281. height: math.unit(10e9, "lightyears")
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(8, "feet"),
  3290. weight: math.unit(500, "lb"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/rick/front.svg"
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Normal",
  3300. height: math.unit(8, "feet"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(5, "km")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(8, "feet"),
  3314. weight: math.unit(120, "lb"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/ona/front.svg"
  3318. }
  3319. },
  3320. frontAlt: {
  3321. height: math.unit(8, "feet"),
  3322. weight: math.unit(120, "lb"),
  3323. name: "Front (Alt)",
  3324. image: {
  3325. source: "./media/characters/ona/front-alt.svg"
  3326. }
  3327. },
  3328. back: {
  3329. height: math.unit(8, "feet"),
  3330. weight: math.unit(120, "lb"),
  3331. name: "Back",
  3332. image: {
  3333. source: "./media/characters/ona/back.svg"
  3334. }
  3335. },
  3336. foot: {
  3337. height: math.unit(1.1, "feet"),
  3338. name: "Foot",
  3339. image: {
  3340. source: "./media/characters/ona/foot.svg"
  3341. }
  3342. }
  3343. },
  3344. [
  3345. {
  3346. name: "Megamacro",
  3347. height: math.unit(70, "km"),
  3348. default: true
  3349. },
  3350. {
  3351. name: "Gigamacro",
  3352. height: math.unit(681818, "miles")
  3353. },
  3354. {
  3355. name: "Examacro",
  3356. height: math.unit(3800000, "lightyears")
  3357. },
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(12, "feet"),
  3365. weight: math.unit(3000, "lb"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/mech/front.svg",
  3369. bottom: 0.025,
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(12, "feet"),
  3374. weight: math.unit(3000, "lb"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/mech/back.svg",
  3378. bottom: 0.03,
  3379. }
  3380. }
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(12, "feet")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(300, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro+",
  3394. height: math.unit(1500, "feet")
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(1.3, "meter"),
  3403. weight: math.unit(30, "kg"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/gregory/front.svg",
  3407. }
  3408. }
  3409. },
  3410. [
  3411. {
  3412. name: "Normal",
  3413. height: math.unit(1.3, "meter"),
  3414. default: true
  3415. },
  3416. {
  3417. name: "Macro",
  3418. height: math.unit(20, "meter")
  3419. }
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3424. {
  3425. front: {
  3426. height: math.unit(2.8, "meter"),
  3427. weight: math.unit(200, "kg"),
  3428. name: "Front",
  3429. image: {
  3430. source: "./media/characters/elory/front.svg",
  3431. }
  3432. }
  3433. },
  3434. [
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(2.8, "meter"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(38, "meter")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(470, "feet"),
  3451. weight: math.unit(924, "tons"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/angelpatamon/front.svg",
  3455. }
  3456. }
  3457. },
  3458. [
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(470, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Deity Size I",
  3466. height: math.unit(28651.2, "km")
  3467. },
  3468. {
  3469. name: "Deity Size II",
  3470. height: math.unit(171907.2, "km")
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3476. {
  3477. side: {
  3478. height: math.unit(7.2, "meter"),
  3479. weight: math.unit(8.2, "tons"),
  3480. name: "Side",
  3481. image: {
  3482. source: "./media/characters/cryae/side.svg",
  3483. extra: 3500 / 1500
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(7.2, "meter"),
  3491. default: true
  3492. }
  3493. ]
  3494. ))
  3495. characterMakers.push(() => makeCharacter(
  3496. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3497. {
  3498. front: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(175, "lb"),
  3501. name: "Front",
  3502. image: {
  3503. source: "./media/characters/xera/front.svg",
  3504. extra: 2377 / 1972,
  3505. bottom: 75.5/2452
  3506. }
  3507. },
  3508. side: {
  3509. height: math.unit(6, "feet"),
  3510. weight: math.unit(175, "lb"),
  3511. name: "Side",
  3512. image: {
  3513. source: "./media/characters/xera/side.svg",
  3514. extra: 2345/2019,
  3515. bottom: 39.7/2384
  3516. }
  3517. },
  3518. back: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(175, "lb"),
  3521. name: "Back",
  3522. image: {
  3523. source: "./media/characters/xera/back.svg",
  3524. extra: 2095/1984,
  3525. bottom: 67/2166
  3526. }
  3527. },
  3528. },
  3529. [
  3530. {
  3531. name: "Small",
  3532. height: math.unit(10, "feet")
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(500, "meters"),
  3537. default: true
  3538. },
  3539. {
  3540. name: "Macro+",
  3541. height: math.unit(10, "km")
  3542. },
  3543. {
  3544. name: "Gigamacro",
  3545. height: math.unit(25000, "km")
  3546. },
  3547. {
  3548. name: "Teramacro",
  3549. height: math.unit(3e6, "km")
  3550. }
  3551. ]
  3552. ))
  3553. characterMakers.push(() => makeCharacter(
  3554. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3555. {
  3556. front: {
  3557. height: math.unit(6, "feet"),
  3558. weight: math.unit(175, "lb"),
  3559. name: "Front",
  3560. image: {
  3561. source: "./media/characters/nebula/front.svg",
  3562. extra: 2566/2362,
  3563. bottom: 81/2644
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Small",
  3570. height: math.unit(4.5, "meters")
  3571. },
  3572. {
  3573. name: "Macro",
  3574. height: math.unit(1500, "meters"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Megamacro",
  3579. height: math.unit(150, "km")
  3580. },
  3581. {
  3582. name: "Gigamacro",
  3583. height: math.unit(27000, "km")
  3584. }
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(225, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/abysgar/front.svg"
  3596. }
  3597. }
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(4.5, "meters")
  3603. },
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(1250, "meters"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Megamacro",
  3611. height: math.unit(125, "km")
  3612. },
  3613. {
  3614. name: "Gigamacro",
  3615. height: math.unit(26000, "km")
  3616. }
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(6, "feet"),
  3624. weight: math.unit(180, "lb"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/yakuz/front.svg"
  3628. }
  3629. }
  3630. },
  3631. [
  3632. {
  3633. name: "Small",
  3634. height: math.unit(5, "meters")
  3635. },
  3636. {
  3637. name: "Macro",
  3638. height: math.unit(1500, "meters"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Megamacro",
  3643. height: math.unit(200, "km")
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(100000, "km")
  3648. }
  3649. ]
  3650. ))
  3651. characterMakers.push(() => makeCharacter(
  3652. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3653. {
  3654. front: {
  3655. height: math.unit(6, "feet"),
  3656. weight: math.unit(175, "lb"),
  3657. name: "Front",
  3658. image: {
  3659. source: "./media/characters/mirova/front.svg",
  3660. extra: 3334/3071,
  3661. bottom: 42/3375.6
  3662. }
  3663. }
  3664. },
  3665. [
  3666. {
  3667. name: "Small",
  3668. height: math.unit(5, "meters")
  3669. },
  3670. {
  3671. name: "Macro",
  3672. height: math.unit(900, "meters"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Megamacro",
  3677. height: math.unit(135, "km")
  3678. },
  3679. {
  3680. name: "Gigamacro",
  3681. height: math.unit(20000, "km")
  3682. }
  3683. ]
  3684. ))
  3685. characterMakers.push(() => makeCharacter(
  3686. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3687. {
  3688. side: {
  3689. height: math.unit(28.35, "feet"),
  3690. weight: math.unit(99.75, "tons"),
  3691. name: "Side",
  3692. image: {
  3693. source: "./media/characters/asana-mech/side.svg",
  3694. extra: 923/699,
  3695. bottom: 50/975
  3696. }
  3697. },
  3698. chaingun: {
  3699. height: math.unit(7, "feet"),
  3700. weight: math.unit(2400, "lb"),
  3701. name: "Chaingun",
  3702. image: {
  3703. source: "./media/characters/asana-mech/chaingun.svg"
  3704. }
  3705. },
  3706. laser: {
  3707. height: math.unit(7.12, "feet"),
  3708. weight: math.unit(2000, "lb"),
  3709. name: "Laser",
  3710. image: {
  3711. source: "./media/characters/asana-mech/laser.svg"
  3712. }
  3713. },
  3714. },
  3715. [
  3716. {
  3717. name: "Normal",
  3718. height: math.unit(28.35, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(2500, "feet")
  3724. },
  3725. {
  3726. name: "Megamacro",
  3727. height: math.unit(25, "miles")
  3728. },
  3729. {
  3730. name: "Examacro",
  3731. height: math.unit(6e8, "lightyears")
  3732. },
  3733. ]
  3734. ))
  3735. characterMakers.push(() => makeCharacter(
  3736. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3737. {
  3738. front: {
  3739. height: math.unit(5, "meters"),
  3740. weight: math.unit(1000, "kg"),
  3741. name: "Front",
  3742. image: {
  3743. source: "./media/characters/asche/front.svg",
  3744. extra: 1258/1190,
  3745. bottom: 47/1305
  3746. }
  3747. },
  3748. frontUnderwear: {
  3749. height: math.unit(5, "meters"),
  3750. weight: math.unit(1000, "kg"),
  3751. name: "Front (Underwear)",
  3752. image: {
  3753. source: "./media/characters/asche/front-underwear.svg",
  3754. extra: 1258/1190,
  3755. bottom: 47/1305
  3756. }
  3757. },
  3758. frontDressed: {
  3759. height: math.unit(5, "meters"),
  3760. weight: math.unit(1000, "kg"),
  3761. name: "Front (Dressed)",
  3762. image: {
  3763. source: "./media/characters/asche/front-dressed.svg",
  3764. extra: 1258/1190,
  3765. bottom: 47/1305
  3766. }
  3767. },
  3768. frontArmor: {
  3769. height: math.unit(5, "meters"),
  3770. weight: math.unit(1000, "kg"),
  3771. name: "Front (Armored)",
  3772. image: {
  3773. source: "./media/characters/asche/front-armored.svg",
  3774. extra: 1374 / 1308,
  3775. bottom: 23/1397
  3776. }
  3777. },
  3778. mp724: {
  3779. height: math.unit(0.96, "meters"),
  3780. weight: math.unit(38, "kg"),
  3781. name: "H&K MP724",
  3782. image: {
  3783. source: "./media/characters/asche/h&k-mp724.svg"
  3784. }
  3785. },
  3786. side: {
  3787. height: math.unit(5, "meters"),
  3788. weight: math.unit(1000, "kg"),
  3789. name: "Side",
  3790. image: {
  3791. source: "./media/characters/asche/side.svg",
  3792. extra: 1717 / 1609,
  3793. bottom: 0.005
  3794. }
  3795. },
  3796. back: {
  3797. height: math.unit(5, "meters"),
  3798. weight: math.unit(1000, "kg"),
  3799. name: "Back",
  3800. image: {
  3801. source: "./media/characters/asche/back.svg",
  3802. extra: 1570 / 1501
  3803. }
  3804. },
  3805. },
  3806. [
  3807. {
  3808. name: "DEFCON 5",
  3809. height: math.unit(5, "meters")
  3810. },
  3811. {
  3812. name: "DEFCON 4",
  3813. height: math.unit(500, "meters"),
  3814. default: true
  3815. },
  3816. {
  3817. name: "DEFCON 3",
  3818. height: math.unit(5, "km")
  3819. },
  3820. {
  3821. name: "DEFCON 2",
  3822. height: math.unit(500, "km")
  3823. },
  3824. {
  3825. name: "DEFCON 1",
  3826. height: math.unit(500000, "km")
  3827. },
  3828. {
  3829. name: "DEFCON 0",
  3830. height: math.unit(3, "gigaparsecs")
  3831. },
  3832. ]
  3833. ))
  3834. characterMakers.push(() => makeCharacter(
  3835. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3836. {
  3837. front: {
  3838. height: math.unit(2, "meters"),
  3839. weight: math.unit(76, "kg"),
  3840. name: "Front",
  3841. image: {
  3842. source: "./media/characters/gale/front.svg"
  3843. }
  3844. },
  3845. frontAlt1: {
  3846. height: math.unit(2, "meters"),
  3847. weight: math.unit(76, "kg"),
  3848. name: "Front (Alt 1)",
  3849. image: {
  3850. source: "./media/characters/gale/front-alt-1.svg"
  3851. }
  3852. },
  3853. frontAlt2: {
  3854. height: math.unit(2, "meters"),
  3855. weight: math.unit(76, "kg"),
  3856. name: "Front (Alt 2)",
  3857. image: {
  3858. source: "./media/characters/gale/front-alt-2.svg"
  3859. }
  3860. },
  3861. },
  3862. [
  3863. {
  3864. name: "Normal",
  3865. height: math.unit(7, "feet")
  3866. },
  3867. {
  3868. name: "Macro",
  3869. height: math.unit(150, "feet"),
  3870. default: true
  3871. },
  3872. {
  3873. name: "Macro+",
  3874. height: math.unit(300, "feet")
  3875. },
  3876. ]
  3877. ))
  3878. characterMakers.push(() => makeCharacter(
  3879. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3880. {
  3881. front: {
  3882. height: math.unit(2, "meters"),
  3883. weight: math.unit(76, "kg"),
  3884. name: "Front",
  3885. image: {
  3886. source: "./media/characters/draylen/front.svg"
  3887. }
  3888. }
  3889. },
  3890. [
  3891. {
  3892. name: "Macro",
  3893. height: math.unit(150, "feet"),
  3894. default: true
  3895. }
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(7 + 9 / 12, "feet"),
  3903. weight: math.unit(379, "lbs"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/chez/front.svg"
  3907. }
  3908. },
  3909. side: {
  3910. height: math.unit(7 + 9 / 12, "feet"),
  3911. weight: math.unit(379, "lbs"),
  3912. name: "Side",
  3913. image: {
  3914. source: "./media/characters/chez/side.svg"
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Normal",
  3921. height: math.unit(7 + 9 / 12, "feet"),
  3922. default: true
  3923. },
  3924. {
  3925. name: "God King",
  3926. height: math.unit(9750000, "meters")
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(6, "feet"),
  3935. weight: math.unit(275, "lbs"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/kaylum/front.svg",
  3939. bottom: 0.01,
  3940. extra: 1166 / 1031
  3941. }
  3942. },
  3943. frontWingless: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(275, "lbs"),
  3946. name: "Front (Wingless)",
  3947. image: {
  3948. source: "./media/characters/kaylum/front-wingless.svg",
  3949. bottom: 0.01,
  3950. extra: 1117 / 1031
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Normal",
  3957. height: math.unit(3.05, "meters")
  3958. },
  3959. {
  3960. name: "Master",
  3961. height: math.unit(5.5, "meters")
  3962. },
  3963. {
  3964. name: "Rampage",
  3965. height: math.unit(19, "meters")
  3966. },
  3967. {
  3968. name: "Macro Lite",
  3969. height: math.unit(37, "meters")
  3970. },
  3971. {
  3972. name: "Hyper Predator",
  3973. height: math.unit(61, "meters")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(138, "meters"),
  3978. default: true
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(6, "feet"),
  3987. weight: math.unit(150, "lbs"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/geta/front.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Micro",
  3997. height: math.unit(3, "inches"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Normal",
  4002. height: math.unit(5 + 5 / 12, "feet")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(300, "lbs"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/tyrnn/front.svg"
  4015. }
  4016. }
  4017. },
  4018. [
  4019. {
  4020. name: "Main Height",
  4021. height: math.unit(355, "feet"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Fave. Height",
  4026. height: math.unit(2400, "feet")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(300, "lbs"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/appledectomy/front.svg"
  4039. }
  4040. }
  4041. },
  4042. [
  4043. {
  4044. name: "Macro",
  4045. height: math.unit(2500, "feet")
  4046. },
  4047. {
  4048. name: "Megamacro",
  4049. height: math.unit(50, "miles"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Gigamacro",
  4054. height: math.unit(5000, "miles")
  4055. },
  4056. {
  4057. name: "Teramacro",
  4058. height: math.unit(250000, "miles")
  4059. },
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(200, "lbs"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/vulpes/front.svg",
  4071. extra: 573 / 543,
  4072. bottom: 0.033
  4073. }
  4074. },
  4075. side: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(200, "lbs"),
  4078. name: "Side",
  4079. image: {
  4080. source: "./media/characters/vulpes/side.svg",
  4081. extra: 573 / 543,
  4082. bottom: 0.01
  4083. }
  4084. },
  4085. back: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(200, "lbs"),
  4088. name: "Back",
  4089. image: {
  4090. source: "./media/characters/vulpes/back.svg",
  4091. extra: 573 / 543,
  4092. }
  4093. },
  4094. feet: {
  4095. height: math.unit(1.276, "feet"),
  4096. name: "Feet",
  4097. image: {
  4098. source: "./media/characters/vulpes/feet.svg"
  4099. }
  4100. },
  4101. maw: {
  4102. height: math.unit(1.18, "feet"),
  4103. name: "Maw",
  4104. image: {
  4105. source: "./media/characters/vulpes/maw.svg"
  4106. }
  4107. },
  4108. },
  4109. [
  4110. {
  4111. name: "Micro",
  4112. height: math.unit(2, "inches")
  4113. },
  4114. {
  4115. name: "Normal",
  4116. height: math.unit(6.3, "feet")
  4117. },
  4118. {
  4119. name: "Macro",
  4120. height: math.unit(850, "feet")
  4121. },
  4122. {
  4123. name: "Megamacro",
  4124. height: math.unit(7500, "feet"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Gigamacro",
  4129. height: math.unit(570000, "miles")
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4135. {
  4136. front: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(210, "lbs"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/rain-fallen/front.svg"
  4142. }
  4143. },
  4144. side: {
  4145. height: math.unit(6, "feet"),
  4146. weight: math.unit(210, "lbs"),
  4147. name: "Side",
  4148. image: {
  4149. source: "./media/characters/rain-fallen/side.svg"
  4150. }
  4151. },
  4152. back: {
  4153. height: math.unit(6, "feet"),
  4154. weight: math.unit(210, "lbs"),
  4155. name: "Back",
  4156. image: {
  4157. source: "./media/characters/rain-fallen/back.svg"
  4158. }
  4159. },
  4160. feral: {
  4161. height: math.unit(9, "feet"),
  4162. weight: math.unit(700, "lbs"),
  4163. name: "Feral",
  4164. image: {
  4165. source: "./media/characters/rain-fallen/feral.svg"
  4166. }
  4167. },
  4168. },
  4169. [
  4170. {
  4171. name: "Normal",
  4172. height: math.unit(5, "meter")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(150, "meter"),
  4177. default: true
  4178. },
  4179. {
  4180. name: "Megamacro",
  4181. height: math.unit(278e6, "meter")
  4182. },
  4183. {
  4184. name: "Gigamacro",
  4185. height: math.unit(2e9, "meter")
  4186. },
  4187. {
  4188. name: "Teramacro",
  4189. height: math.unit(8e12, "meter")
  4190. },
  4191. {
  4192. name: "Devourer",
  4193. height: math.unit(14, "zettameters")
  4194. },
  4195. {
  4196. name: "Scarlet King",
  4197. height: math.unit(18, "yottameters")
  4198. },
  4199. {
  4200. name: "Void",
  4201. height: math.unit(6.66e66, "yottameters")
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4207. {
  4208. standing: {
  4209. height: math.unit(6, "feet"),
  4210. weight: math.unit(180, "lbs"),
  4211. name: "Standing",
  4212. image: {
  4213. source: "./media/characters/zaakira/standing.svg"
  4214. }
  4215. },
  4216. laying: {
  4217. height: math.unit(3, "feet"),
  4218. weight: math.unit(180, "lbs"),
  4219. name: "Laying",
  4220. image: {
  4221. source: "./media/characters/zaakira/laying.svg"
  4222. }
  4223. },
  4224. },
  4225. [
  4226. {
  4227. name: "Normal",
  4228. height: math.unit(12, "feet")
  4229. },
  4230. {
  4231. name: "Macro",
  4232. height: math.unit(279, "feet"),
  4233. default: true
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4239. {
  4240. femSfw: {
  4241. height: math.unit(8, "feet"),
  4242. weight: math.unit(350, "lb"),
  4243. name: "Fem",
  4244. image: {
  4245. source: "./media/characters/sigvald/fem-sfw.svg",
  4246. extra: 182/164,
  4247. bottom: 8.7/190.5
  4248. }
  4249. },
  4250. femNsfw: {
  4251. height: math.unit(8, "feet"),
  4252. weight: math.unit(350, "lb"),
  4253. name: "Fem (NSFW)",
  4254. image: {
  4255. source: "./media/characters/sigvald/fem-nsfw.svg",
  4256. extra: 182/164,
  4257. bottom: 8.7/190.5
  4258. }
  4259. },
  4260. maleNsfw: {
  4261. height: math.unit(8, "feet"),
  4262. weight: math.unit(350, "lb"),
  4263. name: "Male (NSFW)",
  4264. image: {
  4265. source: "./media/characters/sigvald/male-nsfw.svg",
  4266. extra: 182/164,
  4267. bottom: 8.7/190.5
  4268. }
  4269. },
  4270. hermNsfw: {
  4271. height: math.unit(8, "feet"),
  4272. weight: math.unit(350, "lb"),
  4273. name: "Herm (NSFW)",
  4274. image: {
  4275. source: "./media/characters/sigvald/herm-nsfw.svg",
  4276. extra: 182/164,
  4277. bottom: 8.7/190.5
  4278. }
  4279. },
  4280. dick: {
  4281. height: math.unit(2.36, "feet"),
  4282. name: "Dick",
  4283. image: {
  4284. source: "./media/characters/sigvald/dick.svg"
  4285. }
  4286. },
  4287. eye: {
  4288. height: math.unit(0.31, "feet"),
  4289. name: "Eye",
  4290. image: {
  4291. source: "./media/characters/sigvald/eye.svg"
  4292. }
  4293. },
  4294. mouth: {
  4295. height: math.unit(0.92, "feet"),
  4296. name: "Mouth",
  4297. image: {
  4298. source: "./media/characters/sigvald/mouth.svg"
  4299. }
  4300. },
  4301. paws: {
  4302. height: math.unit(2.2, "feet"),
  4303. name: "Paws",
  4304. image: {
  4305. source: "./media/characters/sigvald/paws.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Normal",
  4312. height: math.unit(8, "feet")
  4313. },
  4314. {
  4315. name: "Large",
  4316. height: math.unit(12, "feet")
  4317. },
  4318. {
  4319. name: "Larger",
  4320. height: math.unit(20, "feet")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(150, "feet")
  4325. },
  4326. {
  4327. name: "Macro+",
  4328. height: math.unit(200, "feet"),
  4329. default: true
  4330. },
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4335. {
  4336. side: {
  4337. height: math.unit(12, "feet"),
  4338. weight: math.unit(2000, "kg"),
  4339. name: "Side",
  4340. image: {
  4341. source: "./media/characters/scott/side.svg",
  4342. extra: 754 / 724,
  4343. bottom: 0.069
  4344. }
  4345. },
  4346. upright: {
  4347. height: math.unit(12, "feet"),
  4348. weight: math.unit(2000, "kg"),
  4349. name: "Upright",
  4350. image: {
  4351. source: "./media/characters/scott/upright.svg",
  4352. extra: 3881 / 3722,
  4353. bottom: 0.05
  4354. }
  4355. },
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(12, "feet"),
  4361. default: true
  4362. },
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4367. {
  4368. side: {
  4369. height: math.unit(8, "meters"),
  4370. weight: math.unit(84755, "lbs"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/tobias/side.svg",
  4374. extra: 1474 / 1096,
  4375. bottom: 38.9 / 1513.1235
  4376. }
  4377. },
  4378. },
  4379. [
  4380. {
  4381. name: "Normal",
  4382. height: math.unit(8, "meters"),
  4383. default: true
  4384. },
  4385. ]
  4386. ))
  4387. characterMakers.push(() => makeCharacter(
  4388. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4389. {
  4390. front: {
  4391. height: math.unit(5.5, "feet"),
  4392. weight: math.unit(400, "lbs"),
  4393. name: "Front",
  4394. image: {
  4395. source: "./media/characters/kieran/front.svg",
  4396. extra: 2694 / 2364,
  4397. bottom: 217 / 2908
  4398. }
  4399. },
  4400. side: {
  4401. height: math.unit(5.5, "feet"),
  4402. weight: math.unit(400, "lbs"),
  4403. name: "Side",
  4404. image: {
  4405. source: "./media/characters/kieran/side.svg",
  4406. extra: 875 / 777,
  4407. bottom: 84.6 / 959
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "Normal",
  4414. height: math.unit(5.5, "feet"),
  4415. default: true
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4421. {
  4422. side: {
  4423. height: math.unit(2, "meters"),
  4424. weight: math.unit(70, "kg"),
  4425. name: "Side",
  4426. image: {
  4427. source: "./media/characters/sanya/side.svg",
  4428. bottom: 0.02,
  4429. extra: 1.02
  4430. }
  4431. },
  4432. },
  4433. [
  4434. {
  4435. name: "Small",
  4436. height: math.unit(2, "meters")
  4437. },
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(3, "meters")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(16, "meters"),
  4445. default: true
  4446. },
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(2, "meters"),
  4454. weight: math.unit(120, "kg"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/miranda/front.svg",
  4458. extra: 195/185,
  4459. bottom: 10.9/206.5
  4460. }
  4461. },
  4462. back: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(120, "kg"),
  4465. name: "Back",
  4466. image: {
  4467. source: "./media/characters/miranda/back.svg",
  4468. extra: 201/193,
  4469. bottom: 2.3/203.7
  4470. }
  4471. },
  4472. },
  4473. [
  4474. {
  4475. name: "Normal",
  4476. height: math.unit(10, "feet"),
  4477. default: true
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "James", species: ["deer"], tags: ["anthro"] },
  4483. {
  4484. side: {
  4485. height: math.unit(2, "meters"),
  4486. weight: math.unit(100, "kg"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/james/front.svg",
  4490. extra: 10 / 8.5
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Normal",
  4497. height: math.unit(8.5, "feet"),
  4498. default: true
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4504. {
  4505. side: {
  4506. height: math.unit(9.5, "feet"),
  4507. weight: math.unit(2500, "lbs"),
  4508. name: "Side",
  4509. image: {
  4510. source: "./media/characters/heather/side.svg"
  4511. }
  4512. },
  4513. },
  4514. [
  4515. {
  4516. name: "Normal",
  4517. height: math.unit(9.5, "feet"),
  4518. default: true
  4519. }
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4524. {
  4525. side: {
  4526. height: math.unit(6.5, "feet"),
  4527. weight: math.unit(400, "lbs"),
  4528. name: "Side",
  4529. image: {
  4530. source: "./media/characters/lukas/side.svg",
  4531. extra: 7.25 / 6.5
  4532. }
  4533. },
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(6.5, "feet"),
  4539. default: true
  4540. }
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4545. {
  4546. side: {
  4547. height: math.unit(5, "feet"),
  4548. weight: math.unit(3000, "lbs"),
  4549. name: "Side",
  4550. image: {
  4551. source: "./media/characters/louise/side.svg"
  4552. }
  4553. },
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(5, "feet"),
  4559. default: true
  4560. }
  4561. ]
  4562. ))
  4563. characterMakers.push(() => makeCharacter(
  4564. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4565. {
  4566. side: {
  4567. height: math.unit(6, "feet"),
  4568. weight: math.unit(150, "lbs"),
  4569. name: "Side",
  4570. image: {
  4571. source: "./media/characters/ramona/side.svg"
  4572. }
  4573. },
  4574. },
  4575. [
  4576. {
  4577. name: "Normal",
  4578. height: math.unit(5.3, "meters"),
  4579. default: true
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(20, "stories")
  4584. },
  4585. {
  4586. name: "Macro+",
  4587. height: math.unit(50, "stories")
  4588. },
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4593. {
  4594. standing: {
  4595. height: math.unit(5.75, "feet"),
  4596. weight: math.unit(160, "lbs"),
  4597. name: "Standing",
  4598. image: {
  4599. source: "./media/characters/deerpuff/standing.svg",
  4600. extra: 682 / 624
  4601. }
  4602. },
  4603. sitting: {
  4604. height: math.unit(5.75 / 1.79, "feet"),
  4605. weight: math.unit(160, "lbs"),
  4606. name: "Sitting",
  4607. image: {
  4608. source: "./media/characters/deerpuff/sitting.svg",
  4609. bottom: 44 / 400,
  4610. extra: 1
  4611. }
  4612. },
  4613. taurLaying: {
  4614. height: math.unit(6, "feet"),
  4615. weight: math.unit(400, "lbs"),
  4616. name: "Taur (Laying)",
  4617. image: {
  4618. source: "./media/characters/deerpuff/taur-laying.svg"
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Puffball",
  4625. height: math.unit(6, "inches")
  4626. },
  4627. {
  4628. name: "Normalpuff",
  4629. height: math.unit(5.75, "feet")
  4630. },
  4631. {
  4632. name: "Macropuff",
  4633. height: math.unit(1500, "feet"),
  4634. default: true
  4635. },
  4636. {
  4637. name: "Megapuff",
  4638. height: math.unit(500, "miles")
  4639. },
  4640. {
  4641. name: "Gigapuff",
  4642. height: math.unit(250000, "miles")
  4643. },
  4644. {
  4645. name: "Omegapuff",
  4646. height: math.unit(1000, "lightyears")
  4647. },
  4648. ]
  4649. ))
  4650. characterMakers.push(() => makeCharacter(
  4651. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4652. {
  4653. stomping: {
  4654. height: math.unit(6, "feet"),
  4655. weight: math.unit(170, "lbs"),
  4656. name: "Stomping",
  4657. image: {
  4658. source: "./media/characters/vivian/stomping.svg"
  4659. }
  4660. },
  4661. sitting: {
  4662. height: math.unit(6 / 1.75, "feet"),
  4663. weight: math.unit(170, "lbs"),
  4664. name: "Sitting",
  4665. image: {
  4666. source: "./media/characters/vivian/sitting.svg",
  4667. bottom: 1 / 6.4,
  4668. extra: 1,
  4669. }
  4670. },
  4671. },
  4672. [
  4673. {
  4674. name: "Normal",
  4675. height: math.unit(7, "feet"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "Macro",
  4680. height: math.unit(10, "stories")
  4681. },
  4682. {
  4683. name: "Macro+",
  4684. height: math.unit(30, "stories")
  4685. },
  4686. {
  4687. name: "Megamacro",
  4688. height: math.unit(10, "miles")
  4689. },
  4690. {
  4691. name: "Megamacro+",
  4692. height: math.unit(2750000, "meters")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(160, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/prince/front.svg",
  4705. extra: 3400 / 3000
  4706. }
  4707. },
  4708. jumping: {
  4709. height: math.unit(6, "feet"),
  4710. weight: math.unit(160, "lbs"),
  4711. name: "Jumping",
  4712. image: {
  4713. source: "./media/characters/prince/jump.svg",
  4714. extra: 2555 / 2134
  4715. }
  4716. },
  4717. },
  4718. [
  4719. {
  4720. name: "Normal",
  4721. height: math.unit(7.75, "feet"),
  4722. default: true
  4723. },
  4724. {
  4725. name: "Not cute",
  4726. height: math.unit(17, "feet")
  4727. },
  4728. {
  4729. name: "I said NOT",
  4730. height: math.unit(91, "feet")
  4731. },
  4732. {
  4733. name: "Please stop",
  4734. height: math.unit(560, "feet")
  4735. },
  4736. {
  4737. name: "What have you done",
  4738. height: math.unit(2200, "feet")
  4739. },
  4740. {
  4741. name: "Deer God",
  4742. height: math.unit(3.6, "miles")
  4743. },
  4744. ]
  4745. ))
  4746. characterMakers.push(() => makeCharacter(
  4747. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4748. {
  4749. standing: {
  4750. height: math.unit(6, "feet"),
  4751. weight: math.unit(300, "lbs"),
  4752. name: "Standing",
  4753. image: {
  4754. source: "./media/characters/psymon/standing.svg",
  4755. extra: 1888 / 1810,
  4756. bottom: 0.05
  4757. }
  4758. },
  4759. slithering: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(300, "lbs"),
  4762. name: "Slithering",
  4763. image: {
  4764. source: "./media/characters/psymon/slithering.svg",
  4765. extra: 1330 / 1224
  4766. }
  4767. },
  4768. slitheringAlt: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(300, "lbs"),
  4771. name: "Slithering (Alt)",
  4772. image: {
  4773. source: "./media/characters/psymon/slithering-alt.svg",
  4774. extra: 1330 / 1224
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(11.25, "feet"),
  4782. default: true
  4783. },
  4784. {
  4785. name: "Large",
  4786. height: math.unit(27, "feet")
  4787. },
  4788. {
  4789. name: "Giant",
  4790. height: math.unit(87, "feet")
  4791. },
  4792. {
  4793. name: "Macro",
  4794. height: math.unit(365, "feet")
  4795. },
  4796. {
  4797. name: "Megamacro",
  4798. height: math.unit(3, "miles")
  4799. },
  4800. {
  4801. name: "World Serpent",
  4802. height: math.unit(8000, "miles")
  4803. },
  4804. ]
  4805. ))
  4806. characterMakers.push(() => makeCharacter(
  4807. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4808. {
  4809. front: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(180, "lbs"),
  4812. name: "Front",
  4813. image: {
  4814. source: "./media/characters/daimos/front.svg",
  4815. extra: 4160 / 3897,
  4816. bottom: 0.021
  4817. }
  4818. }
  4819. },
  4820. [
  4821. {
  4822. name: "Normal",
  4823. height: math.unit(8, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Big Dog",
  4828. height: math.unit(22, "feet")
  4829. },
  4830. {
  4831. name: "Macro",
  4832. height: math.unit(127, "feet")
  4833. },
  4834. {
  4835. name: "Megamacro",
  4836. height: math.unit(3600, "feet")
  4837. },
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4842. {
  4843. side: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(180, "lbs"),
  4846. name: "Side",
  4847. image: {
  4848. source: "./media/characters/blake/side.svg",
  4849. extra: 1212 / 1120,
  4850. bottom: 0.05
  4851. }
  4852. },
  4853. crouched: {
  4854. height: math.unit(6 * 0.57, "feet"),
  4855. weight: math.unit(180, "lbs"),
  4856. name: "Crouched",
  4857. image: {
  4858. source: "./media/characters/blake/crouched.svg",
  4859. extra: 840 / 587,
  4860. bottom: 0.04
  4861. }
  4862. },
  4863. bent: {
  4864. height: math.unit(6 * 0.75, "feet"),
  4865. weight: math.unit(180, "lbs"),
  4866. name: "Bent",
  4867. image: {
  4868. source: "./media/characters/blake/bent.svg",
  4869. extra: 592 / 544,
  4870. bottom: 0.035
  4871. }
  4872. },
  4873. },
  4874. [
  4875. {
  4876. name: "Normal",
  4877. height: math.unit(8 + 1 / 6, "feet"),
  4878. default: true
  4879. },
  4880. {
  4881. name: "Big Backside",
  4882. height: math.unit(37, "feet")
  4883. },
  4884. {
  4885. name: "Subway Shredder",
  4886. height: math.unit(72, "feet")
  4887. },
  4888. {
  4889. name: "City Carver",
  4890. height: math.unit(1675, "feet")
  4891. },
  4892. {
  4893. name: "Tectonic Tweaker",
  4894. height: math.unit(2300, "miles")
  4895. },
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4900. {
  4901. front: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(180, "lbs"),
  4904. name: "Front",
  4905. image: {
  4906. source: "./media/characters/guisetto/front.svg",
  4907. extra: 856 / 817,
  4908. bottom: 0.06
  4909. }
  4910. },
  4911. airborne: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(180, "lbs"),
  4914. name: "Airborne",
  4915. image: {
  4916. source: "./media/characters/guisetto/airborne.svg",
  4917. extra: 584 / 525
  4918. }
  4919. },
  4920. },
  4921. [
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(10 + 11 / 12, "feet"),
  4925. default: true
  4926. },
  4927. {
  4928. name: "Large",
  4929. height: math.unit(35, "feet")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(475, "feet")
  4934. },
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4939. {
  4940. front: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(180, "lbs"),
  4943. name: "Front",
  4944. image: {
  4945. source: "./media/characters/luxor/front.svg",
  4946. extra: 2940 / 2152
  4947. }
  4948. },
  4949. back: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(180, "lbs"),
  4952. name: "Back",
  4953. image: {
  4954. source: "./media/characters/luxor/back.svg",
  4955. extra: 1083 / 960
  4956. }
  4957. },
  4958. },
  4959. [
  4960. {
  4961. name: "Normal",
  4962. height: math.unit(5 + 5 / 6, "feet"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Lamp",
  4967. height: math.unit(50, "feet")
  4968. },
  4969. {
  4970. name: "Lämp",
  4971. height: math.unit(300, "feet")
  4972. },
  4973. {
  4974. name: "The sun is a lamp",
  4975. height: math.unit(250000, "miles")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4981. {
  4982. front: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(50, "lbs"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/huoyan/front.svg"
  4988. }
  4989. },
  4990. side: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(180, "lbs"),
  4993. name: "Side",
  4994. image: {
  4995. source: "./media/characters/huoyan/side.svg"
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Chef",
  5002. height: math.unit(9, "feet")
  5003. },
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(65, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(780, "feet")
  5012. },
  5013. {
  5014. name: "Flaming Mountain",
  5015. height: math.unit(4.8, "miles")
  5016. },
  5017. {
  5018. name: "Celestial",
  5019. height: math.unit(765000, "miles")
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(5 + 3 / 4, "feet"),
  5028. weight: math.unit(120, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/tails/front.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(5 + 3 / 4, "feet"),
  5039. default: true
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(4, "feet"),
  5048. weight: math.unit(50, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/rainy/front.svg"
  5052. }
  5053. }
  5054. },
  5055. [
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(800, "feet"),
  5059. default: true
  5060. }
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5065. {
  5066. front: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(150, "lbs"),
  5069. name: "Front",
  5070. image: {
  5071. source: "./media/characters/rainier/front.svg"
  5072. }
  5073. }
  5074. },
  5075. [
  5076. {
  5077. name: "Micro",
  5078. height: math.unit(2, "mm"),
  5079. default: true
  5080. }
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(180, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/andy/front.svg"
  5092. }
  5093. }
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(8, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(1000, "feet")
  5104. },
  5105. {
  5106. name: "Megamacro",
  5107. height: math.unit(5, "miles")
  5108. },
  5109. {
  5110. name: "Gigamacro",
  5111. height: math.unit(5000, "miles")
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(210, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/cimmaron/front-sfw.svg",
  5124. extra: 701 / 676,
  5125. bottom: 0.046
  5126. }
  5127. },
  5128. back: {
  5129. height: math.unit(6, "feet"),
  5130. weight: math.unit(210, "lbs"),
  5131. name: "Back",
  5132. image: {
  5133. source: "./media/characters/cimmaron/back-sfw.svg",
  5134. extra: 701 / 676,
  5135. bottom: 0.046
  5136. }
  5137. },
  5138. frontNsfw: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(210, "lbs"),
  5141. name: "Front (NSFW)",
  5142. image: {
  5143. source: "./media/characters/cimmaron/front-nsfw.svg",
  5144. extra: 701 / 676,
  5145. bottom: 0.046
  5146. }
  5147. },
  5148. backNsfw: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(210, "lbs"),
  5151. name: "Back (NSFW)",
  5152. image: {
  5153. source: "./media/characters/cimmaron/back-nsfw.svg",
  5154. extra: 701 / 676,
  5155. bottom: 0.046
  5156. }
  5157. },
  5158. dick: {
  5159. height: math.unit(1.714, "feet"),
  5160. name: "Dick",
  5161. image: {
  5162. source: "./media/characters/cimmaron/dick.svg"
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(6, "feet"),
  5170. default: true
  5171. },
  5172. {
  5173. name: "Macro Mayor",
  5174. height: math.unit(350, "meters")
  5175. },
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5180. {
  5181. front: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(200, "lbs"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/akari/front.svg",
  5187. extra: 962 / 901,
  5188. bottom: 0.04
  5189. }
  5190. }
  5191. },
  5192. [
  5193. {
  5194. name: "Micro",
  5195. height: math.unit(5, "inches"),
  5196. default: true
  5197. },
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(7, "feet")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(140, "lbs"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/cynosura/front.svg",
  5213. extra: 896 / 847
  5214. }
  5215. },
  5216. back: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(140, "lbs"),
  5219. name: "Back",
  5220. image: {
  5221. source: "./media/characters/cynosura/back.svg",
  5222. extra: 1365 / 1250
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Micro",
  5229. height: math.unit(4, "inches")
  5230. },
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(5.75, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Tall",
  5238. height: math.unit(10, "feet")
  5239. },
  5240. {
  5241. name: "Big",
  5242. height: math.unit(20, "feet")
  5243. },
  5244. {
  5245. name: "Macro",
  5246. height: math.unit(50, "feet")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(170, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/gin/front.svg",
  5259. extra: 1.053,
  5260. bottom: 0.025
  5261. }
  5262. },
  5263. foot: {
  5264. height: math.unit(6 / 4.25, "feet"),
  5265. name: "Foot",
  5266. image: {
  5267. source: "./media/characters/gin/foot.svg"
  5268. }
  5269. },
  5270. sole: {
  5271. height: math.unit(6 / 4.40, "feet"),
  5272. name: "Sole",
  5273. image: {
  5274. source: "./media/characters/gin/sole.svg"
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(13 + 2 / 12, "feet")
  5282. },
  5283. {
  5284. name: "Macro",
  5285. height: math.unit(1500, "feet")
  5286. },
  5287. {
  5288. name: "Megamacro",
  5289. height: math.unit(200, "miles"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Gigamacro",
  5294. height: math.unit(500, "megameters")
  5295. },
  5296. {
  5297. name: "Teramacro",
  5298. height: math.unit(15, "lightyears")
  5299. }
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(6 + 1 / 6, "feet"),
  5307. weight: math.unit(178, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/guy/front.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(6 + 1 / 6, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Large",
  5322. height: math.unit(25 + 7 / 12, "feet")
  5323. },
  5324. {
  5325. name: "Macro",
  5326. height: math.unit(60 + 9 / 12, "feet")
  5327. },
  5328. {
  5329. name: "Macro+",
  5330. height: math.unit(246, "feet")
  5331. },
  5332. {
  5333. name: "Macro++",
  5334. height: math.unit(878, "feet")
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(9, "feet"),
  5343. weight: math.unit(800, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/tiberius/front.svg",
  5347. extra: 2295 / 2071
  5348. }
  5349. },
  5350. back: {
  5351. height: math.unit(9, "feet"),
  5352. weight: math.unit(800, "lbs"),
  5353. name: "Back",
  5354. image: {
  5355. source: "./media/characters/tiberius/back.svg",
  5356. extra: 2373 / 2160
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(9, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5370. {
  5371. front: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(600, "lbs"),
  5374. name: "Front",
  5375. image: {
  5376. source: "./media/characters/surgo/front.svg",
  5377. extra: 3591 / 2227
  5378. }
  5379. },
  5380. back: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(600, "lbs"),
  5383. name: "Back",
  5384. image: {
  5385. source: "./media/characters/surgo/back.svg",
  5386. extra: 3557 / 2228
  5387. }
  5388. },
  5389. laying: {
  5390. height: math.unit(6 * 0.85, "feet"),
  5391. weight: math.unit(600, "lbs"),
  5392. name: "Laying",
  5393. image: {
  5394. source: "./media/characters/surgo/laying.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(6, "feet"),
  5402. default: true
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(150, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/cibus/side.svg",
  5415. extra: 800 / 400
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(6, "feet"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5429. {
  5430. front: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(240, "lbs"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/nibbles/front.svg"
  5436. }
  5437. },
  5438. side: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(240, "lbs"),
  5441. name: "Side",
  5442. image: {
  5443. source: "./media/characters/nibbles/side.svg"
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(9, "feet"),
  5451. default: true
  5452. }
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5457. {
  5458. side: {
  5459. height: math.unit(5 + 1 / 6, "feet"),
  5460. weight: math.unit(130, "lbs"),
  5461. name: "Side",
  5462. image: {
  5463. source: "./media/characters/rikky/side.svg",
  5464. extra: 851/801
  5465. }
  5466. },
  5467. },
  5468. [
  5469. {
  5470. name: "Normal",
  5471. height: math.unit(5 + 1 / 6, "feet")
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(152, "feet"),
  5476. default: true
  5477. },
  5478. {
  5479. name: "Megamacro",
  5480. height: math.unit(7, "miles")
  5481. }
  5482. ]
  5483. ))
  5484. characterMakers.push(() => makeCharacter(
  5485. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5486. {
  5487. side: {
  5488. height: math.unit(370, "cm"),
  5489. weight: math.unit(350, "lbs"),
  5490. name: "Side",
  5491. image: {
  5492. source: "./media/characters/malfressa/side.svg"
  5493. }
  5494. },
  5495. walking: {
  5496. height: math.unit(370, "cm"),
  5497. weight: math.unit(350, "lbs"),
  5498. name: "Walking",
  5499. image: {
  5500. source: "./media/characters/malfressa/walking.svg"
  5501. }
  5502. },
  5503. feral: {
  5504. height: math.unit(2500, "cm"),
  5505. weight: math.unit(100000, "lbs"),
  5506. name: "Feral",
  5507. image: {
  5508. source: "./media/characters/malfressa/feral.svg",
  5509. extra: 2108 / 837,
  5510. bottom: 0.02
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(370, "cm")
  5518. },
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(300, "meters"),
  5522. default: true
  5523. }
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5528. {
  5529. front: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(60, "kg"),
  5532. name: "Front",
  5533. image: {
  5534. source: "./media/characters/jaro/front.svg"
  5535. }
  5536. },
  5537. back: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(60, "kg"),
  5540. name: "Back",
  5541. image: {
  5542. source: "./media/characters/jaro/back.svg"
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Micro",
  5549. height: math.unit(7, "inches")
  5550. },
  5551. {
  5552. name: "Normal",
  5553. height: math.unit(5.5, "feet"),
  5554. default: true
  5555. },
  5556. {
  5557. name: "Minimacro",
  5558. height: math.unit(20, "feet")
  5559. },
  5560. {
  5561. name: "Macro",
  5562. height: math.unit(200, "meters")
  5563. }
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(6, "feet"),
  5571. weight: math.unit(195, "lb"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/rogue/front.svg"
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(90, "feet"),
  5582. default: true
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(5 + 8 / 12, "feet"),
  5591. weight: math.unit(140, "lb"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/piper/front.svg",
  5595. extra: 3928 / 3681
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Micro",
  5602. height: math.unit(2, "inches")
  5603. },
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(5 + 8 / 12, "feet")
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(250, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(7, "miles")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5621. {
  5622. front: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(220, "lb"),
  5625. name: "Front",
  5626. image: {
  5627. source: "./media/characters/gemini/front.svg"
  5628. }
  5629. },
  5630. back: {
  5631. height: math.unit(6, "feet"),
  5632. weight: math.unit(220, "lb"),
  5633. name: "Back",
  5634. image: {
  5635. source: "./media/characters/gemini/back.svg"
  5636. }
  5637. },
  5638. kneeling: {
  5639. height: math.unit(6 / 1.5, "feet"),
  5640. weight: math.unit(220, "lb"),
  5641. name: "Kneeling",
  5642. image: {
  5643. source: "./media/characters/gemini/kneeling.svg",
  5644. bottom: 0.02
  5645. }
  5646. },
  5647. },
  5648. [
  5649. {
  5650. name: "Macro",
  5651. height: math.unit(300, "meters"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Megamacro",
  5656. height: math.unit(6900, "meters")
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5662. {
  5663. anthro: {
  5664. height: math.unit(2.35, "meters"),
  5665. weight: math.unit(73, "kg"),
  5666. name: "Anthro",
  5667. image: {
  5668. source: "./media/characters/alicia/anthro.svg",
  5669. extra: 2571 / 2385,
  5670. bottom: 75 / 2648
  5671. }
  5672. },
  5673. paw: {
  5674. height: math.unit(1.32, "feet"),
  5675. name: "Paw",
  5676. image: {
  5677. source: "./media/characters/alicia/paw.svg"
  5678. }
  5679. },
  5680. feral: {
  5681. height: math.unit(1.69, "meters"),
  5682. weight: math.unit(73, "kg"),
  5683. name: "Feral",
  5684. image: {
  5685. source: "./media/characters/alicia/feral.svg",
  5686. extra: 2123 / 1715,
  5687. bottom: 222 / 2349
  5688. }
  5689. },
  5690. },
  5691. [
  5692. {
  5693. name: "Normal",
  5694. height: math.unit(2.35, "meters")
  5695. },
  5696. {
  5697. name: "Macro",
  5698. height: math.unit(60, "meters"),
  5699. default: true
  5700. },
  5701. {
  5702. name: "Megamacro",
  5703. height: math.unit(10000, "kilometers")
  5704. },
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5709. {
  5710. front: {
  5711. height: math.unit(7, "feet"),
  5712. weight: math.unit(250, "lbs"),
  5713. name: "Front",
  5714. image: {
  5715. source: "./media/characters/archy/front.svg"
  5716. }
  5717. }
  5718. },
  5719. [
  5720. {
  5721. name: "Micro",
  5722. height: math.unit(1, "inch")
  5723. },
  5724. {
  5725. name: "Shorty",
  5726. height: math.unit(5, "feet")
  5727. },
  5728. {
  5729. name: "Normal",
  5730. height: math.unit(7, "feet")
  5731. },
  5732. {
  5733. name: "Macro",
  5734. height: math.unit(600, "meters"),
  5735. default: true
  5736. },
  5737. {
  5738. name: "Megamacro",
  5739. height: math.unit(1, "mile")
  5740. },
  5741. ]
  5742. ))
  5743. characterMakers.push(() => makeCharacter(
  5744. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5745. {
  5746. front: {
  5747. height: math.unit(1.65, "meters"),
  5748. weight: math.unit(74, "kg"),
  5749. name: "Front",
  5750. image: {
  5751. source: "./media/characters/berri/front.svg",
  5752. extra: 857 / 837,
  5753. bottom: 18 / 877
  5754. }
  5755. },
  5756. bum: {
  5757. height: math.unit(1.46, "feet"),
  5758. name: "Bum",
  5759. image: {
  5760. source: "./media/characters/berri/bum.svg"
  5761. }
  5762. },
  5763. mouth: {
  5764. height: math.unit(0.44, "feet"),
  5765. name: "Mouth",
  5766. image: {
  5767. source: "./media/characters/berri/mouth.svg"
  5768. }
  5769. },
  5770. paw: {
  5771. height: math.unit(0.826, "feet"),
  5772. name: "Paw",
  5773. image: {
  5774. source: "./media/characters/berri/paw.svg"
  5775. }
  5776. },
  5777. },
  5778. [
  5779. {
  5780. name: "Normal",
  5781. height: math.unit(1.65, "meters")
  5782. },
  5783. {
  5784. name: "Macro",
  5785. height: math.unit(60, "m"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Megamacro",
  5790. height: math.unit(9.213, "km")
  5791. },
  5792. {
  5793. name: "Planet Eater",
  5794. height: math.unit(489, "megameters")
  5795. },
  5796. {
  5797. name: "Teramacro",
  5798. height: math.unit(2471635000000, "meters")
  5799. },
  5800. {
  5801. name: "Examacro",
  5802. height: math.unit(8.0624e+26, "meters")
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(1.72, "meters"),
  5811. weight: math.unit(68, "kg"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/lexi/front.svg"
  5815. }
  5816. }
  5817. },
  5818. [
  5819. {
  5820. name: "Very Smol",
  5821. height: math.unit(10, "mm")
  5822. },
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(6.8, "cm"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(1.72, "m")
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(1.69, "meters"),
  5839. weight: math.unit(68, "kg"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/martin/front.svg",
  5843. extra: 596 / 581
  5844. }
  5845. }
  5846. },
  5847. [
  5848. {
  5849. name: "Micro",
  5850. height: math.unit(6.85, "cm"),
  5851. default: true
  5852. },
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(1.69, "m")
  5856. }
  5857. ]
  5858. ))
  5859. characterMakers.push(() => makeCharacter(
  5860. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5861. {
  5862. front: {
  5863. height: math.unit(1.69, "meters"),
  5864. weight: math.unit(68, "kg"),
  5865. name: "Front",
  5866. image: {
  5867. source: "./media/characters/juno/front.svg"
  5868. }
  5869. }
  5870. },
  5871. [
  5872. {
  5873. name: "Micro",
  5874. height: math.unit(7, "cm")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(1.89, "m")
  5879. },
  5880. {
  5881. name: "Macro",
  5882. height: math.unit(353, "meters"),
  5883. default: true
  5884. }
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5889. {
  5890. front: {
  5891. height: math.unit(1.93, "meters"),
  5892. weight: math.unit(83, "kg"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/samantha/front.svg"
  5896. }
  5897. },
  5898. frontClothed: {
  5899. height: math.unit(1.93, "meters"),
  5900. weight: math.unit(83, "kg"),
  5901. name: "Front (Clothed)",
  5902. image: {
  5903. source: "./media/characters/samantha/front-clothed.svg"
  5904. }
  5905. },
  5906. back: {
  5907. height: math.unit(1.93, "meters"),
  5908. weight: math.unit(83, "kg"),
  5909. name: "Back",
  5910. image: {
  5911. source: "./media/characters/samantha/back.svg"
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(1.93, "m")
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(74, "meters"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Macro+",
  5927. height: math.unit(223, "meters"),
  5928. },
  5929. {
  5930. name: "Megamacro",
  5931. height: math.unit(8381, "meters"),
  5932. },
  5933. {
  5934. name: "Megamacro+",
  5935. height: math.unit(12000, "kilometers")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(1.92, "meters"),
  5944. weight: math.unit(80, "kg"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/dr-clay/front.svg"
  5948. }
  5949. },
  5950. frontClothed: {
  5951. height: math.unit(1.92, "meters"),
  5952. weight: math.unit(80, "kg"),
  5953. name: "Front (Clothed)",
  5954. image: {
  5955. source: "./media/characters/dr-clay/front-clothed.svg"
  5956. }
  5957. }
  5958. },
  5959. [
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(1.92, "m")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(214, "meters"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Macro+",
  5971. height: math.unit(12.237, "meters"),
  5972. },
  5973. {
  5974. name: "Megamacro",
  5975. height: math.unit(557, "megameters"),
  5976. },
  5977. {
  5978. name: "Unimaginable",
  5979. height: math.unit(120e9, "lightyears")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(2, "meters"),
  5988. weight: math.unit(80, "kg"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5992. }
  5993. }
  5994. },
  5995. [
  5996. {
  5997. name: "Teramacro",
  5998. height: math.unit(500000, "lightyears"),
  5999. default: true
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(2, "meters"),
  6008. weight: math.unit(150, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/vemus/front.svg",
  6012. extra: 2384 / 2084,
  6013. bottom: 0.0123
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(3.75, "meters"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Big",
  6025. height: math.unit(8, "meters")
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(100, "meters")
  6030. },
  6031. {
  6032. name: "Macro+",
  6033. height: math.unit(1500, "meters")
  6034. },
  6035. {
  6036. name: "Stellar",
  6037. height: math.unit(14e8, "meters")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(2, "meters"),
  6046. weight: math.unit(70, "kg"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/beherit/front.svg",
  6050. extra: 1408 / 1242
  6051. }
  6052. }
  6053. },
  6054. [
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(6, "feet")
  6058. },
  6059. {
  6060. name: "Lorg",
  6061. height: math.unit(25, "feet"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Lorger",
  6066. height: math.unit(75, "feet")
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(200, "meters")
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(2, "meters"),
  6079. weight: math.unit(150, "kg"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/everett/front.svg",
  6083. extra: 2038 / 1737,
  6084. bottom: 0.03
  6085. }
  6086. },
  6087. paw: {
  6088. height: math.unit(2 / 3.6, "meters"),
  6089. name: "Paw",
  6090. image: {
  6091. source: "./media/characters/everett/paw.svg"
  6092. }
  6093. },
  6094. },
  6095. [
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(15, "feet"),
  6099. default: true
  6100. },
  6101. {
  6102. name: "Lorg",
  6103. height: math.unit(70, "feet"),
  6104. default: true
  6105. },
  6106. {
  6107. name: "Lorger",
  6108. height: math.unit(250, "feet")
  6109. },
  6110. {
  6111. name: "Macro",
  6112. height: math.unit(500, "meters")
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6118. {
  6119. front: {
  6120. height: math.unit(2, "meters"),
  6121. weight: math.unit(86, "kg"),
  6122. name: "Front",
  6123. image: {
  6124. source: "./media/characters/rose-lion/front.svg"
  6125. }
  6126. },
  6127. bent: {
  6128. height: math.unit(2 / 1.4288, "meters"),
  6129. weight: math.unit(86, "kg"),
  6130. name: "Bent",
  6131. image: {
  6132. source: "./media/characters/rose-lion/bent.svg"
  6133. }
  6134. }
  6135. },
  6136. [
  6137. {
  6138. name: "Mini-Micro",
  6139. height: math.unit(1, "cm")
  6140. },
  6141. {
  6142. name: "Micro",
  6143. height: math.unit(3.5, "inches"),
  6144. default: true
  6145. },
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6 + 1 / 6, "feet")
  6149. },
  6150. {
  6151. name: "Mini-Macro",
  6152. height: math.unit(9 + 10 / 12, "feet")
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(2, "meters"),
  6161. weight: math.unit(350, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/regal/front.svg"
  6165. }
  6166. },
  6167. back: {
  6168. height: math.unit(2, "meters"),
  6169. weight: math.unit(350, "lbs"),
  6170. name: "Back",
  6171. image: {
  6172. source: "./media/characters/regal/back.svg"
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(350, "feet"),
  6180. default: true
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(4 + 11 / 12, "feet"),
  6189. weight: math.unit(100, "lbs"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/opal/front.svg"
  6193. }
  6194. },
  6195. frontAlt: {
  6196. height: math.unit(4 + 11 / 12, "feet"),
  6197. weight: math.unit(100, "lbs"),
  6198. name: "Front (Alt)",
  6199. image: {
  6200. source: "./media/characters/opal/front-alt.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Small",
  6207. height: math.unit(4 + 11 / 12, "feet")
  6208. },
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(20, "feet"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(120, "feet")
  6217. },
  6218. {
  6219. name: "Megamacro",
  6220. height: math.unit(80, "miles")
  6221. },
  6222. {
  6223. name: "True Size",
  6224. height: math.unit(100000, "lightyears")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(200, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/vector-wuff/front.svg"
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(2.8, "meters")
  6244. },
  6245. {
  6246. name: "Macro",
  6247. height: math.unit(450, "meters"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Megamacro",
  6252. height: math.unit(15, "kilometers")
  6253. }
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(256, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/dannik/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Macro",
  6271. height: math.unit(69.57, "meters"),
  6272. default: true
  6273. },
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(120, "lbs"),
  6282. name: "Front",
  6283. image: {
  6284. source: "./media/characters/azura-saharah/front.svg"
  6285. }
  6286. },
  6287. back: {
  6288. height: math.unit(6, "feet"),
  6289. weight: math.unit(120, "lbs"),
  6290. name: "Back",
  6291. image: {
  6292. source: "./media/characters/azura-saharah/back.svg"
  6293. }
  6294. },
  6295. },
  6296. [
  6297. {
  6298. name: "Macro",
  6299. height: math.unit(100, "feet"),
  6300. default: true
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6306. {
  6307. side: {
  6308. height: math.unit(5 + 4 / 12, "feet"),
  6309. weight: math.unit(163, "lbs"),
  6310. name: "Side",
  6311. image: {
  6312. source: "./media/characters/kennedy/side.svg"
  6313. }
  6314. }
  6315. },
  6316. [
  6317. {
  6318. name: "Standard Doggo",
  6319. height: math.unit(5 + 4 / 12, "feet")
  6320. },
  6321. {
  6322. name: "Big Doggo",
  6323. height: math.unit(25 + 3 / 12, "feet"),
  6324. default: true
  6325. },
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6330. {
  6331. front: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(90, "lbs"),
  6334. name: "Front",
  6335. image: {
  6336. source: "./media/characters/odi-lunar/front.svg"
  6337. }
  6338. }
  6339. },
  6340. [
  6341. {
  6342. name: "Micro",
  6343. height: math.unit(3, "inches"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(5.5, "feet")
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6354. {
  6355. back: {
  6356. height: math.unit(6, "feet"),
  6357. weight: math.unit(220, "lbs"),
  6358. name: "Back",
  6359. image: {
  6360. source: "./media/characters/mandake/back.svg"
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(7, "feet"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(78, "feet")
  6373. },
  6374. {
  6375. name: "Macro+",
  6376. height: math.unit(300, "meters")
  6377. },
  6378. {
  6379. name: "Macro++",
  6380. height: math.unit(2400, "feet")
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(5167, "meters")
  6385. },
  6386. {
  6387. name: "Gigamacro",
  6388. height: math.unit(41769, "miles")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(120, "lbs"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/yozey/front.svg"
  6401. }
  6402. },
  6403. frontAlt: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(120, "lbs"),
  6406. name: "Front (Alt)",
  6407. image: {
  6408. source: "./media/characters/yozey/front-alt.svg"
  6409. }
  6410. },
  6411. side: {
  6412. height: math.unit(6, "feet"),
  6413. weight: math.unit(120, "lbs"),
  6414. name: "Side",
  6415. image: {
  6416. source: "./media/characters/yozey/side.svg"
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Micro",
  6423. height: math.unit(3, "inches"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(6, "feet")
  6429. }
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6434. {
  6435. front: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(103, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/valeska-voss/front.svg"
  6441. }
  6442. }
  6443. },
  6444. [
  6445. {
  6446. name: "Mini-Sized Sub",
  6447. height: math.unit(3.1, "inches")
  6448. },
  6449. {
  6450. name: "Mid-Sized Sub",
  6451. height: math.unit(6.2, "inches")
  6452. },
  6453. {
  6454. name: "Full-Sized Sub",
  6455. height: math.unit(9.3, "inches")
  6456. },
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(5 + 2 / 12, "foot"),
  6460. default: true
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(160, "lbs"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/gene-zeta/front.svg",
  6473. bottom: 0.03,
  6474. extra: 1
  6475. }
  6476. }
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(6.25, "foot"),
  6482. default: true
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(6, "feet"),
  6491. weight: math.unit(350, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/razinox/front.svg",
  6495. extra: 1686 / 1548,
  6496. bottom: 28.2 / 1868
  6497. }
  6498. },
  6499. back: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(350, "lbs"),
  6502. name: "Back",
  6503. image: {
  6504. source: "./media/characters/razinox/back.svg",
  6505. extra: 1660 / 1590,
  6506. bottom: 15 / 1665
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(10 + 8 / 12, "foot")
  6514. },
  6515. {
  6516. name: "Minimacro",
  6517. height: math.unit(15, "foot")
  6518. },
  6519. {
  6520. name: "Macro",
  6521. height: math.unit(60, "foot"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Megamacro",
  6526. height: math.unit(5, "miles")
  6527. },
  6528. {
  6529. name: "Gigamacro",
  6530. height: math.unit(6000, "miles")
  6531. },
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(6, "feet"),
  6539. weight: math.unit(150, "lbs"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/cobalt/front.svg"
  6543. }
  6544. }
  6545. },
  6546. [
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(8 + 1 / 12, "foot")
  6550. },
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(111, "foot"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Supracosmic",
  6558. height: math.unit(1e42, "feet")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(140, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/amanda/front.svg"
  6571. }
  6572. }
  6573. },
  6574. [
  6575. {
  6576. name: "Micro",
  6577. height: math.unit(5, "inches"),
  6578. default: true
  6579. },
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(5.59, "feet"),
  6587. weight: math.unit(250, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/teal/front.svg"
  6591. }
  6592. },
  6593. frontAlt: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(250, "lbs"),
  6596. name: "Front (Alt)",
  6597. image: {
  6598. source: "./media/characters/teal/front-alt.svg",
  6599. bottom: 0.04,
  6600. extra: 1
  6601. }
  6602. },
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(12, "feet"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(300, "feet")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6618. {
  6619. frontCat: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(180, "lbs"),
  6622. name: "Front (Cat)",
  6623. image: {
  6624. source: "./media/characters/ravin-amulet/front-cat.svg"
  6625. }
  6626. },
  6627. frontCatAlt: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(180, "lbs"),
  6630. name: "Front (Alt, Cat)",
  6631. image: {
  6632. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6633. }
  6634. },
  6635. frontWerewolf: {
  6636. height: math.unit(6 * 1.2, "feet"),
  6637. weight: math.unit(225, "lbs"),
  6638. name: "Front (Werewolf)",
  6639. image: {
  6640. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6641. }
  6642. },
  6643. backWerewolf: {
  6644. height: math.unit(6 * 1.2, "feet"),
  6645. weight: math.unit(225, "lbs"),
  6646. name: "Back (Werewolf)",
  6647. image: {
  6648. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Nano",
  6655. height: math.unit(1, "micrometer")
  6656. },
  6657. {
  6658. name: "Micro",
  6659. height: math.unit(1, "inch")
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(6, "feet"),
  6664. default: true
  6665. },
  6666. {
  6667. name: "Macro",
  6668. height: math.unit(60, "feet")
  6669. }
  6670. ]
  6671. ))
  6672. characterMakers.push(() => makeCharacter(
  6673. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6674. {
  6675. front: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(165, "lbs"),
  6678. name: "Front",
  6679. image: {
  6680. source: "./media/characters/fluoresce/front.svg"
  6681. }
  6682. }
  6683. },
  6684. [
  6685. {
  6686. name: "Micro",
  6687. height: math.unit(6, "cm")
  6688. },
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(5 + 7 / 12, "feet"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Macro",
  6696. height: math.unit(56, "feet")
  6697. },
  6698. {
  6699. name: "Megamacro",
  6700. height: math.unit(1.9, "miles")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(9 + 6 / 12, "feet"),
  6709. weight: math.unit(523, "lbs"),
  6710. name: "Side",
  6711. image: {
  6712. source: "./media/characters/aurora/side.svg"
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(9 + 6 / 12, "feet")
  6720. },
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(96, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Macro+",
  6728. height: math.unit(243, "feet")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6734. {
  6735. front: {
  6736. height: math.unit(194, "cm"),
  6737. weight: math.unit(90, "kg"),
  6738. name: "Front",
  6739. image: {
  6740. source: "./media/characters/ranek/front.svg"
  6741. }
  6742. },
  6743. side: {
  6744. height: math.unit(194, "cm"),
  6745. weight: math.unit(90, "kg"),
  6746. name: "Side",
  6747. image: {
  6748. source: "./media/characters/ranek/side.svg"
  6749. }
  6750. },
  6751. back: {
  6752. height: math.unit(194, "cm"),
  6753. weight: math.unit(90, "kg"),
  6754. name: "Back",
  6755. image: {
  6756. source: "./media/characters/ranek/back.svg"
  6757. }
  6758. },
  6759. feral: {
  6760. height: math.unit(30, "cm"),
  6761. weight: math.unit(1.6, "lbs"),
  6762. name: "Feral",
  6763. image: {
  6764. source: "./media/characters/ranek/feral.svg"
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(194, "cm"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Macro",
  6776. height: math.unit(100, "meters")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(5 + 6 / 12, "feet"),
  6785. weight: math.unit(153, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/andrew-cooper/front.svg"
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Nano",
  6795. height: math.unit(1, "mm")
  6796. },
  6797. {
  6798. name: "Micro",
  6799. height: math.unit(2, "inches")
  6800. },
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(5 + 6 / 12, "feet"),
  6804. default: true
  6805. }
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(180, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/akane-sato/front.svg",
  6817. extra: 1219 / 1140
  6818. }
  6819. },
  6820. back: {
  6821. height: math.unit(6, "feet"),
  6822. weight: math.unit(180, "lbs"),
  6823. name: "Back",
  6824. image: {
  6825. source: "./media/characters/akane-sato/back.svg",
  6826. extra: 1219 / 1170
  6827. }
  6828. },
  6829. },
  6830. [
  6831. {
  6832. name: "Normal",
  6833. height: math.unit(2.5, "meters")
  6834. },
  6835. {
  6836. name: "Macro",
  6837. height: math.unit(250, "meters"),
  6838. default: true
  6839. },
  6840. {
  6841. name: "Megamacro",
  6842. height: math.unit(25, "km")
  6843. },
  6844. ]
  6845. ))
  6846. characterMakers.push(() => makeCharacter(
  6847. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6848. {
  6849. front: {
  6850. height: math.unit(6, "feet"),
  6851. weight: math.unit(65, "kg"),
  6852. name: "Front",
  6853. image: {
  6854. source: "./media/characters/rook/front.svg",
  6855. extra: 960 / 950
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(8.8, "feet")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(88, "feet"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Megamacro",
  6871. height: math.unit(8, "miles")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(12 + 2 / 12, "feet"),
  6880. weight: math.unit(808, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/prodigy/front.svg"
  6884. }
  6885. }
  6886. },
  6887. [
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(12 + 2 / 12, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(143, "feet")
  6896. },
  6897. {
  6898. name: "Macro+",
  6899. height: math.unit(400, "feet")
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(225, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/daniel/front.svg"
  6912. }
  6913. },
  6914. leaning: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(225, "lbs"),
  6917. name: "Leaning",
  6918. image: {
  6919. source: "./media/characters/daniel/leaning.svg"
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(1000, "feet"),
  6927. default: true
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(88, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/chiros/front.svg",
  6940. extra: 306 / 226
  6941. }
  6942. },
  6943. side: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(88, "lbs"),
  6946. name: "Side",
  6947. image: {
  6948. source: "./media/characters/chiros/side.svg",
  6949. extra: 306 / 226
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Normal",
  6956. height: math.unit(6, "cm"),
  6957. default: true
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6963. {
  6964. front: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(100, "lbs"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/selka/front.svg",
  6970. extra: 947 / 887
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(5, "cm"),
  6978. default: true
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(8 + 3 / 12, "feet"),
  6987. weight: math.unit(424, "lbs"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/verin/front.svg",
  6991. extra: 1845 / 1550
  6992. }
  6993. },
  6994. frontArmored: {
  6995. height: math.unit(8 + 3 / 12, "feet"),
  6996. weight: math.unit(424, "lbs"),
  6997. name: "Front (Armored)",
  6998. image: {
  6999. source: "./media/characters/verin/front-armor.svg",
  7000. extra: 1845 / 1550,
  7001. bottom: 0.01
  7002. }
  7003. },
  7004. back: {
  7005. height: math.unit(8 + 3 / 12, "feet"),
  7006. weight: math.unit(424, "lbs"),
  7007. name: "Back",
  7008. image: {
  7009. source: "./media/characters/verin/back.svg",
  7010. bottom: 0.1,
  7011. extra: 1
  7012. }
  7013. },
  7014. foot: {
  7015. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7016. name: "Foot",
  7017. image: {
  7018. source: "./media/characters/verin/foot.svg"
  7019. }
  7020. },
  7021. },
  7022. [
  7023. {
  7024. name: "Normal",
  7025. height: math.unit(8 + 3 / 12, "feet")
  7026. },
  7027. {
  7028. name: "Minimacro",
  7029. height: math.unit(21, "feet"),
  7030. default: true
  7031. },
  7032. {
  7033. name: "Macro",
  7034. height: math.unit(626, "feet")
  7035. },
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(2.718, "meters"),
  7043. weight: math.unit(150, "lbs"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/sovrim-terraquian/front.svg"
  7047. }
  7048. },
  7049. back: {
  7050. height: math.unit(2.718, "meters"),
  7051. weight: math.unit(150, "lbs"),
  7052. name: "Back",
  7053. image: {
  7054. source: "./media/characters/sovrim-terraquian/back.svg"
  7055. }
  7056. }
  7057. },
  7058. [
  7059. {
  7060. name: "Micro",
  7061. height: math.unit(2, "inches")
  7062. },
  7063. {
  7064. name: "Small",
  7065. height: math.unit(1, "meter")
  7066. },
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(Math.E, "meters"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Macro",
  7074. height: math.unit(20, "meters")
  7075. },
  7076. {
  7077. name: "Macro+",
  7078. height: math.unit(400, "meters")
  7079. },
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(7, "feet"),
  7087. weight: math.unit(489, "lbs"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/reece-silvermane/front.svg",
  7091. bottom: 0.02,
  7092. extra: 1
  7093. }
  7094. },
  7095. },
  7096. [
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(1.5, "miles"),
  7100. default: true
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(6, "feet"),
  7109. weight: math.unit(78, "kg"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/kane/front.svg",
  7113. extra: 978 / 899
  7114. }
  7115. },
  7116. },
  7117. [
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(2.1, "m"),
  7121. },
  7122. {
  7123. name: "Macro",
  7124. height: math.unit(1, "km"),
  7125. default: true
  7126. },
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7131. {
  7132. front: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(200, "kg"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/tegon/front.svg",
  7138. bottom: 0.01,
  7139. extra: 1
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Micro",
  7146. height: math.unit(1, "inch")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(6 + 3 / 12, "feet"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(300, "feet")
  7156. },
  7157. {
  7158. name: "Megamacro",
  7159. height: math.unit(69, "miles")
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7165. {
  7166. side: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(2304, "lbs"),
  7169. name: "Side",
  7170. image: {
  7171. source: "./media/characters/arcturax/side.svg",
  7172. extra: 790 / 376,
  7173. bottom: 0.01
  7174. }
  7175. },
  7176. },
  7177. [
  7178. {
  7179. name: "Micro",
  7180. height: math.unit(2, "inch")
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(6, "feet")
  7185. },
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(39, "feet"),
  7189. default: true
  7190. },
  7191. {
  7192. name: "Megamacro",
  7193. height: math.unit(7, "miles")
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7199. {
  7200. front: {
  7201. height: math.unit(6, "feet"),
  7202. weight: math.unit(50, "lbs"),
  7203. name: "Front",
  7204. image: {
  7205. source: "./media/characters/sentri/front.svg",
  7206. extra: 1750 / 1570,
  7207. bottom: 0.025
  7208. }
  7209. },
  7210. frontAlt: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(50, "lbs"),
  7213. name: "Front (Alt)",
  7214. image: {
  7215. source: "./media/characters/sentri/front-alt.svg",
  7216. extra: 1750 / 1570,
  7217. bottom: 0.025
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(15, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(2500, "feet")
  7230. }
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(5 + 8 / 12, "feet"),
  7238. weight: math.unit(130, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/corvin/front.svg",
  7242. extra: 1803 / 1629
  7243. }
  7244. },
  7245. frontShirt: {
  7246. height: math.unit(5 + 8 / 12, "feet"),
  7247. weight: math.unit(130, "lbs"),
  7248. name: "Front (Shirt)",
  7249. image: {
  7250. source: "./media/characters/corvin/front-shirt.svg",
  7251. extra: 1803 / 1629
  7252. }
  7253. },
  7254. frontPoncho: {
  7255. height: math.unit(5 + 8 / 12, "feet"),
  7256. weight: math.unit(130, "lbs"),
  7257. name: "Front (Poncho)",
  7258. image: {
  7259. source: "./media/characters/corvin/front-poncho.svg",
  7260. extra: 1803 / 1629
  7261. }
  7262. },
  7263. side: {
  7264. height: math.unit(5 + 8 / 12, "feet"),
  7265. weight: math.unit(130, "lbs"),
  7266. name: "Side",
  7267. image: {
  7268. source: "./media/characters/corvin/side.svg",
  7269. extra: 1012 / 945
  7270. }
  7271. },
  7272. back: {
  7273. height: math.unit(5 + 8 / 12, "feet"),
  7274. weight: math.unit(130, "lbs"),
  7275. name: "Back",
  7276. image: {
  7277. source: "./media/characters/corvin/back.svg",
  7278. extra: 1803 / 1629
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(3, "inches")
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(5 + 8 / 12, "feet")
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(300, "feet"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(500, "miles")
  7299. }
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(135, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/q/front.svg",
  7311. extra: 854 / 752,
  7312. bottom: 0.005
  7313. }
  7314. },
  7315. back: {
  7316. height: math.unit(6, "feet"),
  7317. weight: math.unit(130, "lbs"),
  7318. name: "Back",
  7319. image: {
  7320. source: "./media/characters/q/back.svg",
  7321. extra: 854 / 752
  7322. }
  7323. },
  7324. },
  7325. [
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(90, "feet"),
  7329. default: true
  7330. },
  7331. {
  7332. name: "Extra Macro",
  7333. height: math.unit(300, "feet"),
  7334. },
  7335. {
  7336. name: "BIG WALF",
  7337. height: math.unit(750, "feet"),
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(6, "feet"),
  7346. weight: math.unit(150, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/carley/front.svg",
  7350. extra: 3927 / 3540,
  7351. bottom: 29.2/735
  7352. }
  7353. }
  7354. },
  7355. [
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(6 + 3 / 12, "feet")
  7359. },
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(185, "feet"),
  7363. default: true
  7364. },
  7365. {
  7366. name: "Megamacro",
  7367. height: math.unit(8, "miles"),
  7368. },
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(3, "feet"),
  7376. weight: math.unit(28, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/citrine/front.svg"
  7380. }
  7381. }
  7382. },
  7383. [
  7384. {
  7385. name: "Normal",
  7386. height: math.unit(3, "feet"),
  7387. default: true
  7388. }
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7393. {
  7394. front: {
  7395. height: math.unit(14, "feet"),
  7396. weight: math.unit(1450, "kg"),
  7397. capacity: math.unit(15, "people"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/aura-starwind/front.svg",
  7401. extra: 1455 / 1335
  7402. }
  7403. },
  7404. side: {
  7405. height: math.unit(14, "feet"),
  7406. weight: math.unit(1450, "kg"),
  7407. capacity: math.unit(15, "people"),
  7408. name: "Side",
  7409. image: {
  7410. source: "./media/characters/aura-starwind/side.svg",
  7411. extra: 1654 / 1497
  7412. }
  7413. },
  7414. taur: {
  7415. height: math.unit(18, "feet"),
  7416. weight: math.unit(5500, "kg"),
  7417. capacity: math.unit(50, "people"),
  7418. name: "Taur",
  7419. image: {
  7420. source: "./media/characters/aura-starwind/taur.svg",
  7421. extra: 1760 / 1650
  7422. }
  7423. },
  7424. feral: {
  7425. height: math.unit(46, "feet"),
  7426. weight: math.unit(25000, "kg"),
  7427. capacity: math.unit(120, "people"),
  7428. name: "Feral",
  7429. image: {
  7430. source: "./media/characters/aura-starwind/feral.svg"
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(14, "feet"),
  7438. default: true
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(50, "meters")
  7443. },
  7444. {
  7445. name: "Megamacro",
  7446. height: math.unit(5000, "meters")
  7447. },
  7448. {
  7449. name: "Gigamacro",
  7450. height: math.unit(100000, "kilometers")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(2 + 7 / 12, "feet"),
  7459. weight: math.unit(32, "lbs"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/rivet/front.svg",
  7463. extra: 1716 / 1658,
  7464. bottom: 0.03
  7465. }
  7466. },
  7467. foot: {
  7468. height: math.unit(0.551, "feet"),
  7469. name: "Rivet's Foot",
  7470. image: {
  7471. source: "./media/characters/rivet/foot.svg"
  7472. },
  7473. rename: true
  7474. }
  7475. },
  7476. [
  7477. {
  7478. name: "Micro",
  7479. height: math.unit(1.5, "inches"),
  7480. },
  7481. {
  7482. name: "Normal",
  7483. height: math.unit(2 + 7 / 12, "feet"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Macro",
  7488. height: math.unit(85, "feet")
  7489. },
  7490. {
  7491. name: "Megamacro",
  7492. height: math.unit(2.2, "km")
  7493. }
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7498. {
  7499. front: {
  7500. height: math.unit(5 + 9 / 12, "feet"),
  7501. weight: math.unit(150, "lbs"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/coffee/front.svg",
  7505. extra: 3666 / 3032,
  7506. bottom: 0.04
  7507. }
  7508. },
  7509. foot: {
  7510. height: math.unit(1.29, "feet"),
  7511. name: "Foot",
  7512. image: {
  7513. source: "./media/characters/coffee/foot.svg"
  7514. }
  7515. },
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(2, "inches"),
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5 + 9 / 12, "feet"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(800, "feet")
  7530. },
  7531. {
  7532. name: "Megamacro",
  7533. height: math.unit(25, "miles")
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(200, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/chari-gal/front.svg",
  7546. extra: 1568 / 1385,
  7547. bottom: 0.047
  7548. }
  7549. },
  7550. gigantamax: {
  7551. height: math.unit(6 * 16, "feet"),
  7552. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7553. name: "Gigantamax",
  7554. image: {
  7555. source: "./media/characters/chari-gal/gigantamax.svg",
  7556. extra: 1124 / 888,
  7557. bottom: 0.03
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 7 / 12, "feet")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(200, "feet"),
  7569. default: true
  7570. }
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(150, "lbs"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/nova/front.svg",
  7582. extra: 5000 / 4722,
  7583. bottom: 0.02
  7584. }
  7585. }
  7586. },
  7587. [
  7588. {
  7589. name: "Micro-",
  7590. height: math.unit(0.8, "inches")
  7591. },
  7592. {
  7593. name: "Micro",
  7594. height: math.unit(2, "inches"),
  7595. default: true
  7596. },
  7597. ]
  7598. ))
  7599. characterMakers.push(() => makeCharacter(
  7600. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7601. {
  7602. front: {
  7603. height: math.unit(3 + 1 / 12, "feet"),
  7604. weight: math.unit(21.7, "lbs"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/argent/front.svg",
  7608. extra: 1471 / 1331,
  7609. bottom: 100.8 / 1575.5
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Micro",
  7616. height: math.unit(2, "inches")
  7617. },
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(3 + 1 / 12, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(120, "feet")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7631. {
  7632. lamp: {
  7633. height: math.unit(7 * 1559 / 989, "feet"),
  7634. name: "Magic Lamp",
  7635. image: {
  7636. source: "./media/characters/mira-al-cul/lamp.svg",
  7637. extra: 1617 / 1559
  7638. }
  7639. },
  7640. front: {
  7641. height: math.unit(7, "feet"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/mira-al-cul/front.svg",
  7645. extra: 1044 / 990
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Heavily Restricted",
  7652. height: math.unit(7 * 1559 / 989, "feet")
  7653. },
  7654. {
  7655. name: "Freshly Freed",
  7656. height: math.unit(50 * 1559 / 989, "feet")
  7657. },
  7658. {
  7659. name: "World Encompassing",
  7660. height: math.unit(10000 * 1559 / 989, "miles")
  7661. },
  7662. {
  7663. name: "Galactic",
  7664. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7665. },
  7666. {
  7667. name: "Palmed Universe",
  7668. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Multiversal Matriarch",
  7673. height: math.unit(8.87e10, "yottameters")
  7674. },
  7675. {
  7676. name: "Void Mother",
  7677. height: math.unit(3.14e110, "yottaparsecs")
  7678. },
  7679. {
  7680. name: "Toying with Transcendence",
  7681. height: math.unit(1e307, "meters")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7687. {
  7688. front: {
  7689. height: math.unit(17 + 1 / 12, "feet"),
  7690. weight: math.unit(476.2 * 5, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/kuro-shi-uchū/front.svg",
  7694. extra: 2329 / 1835,
  7695. bottom: 0.02
  7696. }
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "Micro",
  7702. height: math.unit(2, "inches")
  7703. },
  7704. {
  7705. name: "Normal",
  7706. height: math.unit(12, "meters")
  7707. },
  7708. {
  7709. name: "Planetary",
  7710. height: math.unit(0.00929, "AU"),
  7711. default: true
  7712. },
  7713. {
  7714. name: "Universal",
  7715. height: math.unit(20, "gigaparsecs")
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(5 + 2 / 12, "feet"),
  7724. weight: math.unit(120, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/katherine/front.svg",
  7728. extra: 2075 / 1969
  7729. }
  7730. },
  7731. dress: {
  7732. height: math.unit(5 + 2 / 12, "feet"),
  7733. weight: math.unit(120, "lbs"),
  7734. name: "Dress",
  7735. image: {
  7736. source: "./media/characters/katherine/dress.svg",
  7737. extra: 2258 / 2064
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Micro",
  7744. height: math.unit(1, "inches"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(5 + 2 / 12, "feet")
  7750. },
  7751. {
  7752. name: "Macro",
  7753. height: math.unit(100, "meters")
  7754. },
  7755. {
  7756. name: "Megamacro",
  7757. height: math.unit(80, "miles")
  7758. },
  7759. ]
  7760. ))
  7761. characterMakers.push(() => makeCharacter(
  7762. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7763. {
  7764. front: {
  7765. height: math.unit(7 + 8 / 12, "feet"),
  7766. weight: math.unit(250, "lbs"),
  7767. name: "Front",
  7768. image: {
  7769. source: "./media/characters/yevis/front.svg",
  7770. extra: 1938 / 1755
  7771. }
  7772. }
  7773. },
  7774. [
  7775. {
  7776. name: "Mortal",
  7777. height: math.unit(7 + 8 / 12, "feet")
  7778. },
  7779. {
  7780. name: "Battle",
  7781. height: math.unit(25 + 11 / 12, "feet")
  7782. },
  7783. {
  7784. name: "Wrath",
  7785. height: math.unit(1654 + 11 / 12, "feet")
  7786. },
  7787. {
  7788. name: "Planet Destroyer",
  7789. height: math.unit(12000, "miles")
  7790. },
  7791. {
  7792. name: "Galaxy Conqueror",
  7793. height: math.unit(1.45, "zettameters"),
  7794. default: true
  7795. },
  7796. {
  7797. name: "Universal War",
  7798. height: math.unit(184, "gigaparsecs")
  7799. },
  7800. {
  7801. name: "Eternity War",
  7802. height: math.unit(1.98e55, "yottaparsecs")
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7808. {
  7809. front: {
  7810. height: math.unit(5 + 8 / 12, "feet"),
  7811. weight: math.unit(63, "kg"),
  7812. name: "Front",
  7813. image: {
  7814. source: "./media/characters/xavier/front.svg",
  7815. extra: 944 / 883
  7816. }
  7817. },
  7818. frontStretch: {
  7819. height: math.unit(5 + 8 / 12, "feet"),
  7820. weight: math.unit(63, "kg"),
  7821. name: "Stretching",
  7822. image: {
  7823. source: "./media/characters/xavier/front-stretch.svg",
  7824. extra: 962 / 820
  7825. }
  7826. },
  7827. },
  7828. [
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(5 + 8 / 12, "feet")
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(100, "meters"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "McLargeHuge",
  7840. height: math.unit(10, "miles")
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(5 + 5 / 12, "feet"),
  7849. weight: math.unit(150, "lb"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/joshii/front.svg"
  7853. }
  7854. },
  7855. foot: {
  7856. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7857. name: "Foot",
  7858. image: {
  7859. source: "./media/characters/joshii/foot.svg"
  7860. }
  7861. },
  7862. },
  7863. [
  7864. {
  7865. name: "Micro",
  7866. height: math.unit(2, "inches")
  7867. },
  7868. {
  7869. name: "Normal",
  7870. height: math.unit(5 + 5 / 12, "feet"),
  7871. default: true
  7872. },
  7873. {
  7874. name: "Macro",
  7875. height: math.unit(785, "feet")
  7876. },
  7877. {
  7878. name: "Megamacro",
  7879. height: math.unit(24.5, "miles")
  7880. },
  7881. ]
  7882. ))
  7883. characterMakers.push(() => makeCharacter(
  7884. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7885. {
  7886. front: {
  7887. height: math.unit(6, "feet"),
  7888. weight: math.unit(150, "lb"),
  7889. name: "Front",
  7890. image: {
  7891. source: "./media/characters/goddess-elizabeth/front.svg",
  7892. extra: 1800 / 1525,
  7893. bottom: 0.005
  7894. }
  7895. },
  7896. foot: {
  7897. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7898. name: "Foot",
  7899. image: {
  7900. source: "./media/characters/goddess-elizabeth/foot.svg"
  7901. }
  7902. },
  7903. mouth: {
  7904. height: math.unit(6, "feet"),
  7905. name: "Mouth",
  7906. image: {
  7907. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Micro",
  7914. height: math.unit(12, "feet")
  7915. },
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(80, "miles"),
  7919. default: true
  7920. },
  7921. {
  7922. name: "Macro",
  7923. height: math.unit(15000, "parsecs")
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(5 + 9 / 12, "feet"),
  7932. weight: math.unit(144, "lb"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/kara/front.svg"
  7936. }
  7937. },
  7938. feet: {
  7939. height: math.unit(6 / 6.765, "feet"),
  7940. name: "Kara's Feet",
  7941. rename: true,
  7942. image: {
  7943. source: "./media/characters/kara/feet.svg"
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(5 + 9 / 12, "feet")
  7951. },
  7952. {
  7953. name: "Macro",
  7954. height: math.unit(174, "feet"),
  7955. default: true
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(18, "feet"),
  7964. weight: math.unit(4050, "lb"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/tyrone/front.svg",
  7968. extra: 2520 / 2402,
  7969. bottom: 0.025
  7970. }
  7971. },
  7972. },
  7973. [
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(18, "feet"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(300, "feet")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(7 + 8 / 12, "feet"),
  7990. weight: math.unit(120, "lb"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/danny/front.svg",
  7994. extra: 1490 / 1350
  7995. }
  7996. },
  7997. back: {
  7998. height: math.unit(7 + 8 / 12, "feet"),
  7999. weight: math.unit(120, "lb"),
  8000. name: "Back",
  8001. image: {
  8002. source: "./media/characters/danny/back.svg",
  8003. extra: 1490 / 1350
  8004. }
  8005. },
  8006. },
  8007. [
  8008. {
  8009. name: "Normal",
  8010. height: math.unit(7 + 8 / 12, "feet"),
  8011. default: true
  8012. },
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(3.5, "inches"),
  8020. weight: math.unit(19, "grams"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/mallow/front.svg",
  8024. extra: 471 / 431
  8025. }
  8026. },
  8027. back: {
  8028. height: math.unit(3.5, "inches"),
  8029. weight: math.unit(19, "grams"),
  8030. name: "Back",
  8031. image: {
  8032. source: "./media/characters/mallow/back.svg",
  8033. extra: 471 / 431
  8034. }
  8035. },
  8036. },
  8037. [
  8038. {
  8039. name: "Normal",
  8040. height: math.unit(3.5, "inches"),
  8041. default: true
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(9, "feet"),
  8050. weight: math.unit(230, "kg"),
  8051. name: "Front",
  8052. image: {
  8053. source: "./media/characters/starry-aqua/front.svg"
  8054. }
  8055. },
  8056. back: {
  8057. height: math.unit(9, "feet"),
  8058. weight: math.unit(230, "kg"),
  8059. name: "Back",
  8060. image: {
  8061. source: "./media/characters/starry-aqua/back.svg"
  8062. }
  8063. },
  8064. hand: {
  8065. height: math.unit(9 * 0.1168, "feet"),
  8066. name: "Hand",
  8067. image: {
  8068. source: "./media/characters/starry-aqua/hand.svg"
  8069. }
  8070. },
  8071. foot: {
  8072. height: math.unit(9 * 0.18, "feet"),
  8073. name: "Foot",
  8074. image: {
  8075. source: "./media/characters/starry-aqua/foot.svg"
  8076. }
  8077. }
  8078. },
  8079. [
  8080. {
  8081. name: "Micro",
  8082. height: math.unit(3, "inches")
  8083. },
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(9, "feet")
  8087. },
  8088. {
  8089. name: "Macro",
  8090. height: math.unit(300, "feet"),
  8091. default: true
  8092. },
  8093. {
  8094. name: "Megamacro",
  8095. height: math.unit(3200, "feet")
  8096. }
  8097. ]
  8098. ))
  8099. characterMakers.push(() => makeCharacter(
  8100. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8101. {
  8102. front: {
  8103. height: math.unit(6, "feet"),
  8104. weight: math.unit(230, "lb"),
  8105. name: "Front",
  8106. image: {
  8107. source: "./media/characters/luka/front.svg",
  8108. extra: 1,
  8109. bottom: 0.025
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(12 + 8 / 12, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Minimacro",
  8121. height: math.unit(20, "feet")
  8122. },
  8123. {
  8124. name: "Macro",
  8125. height: math.unit(250, "feet")
  8126. },
  8127. {
  8128. name: "Megamacro",
  8129. height: math.unit(5, "miles")
  8130. },
  8131. {
  8132. name: "Gigamacro",
  8133. height: math.unit(8000, "miles")
  8134. },
  8135. ]
  8136. ))
  8137. characterMakers.push(() => makeCharacter(
  8138. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8139. {
  8140. front: {
  8141. height: math.unit(6, "feet"),
  8142. weight: math.unit(150, "lb"),
  8143. name: "Front",
  8144. image: {
  8145. source: "./media/characters/natalie-nightring/front.svg",
  8146. extra: 1,
  8147. bottom: 0.06
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Uh Oh",
  8154. height: math.unit(0.1, "mm")
  8155. },
  8156. {
  8157. name: "Small",
  8158. height: math.unit(3, "inches")
  8159. },
  8160. {
  8161. name: "Human Scale",
  8162. height: math.unit(6, "feet")
  8163. },
  8164. {
  8165. name: "Librarian",
  8166. height: math.unit(50, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "Immense",
  8171. height: math.unit(200, "miles")
  8172. },
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(6, "feet"),
  8180. weight: math.unit(180, "lbs"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/danni-rosie/front.svg",
  8184. extra: 1260 / 1128,
  8185. bottom: 0.022
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Micro",
  8192. height: math.unit(2, "inches"),
  8193. default: true
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(5 + 9 / 12, "feet"),
  8202. weight: math.unit(220, "lb"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/samantha-kruse/front.svg",
  8206. extra: (985 / 935),
  8207. bottom: 0.03
  8208. }
  8209. },
  8210. frontUndressed: {
  8211. height: math.unit(5 + 9 / 12, "feet"),
  8212. weight: math.unit(220, "lb"),
  8213. name: "Front (Undressed)",
  8214. image: {
  8215. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8216. extra: (973 / 923),
  8217. bottom: 0.025
  8218. }
  8219. },
  8220. fat: {
  8221. height: math.unit(5 + 9 / 12, "feet"),
  8222. weight: math.unit(900, "lb"),
  8223. name: "Front (Fat)",
  8224. image: {
  8225. source: "./media/characters/samantha-kruse/fat.svg",
  8226. extra: 2688 / 2561
  8227. }
  8228. },
  8229. },
  8230. [
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(5 + 9 / 12, "feet"),
  8234. default: true
  8235. }
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8240. {
  8241. back: {
  8242. height: math.unit(5 + 4 / 12, "feet"),
  8243. weight: math.unit(4963, "lb"),
  8244. name: "Back",
  8245. image: {
  8246. source: "./media/characters/amelia-rosie/back.svg",
  8247. extra: 1113 / 963,
  8248. bottom: 0.01
  8249. }
  8250. },
  8251. },
  8252. [
  8253. {
  8254. name: "Level 0",
  8255. height: math.unit(5 + 4 / 12, "feet")
  8256. },
  8257. {
  8258. name: "Level 1",
  8259. height: math.unit(164597, "feet"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Level 2",
  8264. height: math.unit(956243, "miles")
  8265. },
  8266. {
  8267. name: "Level 3",
  8268. height: math.unit(29421709423, "miles")
  8269. },
  8270. {
  8271. name: "Level 4",
  8272. height: math.unit(154, "lightyears")
  8273. },
  8274. {
  8275. name: "Level 5",
  8276. height: math.unit(4738272, "lightyears")
  8277. },
  8278. {
  8279. name: "Level 6",
  8280. height: math.unit(145787152896, "lightyears")
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(5 + 11 / 12, "feet"),
  8289. weight: math.unit(65, "kg"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/rook-kitara/front.svg",
  8293. extra: 1347 / 1274,
  8294. bottom: 0.005
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Totally Unfair",
  8301. height: math.unit(1.8, "mm")
  8302. },
  8303. {
  8304. name: "Lap Rookie",
  8305. height: math.unit(1.4, "feet")
  8306. },
  8307. {
  8308. name: "Normal",
  8309. height: math.unit(5 + 11 / 12, "feet"),
  8310. default: true
  8311. },
  8312. {
  8313. name: "How Did This Happen",
  8314. height: math.unit(80, "miles")
  8315. }
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(7, "feet"),
  8323. weight: math.unit(300, "lb"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/pisces/front.svg",
  8327. extra: 2255 / 2115,
  8328. bottom: 0.03
  8329. }
  8330. },
  8331. back: {
  8332. height: math.unit(7, "feet"),
  8333. weight: math.unit(300, "lb"),
  8334. name: "Back",
  8335. image: {
  8336. source: "./media/characters/pisces/back.svg",
  8337. extra: 2146 / 2055,
  8338. bottom: 0.04
  8339. }
  8340. },
  8341. },
  8342. [
  8343. {
  8344. name: "Normal",
  8345. height: math.unit(7, "feet"),
  8346. default: true
  8347. },
  8348. {
  8349. name: "Swimming Pool",
  8350. height: math.unit(12.2, "meters")
  8351. },
  8352. {
  8353. name: "Olympic Swimming Pool",
  8354. height: math.unit(56.3, "meters")
  8355. },
  8356. {
  8357. name: "Lake Superior",
  8358. height: math.unit(93900, "meters")
  8359. },
  8360. {
  8361. name: "Mediterranean Sea",
  8362. height: math.unit(644457, "meters")
  8363. },
  8364. {
  8365. name: "World's Oceans",
  8366. height: math.unit(4567491, "meters")
  8367. },
  8368. ]
  8369. ))
  8370. characterMakers.push(() => makeCharacter(
  8371. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8372. {
  8373. front: {
  8374. height: math.unit(2.3, "meters"),
  8375. weight: math.unit(120, "kg"),
  8376. name: "Front",
  8377. image: {
  8378. source: "./media/characters/zelas/front.svg"
  8379. }
  8380. },
  8381. side: {
  8382. height: math.unit(2.3, "meters"),
  8383. weight: math.unit(120, "kg"),
  8384. name: "Side",
  8385. image: {
  8386. source: "./media/characters/zelas/side.svg"
  8387. }
  8388. },
  8389. back: {
  8390. height: math.unit(2.3, "meters"),
  8391. weight: math.unit(120, "kg"),
  8392. name: "Back",
  8393. image: {
  8394. source: "./media/characters/zelas/back.svg"
  8395. }
  8396. },
  8397. foot: {
  8398. height: math.unit(1.116, "feet"),
  8399. name: "Foot",
  8400. image: {
  8401. source: "./media/characters/zelas/foot.svg"
  8402. }
  8403. },
  8404. },
  8405. [
  8406. {
  8407. name: "Normal",
  8408. height: math.unit(2.3, "meters")
  8409. },
  8410. {
  8411. name: "Macro",
  8412. height: math.unit(30, "meters"),
  8413. default: true
  8414. },
  8415. ]
  8416. ))
  8417. characterMakers.push(() => makeCharacter(
  8418. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8419. {
  8420. front: {
  8421. height: math.unit(1, "inch"),
  8422. weight: math.unit(0.21, "grams"),
  8423. name: "Front",
  8424. image: {
  8425. source: "./media/characters/talbot/front.svg",
  8426. extra: 594 / 544
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Micro",
  8433. height: math.unit(1, "inch"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8440. {
  8441. front: {
  8442. height: math.unit(3 + 3 / 12, "feet"),
  8443. weight: math.unit(51.8, "lb"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/fliss/front.svg",
  8447. extra: 840 / 640
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Teeny Tiny",
  8454. height: math.unit(1, "mm")
  8455. },
  8456. {
  8457. name: "Small",
  8458. height: math.unit(1, "inch"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Standard Sylveon",
  8463. height: math.unit(3 + 3 / 12, "feet")
  8464. },
  8465. {
  8466. name: "Large Nuisance",
  8467. height: math.unit(33, "feet")
  8468. },
  8469. {
  8470. name: "City Filler",
  8471. height: math.unit(3000, "feet")
  8472. },
  8473. {
  8474. name: "New Horizon",
  8475. height: math.unit(6000, "miles")
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(5, "cm"),
  8484. weight: math.unit(1.94, "g"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/fleta/front.svg",
  8488. extra: 835 / 803
  8489. }
  8490. },
  8491. back: {
  8492. height: math.unit(5, "cm"),
  8493. weight: math.unit(1.94, "g"),
  8494. name: "Back",
  8495. image: {
  8496. source: "./media/characters/fleta/back.svg",
  8497. extra: 835 / 803
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Micro",
  8504. height: math.unit(5, "cm"),
  8505. default: true
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(225, "lb"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/dominic/front.svg",
  8518. extra: 1770 / 1620,
  8519. bottom: 0.025
  8520. }
  8521. },
  8522. back: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(225, "lb"),
  8525. name: "Back",
  8526. image: {
  8527. source: "./media/characters/dominic/back.svg",
  8528. extra: 1745 / 1620,
  8529. bottom: 0.065
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Nano",
  8536. height: math.unit(0.1, "mm")
  8537. },
  8538. {
  8539. name: "Micro-",
  8540. height: math.unit(1, "mm")
  8541. },
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(4, "inches")
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(6 + 4 / 12, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(115, "feet")
  8554. },
  8555. {
  8556. name: "Macro+",
  8557. height: math.unit(955, "feet")
  8558. },
  8559. {
  8560. name: "Megamacro",
  8561. height: math.unit(8990, "feet")
  8562. },
  8563. {
  8564. name: "Gigmacro",
  8565. height: math.unit(9310, "miles")
  8566. },
  8567. {
  8568. name: "Teramacro",
  8569. height: math.unit(1567005010, "miles")
  8570. },
  8571. {
  8572. name: "Examacro",
  8573. height: math.unit(1425, "parsecs")
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(400, "feet"),
  8582. weight: math.unit(44444444, "lb"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/major-colonel/front.svg"
  8586. }
  8587. },
  8588. back: {
  8589. height: math.unit(400, "feet"),
  8590. weight: math.unit(44444444, "lb"),
  8591. name: "Back",
  8592. image: {
  8593. source: "./media/characters/major-colonel/back.svg"
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(400, "feet"),
  8601. default: true
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8607. {
  8608. catFront: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lb"),
  8611. name: "Front (Cat Side)",
  8612. image: {
  8613. source: "./media/characters/axel-lycan/cat-front.svg",
  8614. extra: 430 / 402,
  8615. bottom: 43 / 472.35
  8616. }
  8617. },
  8618. catBack: {
  8619. height: math.unit(6, "feet"),
  8620. weight: math.unit(120, "lb"),
  8621. name: "Back (Cat Side)",
  8622. image: {
  8623. source: "./media/characters/axel-lycan/cat-back.svg",
  8624. extra: 447 / 419,
  8625. bottom: 23.3 / 469
  8626. }
  8627. },
  8628. wolfFront: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(120, "lb"),
  8631. name: "Front (Wolf Side)",
  8632. image: {
  8633. source: "./media/characters/axel-lycan/wolf-front.svg",
  8634. extra: 485 / 456,
  8635. bottom: 19 / 504
  8636. }
  8637. },
  8638. wolfBack: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(120, "lb"),
  8641. name: "Back (Wolf Side)",
  8642. image: {
  8643. source: "./media/characters/axel-lycan/wolf-back.svg",
  8644. extra: 475 / 438,
  8645. bottom: 39.2 / 514
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Macro",
  8652. height: math.unit(1, "km"),
  8653. default: true
  8654. },
  8655. ]
  8656. ))
  8657. characterMakers.push(() => makeCharacter(
  8658. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8659. {
  8660. front: {
  8661. height: math.unit(5 + 9 / 12, "feet"),
  8662. weight: math.unit(175, "lb"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/vanrel-hyena/front.svg",
  8666. extra: 1086 / 1010,
  8667. bottom: 0.04
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(5 + 9 / 12, "feet"),
  8675. default: true
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(103, "lb"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/abbott-absol/front.svg",
  8688. extra: 2010 / 1842
  8689. }
  8690. },
  8691. },
  8692. [
  8693. {
  8694. name: "Megamicro",
  8695. height: math.unit(0.1, "mm")
  8696. },
  8697. {
  8698. name: "Micro",
  8699. height: math.unit(1, "inch")
  8700. },
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(6, "feet"),
  8704. default: true
  8705. },
  8706. ]
  8707. ))
  8708. characterMakers.push(() => makeCharacter(
  8709. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8710. {
  8711. front: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(264, "lb"),
  8714. name: "Front",
  8715. image: {
  8716. source: "./media/characters/hector/front.svg",
  8717. extra: 2280 / 2130,
  8718. bottom: 0.07
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(12.25, "foot"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(160, "feet")
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(150, "lb"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/sal/front.svg",
  8743. extra: 1846 / 1699,
  8744. bottom: 0.04
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(10, "miles"),
  8752. default: true
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8758. {
  8759. front: {
  8760. height: math.unit(3, "meters"),
  8761. weight: math.unit(450, "kg"),
  8762. name: "front",
  8763. image: {
  8764. source: "./media/characters/ranger/front.svg",
  8765. extra: 2401 / 2243,
  8766. bottom: 0.05
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(3, "meters"),
  8774. default: true
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(14, "feet"),
  8783. weight: math.unit(800, "kg"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/theresa/front.svg",
  8787. extra: 3575 / 3346,
  8788. bottom: 0.03
  8789. }
  8790. },
  8791. },
  8792. [
  8793. {
  8794. name: "Normal",
  8795. height: math.unit(14, "feet"),
  8796. default: true
  8797. },
  8798. ]
  8799. ))
  8800. characterMakers.push(() => makeCharacter(
  8801. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8802. {
  8803. front: {
  8804. height: math.unit(6, "feet"),
  8805. weight: math.unit(3, "kg"),
  8806. name: "Front",
  8807. image: {
  8808. source: "./media/characters/ine/front.svg",
  8809. extra: 678 / 539,
  8810. bottom: 0.023
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(2.265, "feet"),
  8818. default: true
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(5, "feet"),
  8827. weight: math.unit(30, "kg"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/vial/front.svg",
  8831. extra: 1365 / 1277,
  8832. bottom: 0.04
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(5, "feet"),
  8840. default: true
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8846. {
  8847. side: {
  8848. height: math.unit(3.4, "meters"),
  8849. weight: math.unit(1000, "lb"),
  8850. name: "Side",
  8851. image: {
  8852. source: "./media/characters/rovoska/side.svg",
  8853. extra: 4403 / 1515
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(3.4, "meters"),
  8861. default: true
  8862. },
  8863. ]
  8864. ))
  8865. characterMakers.push(() => makeCharacter(
  8866. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8867. {
  8868. front: {
  8869. height: math.unit(8, "feet"),
  8870. weight: math.unit(315, "lb"),
  8871. name: "Front",
  8872. image: {
  8873. source: "./media/characters/gunner-rotthbauer/front.svg"
  8874. }
  8875. },
  8876. back: {
  8877. height: math.unit(8, "feet"),
  8878. weight: math.unit(315, "lb"),
  8879. name: "Back",
  8880. image: {
  8881. source: "./media/characters/gunner-rotthbauer/back.svg"
  8882. }
  8883. },
  8884. },
  8885. [
  8886. {
  8887. name: "Micro",
  8888. height: math.unit(3.5, "inches")
  8889. },
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(8, "feet"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(250, "feet")
  8898. },
  8899. {
  8900. name: "Megamacro",
  8901. height: math.unit(1, "AU")
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8907. {
  8908. front: {
  8909. height: math.unit(5 + 5 / 12, "feet"),
  8910. weight: math.unit(140, "lb"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/allatia/front.svg",
  8914. extra: 1227 / 1180,
  8915. bottom: 0.027
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(5 + 5 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(250, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Megamacro",
  8931. height: math.unit(8, "miles")
  8932. }
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(120, "lb"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/tene/front.svg",
  8944. extra: 1728 / 1578,
  8945. bottom: 0.022
  8946. }
  8947. },
  8948. stomping: {
  8949. height: math.unit(2.025, "meters"),
  8950. weight: math.unit(120, "lb"),
  8951. name: "Stomping",
  8952. image: {
  8953. source: "./media/characters/tene/stomping.svg",
  8954. extra: 938 / 873,
  8955. bottom: 0.01
  8956. }
  8957. },
  8958. sitting: {
  8959. height: math.unit(1, "meter"),
  8960. weight: math.unit(120, "lb"),
  8961. name: "Sitting",
  8962. image: {
  8963. source: "./media/characters/tene/sitting.svg",
  8964. extra: 437 / 415,
  8965. bottom: 0.1
  8966. }
  8967. },
  8968. feral: {
  8969. height: math.unit(3.9, "feet"),
  8970. weight: math.unit(250, "lb"),
  8971. name: "Feral",
  8972. image: {
  8973. source: "./media/characters/tene/feral.svg",
  8974. extra: 717 / 458,
  8975. bottom: 0.179
  8976. }
  8977. },
  8978. },
  8979. [
  8980. {
  8981. name: "Normal",
  8982. height: math.unit(6, "feet")
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(300, "feet"),
  8987. default: true
  8988. },
  8989. {
  8990. name: "Megamacro",
  8991. height: math.unit(5, "miles")
  8992. },
  8993. ]
  8994. ))
  8995. characterMakers.push(() => makeCharacter(
  8996. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8997. {
  8998. side: {
  8999. height: math.unit(6, "feet"),
  9000. name: "Side",
  9001. image: {
  9002. source: "./media/characters/evander/side.svg",
  9003. extra: 877 / 477
  9004. }
  9005. },
  9006. },
  9007. [
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(0.83, "meters"),
  9011. default: true
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(12, "feet"),
  9020. weight: math.unit(1000, "lb"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9024. extra: 1762 / 1611
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(12, "feet"),
  9029. weight: math.unit(1000, "lb"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9033. extra: 1762 / 1611
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(12, "feet"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Kaiju",
  9045. height: math.unit(150, "feet")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(150, "lb"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/zero-alurus/front.svg"
  9058. }
  9059. },
  9060. back: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(150, "lb"),
  9063. name: "Back",
  9064. image: {
  9065. source: "./media/characters/zero-alurus/back.svg"
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(5 + 10 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(60, "feet"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Macro+",
  9081. height: math.unit(450, "feet")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(200, "lb"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/mega-shi/front.svg",
  9094. extra: 1279 / 1250,
  9095. bottom: 0.02
  9096. }
  9097. },
  9098. back: {
  9099. height: math.unit(6, "feet"),
  9100. weight: math.unit(200, "lb"),
  9101. name: "Back",
  9102. image: {
  9103. source: "./media/characters/mega-shi/back.svg",
  9104. extra: 1279 / 1250,
  9105. bottom: 0.02
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(16 + 6 / 12, "feet")
  9113. },
  9114. {
  9115. name: "Third Dimension",
  9116. height: math.unit(40, "meters")
  9117. },
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(660, "feet"),
  9121. default: true
  9122. },
  9123. {
  9124. name: "Megamacro",
  9125. height: math.unit(10, "miles")
  9126. },
  9127. {
  9128. name: "Planetary Launch",
  9129. height: math.unit(500, "miles")
  9130. },
  9131. {
  9132. name: "Interstellar",
  9133. height: math.unit(1e9, "miles")
  9134. },
  9135. {
  9136. name: "Leaving the Universe",
  9137. height: math.unit(1, "gigaparsec")
  9138. },
  9139. {
  9140. name: "Travelling Universes",
  9141. height: math.unit(30e15, "parsecs")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(150, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/odyssey/front.svg",
  9154. extra: 1782 / 1582,
  9155. bottom: 0.01
  9156. }
  9157. },
  9158. side: {
  9159. height: math.unit(5.7, "feet"),
  9160. weight: math.unit(140, "lb"),
  9161. name: "Side",
  9162. image: {
  9163. source: "./media/characters/odyssey/side.svg",
  9164. extra: 6462 / 5700
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Normal",
  9171. height: math.unit(5 + 4 / 12, "feet")
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(1, "km")
  9176. },
  9177. {
  9178. name: "Megamacro",
  9179. height: math.unit(3000, "km")
  9180. },
  9181. {
  9182. name: "Gigamacro",
  9183. height: math.unit(1, "AU"),
  9184. default: true
  9185. },
  9186. {
  9187. name: "Omniversal",
  9188. height: math.unit(100e14, "lightyears")
  9189. },
  9190. ]
  9191. ))
  9192. characterMakers.push(() => makeCharacter(
  9193. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9194. {
  9195. front: {
  9196. height: math.unit(6, "feet"),
  9197. weight: math.unit(300, "lb"),
  9198. name: "Front",
  9199. image: {
  9200. source: "./media/characters/mekuto/front.svg",
  9201. extra: 921 / 832,
  9202. bottom: 0.03
  9203. }
  9204. },
  9205. hand: {
  9206. height: math.unit(6 / 10.24, "feet"),
  9207. name: "Hand",
  9208. image: {
  9209. source: "./media/characters/mekuto/hand.svg"
  9210. }
  9211. },
  9212. foot: {
  9213. height: math.unit(6 / 5.05, "feet"),
  9214. name: "Foot",
  9215. image: {
  9216. source: "./media/characters/mekuto/foot.svg"
  9217. }
  9218. },
  9219. },
  9220. [
  9221. {
  9222. name: "Minimicro",
  9223. height: math.unit(0.2, "inches")
  9224. },
  9225. {
  9226. name: "Micro",
  9227. height: math.unit(1.5, "inches")
  9228. },
  9229. {
  9230. name: "Normal",
  9231. height: math.unit(5 + 11 / 12, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Minimacro",
  9236. height: math.unit(17 + 9 / 12, "feet")
  9237. },
  9238. {
  9239. name: "Macro",
  9240. height: math.unit(177.5, "feet")
  9241. },
  9242. {
  9243. name: "Megamacro",
  9244. height: math.unit(152, "miles")
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(6.5, "inches"),
  9253. weight: math.unit(13, "oz"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/dafydd-tomos/front.svg",
  9257. extra: 2990 / 2603,
  9258. bottom: 0.03
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Micro",
  9265. height: math.unit(6.5, "inches"),
  9266. default: true
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(150, "lb"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/splinter/front.svg",
  9279. extra: 2990 / 2882,
  9280. bottom: 0.04
  9281. }
  9282. },
  9283. back: {
  9284. height: math.unit(6, "feet"),
  9285. weight: math.unit(150, "lb"),
  9286. name: "Back",
  9287. image: {
  9288. source: "./media/characters/splinter/back.svg",
  9289. extra: 2990 / 2882,
  9290. bottom: 0.04
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(6, "feet")
  9298. },
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(230, "meters"),
  9302. default: true
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(4 + 10 / 12, "feet"),
  9311. weight: math.unit(480, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/snow-gabumon/front.svg",
  9315. extra: 1140 / 963,
  9316. bottom: 0.058
  9317. }
  9318. },
  9319. back: {
  9320. height: math.unit(4 + 10 / 12, "feet"),
  9321. weight: math.unit(480, "lb"),
  9322. name: "Back",
  9323. image: {
  9324. source: "./media/characters/snow-gabumon/back.svg",
  9325. extra: 1115 / 962,
  9326. bottom: 0.041
  9327. }
  9328. },
  9329. frontUndresed: {
  9330. height: math.unit(4 + 10 / 12, "feet"),
  9331. weight: math.unit(480, "lb"),
  9332. name: "Front (Undressed)",
  9333. image: {
  9334. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9335. extra: 1061 / 960,
  9336. bottom: 0.045
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Micro",
  9343. height: math.unit(1, "inch")
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(4 + 10 / 12, "feet"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(200, "feet")
  9353. },
  9354. {
  9355. name: "Megamacro",
  9356. height: math.unit(120, "miles")
  9357. },
  9358. {
  9359. name: "Gigamacro",
  9360. height: math.unit(9800, "miles")
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(1.7, "meters"),
  9369. weight: math.unit(140, "lb"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/moody/front.svg",
  9373. extra: 3226 / 3007,
  9374. bottom: 0.087
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(1, "mm")
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(1.7, "meters"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(80, "meters")
  9391. },
  9392. {
  9393. name: "Macro+",
  9394. height: math.unit(500, "meters")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(150, "lb"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/zyas/front.svg",
  9407. extra: 1180 / 1120,
  9408. bottom: 0.045
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(10, "feet"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(500, "feet")
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(5, "miles")
  9425. },
  9426. {
  9427. name: "Teramacro",
  9428. height: math.unit(150000, "miles")
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(150, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/cuon/front.svg",
  9441. extra: 1390 / 1320,
  9442. bottom: 0.008
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Micro",
  9449. height: math.unit(3, "inches")
  9450. },
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(18 + 9 / 12, "feet"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Macro",
  9458. height: math.unit(360, "feet")
  9459. },
  9460. {
  9461. name: "Megamacro",
  9462. height: math.unit(360, "miles")
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(2.4, "meters"),
  9471. weight: math.unit(70, "kg"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/nyanuxk/front.svg",
  9475. extra: 1172 / 1084,
  9476. bottom: 0.065
  9477. }
  9478. },
  9479. side: {
  9480. height: math.unit(2.4, "meters"),
  9481. weight: math.unit(70, "kg"),
  9482. name: "Side",
  9483. image: {
  9484. source: "./media/characters/nyanuxk/side.svg",
  9485. extra: 1190 / 1132,
  9486. bottom: 0.007
  9487. }
  9488. },
  9489. back: {
  9490. height: math.unit(2.4, "meters"),
  9491. weight: math.unit(70, "kg"),
  9492. name: "Back",
  9493. image: {
  9494. source: "./media/characters/nyanuxk/back.svg",
  9495. extra: 1200 / 1141,
  9496. bottom: 0.015
  9497. }
  9498. },
  9499. foot: {
  9500. height: math.unit(0.52, "meters"),
  9501. name: "Foot",
  9502. image: {
  9503. source: "./media/characters/nyanuxk/foot.svg"
  9504. }
  9505. },
  9506. },
  9507. [
  9508. {
  9509. name: "Micro",
  9510. height: math.unit(2, "cm")
  9511. },
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(2.4, "meters"),
  9515. default: true
  9516. },
  9517. {
  9518. name: "Smaller Macro",
  9519. height: math.unit(120, "meters")
  9520. },
  9521. {
  9522. name: "Bigger Macro",
  9523. height: math.unit(1.2, "km")
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(15, "kilometers")
  9528. },
  9529. {
  9530. name: "Gigamacro",
  9531. height: math.unit(2000, "km")
  9532. },
  9533. {
  9534. name: "Teramacro",
  9535. height: math.unit(500000, "km")
  9536. },
  9537. ]
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9541. {
  9542. side: {
  9543. height: math.unit(6, "feet"),
  9544. name: "Side",
  9545. image: {
  9546. source: "./media/characters/ailbhe/side.svg",
  9547. extra: 757 / 464,
  9548. bottom: 0.041
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Normal",
  9555. height: math.unit(1.07, "meters"),
  9556. default: true
  9557. },
  9558. ]
  9559. ))
  9560. characterMakers.push(() => makeCharacter(
  9561. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9562. {
  9563. front: {
  9564. height: math.unit(6, "feet"),
  9565. weight: math.unit(120, "kg"),
  9566. name: "Front",
  9567. image: {
  9568. source: "./media/characters/zevulfius/front.svg",
  9569. extra: 965 / 903
  9570. }
  9571. },
  9572. side: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(120, "kg"),
  9575. name: "Side",
  9576. image: {
  9577. source: "./media/characters/zevulfius/side.svg",
  9578. extra: 939 / 900
  9579. }
  9580. },
  9581. back: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(120, "kg"),
  9584. name: "Back",
  9585. image: {
  9586. source: "./media/characters/zevulfius/back.svg",
  9587. extra: 918 / 854,
  9588. bottom: 0.005
  9589. }
  9590. },
  9591. foot: {
  9592. height: math.unit(6 / 3.72, "feet"),
  9593. name: "Foot",
  9594. image: {
  9595. source: "./media/characters/zevulfius/foot.svg"
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Macro",
  9602. height: math.unit(750, "meters")
  9603. },
  9604. {
  9605. name: "Megamacro",
  9606. height: math.unit(20, "km"),
  9607. default: true
  9608. },
  9609. {
  9610. name: "Gigamacro",
  9611. height: math.unit(2000, "km")
  9612. },
  9613. {
  9614. name: "Teramacro",
  9615. height: math.unit(250000, "km")
  9616. },
  9617. ]
  9618. ))
  9619. characterMakers.push(() => makeCharacter(
  9620. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9621. {
  9622. front: {
  9623. height: math.unit(100, "feet"),
  9624. weight: math.unit(350, "kg"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/rikes/front.svg",
  9628. extra: 1565 / 1483,
  9629. bottom: 0.017
  9630. }
  9631. },
  9632. },
  9633. [
  9634. {
  9635. name: "Macro",
  9636. height: math.unit(100, "feet"),
  9637. default: true
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9643. {
  9644. anthro: {
  9645. height: math.unit(8, "feet"),
  9646. weight: math.unit(120, "kg"),
  9647. name: "Anthro",
  9648. image: {
  9649. source: "./media/characters/adam-silver-mane/anthro.svg",
  9650. extra: 5743 / 5339,
  9651. bottom: 0.07
  9652. }
  9653. },
  9654. taur: {
  9655. height: math.unit(16, "feet"),
  9656. weight: math.unit(1500, "kg"),
  9657. name: "Taur",
  9658. image: {
  9659. source: "./media/characters/adam-silver-mane/taur.svg",
  9660. extra: 1713 / 1571,
  9661. bottom: 0.01
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(8, "feet")
  9669. },
  9670. {
  9671. name: "Minimacro",
  9672. height: math.unit(80, "feet")
  9673. },
  9674. {
  9675. name: "Macro",
  9676. height: math.unit(800, "feet"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Megamacro",
  9681. height: math.unit(8000, "feet")
  9682. },
  9683. {
  9684. name: "Gigamacro",
  9685. height: math.unit(800, "miles")
  9686. },
  9687. {
  9688. name: "Teramacro",
  9689. height: math.unit(80000, "miles")
  9690. },
  9691. {
  9692. name: "Celestial",
  9693. height: math.unit(8e6, "miles")
  9694. },
  9695. {
  9696. name: "Star Dragon",
  9697. height: math.unit(800000, "parsecs")
  9698. },
  9699. {
  9700. name: "Godly",
  9701. height: math.unit(800, "teraparsecs")
  9702. },
  9703. ]
  9704. ))
  9705. characterMakers.push(() => makeCharacter(
  9706. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9707. {
  9708. front: {
  9709. height: math.unit(6, "feet"),
  9710. weight: math.unit(150, "lb"),
  9711. name: "Front",
  9712. image: {
  9713. source: "./media/characters/ky'owin/front.svg",
  9714. extra: 3888 / 3068,
  9715. bottom: 0.015
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(6 + 8 / 12, "feet")
  9723. },
  9724. {
  9725. name: "Large",
  9726. height: math.unit(68, "feet")
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(132, "feet")
  9731. },
  9732. {
  9733. name: "Macro+",
  9734. height: math.unit(340, "feet")
  9735. },
  9736. {
  9737. name: "Macro++",
  9738. height: math.unit(680, "feet"),
  9739. default: true
  9740. },
  9741. {
  9742. name: "Megamacro",
  9743. height: math.unit(1, "mile")
  9744. },
  9745. {
  9746. name: "Megamacro+",
  9747. height: math.unit(10, "miles")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(4, "feet"),
  9756. weight: math.unit(50, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/mal/front.svg",
  9760. extra: 785 / 724,
  9761. bottom: 0.07
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Micro",
  9768. height: math.unit(4, "inches")
  9769. },
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(4, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(200, "feet")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(150, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/jordan-deware/front.svg",
  9790. extra: 1191 / 1012
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Nano",
  9797. height: math.unit(0.01, "mm")
  9798. },
  9799. {
  9800. name: "Minimicro",
  9801. height: math.unit(1, "mm")
  9802. },
  9803. {
  9804. name: "Micro",
  9805. height: math.unit(0.5, "inches")
  9806. },
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(4, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Minimacro",
  9814. height: math.unit(40, "meters")
  9815. },
  9816. {
  9817. name: "Small Macro",
  9818. height: math.unit(400, "meters")
  9819. },
  9820. {
  9821. name: "Macro",
  9822. height: math.unit(4, "miles")
  9823. },
  9824. {
  9825. name: "Megamacro",
  9826. height: math.unit(40, "miles")
  9827. },
  9828. {
  9829. name: "Megamacro+",
  9830. height: math.unit(400, "miles")
  9831. },
  9832. {
  9833. name: "Gigamacro",
  9834. height: math.unit(400000, "miles")
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9840. {
  9841. side: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(150, "lb"),
  9844. name: "Side",
  9845. image: {
  9846. source: "./media/characters/kimiko/side.svg",
  9847. extra: 600 / 358
  9848. }
  9849. },
  9850. },
  9851. [
  9852. {
  9853. name: "Normal",
  9854. height: math.unit(15, "feet"),
  9855. default: true
  9856. },
  9857. {
  9858. name: "Macro",
  9859. height: math.unit(220, "feet")
  9860. },
  9861. {
  9862. name: "Macro+",
  9863. height: math.unit(1450, "feet")
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(11500, "feet")
  9868. },
  9869. {
  9870. name: "Gigamacro",
  9871. height: math.unit(9500, "miles")
  9872. },
  9873. {
  9874. name: "Teramacro",
  9875. height: math.unit(2208005005, "miles")
  9876. },
  9877. {
  9878. name: "Examacro",
  9879. height: math.unit(2750, "parsecs")
  9880. },
  9881. {
  9882. name: "Zettamacro",
  9883. height: math.unit(101500, "parsecs")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(70, "kg"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/andrew-sleepy/front.svg"
  9896. }
  9897. },
  9898. side: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(70, "kg"),
  9901. name: "Side",
  9902. image: {
  9903. source: "./media/characters/andrew-sleepy/side.svg"
  9904. }
  9905. },
  9906. },
  9907. [
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(1, "mm"),
  9911. default: true
  9912. },
  9913. ]
  9914. ))
  9915. characterMakers.push(() => makeCharacter(
  9916. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9917. {
  9918. front: {
  9919. height: math.unit(6, "feet"),
  9920. weight: math.unit(150, "lb"),
  9921. name: "Front",
  9922. image: {
  9923. source: "./media/characters/judio/front.svg",
  9924. extra: 1258 / 1110
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(5 + 6 / 12, "feet")
  9932. },
  9933. {
  9934. name: "Macro",
  9935. height: math.unit(1000, "feet"),
  9936. default: true
  9937. },
  9938. {
  9939. name: "Megamacro",
  9940. height: math.unit(10, "miles")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(6, "feet"),
  9949. weight: math.unit(68, "kg"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/nomaxice/front.svg",
  9953. extra: 1498 / 1073,
  9954. bottom: 0.075
  9955. }
  9956. },
  9957. foot: {
  9958. height: math.unit(1.1, "feet"),
  9959. name: "Foot",
  9960. image: {
  9961. source: "./media/characters/nomaxice/foot.svg"
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Micro",
  9968. height: math.unit(8, "cm")
  9969. },
  9970. {
  9971. name: "Norm",
  9972. height: math.unit(1.82, "m")
  9973. },
  9974. {
  9975. name: "Norm+",
  9976. height: math.unit(8.8, "feet")
  9977. },
  9978. {
  9979. name: "Big",
  9980. height: math.unit(8, "meters"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(18, "meters")
  9986. },
  9987. {
  9988. name: "Macro+",
  9989. height: math.unit(88, "meters")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(12, "feet"),
  9998. weight: math.unit(1.5, "tons"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/dydros/front.svg",
  10002. extra: 863 / 800,
  10003. bottom: 0.015
  10004. }
  10005. },
  10006. back: {
  10007. height: math.unit(12, "feet"),
  10008. weight: math.unit(1.5, "tons"),
  10009. name: "Back",
  10010. image: {
  10011. source: "./media/characters/dydros/back.svg",
  10012. extra: 900 / 843,
  10013. bottom: 0.005
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(12, "feet"),
  10021. default: true
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(100, "kg"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/riggi/front.svg",
  10034. extra: 5787 / 5303
  10035. }
  10036. },
  10037. hyper: {
  10038. height: math.unit(6 * 5 / 3, "feet"),
  10039. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10040. name: "Hyper",
  10041. image: {
  10042. source: "./media/characters/riggi/hyper.svg",
  10043. extra: 3595 / 3485
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Small Macro",
  10050. height: math.unit(50, "feet")
  10051. },
  10052. {
  10053. name: "Default",
  10054. height: math.unit(200, "feet"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Loom",
  10059. height: math.unit(10000, "feet")
  10060. },
  10061. {
  10062. name: "Cruising Altitude",
  10063. height: math.unit(30000, "feet")
  10064. },
  10065. {
  10066. name: "Megamacro",
  10067. height: math.unit(100, "miles")
  10068. },
  10069. {
  10070. name: "Continent Sized",
  10071. height: math.unit(2800, "miles")
  10072. },
  10073. {
  10074. name: "Earth Sized",
  10075. height: math.unit(8000, "miles")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(6, "feet"),
  10084. weight: math.unit(250, "lb"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/alexi/front.svg",
  10088. extra: 3483 / 3291,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. back: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(250, "lb"),
  10095. name: "Back",
  10096. image: {
  10097. source: "./media/characters/alexi/back.svg",
  10098. extra: 3533 / 3356,
  10099. bottom: 0.021
  10100. }
  10101. },
  10102. frontTransforming: {
  10103. height: math.unit(8.58, "feet"),
  10104. weight: math.unit(1300, "lb"),
  10105. name: "Transforming",
  10106. image: {
  10107. source: "./media/characters/alexi/front-transforming.svg",
  10108. extra: 437 / 409,
  10109. bottom: 19 / 458.66
  10110. }
  10111. },
  10112. frontTransformed: {
  10113. height: math.unit(12.5, "feet"),
  10114. weight: math.unit(4000, "lb"),
  10115. name: "Transformed",
  10116. image: {
  10117. source: "./media/characters/alexi/front-transformed.svg",
  10118. extra: 639 / 614,
  10119. bottom: 30.55 / 671
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Normal",
  10126. height: math.unit(3, "meters"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Minimacro",
  10131. height: math.unit(30, "meters")
  10132. },
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(500, "meters")
  10136. },
  10137. {
  10138. name: "Megamacro",
  10139. height: math.unit(9000, "km")
  10140. },
  10141. {
  10142. name: "Teramacro",
  10143. height: math.unit(384000, "km")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(6, "feet"),
  10152. weight: math.unit(150, "lb"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/kayroo/front.svg",
  10156. extra: 1153 / 1038,
  10157. bottom: 0.06
  10158. }
  10159. },
  10160. foot: {
  10161. height: math.unit(6, "feet"),
  10162. weight: math.unit(150, "lb"),
  10163. name: "Foot",
  10164. image: {
  10165. source: "./media/characters/kayroo/foot.svg"
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(8, "feet"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Minimacro",
  10177. height: math.unit(250, "feet")
  10178. },
  10179. {
  10180. name: "Macro",
  10181. height: math.unit(2800, "feet")
  10182. },
  10183. {
  10184. name: "Megamacro",
  10185. height: math.unit(5200, "feet")
  10186. },
  10187. {
  10188. name: "Gigamacro",
  10189. height: math.unit(27000, "feet")
  10190. },
  10191. {
  10192. name: "Omega",
  10193. height: math.unit(45000, "feet")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(18, "feet"),
  10202. weight: math.unit(5800, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/rhys/front.svg",
  10206. extra: 3386 / 3090,
  10207. bottom: 0.07
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(18, "feet"),
  10215. default: true
  10216. },
  10217. {
  10218. name: "Working Size",
  10219. height: math.unit(200, "feet")
  10220. },
  10221. {
  10222. name: "Demolition Size",
  10223. height: math.unit(2000, "feet")
  10224. },
  10225. {
  10226. name: "Maximum Licensed Size",
  10227. height: math.unit(5, "miles")
  10228. },
  10229. {
  10230. name: "Maximum Observed Size",
  10231. height: math.unit(10, "yottameters")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(6, "feet"),
  10240. weight: math.unit(250, "lb"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/toto/front.svg",
  10244. extra: 527 / 479,
  10245. bottom: 0.05
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(3, "feet")
  10253. },
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(10, "feet")
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(150, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(1200, "feet")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "King", species: ["lion"], tags: ["anthro"] },
  10271. {
  10272. back: {
  10273. height: math.unit(6, "feet"),
  10274. weight: math.unit(150, "lb"),
  10275. name: "Back",
  10276. image: {
  10277. source: "./media/characters/king/back.svg"
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Micro",
  10284. height: math.unit(2, "inches")
  10285. },
  10286. {
  10287. name: "Normal",
  10288. height: math.unit(8, "feet")
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(200, "feet"),
  10293. default: true
  10294. },
  10295. {
  10296. name: "Megamacro",
  10297. height: math.unit(50, "miles")
  10298. },
  10299. ]
  10300. ))
  10301. characterMakers.push(() => makeCharacter(
  10302. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10303. {
  10304. anthro: {
  10305. height: math.unit(6 + 5 / 12, "feet"),
  10306. weight: math.unit(280, "lb"),
  10307. name: "Anthro",
  10308. image: {
  10309. source: "./media/characters/cordite/anthro.svg",
  10310. extra: 1986 / 1905,
  10311. bottom: 0.025
  10312. }
  10313. },
  10314. feral: {
  10315. height: math.unit(2, "feet"),
  10316. weight: math.unit(90, "lb"),
  10317. name: "Feral",
  10318. image: {
  10319. source: "./media/characters/cordite/feral.svg",
  10320. extra: 1260 / 755,
  10321. bottom: 0.05
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(6 + 5 / 12, "feet"),
  10329. default: true
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10335. {
  10336. front: {
  10337. height: math.unit(6, "feet"),
  10338. weight: math.unit(150, "lb"),
  10339. name: "Front",
  10340. image: {
  10341. source: "./media/characters/pianostrong/front.svg",
  10342. extra: 6577 / 6254,
  10343. bottom: 0.02
  10344. }
  10345. },
  10346. side: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(150, "lb"),
  10349. name: "Side",
  10350. image: {
  10351. source: "./media/characters/pianostrong/side.svg",
  10352. extra: 6106 / 5730
  10353. }
  10354. },
  10355. back: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Back",
  10359. image: {
  10360. source: "./media/characters/pianostrong/back.svg",
  10361. extra: 6085 / 5733,
  10362. bottom: 0.01
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(100, "feet")
  10370. },
  10371. {
  10372. name: "Macro+",
  10373. height: math.unit(300, "feet"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro++",
  10378. height: math.unit(1000, "feet")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(150, "lb"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/kona/front.svg",
  10391. extra: 2960 / 2629,
  10392. bottom: 0.005
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(11 + 8 / 12, "feet")
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(850, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Macro+",
  10408. height: math.unit(1.5, "km"),
  10409. default: true
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(80, "miles")
  10414. },
  10415. {
  10416. name: "Gigamacro",
  10417. height: math.unit(3500, "miles")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10423. {
  10424. side: {
  10425. height: math.unit(1.9, "meters"),
  10426. weight: math.unit(326, "kg"),
  10427. name: "Side",
  10428. image: {
  10429. source: "./media/characters/levi/side.svg",
  10430. extra: 1704 / 1334,
  10431. bottom: 0.02
  10432. }
  10433. },
  10434. },
  10435. [
  10436. {
  10437. name: "Normal",
  10438. height: math.unit(1.9, "meters"),
  10439. default: true
  10440. },
  10441. {
  10442. name: "Macro",
  10443. height: math.unit(20, "meters")
  10444. },
  10445. {
  10446. name: "Macro+",
  10447. height: math.unit(200, "meters")
  10448. },
  10449. {
  10450. name: "Megamacro",
  10451. height: math.unit(2, "km")
  10452. },
  10453. {
  10454. name: "Megamacro+",
  10455. height: math.unit(20, "km")
  10456. },
  10457. {
  10458. name: "Gigamacro",
  10459. height: math.unit(2500, "km")
  10460. },
  10461. {
  10462. name: "Gigamacro+",
  10463. height: math.unit(120000, "km")
  10464. },
  10465. {
  10466. name: "Teramacro",
  10467. height: math.unit(7.77e6, "km")
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10473. {
  10474. front: {
  10475. height: math.unit(6 + 4 / 12, "feet"),
  10476. weight: math.unit(188, "lb"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/bmc/front.svg",
  10480. extra: 1067 / 1022,
  10481. bottom: 0.047
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Human-sized",
  10488. height: math.unit(6 + 4 / 12, "feet")
  10489. },
  10490. {
  10491. name: "Small",
  10492. height: math.unit(250, "feet")
  10493. },
  10494. {
  10495. name: "Normal",
  10496. height: math.unit(1250, "feet"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "Good Day",
  10501. height: math.unit(88, "miles")
  10502. },
  10503. {
  10504. name: "Largest Measured Size",
  10505. height: math.unit(11.2e6, "lightyears")
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(20, "feet"),
  10514. weight: math.unit(2016, "kg"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/sven-the-kaiju/front.svg",
  10518. extra: 1479 / 1449,
  10519. bottom: 0.05
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Fairy",
  10526. height: math.unit(6, "inches")
  10527. },
  10528. {
  10529. name: "Normal",
  10530. height: math.unit(20, "feet"),
  10531. default: true
  10532. },
  10533. {
  10534. name: "Rampage",
  10535. height: math.unit(200, "feet")
  10536. },
  10537. {
  10538. name: "Archfey Forest Guardian",
  10539. height: math.unit(1, "mile")
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(4, "meters"),
  10548. weight: math.unit(2, "tons"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/marik/front.svg",
  10552. extra: 1057 / 1003,
  10553. bottom: 0.08
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Normal",
  10560. height: math.unit(4, "meters"),
  10561. default: true
  10562. },
  10563. {
  10564. name: "Macro",
  10565. height: math.unit(20, "meters")
  10566. },
  10567. {
  10568. name: "Megamacro",
  10569. height: math.unit(50, "km")
  10570. },
  10571. {
  10572. name: "Gigamacro",
  10573. height: math.unit(100, "km")
  10574. },
  10575. {
  10576. name: "Alpha Macro",
  10577. height: math.unit(7.88e7, "yottameters")
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(110, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/mel/front.svg",
  10590. extra: 736 / 617,
  10591. bottom: 0.017
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Pico",
  10598. height: math.unit(3, "pm")
  10599. },
  10600. {
  10601. name: "Nano",
  10602. height: math.unit(3, "nm")
  10603. },
  10604. {
  10605. name: "Micro",
  10606. height: math.unit(0.3, "mm"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Micro+",
  10611. height: math.unit(3, "mm")
  10612. },
  10613. {
  10614. name: "Normal",
  10615. height: math.unit(5 + 10.5 / 12, "feet")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10621. {
  10622. kaiju: {
  10623. height: math.unit(1.75, "meters"),
  10624. weight: math.unit(55, "kg"),
  10625. name: "Kaiju",
  10626. image: {
  10627. source: "./media/characters/lykonous/kaiju.svg",
  10628. extra: 1055 / 946,
  10629. bottom: 0.135
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Normal",
  10636. height: math.unit(2.5, "meters"),
  10637. default: true
  10638. },
  10639. {
  10640. name: "Kaiju Dragon",
  10641. height: math.unit(60, "meters")
  10642. },
  10643. {
  10644. name: "Mega Kaiju",
  10645. height: math.unit(120, "km")
  10646. },
  10647. {
  10648. name: "Giga Kaiju",
  10649. height: math.unit(200, "megameters")
  10650. },
  10651. {
  10652. name: "Terra Kaiju",
  10653. height: math.unit(400, "gigameters")
  10654. },
  10655. {
  10656. name: "Kaiju Dragon God",
  10657. height: math.unit(13000, "exaparsecs")
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(150, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/blü/front.svg",
  10670. extra: 1883 / 1564,
  10671. bottom: 0.031
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(13, "feet"),
  10679. default: true
  10680. },
  10681. {
  10682. name: "Big Boi",
  10683. height: math.unit(150, "meters")
  10684. },
  10685. {
  10686. name: "Mini Stomper",
  10687. height: math.unit(300, "meters")
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(1000, "meters")
  10692. },
  10693. {
  10694. name: "Megamacro",
  10695. height: math.unit(11000, "meters")
  10696. },
  10697. {
  10698. name: "Gigamacro",
  10699. height: math.unit(11000, "km")
  10700. },
  10701. {
  10702. name: "Teramacro",
  10703. height: math.unit(420000, "km")
  10704. },
  10705. {
  10706. name: "Examacro",
  10707. height: math.unit(120, "parsecs")
  10708. },
  10709. {
  10710. name: "God Tho",
  10711. height: math.unit(98000000000, "parsecs")
  10712. },
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10717. {
  10718. taurFront: {
  10719. height: math.unit(6, "feet"),
  10720. weight: math.unit(200, "lb"),
  10721. name: "Taur (Front)",
  10722. image: {
  10723. source: "./media/characters/scales/taur-front.svg",
  10724. extra: 1,
  10725. bottom: 0.05
  10726. }
  10727. },
  10728. taurBack: {
  10729. height: math.unit(6, "feet"),
  10730. weight: math.unit(200, "lb"),
  10731. name: "Taur (Back)",
  10732. image: {
  10733. source: "./media/characters/scales/taur-back.svg",
  10734. extra: 1,
  10735. bottom: 0.08
  10736. }
  10737. },
  10738. anthro: {
  10739. height: math.unit(6 * 7 / 12, "feet"),
  10740. weight: math.unit(100, "lb"),
  10741. name: "Anthro",
  10742. image: {
  10743. source: "./media/characters/scales/anthro.svg",
  10744. extra: 1,
  10745. bottom: 0.06
  10746. }
  10747. },
  10748. },
  10749. [
  10750. {
  10751. name: "Normal",
  10752. height: math.unit(12, "feet"),
  10753. default: true
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(150, "lb"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/koragos/front.svg",
  10766. extra: 841 / 794,
  10767. bottom: 0.035
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(6, "feet"),
  10772. weight: math.unit(150, "lb"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/koragos/back.svg",
  10776. extra: 841 / 810,
  10777. bottom: 0.022
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(6 + 11 / 12, "feet"),
  10785. default: true
  10786. },
  10787. {
  10788. name: "Macro",
  10789. height: math.unit(490, "feet")
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(10, "miles")
  10794. },
  10795. {
  10796. name: "Gigamacro",
  10797. height: math.unit(50, "miles")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(250, "lb"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/xylrem/front.svg",
  10810. extra: 3323 / 3050,
  10811. bottom: 0.065
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(4, "feet")
  10819. },
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(16, "feet"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(2720, "feet")
  10828. },
  10829. {
  10830. name: "Megamacro",
  10831. height: math.unit(25000, "miles")
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10837. {
  10838. front: {
  10839. height: math.unit(8, "feet"),
  10840. weight: math.unit(250, "kg"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/ikideru/front.svg",
  10844. extra: 930 / 870,
  10845. bottom: 0.087
  10846. }
  10847. },
  10848. back: {
  10849. height: math.unit(8, "feet"),
  10850. weight: math.unit(250, "kg"),
  10851. name: "Back",
  10852. image: {
  10853. source: "./media/characters/ikideru/back.svg",
  10854. extra: 919 / 852,
  10855. bottom: 0.055
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Rare",
  10862. height: math.unit(8, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Playful Loom",
  10867. height: math.unit(80, "feet")
  10868. },
  10869. {
  10870. name: "City Leaner",
  10871. height: math.unit(230, "feet")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(2500, "feet")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(26400, "feet")
  10880. },
  10881. {
  10882. name: "Tectonic Shifter",
  10883. height: math.unit(1.7, "megameters")
  10884. },
  10885. {
  10886. name: "Planet Carer",
  10887. height: math.unit(21, "megameters")
  10888. },
  10889. {
  10890. name: "God",
  10891. height: math.unit(11157.22, "parsecs")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(6, "feet"),
  10900. weight: math.unit(120, "lb"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/neo/front.svg"
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Micro",
  10910. height: math.unit(2, "inches"),
  10911. default: true
  10912. },
  10913. {
  10914. name: "Human Size",
  10915. height: math.unit(5 + 8 / 12, "feet")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10921. {
  10922. front: {
  10923. height: math.unit(13 + 10 / 12, "feet"),
  10924. weight: math.unit(5320, "lb"),
  10925. name: "Front",
  10926. image: {
  10927. source: "./media/characters/chauncey-chantz/front.svg",
  10928. extra: 1587 / 1435,
  10929. bottom: 0.02
  10930. }
  10931. },
  10932. },
  10933. [
  10934. {
  10935. name: "Normal",
  10936. height: math.unit(13 + 10 / 12, "feet"),
  10937. default: true
  10938. },
  10939. {
  10940. name: "Macro",
  10941. height: math.unit(45, "feet")
  10942. },
  10943. {
  10944. name: "Megamacro",
  10945. height: math.unit(250, "miles")
  10946. },
  10947. {
  10948. name: "Planetary",
  10949. height: math.unit(10000, "miles")
  10950. },
  10951. {
  10952. name: "Galactic",
  10953. height: math.unit(40000, "parsecs")
  10954. },
  10955. {
  10956. name: "Universal",
  10957. height: math.unit(1, "yottameter")
  10958. },
  10959. ]
  10960. ))
  10961. characterMakers.push(() => makeCharacter(
  10962. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10963. {
  10964. front: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Front",
  10968. image: {
  10969. source: "./media/characters/epifox/front.svg",
  10970. extra: 1,
  10971. bottom: 0.075
  10972. }
  10973. },
  10974. },
  10975. [
  10976. {
  10977. name: "Micro",
  10978. height: math.unit(6, "inches")
  10979. },
  10980. {
  10981. name: "Normal",
  10982. height: math.unit(12, "feet"),
  10983. default: true
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(3810, "feet")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(500, "miles")
  10992. },
  10993. ]
  10994. ))
  10995. characterMakers.push(() => makeCharacter(
  10996. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10997. {
  10998. front: {
  10999. height: math.unit(1.8796, "m"),
  11000. weight: math.unit(230, "lb"),
  11001. name: "Front",
  11002. image: {
  11003. source: "./media/characters/colin-t/front.svg",
  11004. extra: 1272 / 1193,
  11005. bottom: 0.07
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Micro",
  11012. height: math.unit(0.571, "meters")
  11013. },
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(1.8796, "meters"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Tall",
  11021. height: math.unit(4, "meters")
  11022. },
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(67.241, "meters")
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(371.856, "meters")
  11030. },
  11031. {
  11032. name: "Planetary",
  11033. height: math.unit(12631.5689, "km")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(1.85, "meters"),
  11042. weight: math.unit(80, "kg"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/matvei/front.svg",
  11046. extra: 614 / 594,
  11047. bottom: 0.01
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(1.85, "meters"),
  11055. default: true
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11061. {
  11062. front: {
  11063. height: math.unit(5 + 9 / 12, "feet"),
  11064. weight: math.unit(70, "lb"),
  11065. name: "Front",
  11066. image: {
  11067. source: "./media/characters/quincy/front.svg",
  11068. extra: 3041 / 2751
  11069. }
  11070. },
  11071. back: {
  11072. height: math.unit(5 + 9 / 12, "feet"),
  11073. weight: math.unit(70, "lb"),
  11074. name: "Back",
  11075. image: {
  11076. source: "./media/characters/quincy/back.svg",
  11077. extra: 3041 / 2751
  11078. }
  11079. },
  11080. flying: {
  11081. height: math.unit(5 + 4 / 12, "feet"),
  11082. weight: math.unit(70, "lb"),
  11083. name: "Flying",
  11084. image: {
  11085. source: "./media/characters/quincy/flying.svg",
  11086. extra: 1044 / 930
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Micro",
  11093. height: math.unit(3, "cm")
  11094. },
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(5 + 9 / 12, "feet")
  11098. },
  11099. {
  11100. name: "Macro",
  11101. height: math.unit(200, "meters"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Megamacro",
  11106. height: math.unit(1000, "meters")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11112. {
  11113. front: {
  11114. height: math.unit(4 + 7 / 12, "feet"),
  11115. weight: math.unit(150, "lb"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/vanrel/front.svg",
  11119. extra: 1,
  11120. bottom: 0.02
  11121. }
  11122. },
  11123. elemental: {
  11124. height: math.unit(3, "feet"),
  11125. weight: math.unit(150, "lb"),
  11126. name: "Elemental",
  11127. image: {
  11128. source: "./media/characters/vanrel/elemental.svg",
  11129. extra: 192.3 / 162.8,
  11130. bottom: 1.79 / 194.17
  11131. }
  11132. },
  11133. side: {
  11134. height: math.unit(4 + 7 / 12, "feet"),
  11135. weight: math.unit(150, "lb"),
  11136. name: "Side",
  11137. image: {
  11138. source: "./media/characters/vanrel/side.svg",
  11139. extra: 1,
  11140. bottom: 0.025
  11141. }
  11142. },
  11143. tome: {
  11144. height: math.unit(1.35, "feet"),
  11145. weight: math.unit(10, "lb"),
  11146. name: "Vanrel's Tome",
  11147. rename: true,
  11148. image: {
  11149. source: "./media/characters/vanrel/tome.svg"
  11150. }
  11151. },
  11152. beans: {
  11153. height: math.unit(0.89, "feet"),
  11154. name: "Beans",
  11155. image: {
  11156. source: "./media/characters/vanrel/beans.svg"
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(4 + 7 / 12, "feet"),
  11164. default: true
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(7 + 5 / 12, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/kuiper-vanrel/front.svg",
  11177. extra: 1118 / 1068,
  11178. bottom: 0.09
  11179. }
  11180. },
  11181. foot: {
  11182. height: math.unit(0.55, "meters"),
  11183. name: "Foot",
  11184. image: {
  11185. source: "./media/characters/kuiper-vanrel/foot.svg",
  11186. }
  11187. },
  11188. battle: {
  11189. height: math.unit(6.824, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Battle",
  11192. image: {
  11193. source: "./media/characters/kuiper-vanrel/battle.svg",
  11194. extra: 1466 / 1327,
  11195. bottom: 29 / 1492.5
  11196. }
  11197. },
  11198. battleAlt: {
  11199. height: math.unit(6.824, "feet"),
  11200. weight: math.unit(150, "lb"),
  11201. name: "Battle (Alt)",
  11202. image: {
  11203. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11204. extra: 2081/1965,
  11205. bottom: 40/2121
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(7 + 5 / 12, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(8 + 5 / 12, "feet"),
  11222. weight: math.unit(150, "lb"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/keset-vanrel/front.svg",
  11226. extra: 1150 / 1084,
  11227. bottom: 0.05
  11228. }
  11229. },
  11230. hand: {
  11231. height: math.unit(0.6, "meters"),
  11232. name: "Hand",
  11233. image: {
  11234. source: "./media/characters/keset-vanrel/hand.svg"
  11235. }
  11236. },
  11237. foot: {
  11238. height: math.unit(0.94978, "meters"),
  11239. name: "Foot",
  11240. image: {
  11241. source: "./media/characters/keset-vanrel/foot.svg"
  11242. }
  11243. },
  11244. battle: {
  11245. height: math.unit(7.408, "feet"),
  11246. weight: math.unit(150, "lb"),
  11247. name: "Battle",
  11248. image: {
  11249. source: "./media/characters/keset-vanrel/battle.svg",
  11250. extra: 1890 / 1386,
  11251. bottom: 73.28 / 1970
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(8 + 5 / 12, "feet"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(6, "feet"),
  11268. weight: math.unit(150, "lb"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/neos/front.svg",
  11272. extra: 1696 / 992,
  11273. bottom: 0.14
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(54, "cm"),
  11281. default: true
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(100, "m")
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(10, "km")
  11290. },
  11291. {
  11292. name: "Megamacro+",
  11293. height: math.unit(100, "km")
  11294. },
  11295. {
  11296. name: "Gigamacro",
  11297. height: math.unit(100, "Mm")
  11298. },
  11299. {
  11300. name: "Teramacro",
  11301. height: math.unit(100, "Gm")
  11302. },
  11303. {
  11304. name: "Examacro",
  11305. height: math.unit(100, "Em")
  11306. },
  11307. {
  11308. name: "Godly",
  11309. height: math.unit(10000, "Ym")
  11310. },
  11311. {
  11312. name: "Beyond Godly",
  11313. height: math.unit(25, "multiverses")
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11319. {
  11320. feminine: {
  11321. height: math.unit(5, "feet"),
  11322. weight: math.unit(100, "lb"),
  11323. name: "Feminine",
  11324. image: {
  11325. source: "./media/characters/sammy-mouse/feminine.svg",
  11326. extra: 2526 / 2425,
  11327. bottom: 0.123
  11328. }
  11329. },
  11330. masculine: {
  11331. height: math.unit(5, "feet"),
  11332. weight: math.unit(100, "lb"),
  11333. name: "Masculine",
  11334. image: {
  11335. source: "./media/characters/sammy-mouse/masculine.svg",
  11336. extra: 2526 / 2425,
  11337. bottom: 0.123
  11338. }
  11339. },
  11340. },
  11341. [
  11342. {
  11343. name: "Micro",
  11344. height: math.unit(5, "inches")
  11345. },
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(5, "feet"),
  11349. default: true
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(60, "feet")
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(4, "feet"),
  11362. weight: math.unit(50, "lb"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/kole/front.svg",
  11366. extra: 1423 / 1303,
  11367. bottom: 0.025
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(4, "feet"),
  11372. weight: math.unit(50, "lb"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/kole/back.svg",
  11376. extra: 1426 / 1280,
  11377. bottom: 0.02
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(4, "feet"),
  11385. default: true
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(2 + 6 / 12, "feet"),
  11394. weight: math.unit(20, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/rufran/front.svg",
  11398. extra: 2041 / 1839,
  11399. bottom: 0.055
  11400. }
  11401. },
  11402. back: {
  11403. height: math.unit(2 + 6 / 12, "feet"),
  11404. weight: math.unit(20, "lb"),
  11405. name: "Back",
  11406. image: {
  11407. source: "./media/characters/rufran/back.svg",
  11408. extra: 2054 / 1839,
  11409. bottom: 0.01
  11410. }
  11411. },
  11412. hand: {
  11413. height: math.unit(0.2166, "meters"),
  11414. name: "Hand",
  11415. image: {
  11416. source: "./media/characters/rufran/hand.svg"
  11417. }
  11418. },
  11419. foot: {
  11420. height: math.unit(0.185, "meters"),
  11421. name: "Foot",
  11422. image: {
  11423. source: "./media/characters/rufran/foot.svg"
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Micro",
  11430. height: math.unit(1, "inch")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(2 + 6 / 12, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Big",
  11439. height: math.unit(60, "feet")
  11440. },
  11441. {
  11442. name: "Macro",
  11443. height: math.unit(325, "feet")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(0.3, "meters"),
  11452. weight: math.unit(3.5, "kg"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/chip/front.svg",
  11456. extra: 748 / 674
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Micro",
  11463. height: math.unit(1, "inch"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11470. {
  11471. side: {
  11472. height: math.unit(2.3, "meters"),
  11473. weight: math.unit(3500, "lb"),
  11474. name: "Side",
  11475. image: {
  11476. source: "./media/characters/torvid/side.svg",
  11477. extra: 1972 / 722,
  11478. bottom: 0.035
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(2.3, "meters"),
  11486. default: true
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(2, "meters"),
  11495. weight: math.unit(150.5, "kg"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/susan/front.svg",
  11499. extra: 693 / 635,
  11500. bottom: 0.05
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Megamacro",
  11507. height: math.unit(505, "miles"),
  11508. default: true
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(6, "feet"),
  11517. weight: math.unit(150, "lb"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/raindrops/front.svg",
  11521. extra: 2655 / 2461,
  11522. bottom: 49/2705
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(150, "lb"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/raindrops/back.svg",
  11531. extra: 2574 / 2400,
  11532. bottom: 65/2634
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Micro",
  11539. height: math.unit(6, "inches")
  11540. },
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(6 + 2 / 12, "feet")
  11544. },
  11545. {
  11546. name: "Macro",
  11547. height: math.unit(131, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(15, "miles")
  11553. },
  11554. {
  11555. name: "Gigamacro",
  11556. height: math.unit(4000, "miles")
  11557. },
  11558. {
  11559. name: "Teramacro",
  11560. height: math.unit(315000, "miles")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(2.794, "meters"),
  11569. weight: math.unit(325, "kg"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/tezwa/front.svg",
  11573. extra: 2083 / 1906,
  11574. bottom: 0.031
  11575. }
  11576. },
  11577. foot: {
  11578. height: math.unit(0.687, "meters"),
  11579. name: "Foot",
  11580. image: {
  11581. source: "./media/characters/tezwa/foot.svg"
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Normal",
  11588. height: math.unit(9 + 2 / 12, "feet"),
  11589. default: true
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11595. {
  11596. front: {
  11597. height: math.unit(58, "feet"),
  11598. weight: math.unit(89000, "lb"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/typhus/front.svg",
  11602. extra: 816 / 800,
  11603. bottom: 0.065
  11604. }
  11605. },
  11606. },
  11607. [
  11608. {
  11609. name: "Macro",
  11610. height: math.unit(58, "feet"),
  11611. default: true
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11617. {
  11618. front: {
  11619. height: math.unit(12, "feet"),
  11620. weight: math.unit(6, "tonnes"),
  11621. name: "Front",
  11622. image: {
  11623. source: "./media/characters/lyra-von-wulf/front.svg",
  11624. extra: 1,
  11625. bottom: 0.10
  11626. }
  11627. },
  11628. frontMecha: {
  11629. height: math.unit(12, "feet"),
  11630. weight: math.unit(12, "tonnes"),
  11631. name: "Front (Mecha)",
  11632. image: {
  11633. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11634. extra: 1,
  11635. bottom: 0.042
  11636. }
  11637. },
  11638. maw: {
  11639. height: math.unit(2.2, "feet"),
  11640. name: "Maw",
  11641. image: {
  11642. source: "./media/characters/lyra-von-wulf/maw.svg"
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(12, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Classic",
  11654. height: math.unit(50, "feet")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(500, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(1, "mile")
  11663. },
  11664. {
  11665. name: "Gigamacro",
  11666. height: math.unit(400, "miles")
  11667. },
  11668. {
  11669. name: "Teramacro",
  11670. height: math.unit(22000, "miles")
  11671. },
  11672. {
  11673. name: "Solarmacro",
  11674. height: math.unit(8600000, "miles")
  11675. },
  11676. {
  11677. name: "Galactic",
  11678. height: math.unit(1057000, "lightyears")
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6 + 10 / 12, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/dixon/front.svg",
  11691. extra: 3361 / 3209,
  11692. bottom: 0.01
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(6 + 10 / 12, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Big",
  11704. height: math.unit(12, "meters")
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(500, "meters")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(2, "km")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(185, "cm"),
  11721. weight: math.unit(68, "kg"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/kauko/front.svg",
  11725. extra: 1455 / 1421,
  11726. bottom: 0.03
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(185, "cm"),
  11731. weight: math.unit(68, "kg"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/kauko/back.svg",
  11735. extra: 1455 / 1421,
  11736. bottom: 0.004
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(185, "cm"),
  11744. default: true
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "kg"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/varg/front.svg",
  11757. extra: 1108 / 1018,
  11758. bottom: 0.0375
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(5, "meters")
  11766. },
  11767. {
  11768. name: "Macro",
  11769. height: math.unit(200, "meters")
  11770. },
  11771. {
  11772. name: "Megamacro",
  11773. height: math.unit(20, "kilometers")
  11774. },
  11775. {
  11776. name: "True Size",
  11777. height: math.unit(211, "km"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Gigamacro",
  11782. height: math.unit(1000, "km")
  11783. },
  11784. {
  11785. name: "Gigamacro+",
  11786. height: math.unit(8000, "km")
  11787. },
  11788. {
  11789. name: "Teramacro",
  11790. height: math.unit(1000000, "km")
  11791. },
  11792. ]
  11793. ))
  11794. characterMakers.push(() => makeCharacter(
  11795. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11796. {
  11797. front: {
  11798. height: math.unit(7 + 7 / 12, "feet"),
  11799. weight: math.unit(267, "lb"),
  11800. name: "Front",
  11801. image: {
  11802. source: "./media/characters/dayza/front.svg",
  11803. extra: 1262 / 1200,
  11804. bottom: 0.035
  11805. }
  11806. },
  11807. side: {
  11808. height: math.unit(7 + 7 / 12, "feet"),
  11809. weight: math.unit(267, "lb"),
  11810. name: "Side",
  11811. image: {
  11812. source: "./media/characters/dayza/side.svg",
  11813. extra: 1295 / 1245,
  11814. bottom: 0.05
  11815. }
  11816. },
  11817. back: {
  11818. height: math.unit(7 + 7 / 12, "feet"),
  11819. weight: math.unit(267, "lb"),
  11820. name: "Back",
  11821. image: {
  11822. source: "./media/characters/dayza/back.svg",
  11823. extra: 1241 / 1170
  11824. }
  11825. },
  11826. },
  11827. [
  11828. {
  11829. name: "Normal",
  11830. height: math.unit(7 + 7 / 12, "feet"),
  11831. default: true
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(155, "feet")
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(6 + 5 / 12, "feet"),
  11844. weight: math.unit(160, "lb"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/xanthos/front.svg",
  11848. extra: 1,
  11849. bottom: 0.04
  11850. }
  11851. },
  11852. back: {
  11853. height: math.unit(6 + 5 / 12, "feet"),
  11854. weight: math.unit(160, "lb"),
  11855. name: "Back",
  11856. image: {
  11857. source: "./media/characters/xanthos/back.svg",
  11858. extra: 1,
  11859. bottom: 0.03
  11860. }
  11861. },
  11862. hand: {
  11863. height: math.unit(0.928, "feet"),
  11864. name: "Hand",
  11865. image: {
  11866. source: "./media/characters/xanthos/hand.svg"
  11867. }
  11868. },
  11869. foot: {
  11870. height: math.unit(1.286, "feet"),
  11871. name: "Foot",
  11872. image: {
  11873. source: "./media/characters/xanthos/foot.svg"
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(6 + 5 / 12, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Normal+",
  11885. height: math.unit(6, "meters")
  11886. },
  11887. {
  11888. name: "Macro",
  11889. height: math.unit(40, "feet")
  11890. },
  11891. {
  11892. name: "Macro+",
  11893. height: math.unit(200, "meters")
  11894. },
  11895. {
  11896. name: "Megamacro",
  11897. height: math.unit(20, "km")
  11898. },
  11899. {
  11900. name: "Megamacro+",
  11901. height: math.unit(100, "km")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6 + 3 / 12, "feet"),
  11910. weight: math.unit(215, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/grynn/front.svg",
  11914. extra: 4627 / 4209,
  11915. bottom: 0.047
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(6, "inches")
  11923. },
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(6 + 3 / 12, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Big",
  11931. height: math.unit(104, "feet")
  11932. },
  11933. {
  11934. name: "Macro",
  11935. height: math.unit(944, "feet")
  11936. },
  11937. {
  11938. name: "Macro+",
  11939. height: math.unit(9480, "feet")
  11940. },
  11941. {
  11942. name: "Megamacro",
  11943. height: math.unit(78752, "feet")
  11944. },
  11945. {
  11946. name: "Megamacro+",
  11947. height: math.unit(630128, "feet")
  11948. },
  11949. {
  11950. name: "Megamacro++",
  11951. height: math.unit(3150695, "feet")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(7 + 5 / 12, "feet"),
  11960. weight: math.unit(450, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/mocha-aura/front.svg",
  11964. extra: 1907 / 1817,
  11965. bottom: 0.04
  11966. }
  11967. },
  11968. back: {
  11969. height: math.unit(7 + 5 / 12, "feet"),
  11970. weight: math.unit(450, "lb"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/mocha-aura/back.svg",
  11974. extra: 1900 / 1825,
  11975. bottom: 0.045
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Nano",
  11982. height: math.unit(1, "nm")
  11983. },
  11984. {
  11985. name: "Megamicro",
  11986. height: math.unit(1, "mm")
  11987. },
  11988. {
  11989. name: "Micro",
  11990. height: math.unit(3, "inches")
  11991. },
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(7 + 5 / 12, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Macro",
  11999. height: math.unit(30, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(3500, "feet")
  12004. },
  12005. {
  12006. name: "Teramacro",
  12007. height: math.unit(500000, "miles")
  12008. },
  12009. {
  12010. name: "Petamacro",
  12011. height: math.unit(50000000000000000, "parsecs")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(150, "lb"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/ilisha-devya/front.svg",
  12024. extra: 1,
  12025. bottom: 0.175
  12026. }
  12027. },
  12028. back: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Back",
  12032. image: {
  12033. source: "./media/characters/ilisha-devya/back.svg",
  12034. extra: 1,
  12035. bottom: 0.015
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Macro",
  12042. height: math.unit(500, "feet"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Megamacro",
  12047. height: math.unit(10, "miles")
  12048. },
  12049. {
  12050. name: "Gigamacro",
  12051. height: math.unit(100000, "miles")
  12052. },
  12053. {
  12054. name: "Examacro",
  12055. height: math.unit(1e9, "lightyears")
  12056. },
  12057. {
  12058. name: "Omniversal",
  12059. height: math.unit(1e33, "lightyears")
  12060. },
  12061. {
  12062. name: "Beyond Infinite",
  12063. height: math.unit(1e100, "lightyears")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12069. {
  12070. Side: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Side",
  12074. image: {
  12075. source: "./media/characters/mira/side.svg",
  12076. extra: 900 / 799,
  12077. bottom: 0.02
  12078. }
  12079. },
  12080. },
  12081. [
  12082. {
  12083. name: "Human Size",
  12084. height: math.unit(6, "feet")
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(100, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Megamacro",
  12093. height: math.unit(10, "miles")
  12094. },
  12095. {
  12096. name: "Gigamacro",
  12097. height: math.unit(25000, "miles")
  12098. },
  12099. {
  12100. name: "Teramacro",
  12101. height: math.unit(300, "AU")
  12102. },
  12103. {
  12104. name: "Full Size",
  12105. height: math.unit(4.5e10, "lightyears")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/holly/front.svg",
  12118. extra: 639 / 606
  12119. }
  12120. },
  12121. back: {
  12122. height: math.unit(6, "feet"),
  12123. weight: math.unit(150, "lb"),
  12124. name: "Back",
  12125. image: {
  12126. source: "./media/characters/holly/back.svg",
  12127. extra: 623 / 598
  12128. }
  12129. },
  12130. frontWorking: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Front (Working)",
  12134. image: {
  12135. source: "./media/characters/holly/front-working.svg",
  12136. extra: 607 / 577,
  12137. bottom: 0.048
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(12 + 3 / 12, "feet"),
  12145. default: true
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(150, "lb"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/porter/front.svg",
  12158. extra: 1,
  12159. bottom: 0.01
  12160. }
  12161. },
  12162. frontRobes: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(150, "lb"),
  12165. name: "Front (Robes)",
  12166. image: {
  12167. source: "./media/characters/porter/front-robes.svg",
  12168. extra: 1.01,
  12169. bottom: 0.01
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(11 + 9 / 12, "feet"),
  12177. default: true
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12183. {
  12184. legendary: {
  12185. height: math.unit(6, "feet"),
  12186. weight: math.unit(150, "lb"),
  12187. name: "Legendary",
  12188. image: {
  12189. source: "./media/characters/lucy/legendary.svg",
  12190. extra: 1355 / 1100,
  12191. bottom: 0.045
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Legendary",
  12198. height: math.unit(86882 * 2, "miles"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(6, "feet"),
  12208. weight: math.unit(150, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/drusilla/front.svg",
  12212. extra: 678 / 635,
  12213. bottom: 0.03
  12214. }
  12215. },
  12216. back: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(150, "lb"),
  12219. name: "Back",
  12220. image: {
  12221. source: "./media/characters/drusilla/back.svg",
  12222. extra: 678 / 635,
  12223. bottom: 0.005
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(100, "feet")
  12231. },
  12232. {
  12233. name: "Canon Height",
  12234. height: math.unit(2000, "feet"),
  12235. default: true
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12241. {
  12242. front: {
  12243. height: math.unit(6, "feet"),
  12244. weight: math.unit(180, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/renard-thatch/front.svg",
  12248. extra: 2411 / 2275,
  12249. bottom: 0.01
  12250. }
  12251. },
  12252. frontPosing: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(180, "lb"),
  12255. name: "Front (Posing)",
  12256. image: {
  12257. source: "./media/characters/renard-thatch/front-posing.svg",
  12258. extra: 2381 / 2261,
  12259. bottom: 0.01
  12260. }
  12261. },
  12262. back: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(180, "lb"),
  12265. name: "Back",
  12266. image: {
  12267. source: "./media/characters/renard-thatch/back.svg",
  12268. extra: 2428 / 2288
  12269. }
  12270. },
  12271. },
  12272. [
  12273. {
  12274. name: "Micro",
  12275. height: math.unit(3, "inches")
  12276. },
  12277. {
  12278. name: "Default",
  12279. height: math.unit(6, "feet"),
  12280. default: true
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(75, "feet")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12290. {
  12291. front: {
  12292. height: math.unit(1450, "feet"),
  12293. weight: math.unit(1.21e6, "tons"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/sekvra/front.svg",
  12297. extra: 1,
  12298. bottom: 0.03
  12299. }
  12300. },
  12301. frontClothed: {
  12302. height: math.unit(1450, "feet"),
  12303. weight: math.unit(1.21e6, "tons"),
  12304. name: "Front (Clothed)",
  12305. image: {
  12306. source: "./media/characters/sekvra/front-clothed.svg",
  12307. extra: 1,
  12308. bottom: 0.03
  12309. }
  12310. },
  12311. side: {
  12312. height: math.unit(1450, "feet"),
  12313. weight: math.unit(1.21e6, "tons"),
  12314. name: "Side",
  12315. image: {
  12316. source: "./media/characters/sekvra/side.svg",
  12317. extra: 1,
  12318. bottom: 0.025
  12319. }
  12320. },
  12321. back: {
  12322. height: math.unit(1450, "feet"),
  12323. weight: math.unit(1.21e6, "tons"),
  12324. name: "Back",
  12325. image: {
  12326. source: "./media/characters/sekvra/back.svg",
  12327. extra: 1,
  12328. bottom: 0.005
  12329. }
  12330. },
  12331. },
  12332. [
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(1450, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(15000, "feet")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(6, "feet"),
  12349. weight: math.unit(150, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/carmine/front.svg",
  12353. extra: 1,
  12354. bottom: 0.035
  12355. }
  12356. },
  12357. frontArmor: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(150, "lb"),
  12360. name: "Front (Armor)",
  12361. image: {
  12362. source: "./media/characters/carmine/front-armor.svg",
  12363. extra: 1,
  12364. bottom: 0.035
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Large",
  12371. height: math.unit(1, "mile")
  12372. },
  12373. {
  12374. name: "Huge",
  12375. height: math.unit(40, "miles"),
  12376. default: true
  12377. },
  12378. {
  12379. name: "Colossal",
  12380. height: math.unit(2500, "miles")
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(6, "feet"),
  12389. weight: math.unit(150, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/elyssia/front.svg",
  12393. extra: 2201 / 2035,
  12394. bottom: 0.05
  12395. }
  12396. },
  12397. frontClothed: {
  12398. height: math.unit(6, "feet"),
  12399. weight: math.unit(150, "lb"),
  12400. name: "Front (Clothed)",
  12401. image: {
  12402. source: "./media/characters/elyssia/front-clothed.svg",
  12403. extra: 2201 / 2035,
  12404. bottom: 0.05
  12405. }
  12406. },
  12407. back: {
  12408. height: math.unit(6, "feet"),
  12409. weight: math.unit(150, "lb"),
  12410. name: "Back",
  12411. image: {
  12412. source: "./media/characters/elyssia/back.svg",
  12413. extra: 2201 / 2035,
  12414. bottom: 0.013
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Smaller",
  12421. height: math.unit(150, "feet")
  12422. },
  12423. {
  12424. name: "Standard",
  12425. height: math.unit(1400, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Distracted",
  12430. height: math.unit(15000, "feet")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(7 + 4 / 12, "feet"),
  12439. weight: math.unit(500, "lb"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/geno-maxwell/front.svg",
  12443. extra: 2207 / 2040,
  12444. bottom: 0.015
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Micro",
  12451. height: math.unit(3, "inches")
  12452. },
  12453. {
  12454. name: "Normal",
  12455. height: math.unit(7 + 4 / 12, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Macro",
  12460. height: math.unit(220, "feet")
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(11, "miles")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(7 + 4 / 12, "feet"),
  12473. weight: math.unit(500, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/regena-maxwell/front.svg",
  12477. extra: 3115 / 2770,
  12478. bottom: 0.02
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Normal",
  12485. height: math.unit(7 + 4 / 12, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Macro",
  12490. height: math.unit(220, "feet")
  12491. },
  12492. {
  12493. name: "Megamacro",
  12494. height: math.unit(11, "miles")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], 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/x-gliding-dragon-x/front.svg",
  12507. extra: 860 / 690,
  12508. bottom: 0.03
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(1.7, "meters"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(150, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/quilly/front.svg",
  12529. extra: 890 / 776
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Gigamacro",
  12536. height: math.unit(404090, "miles"),
  12537. default: true
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(7 + 8 / 12, "feet"),
  12546. weight: math.unit(350, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/tempest/front.svg",
  12550. extra: 1175 / 1086,
  12551. bottom: 0.02
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(7 + 8 / 12, "feet"),
  12559. default: true
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12565. {
  12566. side: {
  12567. height: math.unit(4 + 5 / 12, "feet"),
  12568. weight: math.unit(80, "lb"),
  12569. name: "Side",
  12570. image: {
  12571. source: "./media/characters/rodger/side.svg",
  12572. extra: 1235 / 1118
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Micro",
  12579. height: math.unit(1, "inch")
  12580. },
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(4 + 5 / 12, "feet"),
  12584. default: true
  12585. },
  12586. {
  12587. name: "Macro",
  12588. height: math.unit(120, "feet")
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/danyel/front.svg",
  12601. extra: 1185 / 1123,
  12602. bottom: 0.05
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Shrunken",
  12609. height: math.unit(0.5, "mm")
  12610. },
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(1, "mm"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Upsized",
  12618. height: math.unit(5 + 5 / 12, "feet")
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(5 + 6 / 12, "feet"),
  12627. weight: math.unit(200, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/vivian-bijoux/front.svg",
  12631. extra: 1,
  12632. bottom: 0.072
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(5 + 6 / 12, "feet"),
  12640. default: true
  12641. },
  12642. {
  12643. name: "Bad Dream",
  12644. height: math.unit(500, "feet")
  12645. },
  12646. {
  12647. name: "Nightmare",
  12648. height: math.unit(500, "miles")
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(6 + 1 / 12, "feet"),
  12657. weight: math.unit(260, "lb"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/zeta/front.svg",
  12661. extra: 1968 / 1889,
  12662. bottom: 0.06
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(6 + 1 / 12, "feet"),
  12667. weight: math.unit(260, "lb"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/zeta/back.svg",
  12671. extra: 1944 / 1858,
  12672. bottom: 0.03
  12673. }
  12674. },
  12675. hand: {
  12676. height: math.unit(1.112, "feet"),
  12677. name: "Hand",
  12678. image: {
  12679. source: "./media/characters/zeta/hand.svg"
  12680. }
  12681. },
  12682. foot: {
  12683. height: math.unit(1.48, "feet"),
  12684. name: "Foot",
  12685. image: {
  12686. source: "./media/characters/zeta/foot.svg"
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Micro",
  12693. height: math.unit(6, "inches")
  12694. },
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(6 + 1 / 12, "feet"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Macro",
  12702. height: math.unit(20, "feet")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/jamie-larsen/front.svg",
  12715. extra: 962 / 933,
  12716. bottom: 0.02
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/jamie-larsen/back.svg",
  12725. extra: 997 / 946
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(28 + 7 / 12, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Macro+",
  12737. height: math.unit(180, "feet")
  12738. },
  12739. {
  12740. name: "Megamacro",
  12741. height: math.unit(10, "miles")
  12742. },
  12743. {
  12744. name: "Gigamacro",
  12745. height: math.unit(200000, "miles")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(120, "lb"),
  12755. name: "Front",
  12756. image: {
  12757. source: "./media/characters/vance/front.svg",
  12758. extra: 1980 / 1890,
  12759. bottom: 0.09
  12760. }
  12761. },
  12762. back: {
  12763. height: math.unit(6, "feet"),
  12764. weight: math.unit(120, "lb"),
  12765. name: "Back",
  12766. image: {
  12767. source: "./media/characters/vance/back.svg",
  12768. extra: 2081 / 1994,
  12769. bottom: 0.014
  12770. }
  12771. },
  12772. hand: {
  12773. height: math.unit(0.88, "feet"),
  12774. name: "Hand",
  12775. image: {
  12776. source: "./media/characters/vance/hand.svg"
  12777. }
  12778. },
  12779. foot: {
  12780. height: math.unit(0.64, "feet"),
  12781. name: "Foot",
  12782. image: {
  12783. source: "./media/characters/vance/foot.svg"
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Small",
  12790. height: math.unit(90, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(100, "meters")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(15, "miles")
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12805. {
  12806. front: {
  12807. height: math.unit(6, "feet"),
  12808. weight: math.unit(180, "lb"),
  12809. name: "Front",
  12810. image: {
  12811. source: "./media/characters/xochitl/front.svg",
  12812. extra: 2297 / 2261,
  12813. bottom: 0.065
  12814. }
  12815. },
  12816. back: {
  12817. height: math.unit(6, "feet"),
  12818. weight: math.unit(180, "lb"),
  12819. name: "Back",
  12820. image: {
  12821. source: "./media/characters/xochitl/back.svg",
  12822. extra: 2386 / 2354,
  12823. bottom: 0.01
  12824. }
  12825. },
  12826. foot: {
  12827. height: math.unit(6 / 5 * 1.15, "feet"),
  12828. weight: math.unit(150, "lb"),
  12829. name: "Foot",
  12830. image: {
  12831. source: "./media/characters/xochitl/foot.svg"
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Macro",
  12838. height: math.unit(80, "feet")
  12839. },
  12840. {
  12841. name: "Macro+",
  12842. height: math.unit(400, "feet"),
  12843. default: true
  12844. },
  12845. {
  12846. name: "Gigamacro",
  12847. height: math.unit(80000, "miles")
  12848. },
  12849. {
  12850. name: "Gigamacro+",
  12851. height: math.unit(400000, "miles")
  12852. },
  12853. {
  12854. name: "Teramacro",
  12855. height: math.unit(300, "AU")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/vincent/front.svg",
  12868. extra: 1130 / 1080,
  12869. bottom: 0.055
  12870. }
  12871. },
  12872. beak: {
  12873. height: math.unit(6 * 0.1, "feet"),
  12874. name: "Beak",
  12875. image: {
  12876. source: "./media/characters/vincent/beak.svg"
  12877. }
  12878. },
  12879. hand: {
  12880. height: math.unit(6 * 0.85, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Hand",
  12883. image: {
  12884. source: "./media/characters/vincent/hand.svg"
  12885. }
  12886. },
  12887. foot: {
  12888. height: math.unit(6 * 0.19, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Foot",
  12891. image: {
  12892. source: "./media/characters/vincent/foot.svg"
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Base",
  12899. height: math.unit(6 + 5 / 12, "feet"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(300, "feet")
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(2, "miles")
  12909. },
  12910. {
  12911. name: "Gigamacro",
  12912. height: math.unit(1000, "miles")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(6 + 2 / 12, "feet"),
  12921. weight: math.unit(265, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/jay/front.svg",
  12925. extra: 1510 / 1430,
  12926. bottom: 0.042
  12927. }
  12928. },
  12929. back: {
  12930. height: math.unit(6 + 2 / 12, "feet"),
  12931. weight: math.unit(265, "lb"),
  12932. name: "Back",
  12933. image: {
  12934. source: "./media/characters/jay/back.svg",
  12935. extra: 1510 / 1430,
  12936. bottom: 0.025
  12937. }
  12938. },
  12939. clothed: {
  12940. height: math.unit(6 + 2 / 12, "feet"),
  12941. weight: math.unit(265, "lb"),
  12942. name: "Front (Clothed)",
  12943. image: {
  12944. source: "./media/characters/jay/clothed.svg",
  12945. extra: 744 / 699,
  12946. bottom: 0.043
  12947. }
  12948. },
  12949. head: {
  12950. height: math.unit(1.772, "feet"),
  12951. name: "Head",
  12952. image: {
  12953. source: "./media/characters/jay/head.svg"
  12954. }
  12955. },
  12956. sizeRay: {
  12957. height: math.unit(1.331, "feet"),
  12958. name: "Size Ray",
  12959. image: {
  12960. source: "./media/characters/jay/size-ray.svg"
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Micro",
  12967. height: math.unit(1, "inch")
  12968. },
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(6 + 2 / 12, "feet"),
  12972. default: true
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(1, "mile")
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(100, "miles")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(2, "meters"),
  12989. weight: math.unit(500, "kg"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/coatl/front.svg",
  12993. extra: 3948 / 3500,
  12994. bottom: 0.082
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(4, "meters")
  13002. },
  13003. {
  13004. name: "Macro",
  13005. height: math.unit(100, "meters"),
  13006. default: true
  13007. },
  13008. {
  13009. name: "Macro+",
  13010. height: math.unit(300, "meters")
  13011. },
  13012. {
  13013. name: "Megamacro",
  13014. height: math.unit(3, "gigameters")
  13015. },
  13016. {
  13017. name: "Megamacro+",
  13018. height: math.unit(300, "terameters")
  13019. },
  13020. {
  13021. name: "Megamacro++",
  13022. height: math.unit(3, "lightyears")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(50, "kg"),
  13032. name: "front",
  13033. image: {
  13034. source: "./media/characters/shiroryu/front.svg",
  13035. extra: 1990 / 1935
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Mortal Mingling",
  13042. height: math.unit(3, "meters")
  13043. },
  13044. {
  13045. name: "Kaiju-ish",
  13046. height: math.unit(250, "meters")
  13047. },
  13048. {
  13049. name: "Somewhat Godly",
  13050. height: math.unit(400, "km"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Planetary",
  13055. height: math.unit(300, "megameters")
  13056. },
  13057. {
  13058. name: "Galaxy-dwarfing",
  13059. height: math.unit(450, "kiloparsecs")
  13060. },
  13061. {
  13062. name: "Universe Eater",
  13063. height: math.unit(150, "gigaparsecs")
  13064. },
  13065. {
  13066. name: "Almost Immeasurable",
  13067. height: math.unit(1.3e266, "yottaparsecs")
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13073. {
  13074. front: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(150, "lb"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/umeko/front.svg",
  13080. extra: 1,
  13081. bottom: 0.019
  13082. }
  13083. },
  13084. frontArmored: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front (Armored)",
  13088. image: {
  13089. source: "./media/characters/umeko/front-armored.svg",
  13090. extra: 1,
  13091. bottom: 0.021
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Macro",
  13098. height: math.unit(220, "feet"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Guardian Dragon",
  13103. height: math.unit(50, "miles")
  13104. },
  13105. {
  13106. name: "Cosmic",
  13107. height: math.unit(800000, "miles")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13113. {
  13114. front: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/cassidy/front.svg",
  13120. extra: 1,
  13121. bottom: 0.043
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Canon Height",
  13128. height: math.unit(120, "feet"),
  13129. default: true
  13130. },
  13131. {
  13132. name: "Macro+",
  13133. height: math.unit(400, "feet")
  13134. },
  13135. {
  13136. name: "Macro++",
  13137. height: math.unit(4000, "feet")
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(3, "miles")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/isaac/front.svg",
  13154. extra: 896 / 815,
  13155. bottom: 0.11
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Human Size",
  13162. height: math.unit(8, "feet"),
  13163. default: true
  13164. },
  13165. {
  13166. name: "Macro",
  13167. height: math.unit(400, "feet")
  13168. },
  13169. {
  13170. name: "Megamacro",
  13171. height: math.unit(50, "miles")
  13172. },
  13173. {
  13174. name: "Canon Height",
  13175. height: math.unit(200, "AU")
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(6, "feet"),
  13184. weight: math.unit(72, "kg"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/sleekit/front.svg",
  13188. extra: 4693 / 4487,
  13189. bottom: 0.012
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Minimum Height",
  13196. height: math.unit(10, "meters")
  13197. },
  13198. {
  13199. name: "Smaller",
  13200. height: math.unit(25, "meters")
  13201. },
  13202. {
  13203. name: "Larger",
  13204. height: math.unit(38, "meters"),
  13205. default: true
  13206. },
  13207. {
  13208. name: "Maximum height",
  13209. height: math.unit(100, "meters")
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "lb"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/nillia/front.svg",
  13222. extra: 2195 / 2037,
  13223. bottom: 0.005
  13224. }
  13225. },
  13226. back: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Back",
  13230. image: {
  13231. source: "./media/characters/nillia/back.svg",
  13232. extra: 2195 / 2037,
  13233. bottom: 0.005
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Canon Height",
  13240. height: math.unit(489, "feet"),
  13241. default: true
  13242. }
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(150, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/mesmyriza/front.svg",
  13254. extra: 2067 / 1784,
  13255. bottom: 0.035
  13256. }
  13257. },
  13258. foot: {
  13259. height: math.unit(6 / (250 / 35), "feet"),
  13260. name: "Foot",
  13261. image: {
  13262. source: "./media/characters/mesmyriza/foot.svg"
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(457, "meters"),
  13270. default: true
  13271. },
  13272. {
  13273. name: "Megamacro",
  13274. height: math.unit(8, "megameters")
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(250, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/saudade/front.svg",
  13287. extra: 1172 / 1139,
  13288. bottom: 0.035
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Micro",
  13295. height: math.unit(3, "inches")
  13296. },
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(6, "feet"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Macro",
  13304. height: math.unit(50, "feet")
  13305. },
  13306. {
  13307. name: "Megamacro",
  13308. height: math.unit(2800, "feet")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(5 + 4 / 12, "feet"),
  13317. weight: math.unit(100, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/keireer/front.svg",
  13321. extra: 716 / 666,
  13322. bottom: 0.05
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Normal",
  13329. height: math.unit(5 + 4 / 12, "feet"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(90, "kg"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/mirja/front.svg",
  13343. extra: 1789 / 1683,
  13344. bottom: 0.05
  13345. }
  13346. },
  13347. frontDressed: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(90, "lb"),
  13350. name: "Front (Dressed)",
  13351. image: {
  13352. source: "./media/characters/mirja/front-dressed.svg",
  13353. extra: 1789 / 1683,
  13354. bottom: 0.05
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(90, "lb"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/mirja/back.svg",
  13363. extra: 953 / 917,
  13364. bottom: 0.017
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "\"Incognito\"",
  13371. height: math.unit(3, "meters")
  13372. },
  13373. {
  13374. name: "Strolling Size",
  13375. height: math.unit(15, "km")
  13376. },
  13377. {
  13378. name: "Larger Strolling Size",
  13379. height: math.unit(400, "km")
  13380. },
  13381. {
  13382. name: "Preferred Size",
  13383. height: math.unit(5000, "km")
  13384. },
  13385. {
  13386. name: "True Size",
  13387. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13388. default: true
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(15, "feet"),
  13397. weight: math.unit(880, "kg"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/nightraver/front.svg",
  13401. extra: 2444 / 2160,
  13402. bottom: 0.027
  13403. }
  13404. },
  13405. back: {
  13406. height: math.unit(15, "feet"),
  13407. weight: math.unit(880, "kg"),
  13408. name: "Back",
  13409. image: {
  13410. source: "./media/characters/nightraver/back.svg",
  13411. extra: 2309 / 2180,
  13412. bottom: 0.005
  13413. }
  13414. },
  13415. sole: {
  13416. height: math.unit(2.878, "feet"),
  13417. name: "Sole",
  13418. image: {
  13419. source: "./media/characters/nightraver/sole.svg"
  13420. }
  13421. },
  13422. foot: {
  13423. height: math.unit(2.285, "feet"),
  13424. name: "Foot",
  13425. image: {
  13426. source: "./media/characters/nightraver/foot.svg"
  13427. }
  13428. },
  13429. maw: {
  13430. height: math.unit(2.67, "feet"),
  13431. name: "Maw",
  13432. image: {
  13433. source: "./media/characters/nightraver/maw.svg"
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Micro",
  13440. height: math.unit(1, "cm")
  13441. },
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(15, "feet"),
  13445. default: true
  13446. },
  13447. {
  13448. name: "Macro",
  13449. height: math.unit(300, "feet")
  13450. },
  13451. {
  13452. name: "Megamacro",
  13453. height: math.unit(300, "miles")
  13454. },
  13455. {
  13456. name: "Gigamacro",
  13457. height: math.unit(10000, "miles")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13463. {
  13464. side: {
  13465. height: math.unit(2, "inches"),
  13466. weight: math.unit(5, "grams"),
  13467. name: "Side",
  13468. image: {
  13469. source: "./media/characters/arc/side.svg"
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Micro",
  13476. height: math.unit(2, "inches"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(1.1938, "meters"),
  13486. weight: math.unit(54, "kg"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/nebula-shahar/front.svg",
  13490. extra: 1642 / 1436,
  13491. bottom: 0.06
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Megamicro",
  13498. height: math.unit(0.3, "mm")
  13499. },
  13500. {
  13501. name: "Micro",
  13502. height: math.unit(3, "cm")
  13503. },
  13504. {
  13505. name: "Normal",
  13506. height: math.unit(138, "cm"),
  13507. default: true
  13508. },
  13509. {
  13510. name: "Macro",
  13511. height: math.unit(30, "m")
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(5.24, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/shayla/front.svg",
  13524. extra: 1512 / 1414,
  13525. bottom: 0.01
  13526. }
  13527. },
  13528. back: {
  13529. height: math.unit(5.24, "feet"),
  13530. weight: math.unit(150, "lb"),
  13531. name: "Back",
  13532. image: {
  13533. source: "./media/characters/shayla/back.svg",
  13534. extra: 1512 / 1414
  13535. }
  13536. },
  13537. hand: {
  13538. height: math.unit(0.7781496062992126, "feet"),
  13539. name: "Hand",
  13540. image: {
  13541. source: "./media/characters/shayla/hand.svg"
  13542. }
  13543. },
  13544. foot: {
  13545. height: math.unit(1.4206036745406823, "feet"),
  13546. name: "Foot",
  13547. image: {
  13548. source: "./media/characters/shayla/foot.svg"
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Micro",
  13555. height: math.unit(0.32, "feet")
  13556. },
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(5.24, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Macro",
  13564. height: math.unit(492.12, "feet")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(186.41, "miles")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(2.2, "m"),
  13577. weight: math.unit(120, "kg"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/pia-jr/front.svg",
  13581. extra: 1000 / 970,
  13582. bottom: 0.035
  13583. }
  13584. },
  13585. hand: {
  13586. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13587. name: "Hand",
  13588. image: {
  13589. source: "./media/characters/pia-jr/hand.svg"
  13590. }
  13591. },
  13592. paw: {
  13593. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13594. name: "Paw",
  13595. image: {
  13596. source: "./media/characters/pia-jr/paw.svg"
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Micro",
  13603. height: math.unit(1.2, "cm")
  13604. },
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(2.2, "m"),
  13608. default: true
  13609. },
  13610. {
  13611. name: "Macro",
  13612. height: math.unit(180, "m")
  13613. },
  13614. {
  13615. name: "Megamacro",
  13616. height: math.unit(420, "km")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(2, "m"),
  13625. weight: math.unit(115, "kg"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/pia-sr/front.svg",
  13629. extra: 760 / 730,
  13630. bottom: 0.015
  13631. }
  13632. },
  13633. back: {
  13634. height: math.unit(2, "m"),
  13635. weight: math.unit(115, "kg"),
  13636. name: "Back",
  13637. image: {
  13638. source: "./media/characters/pia-sr/back.svg",
  13639. extra: 760 / 730,
  13640. bottom: 0.01
  13641. }
  13642. },
  13643. hand: {
  13644. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13645. name: "Hand",
  13646. image: {
  13647. source: "./media/characters/pia-sr/hand.svg"
  13648. }
  13649. },
  13650. foot: {
  13651. height: math.unit(1.83, "feet"),
  13652. name: "Foot",
  13653. image: {
  13654. source: "./media/characters/pia-sr/foot.svg"
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(88, "mm")
  13662. },
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(2, "m"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Macro",
  13670. height: math.unit(200, "m")
  13671. },
  13672. {
  13673. name: "Megamacro",
  13674. height: math.unit(420, "km")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13680. {
  13681. front: {
  13682. height: math.unit(8 + 2 / 12, "feet"),
  13683. weight: math.unit(300, "lb"),
  13684. name: "Front",
  13685. image: {
  13686. source: "./media/characters/kibibyte/front.svg",
  13687. extra: 2221 / 2098,
  13688. bottom: 0.04
  13689. }
  13690. },
  13691. },
  13692. [
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(8 + 2 / 12, "feet"),
  13696. default: true
  13697. },
  13698. {
  13699. name: "Socialable Macro",
  13700. height: math.unit(50, "feet")
  13701. },
  13702. {
  13703. name: "Macro",
  13704. height: math.unit(300, "feet")
  13705. },
  13706. {
  13707. name: "Megamacro",
  13708. height: math.unit(500, "miles")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/felix/front.svg",
  13721. extra: 762 / 722,
  13722. bottom: 0.02
  13723. }
  13724. },
  13725. frontClothed: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Front (Clothed)",
  13729. image: {
  13730. source: "./media/characters/felix/front-clothed.svg",
  13731. extra: 762 / 722,
  13732. bottom: 0.02
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Normal",
  13739. height: math.unit(6 + 8 / 12, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(2600, "feet")
  13745. },
  13746. {
  13747. name: "Megamacro",
  13748. height: math.unit(450, "miles")
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13754. {
  13755. front: {
  13756. height: math.unit(6 + 1 / 12, "feet"),
  13757. weight: math.unit(250, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/tobo/front.svg",
  13761. extra: 608 / 586,
  13762. bottom: 0.023
  13763. }
  13764. },
  13765. back: {
  13766. height: math.unit(6 + 1 / 12, "feet"),
  13767. weight: math.unit(250, "lb"),
  13768. name: "Back",
  13769. image: {
  13770. source: "./media/characters/tobo/back.svg",
  13771. extra: 608 / 586
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Nano",
  13778. height: math.unit(2, "nm")
  13779. },
  13780. {
  13781. name: "Megamicro",
  13782. height: math.unit(0.1, "mm")
  13783. },
  13784. {
  13785. name: "Micro",
  13786. height: math.unit(1, "inch"),
  13787. default: true
  13788. },
  13789. {
  13790. name: "Human-sized",
  13791. height: math.unit(6 + 1 / 12, "feet")
  13792. },
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(250, "feet")
  13796. },
  13797. {
  13798. name: "Megamacro",
  13799. height: math.unit(75, "miles")
  13800. },
  13801. {
  13802. name: "Texas-sized",
  13803. height: math.unit(750, "miles")
  13804. },
  13805. {
  13806. name: "Teramacro",
  13807. height: math.unit(50000, "miles")
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(269, "lb"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/danny-kapowsky/front.svg",
  13820. extra: 766 / 736,
  13821. bottom: 0.044
  13822. }
  13823. },
  13824. back: {
  13825. height: math.unit(6, "feet"),
  13826. weight: math.unit(269, "lb"),
  13827. name: "Back",
  13828. image: {
  13829. source: "./media/characters/danny-kapowsky/back.svg",
  13830. extra: 797 / 760,
  13831. bottom: 0.025
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Macro",
  13838. height: math.unit(150, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Macro+",
  13843. height: math.unit(200, "feet")
  13844. },
  13845. {
  13846. name: "Macro++",
  13847. height: math.unit(300, "feet")
  13848. },
  13849. {
  13850. name: "Macro+++",
  13851. height: math.unit(400, "feet")
  13852. },
  13853. ]
  13854. ))
  13855. characterMakers.push(() => makeCharacter(
  13856. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13857. {
  13858. side: {
  13859. height: math.unit(6, "feet"),
  13860. weight: math.unit(170, "lb"),
  13861. name: "Side",
  13862. image: {
  13863. source: "./media/characters/finn/side.svg",
  13864. extra: 1953 / 1807,
  13865. bottom: 0.057
  13866. }
  13867. },
  13868. },
  13869. [
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(14445, "feet"),
  13873. default: true
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 6 / 12, "feet"),
  13882. weight: math.unit(125, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/roy/front.svg",
  13886. extra: 1,
  13887. bottom: 0.11
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Micro",
  13894. height: math.unit(3, "inches"),
  13895. default: true
  13896. },
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(5 + 6 / 12, "feet")
  13900. },
  13901. {
  13902. name: "Lesser Macro",
  13903. height: math.unit(60, "feet")
  13904. },
  13905. {
  13906. name: "Greater Macro",
  13907. height: math.unit(120, "feet")
  13908. },
  13909. ]
  13910. ))
  13911. characterMakers.push(() => makeCharacter(
  13912. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13913. {
  13914. front: {
  13915. height: math.unit(6, "feet"),
  13916. weight: math.unit(100, "lb"),
  13917. name: "Front",
  13918. image: {
  13919. source: "./media/characters/aevsivs/front.svg",
  13920. extra: 1,
  13921. bottom: 0.03
  13922. }
  13923. },
  13924. back: {
  13925. height: math.unit(6, "feet"),
  13926. weight: math.unit(100, "lb"),
  13927. name: "Back",
  13928. image: {
  13929. source: "./media/characters/aevsivs/back.svg"
  13930. }
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Micro",
  13936. height: math.unit(2, "inches"),
  13937. default: true
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(5, "feet")
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(5 + 7 / 12, "feet"),
  13950. weight: math.unit(159, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/hildegard/front.svg",
  13954. extra: 289 / 269,
  13955. bottom: 7.63/297.8
  13956. }
  13957. },
  13958. back: {
  13959. height: math.unit(5 + 7 / 12, "feet"),
  13960. weight: math.unit(159, "lb"),
  13961. name: "Back",
  13962. image: {
  13963. source: "./media/characters/hildegard/back.svg",
  13964. extra: 280/260,
  13965. bottom: 2.3/282
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(5 + 7 / 12, "feet"),
  13973. default: true
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13979. {
  13980. bernard: {
  13981. height: math.unit(2 + 7 / 12, "feet"),
  13982. weight: math.unit(66, "lb"),
  13983. name: "Bernard",
  13984. rename: true,
  13985. image: {
  13986. source: "./media/characters/bernard-wilder/bernard.svg",
  13987. extra: 192 / 128,
  13988. bottom: 0.05
  13989. }
  13990. },
  13991. wilder: {
  13992. height: math.unit(5 + 8 / 12, "feet"),
  13993. weight: math.unit(143, "lb"),
  13994. name: "Wilder",
  13995. rename: true,
  13996. image: {
  13997. source: "./media/characters/bernard-wilder/wilder.svg",
  13998. extra: 361 / 312,
  13999. bottom: 0.02
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(2 + 7 / 12, "feet"),
  14007. default: true
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14013. {
  14014. anthro: {
  14015. height: math.unit(6 + 1 / 12, "feet"),
  14016. weight: math.unit(155, "lb"),
  14017. name: "Anthro",
  14018. image: {
  14019. source: "./media/characters/hearth/anthro.svg",
  14020. extra: 260 / 250,
  14021. bottom: 0.02
  14022. }
  14023. },
  14024. feral: {
  14025. height: math.unit(3.78, "feet"),
  14026. weight: math.unit(35, "kg"),
  14027. name: "Feral",
  14028. image: {
  14029. source: "./media/characters/hearth/feral.svg",
  14030. extra: 153 / 135,
  14031. bottom: 0.03
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(6 + 1 / 12, "feet"),
  14039. default: true
  14040. },
  14041. ]
  14042. ))
  14043. characterMakers.push(() => makeCharacter(
  14044. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14045. {
  14046. front: {
  14047. height: math.unit(6, "feet"),
  14048. weight: math.unit(182, "lb"),
  14049. name: "Front",
  14050. image: {
  14051. source: "./media/characters/ingrid/front.svg",
  14052. extra: 294 / 268,
  14053. bottom: 0.027
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Normal",
  14060. height: math.unit(6, "feet"),
  14061. default: true
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14067. {
  14068. eevee: {
  14069. height: math.unit(2 + 10 / 12, "feet"),
  14070. weight: math.unit(86, "lb"),
  14071. name: "Malgam",
  14072. image: {
  14073. source: "./media/characters/malgam/eevee.svg",
  14074. extra: 218 / 180,
  14075. bottom: 0.2
  14076. }
  14077. },
  14078. sylveon: {
  14079. height: math.unit(4, "feet"),
  14080. weight: math.unit(101, "lb"),
  14081. name: "Future Malgam",
  14082. rename: true,
  14083. image: {
  14084. source: "./media/characters/malgam/sylveon.svg",
  14085. extra: 371 / 325,
  14086. bottom: 0.015
  14087. }
  14088. },
  14089. gigantamax: {
  14090. height: math.unit(50, "feet"),
  14091. name: "Gigantamax Malgam",
  14092. rename: true,
  14093. image: {
  14094. source: "./media/characters/malgam/gigantamax.svg"
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(2 + 10 / 12, "feet"),
  14102. default: true
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(5 + 11 / 12, "feet"),
  14111. weight: math.unit(188, "lb"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/fleur/front.svg",
  14115. extra: 309 / 283,
  14116. bottom: 0.007
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5 + 11 / 12, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(5 + 4 / 12, "feet"),
  14133. weight: math.unit(122, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/jude/front.svg",
  14137. extra: 288 / 273,
  14138. bottom: 0.03
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Normal",
  14145. height: math.unit(5 + 4 / 12, "feet"),
  14146. default: true
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(5 + 11 / 12, "feet"),
  14155. weight: math.unit(190, "lb"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/seara/front.svg",
  14159. extra: 1,
  14160. bottom: 0.05
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Normal",
  14167. height: math.unit(5 + 11 / 12, "feet"),
  14168. default: true
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(16 + 5 / 12, "feet"),
  14177. weight: math.unit(524, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/caspian/front.svg",
  14181. extra: 1,
  14182. bottom: 0.04
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(16 + 5 / 12, "feet"),
  14190. default: true
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(5 + 7 / 12, "feet"),
  14199. weight: math.unit(170, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/mika/front.svg",
  14203. extra: 1,
  14204. bottom: 0.016
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(5 + 7 / 12, "feet"),
  14212. default: true
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(6 + 2 / 12, "feet"),
  14221. weight: math.unit(268, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/sol/front.svg",
  14225. extra: 247 / 231,
  14226. bottom: 0.05
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(6 + 2 / 12, "feet"),
  14234. default: true
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14240. {
  14241. buizel: {
  14242. height: math.unit(2 + 5 / 12, "feet"),
  14243. weight: math.unit(87, "lb"),
  14244. name: "Buizel",
  14245. image: {
  14246. source: "./media/characters/umiko/buizel.svg",
  14247. extra: 172 / 157,
  14248. bottom: 0.01
  14249. }
  14250. },
  14251. floatzel: {
  14252. height: math.unit(5 + 9 / 12, "feet"),
  14253. weight: math.unit(250, "lb"),
  14254. name: "Floatzel",
  14255. image: {
  14256. source: "./media/characters/umiko/floatzel.svg",
  14257. extra: 262 / 248
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(2 + 5 / 12, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14271. {
  14272. front: {
  14273. height: math.unit(6 + 2 / 12, "feet"),
  14274. weight: math.unit(146, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/iliac/front.svg",
  14278. extra: 389 / 365,
  14279. bottom: 0.035
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Normal",
  14286. height: math.unit(6 + 2 / 12, "feet"),
  14287. default: true
  14288. },
  14289. ]
  14290. ))
  14291. characterMakers.push(() => makeCharacter(
  14292. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14293. {
  14294. front: {
  14295. height: math.unit(6, "feet"),
  14296. weight: math.unit(170, "lb"),
  14297. name: "Front",
  14298. image: {
  14299. source: "./media/characters/topaz/front.svg",
  14300. extra: 317 / 303,
  14301. bottom: 0.055
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Normal",
  14308. height: math.unit(6, "feet"),
  14309. default: true
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14315. {
  14316. front: {
  14317. height: math.unit(5 + 11 / 12, "feet"),
  14318. weight: math.unit(144, "lb"),
  14319. name: "Front",
  14320. image: {
  14321. source: "./media/characters/gabriel/front.svg",
  14322. extra: 285 / 262,
  14323. bottom: 0.004
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(5 + 11 / 12, "feet"),
  14331. default: true
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14337. {
  14338. side: {
  14339. height: math.unit(6 + 5 / 12, "feet"),
  14340. weight: math.unit(300, "lb"),
  14341. name: "Side",
  14342. image: {
  14343. source: "./media/characters/tempest-suicune/side.svg",
  14344. extra: 195 / 154,
  14345. bottom: 0.04
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(6 + 5 / 12, "feet"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(7 + 2 / 12, "feet"),
  14362. weight: math.unit(322, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/vulcan/front.svg",
  14366. extra: 154 / 147,
  14367. bottom: 0.04
  14368. }
  14369. },
  14370. },
  14371. [
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(7 + 2 / 12, "feet"),
  14375. default: true
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(5 + 10 / 12, "feet"),
  14384. weight: math.unit(264, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/gault/front.svg",
  14388. extra: 161 / 140,
  14389. bottom: 0.028
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(5 + 10 / 12, "feet"),
  14397. default: true
  14398. },
  14399. ]
  14400. ))
  14401. characterMakers.push(() => makeCharacter(
  14402. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14403. {
  14404. front: {
  14405. height: math.unit(6, "feet"),
  14406. weight: math.unit(150, "lb"),
  14407. name: "Front",
  14408. image: {
  14409. source: "./media/characters/shard/front.svg",
  14410. extra: 273 / 238,
  14411. bottom: 0.02
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(3 + 6 / 12, "feet"),
  14419. default: true
  14420. },
  14421. ]
  14422. ))
  14423. characterMakers.push(() => makeCharacter(
  14424. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14425. {
  14426. front: {
  14427. height: math.unit(5 + 11 / 12, "feet"),
  14428. weight: math.unit(146, "lb"),
  14429. name: "Front",
  14430. image: {
  14431. source: "./media/characters/ashe/front.svg",
  14432. extra: 400 / 373,
  14433. bottom: 0.01
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(5 + 11 / 12, "feet"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(5 + 5 / 12, "feet"),
  14450. weight: math.unit(135, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/beatrix/front.svg",
  14454. extra: 392 / 379,
  14455. bottom: 0.01
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(6, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(6, "feet"),
  14472. weight: math.unit(150, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/ignatius/front.svg",
  14476. extra: 245 / 222,
  14477. bottom: 0.01
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(5 + 5 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6 + 2 / 12, "feet"),
  14494. weight: math.unit(138, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/mei-li/front.svg",
  14498. extra: 237 / 229,
  14499. bottom: 0.03
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(6 + 2 / 12, "feet"),
  14507. default: true
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(2 + 4 / 12, "feet"),
  14516. weight: math.unit(62, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/puru/front.svg",
  14520. extra: 206 / 149,
  14521. bottom: 0.06
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(2 + 4 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14535. {
  14536. taur: {
  14537. height: math.unit(11, "feet"),
  14538. weight: math.unit(500, "lb"),
  14539. name: "Taur",
  14540. image: {
  14541. source: "./media/characters/kee/taur.svg",
  14542. extra: 1,
  14543. bottom: 0.04
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(11, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14557. {
  14558. anthro: {
  14559. height: math.unit(7, "feet"),
  14560. weight: math.unit(190, "lb"),
  14561. name: "Anthro",
  14562. image: {
  14563. source: "./media/characters/cobalt-dracha/anthro.svg",
  14564. extra: 231 / 225,
  14565. bottom: 0.04
  14566. }
  14567. },
  14568. feral: {
  14569. height: math.unit(9 + 7 / 12, "feet"),
  14570. weight: math.unit(294, "lb"),
  14571. name: "Feral",
  14572. image: {
  14573. source: "./media/characters/cobalt-dracha/feral.svg",
  14574. extra: 692 / 633,
  14575. bottom: 0.05
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(7, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14589. {
  14590. fallen: {
  14591. height: math.unit(11 + 8 / 12, "feet"),
  14592. weight: math.unit(485, "lb"),
  14593. name: "Java (Fallen)",
  14594. rename: true,
  14595. image: {
  14596. source: "./media/characters/java/fallen.svg",
  14597. extra: 226 / 208,
  14598. bottom: 0.005
  14599. }
  14600. },
  14601. godkin: {
  14602. height: math.unit(10 + 6 / 12, "feet"),
  14603. weight: math.unit(328, "lb"),
  14604. name: "Java (Godkin)",
  14605. rename: true,
  14606. image: {
  14607. source: "./media/characters/java/godkin.svg",
  14608. extra: 270 / 262,
  14609. bottom: 0.02
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(11 + 8 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(7 + 8 / 12, "feet"),
  14626. weight: math.unit(320, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/skoll/front.svg",
  14630. extra: 232 / 220,
  14631. bottom: 0.02
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(7 + 8 / 12, "feet"),
  14639. default: true
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(5 + 9 / 12, "feet"),
  14648. weight: math.unit(170, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/purna/front.svg",
  14652. extra: 239 / 229,
  14653. bottom: 0.01
  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: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(5 + 9 / 12, "feet"),
  14670. weight: math.unit(142, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/kuva/front.svg",
  14674. extra: 281 / 271,
  14675. bottom: 0.006
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Normal",
  14682. height: math.unit(5 + 9 / 12, "feet"),
  14683. default: true
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14689. {
  14690. anthro: {
  14691. height: math.unit(9 + 2 / 12, "feet"),
  14692. weight: math.unit(270, "lb"),
  14693. name: "Anthro",
  14694. image: {
  14695. source: "./media/characters/embra/anthro.svg",
  14696. extra: 200 / 187,
  14697. bottom: 0.02
  14698. }
  14699. },
  14700. feral: {
  14701. height: math.unit(18 + 8 / 12, "feet"),
  14702. weight: math.unit(576, "lb"),
  14703. name: "Feral",
  14704. image: {
  14705. source: "./media/characters/embra/feral.svg",
  14706. extra: 152 / 137,
  14707. bottom: 0.037
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(9 + 2 / 12, "feet"),
  14715. default: true
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14721. {
  14722. anthro: {
  14723. height: math.unit(10 + 9 / 12, "feet"),
  14724. weight: math.unit(224, "lb"),
  14725. name: "Anthro",
  14726. image: {
  14727. source: "./media/characters/grottos/anthro.svg",
  14728. extra: 350 / 332,
  14729. bottom: 0.045
  14730. }
  14731. },
  14732. feral: {
  14733. height: math.unit(20 + 7 / 12, "feet"),
  14734. weight: math.unit(629, "lb"),
  14735. name: "Feral",
  14736. image: {
  14737. source: "./media/characters/grottos/feral.svg",
  14738. extra: 207 / 190,
  14739. bottom: 0.05
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(10 + 9 / 12, "feet"),
  14747. default: true
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14753. {
  14754. anthro: {
  14755. height: math.unit(9 + 6 / 12, "feet"),
  14756. weight: math.unit(298, "lb"),
  14757. name: "Anthro",
  14758. image: {
  14759. source: "./media/characters/frifna/anthro.svg",
  14760. extra: 282 / 269,
  14761. bottom: 0.015
  14762. }
  14763. },
  14764. feral: {
  14765. height: math.unit(16 + 2 / 12, "feet"),
  14766. weight: math.unit(624, "lb"),
  14767. name: "Feral",
  14768. image: {
  14769. source: "./media/characters/frifna/feral.svg"
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Normal",
  14776. height: math.unit(9 + 6 / 12, "feet"),
  14777. default: true
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(6 + 2 / 12, "feet"),
  14786. weight: math.unit(168, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/elise/front.svg",
  14790. extra: 276 / 271
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(6 + 2 / 12, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(5 + 10 / 12, "feet"),
  14807. weight: math.unit(210, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/glade/front.svg",
  14811. extra: 258 / 247,
  14812. bottom: 0.008
  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: "Rina", species: ["fox"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(5 + 10 / 12, "feet"),
  14829. weight: math.unit(129, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/rina/front.svg",
  14833. extra: 266 / 255,
  14834. bottom: 0.005
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(5 + 10 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6 + 1 / 12, "feet"),
  14851. weight: math.unit(192, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/veronica/front.svg",
  14855. extra: 319 / 309,
  14856. bottom: 0.005
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(6 + 1 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(9 + 3 / 12, "feet"),
  14873. weight: math.unit(1100, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/braxton/front.svg",
  14877. extra: 1057 / 984,
  14878. bottom: 0.05
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(9 + 3 / 12, "feet")
  14886. },
  14887. {
  14888. name: "Giant",
  14889. height: math.unit(300, "feet"),
  14890. default: true
  14891. },
  14892. {
  14893. name: "Macro",
  14894. height: math.unit(700, "feet")
  14895. },
  14896. {
  14897. name: "Megamacro",
  14898. height: math.unit(6000, "feet")
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6 + 7 / 12, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/blue-feyonics/front.svg",
  14911. extra: 1403 / 1306,
  14912. bottom: 0.047
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(6 + 7 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(1.8, "meters"),
  14929. weight: math.unit(60, "kg"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/maxwell/front.svg",
  14933. extra: 2060 / 1873
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Micro",
  14940. height: math.unit(1, "mm")
  14941. },
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(1.8, "meter"),
  14945. default: true
  14946. },
  14947. {
  14948. name: "Macro",
  14949. height: math.unit(30, "meters")
  14950. },
  14951. {
  14952. name: "Megamacro",
  14953. height: math.unit(10, "km")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/jack/front.svg",
  14966. extra: 1754 / 1640,
  14967. bottom: 0.01
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(80000, "feet"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Max size",
  14979. height: math.unit(10, "lightyears")
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14985. {
  14986. upright: {
  14987. height: math.unit(7, "feet"),
  14988. weight: math.unit(170, "lb"),
  14989. name: "Upright",
  14990. image: {
  14991. source: "./media/characters/cafat/upright.svg",
  14992. bottom: 0.01
  14993. }
  14994. },
  14995. uprightFull: {
  14996. height: math.unit(7, "feet"),
  14997. weight: math.unit(170, "lb"),
  14998. name: "Upright (Full)",
  14999. image: {
  15000. source: "./media/characters/cafat/upright-full.svg",
  15001. bottom: 0.01
  15002. }
  15003. },
  15004. side: {
  15005. height: math.unit(5, "feet"),
  15006. weight: math.unit(150, "lb"),
  15007. name: "Side",
  15008. image: {
  15009. source: "./media/characters/cafat/side.svg"
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Small",
  15016. height: math.unit(7, "feet"),
  15017. default: true
  15018. },
  15019. {
  15020. name: "Large",
  15021. height: math.unit(15.5, "feet")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(150, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/verin-raharra/front.svg",
  15034. extra: 5019 / 4835,
  15035. bottom: 0.023
  15036. }
  15037. },
  15038. },
  15039. [
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(7 + 5 / 12, "feet"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Upsized",
  15047. height: math.unit(20, "feet")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(7, "feet"),
  15056. weight: math.unit(230, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/nakata/front.svg",
  15060. extra: 1.005,
  15061. bottom: 0.01
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Normal",
  15068. height: math.unit(7, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Big",
  15073. height: math.unit(14, "feet")
  15074. },
  15075. {
  15076. name: "Macro",
  15077. height: math.unit(400, "feet")
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15083. {
  15084. front: {
  15085. height: math.unit(4.91, "feet"),
  15086. weight: math.unit(100, "lb"),
  15087. name: "Front",
  15088. image: {
  15089. source: "./media/characters/lily/front.svg",
  15090. extra: 1585 / 1415,
  15091. bottom: 0.02
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(4.91, "feet"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15105. {
  15106. laying: {
  15107. height: math.unit(4 + 4 / 12, "feet"),
  15108. weight: math.unit(600, "lb"),
  15109. name: "Laying",
  15110. image: {
  15111. source: "./media/characters/sheila/laying.svg",
  15112. extra: 1333 / 1265,
  15113. bottom: 0.16
  15114. }
  15115. },
  15116. },
  15117. [
  15118. {
  15119. name: "Normal",
  15120. height: math.unit(4 + 4 / 12, "feet"),
  15121. default: true
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(190, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/sax/front.svg",
  15134. extra: 1187 / 973,
  15135. bottom: 0.042
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Micro",
  15142. height: math.unit(4, "inches"),
  15143. default: true
  15144. },
  15145. ]
  15146. ))
  15147. characterMakers.push(() => makeCharacter(
  15148. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15149. {
  15150. front: {
  15151. height: math.unit(6, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Front",
  15154. image: {
  15155. source: "./media/characters/pandora/front.svg",
  15156. extra: 2720 / 2556,
  15157. bottom: 0.015
  15158. }
  15159. },
  15160. back: {
  15161. height: math.unit(6, "feet"),
  15162. weight: math.unit(150, "lb"),
  15163. name: "Back",
  15164. image: {
  15165. source: "./media/characters/pandora/back.svg",
  15166. extra: 2720 / 2556,
  15167. bottom: 0.01
  15168. }
  15169. },
  15170. beans: {
  15171. height: math.unit(6 / 8, "feet"),
  15172. name: "Beans",
  15173. image: {
  15174. source: "./media/characters/pandora/beans.svg"
  15175. }
  15176. },
  15177. skirt: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Skirt",
  15181. image: {
  15182. source: "./media/characters/pandora/skirt.svg",
  15183. extra: 1622 / 1525,
  15184. bottom: 0.015
  15185. }
  15186. },
  15187. hoodie: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(150, "lb"),
  15190. name: "Hoodie",
  15191. image: {
  15192. source: "./media/characters/pandora/hoodie.svg",
  15193. extra: 1622 / 1525,
  15194. bottom: 0.015
  15195. }
  15196. },
  15197. casual: {
  15198. height: math.unit(6, "feet"),
  15199. weight: math.unit(150, "lb"),
  15200. name: "Casual",
  15201. image: {
  15202. source: "./media/characters/pandora/casual.svg",
  15203. extra: 1622 / 1525,
  15204. bottom: 0.015
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6, "feet")
  15212. },
  15213. {
  15214. name: "Big Steppy",
  15215. height: math.unit(1, "km"),
  15216. default: true
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15222. {
  15223. side: {
  15224. height: math.unit(10, "feet"),
  15225. weight: math.unit(800, "kg"),
  15226. name: "Side",
  15227. image: {
  15228. source: "./media/characters/venio-darcony/side.svg",
  15229. extra: 1373 / 1003,
  15230. bottom: 0.037
  15231. }
  15232. },
  15233. front: {
  15234. height: math.unit(19, "feet"),
  15235. weight: math.unit(800, "kg"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/venio-darcony/front.svg"
  15239. }
  15240. },
  15241. back: {
  15242. height: math.unit(19, "feet"),
  15243. weight: math.unit(800, "kg"),
  15244. name: "Back",
  15245. image: {
  15246. source: "./media/characters/venio-darcony/back.svg"
  15247. }
  15248. },
  15249. sideNsfw: {
  15250. height: math.unit(10, "feet"),
  15251. weight: math.unit(800, "kg"),
  15252. name: "Side (NSFW)",
  15253. image: {
  15254. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15255. extra: 1373 / 1003,
  15256. bottom: 0.037
  15257. }
  15258. },
  15259. frontNsfw: {
  15260. height: math.unit(19, "feet"),
  15261. weight: math.unit(800, "kg"),
  15262. name: "Front (NSFW)",
  15263. image: {
  15264. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15265. }
  15266. },
  15267. backNsfw: {
  15268. height: math.unit(19, "feet"),
  15269. weight: math.unit(800, "kg"),
  15270. name: "Back (NSFW)",
  15271. image: {
  15272. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15273. }
  15274. },
  15275. sideArmored: {
  15276. height: math.unit(10, "feet"),
  15277. weight: math.unit(800, "kg"),
  15278. name: "Side (Armored)",
  15279. image: {
  15280. source: "./media/characters/venio-darcony/side-armored.svg",
  15281. extra: 1373 / 1003,
  15282. bottom: 0.037
  15283. }
  15284. },
  15285. frontArmored: {
  15286. height: math.unit(19, "feet"),
  15287. weight: math.unit(900, "kg"),
  15288. name: "Front (Armored)",
  15289. image: {
  15290. source: "./media/characters/venio-darcony/front-armored.svg"
  15291. }
  15292. },
  15293. backArmored: {
  15294. height: math.unit(19, "feet"),
  15295. weight: math.unit(900, "kg"),
  15296. name: "Back (Armored)",
  15297. image: {
  15298. source: "./media/characters/venio-darcony/back-armored.svg"
  15299. }
  15300. },
  15301. sword: {
  15302. height: math.unit(10, "feet"),
  15303. weight: math.unit(50, "lb"),
  15304. name: "Sword",
  15305. image: {
  15306. source: "./media/characters/venio-darcony/sword.svg"
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Normal",
  15313. height: math.unit(10, "feet")
  15314. },
  15315. {
  15316. name: "Macro",
  15317. height: math.unit(130, "feet"),
  15318. default: true
  15319. },
  15320. {
  15321. name: "Macro+",
  15322. height: math.unit(240, "feet")
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(6, "feet"),
  15331. weight: math.unit(150, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/veski/front.svg",
  15335. extra: 1299 / 1225,
  15336. bottom: 0.04
  15337. }
  15338. },
  15339. back: {
  15340. height: math.unit(6, "feet"),
  15341. weight: math.unit(150, "lb"),
  15342. name: "Back",
  15343. image: {
  15344. source: "./media/characters/veski/back.svg",
  15345. extra: 1299 / 1225,
  15346. bottom: 0.008
  15347. }
  15348. },
  15349. maw: {
  15350. height: math.unit(1.5 * 1.21, "feet"),
  15351. name: "Maw",
  15352. image: {
  15353. source: "./media/characters/veski/maw.svg"
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(2, "km"),
  15361. default: true
  15362. },
  15363. ]
  15364. ))
  15365. characterMakers.push(() => makeCharacter(
  15366. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15367. {
  15368. front: {
  15369. height: math.unit(5 + 7 / 12, "feet"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/isabelle/front.svg",
  15373. extra: 2130 / 1976,
  15374. bottom: 0.05
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Supermicro",
  15381. height: math.unit(10, "micrometers")
  15382. },
  15383. {
  15384. name: "Micro",
  15385. height: math.unit(1, "inch")
  15386. },
  15387. {
  15388. name: "Tiny",
  15389. height: math.unit(5, "inches")
  15390. },
  15391. {
  15392. name: "Standard",
  15393. height: math.unit(5 + 7 / 12, "inches")
  15394. },
  15395. {
  15396. name: "Macro",
  15397. height: math.unit(80, "meters"),
  15398. default: true
  15399. },
  15400. {
  15401. name: "Megamacro",
  15402. height: math.unit(250, "meters")
  15403. },
  15404. {
  15405. name: "Gigamacro",
  15406. height: math.unit(5, "km")
  15407. },
  15408. {
  15409. name: "Cosmic",
  15410. height: math.unit(2.5e6, "miles")
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/hanzo/front.svg",
  15423. extra: 374 / 344,
  15424. bottom: 0.02
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(8, "feet"),
  15432. default: true
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(7, "feet"),
  15441. weight: math.unit(130, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/anna/front.svg",
  15445. extra: 169 / 145,
  15446. bottom: 0.06
  15447. }
  15448. },
  15449. full: {
  15450. height: math.unit(4.96, "feet"),
  15451. weight: math.unit(220, "lb"),
  15452. name: "Full",
  15453. image: {
  15454. source: "./media/characters/anna/full.svg",
  15455. extra: 138 / 114,
  15456. bottom: 0.15
  15457. }
  15458. },
  15459. tongue: {
  15460. height: math.unit(2.53, "feet"),
  15461. name: "Tongue",
  15462. image: {
  15463. source: "./media/characters/anna/tongue.svg"
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(7, "feet"),
  15471. default: true
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(7, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/ian-corvid/front.svg",
  15484. extra: 150 / 142,
  15485. bottom: 0.02
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(7, "feet"),
  15490. weight: math.unit(150, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/ian-corvid/back.svg",
  15494. extra: 150 / 143,
  15495. bottom: 0.01
  15496. }
  15497. },
  15498. stomping: {
  15499. height: math.unit(7, "feet"),
  15500. weight: math.unit(150, "lb"),
  15501. name: "Stomping",
  15502. image: {
  15503. source: "./media/characters/ian-corvid/stomping.svg",
  15504. extra: 76 / 72
  15505. }
  15506. },
  15507. sitting: {
  15508. height: math.unit(7 / 1.8, "feet"),
  15509. weight: math.unit(150, "lb"),
  15510. name: "Sitting",
  15511. image: {
  15512. source: "./media/characters/ian-corvid/sitting.svg",
  15513. extra: 1400 / 1269,
  15514. bottom: 0.15
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Tiny Microw",
  15521. height: math.unit(1, "inch")
  15522. },
  15523. {
  15524. name: "Microw",
  15525. height: math.unit(6, "inches")
  15526. },
  15527. {
  15528. name: "Crow",
  15529. height: math.unit(7 + 1 / 12, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macrow",
  15534. height: math.unit(176, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(5 + 7 / 12, "feet"),
  15543. weight: math.unit(147, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/natalie-kellon/front.svg",
  15547. extra: 1214 / 1141,
  15548. bottom: 0.02
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Micro",
  15555. height: math.unit(1 / 16, "inch")
  15556. },
  15557. {
  15558. name: "Tiny",
  15559. height: math.unit(4, "inches")
  15560. },
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(5 + 7 / 12, "feet"),
  15564. default: true
  15565. },
  15566. {
  15567. name: "Amazon",
  15568. height: math.unit(12, "feet")
  15569. },
  15570. {
  15571. name: "Giantess",
  15572. height: math.unit(160, "meters")
  15573. },
  15574. {
  15575. name: "Titaness",
  15576. height: math.unit(800, "meters")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(150, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/alluria/front.svg",
  15589. extra: 806 / 738,
  15590. bottom: 0.01
  15591. }
  15592. },
  15593. side: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Side",
  15597. image: {
  15598. source: "./media/characters/alluria/side.svg",
  15599. extra: 800 / 750,
  15600. }
  15601. },
  15602. back: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Back",
  15606. image: {
  15607. source: "./media/characters/alluria/back.svg",
  15608. extra: 806 / 738,
  15609. }
  15610. },
  15611. frontMaid: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front (Maid)",
  15615. image: {
  15616. source: "./media/characters/alluria/front-maid.svg",
  15617. extra: 806 / 738,
  15618. bottom: 0.01
  15619. }
  15620. },
  15621. sideMaid: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Side (Maid)",
  15625. image: {
  15626. source: "./media/characters/alluria/side-maid.svg",
  15627. extra: 800 / 750,
  15628. bottom: 0.005
  15629. }
  15630. },
  15631. backMaid: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(150, "lb"),
  15634. name: "Back (Maid)",
  15635. image: {
  15636. source: "./media/characters/alluria/back-maid.svg",
  15637. extra: 806 / 738,
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Micro",
  15644. height: math.unit(6, "inches"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(6, "feet"),
  15654. weight: math.unit(150, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/kyle/front.svg",
  15658. extra: 1069 / 962,
  15659. bottom: 77.228 / 1727.45
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Macro",
  15666. height: math.unit(150, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15673. {
  15674. front: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(300, "lb"),
  15677. name: "Front",
  15678. image: {
  15679. source: "./media/characters/duncan/front.svg",
  15680. extra: 1650 / 1482,
  15681. bottom: 0.05
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Macro",
  15688. height: math.unit(100, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(5 + 4 / 12, "feet"),
  15698. weight: math.unit(220, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/memory/front.svg",
  15702. extra: 3641 / 3545,
  15703. bottom: 0.03
  15704. }
  15705. },
  15706. back: {
  15707. height: math.unit(5 + 4 / 12, "feet"),
  15708. weight: math.unit(220, "lb"),
  15709. name: "Back",
  15710. image: {
  15711. source: "./media/characters/memory/back.svg",
  15712. extra: 3641 / 3545,
  15713. bottom: 0.025
  15714. }
  15715. },
  15716. frontSkirt: {
  15717. height: math.unit(5 + 4 / 12, "feet"),
  15718. weight: math.unit(220, "lb"),
  15719. name: "Front (Skirt)",
  15720. image: {
  15721. source: "./media/characters/memory/front-skirt.svg",
  15722. extra: 3641 / 3545,
  15723. bottom: 0.03
  15724. }
  15725. },
  15726. frontDress: {
  15727. height: math.unit(5 + 4 / 12, "feet"),
  15728. weight: math.unit(220, "lb"),
  15729. name: "Front (Dress)",
  15730. image: {
  15731. source: "./media/characters/memory/front-dress.svg",
  15732. extra: 3641 / 3545,
  15733. bottom: 0.03
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Micro",
  15740. height: math.unit(6, "inches"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Normal",
  15745. height: math.unit(5 + 4 / 12, "feet")
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(4 + 11 / 12, "feet"),
  15754. weight: math.unit(100, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/luno/front.svg",
  15758. extra: 1535 / 1487,
  15759. bottom: 0.03
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Micro",
  15766. height: math.unit(3, "inches")
  15767. },
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(4 + 11 / 12, "feet"),
  15771. default: true
  15772. },
  15773. {
  15774. name: "Macro",
  15775. height: math.unit(300, "feet")
  15776. },
  15777. {
  15778. name: "Megamacro",
  15779. height: math.unit(700, "miles")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(6 + 2 / 12, "feet"),
  15788. weight: math.unit(170, "lb"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/jamesy/front.svg",
  15792. extra: 440 / 382,
  15793. bottom: 0.005
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Micro",
  15800. height: math.unit(3, "inches")
  15801. },
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(6 + 2 / 12, "feet"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Macro",
  15809. height: math.unit(300, "feet")
  15810. },
  15811. {
  15812. name: "Megamacro",
  15813. height: math.unit(700, "miles")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(160, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/mark/front.svg",
  15826. extra: 3300 / 3100,
  15827. bottom: 136.42 / 3440.47
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Macro",
  15834. height: math.unit(120, "meters")
  15835. },
  15836. {
  15837. name: "Bigger Macro",
  15838. height: math.unit(350, "meters")
  15839. },
  15840. {
  15841. name: "Megamacro",
  15842. height: math.unit(8, "km"),
  15843. default: true
  15844. },
  15845. {
  15846. name: "Continental",
  15847. height: math.unit(4550, "km")
  15848. },
  15849. {
  15850. name: "Planetary",
  15851. height: math.unit(65000, "km")
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(6, "feet"),
  15860. weight: math.unit(400, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/mac/front.svg",
  15864. extra: 1048 / 987.7,
  15865. bottom: 60 / 1107.6,
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Macro",
  15872. height: math.unit(500, "feet"),
  15873. default: true
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15879. {
  15880. front: {
  15881. height: math.unit(5 + 2 / 12, "feet"),
  15882. weight: math.unit(190, "lb"),
  15883. name: "Front",
  15884. image: {
  15885. source: "./media/characters/bari/front.svg",
  15886. extra: 3156 / 2880,
  15887. bottom: 0.03
  15888. }
  15889. },
  15890. back: {
  15891. height: math.unit(5 + 2 / 12, "feet"),
  15892. weight: math.unit(190, "lb"),
  15893. name: "Back",
  15894. image: {
  15895. source: "./media/characters/bari/back.svg",
  15896. extra: 3260 / 2834,
  15897. bottom: 0.025
  15898. }
  15899. },
  15900. frontPlush: {
  15901. height: math.unit(5 + 2 / 12, "feet"),
  15902. weight: math.unit(190, "lb"),
  15903. name: "Front (Plush)",
  15904. image: {
  15905. source: "./media/characters/bari/front-plush.svg",
  15906. extra: 1112 / 1061,
  15907. bottom: 0.002
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Micro",
  15914. height: math.unit(3, "inches")
  15915. },
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(5 + 2 / 12, "feet"),
  15919. default: true
  15920. },
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(20, "feet")
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15929. {
  15930. front: {
  15931. height: math.unit(6 + 1 / 12, "feet"),
  15932. weight: math.unit(275, "lb"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/hunter-misha-raven/front.svg"
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Mortal",
  15942. height: math.unit(6 + 1 / 12, "feet")
  15943. },
  15944. {
  15945. name: "Divine",
  15946. height: math.unit(1.12134e34, "parsecs"),
  15947. default: true
  15948. },
  15949. ]
  15950. ))
  15951. characterMakers.push(() => makeCharacter(
  15952. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15953. {
  15954. front: {
  15955. height: math.unit(6 + 3 / 12, "feet"),
  15956. weight: math.unit(220, "lb"),
  15957. name: "Front",
  15958. image: {
  15959. source: "./media/characters/max-calore/front.svg",
  15960. extra: 1700 / 1648,
  15961. bottom: 0.01
  15962. }
  15963. },
  15964. back: {
  15965. height: math.unit(6 + 3 / 12, "feet"),
  15966. weight: math.unit(220, "lb"),
  15967. name: "Back",
  15968. image: {
  15969. source: "./media/characters/max-calore/back.svg",
  15970. extra: 1700 / 1648,
  15971. bottom: 0.01
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(6 + 3 / 12, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15985. {
  15986. side: {
  15987. height: math.unit(2 + 8 / 12, "feet"),
  15988. weight: math.unit(99, "lb"),
  15989. name: "Side",
  15990. image: {
  15991. source: "./media/characters/aspen/side.svg",
  15992. extra: 152 / 138,
  15993. bottom: 0.032
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(2 + 8 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16007. {
  16008. side: {
  16009. height: math.unit(3 + 2 / 12, "feet"),
  16010. weight: math.unit(224, "lb"),
  16011. name: "Side",
  16012. image: {
  16013. source: "./media/characters/sheila-feral-wolf/side.svg",
  16014. extra: 179 / 166,
  16015. bottom: 0.03
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(3 + 2 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16029. {
  16030. side: {
  16031. height: math.unit(1 + 9 / 12, "feet"),
  16032. weight: math.unit(38, "lb"),
  16033. name: "Side",
  16034. image: {
  16035. source: "./media/characters/michelle/side.svg",
  16036. extra: 147 / 136.7,
  16037. bottom: 0.03
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(1 + 9 / 12, "feet"),
  16045. default: true
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16051. {
  16052. front: {
  16053. height: math.unit(1 + 1 / 12, "feet"),
  16054. weight: math.unit(18, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/nino/front.svg"
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(1 + 1 / 12, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(1, "feet"),
  16074. weight: math.unit(16, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/viola/front.svg"
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Normal",
  16084. height: math.unit(1, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(6 + 5 / 12, "feet"),
  16094. weight: math.unit(580, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/atlas/front.svg",
  16098. extra: 298.5 / 290,
  16099. bottom: 0.015
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(6 + 5 / 12, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16113. {
  16114. side: {
  16115. height: math.unit(1 + 10 / 12, "feet"),
  16116. weight: math.unit(25, "lb"),
  16117. name: "Side",
  16118. image: {
  16119. source: "./media/characters/davy/side.svg",
  16120. extra: 200 / 170,
  16121. bottom: 0.01
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(1 + 10 / 12, "feet"),
  16129. default: true
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16135. {
  16136. side: {
  16137. height: math.unit(4 + 8 / 12, "feet"),
  16138. weight: math.unit(166, "lb"),
  16139. name: "Side",
  16140. image: {
  16141. source: "./media/characters/fiona/side.svg",
  16142. extra: 232 / 220,
  16143. bottom: 0.03
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(4 + 8 / 12, "feet"),
  16151. default: true
  16152. },
  16153. ]
  16154. ))
  16155. characterMakers.push(() => makeCharacter(
  16156. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16157. {
  16158. front: {
  16159. height: math.unit(2, "feet"),
  16160. weight: math.unit(62, "lb"),
  16161. name: "Front",
  16162. image: {
  16163. source: "./media/characters/lyla/front.svg",
  16164. bottom: 0.1
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(2, "feet"),
  16172. default: true
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16178. {
  16179. side: {
  16180. height: math.unit(1.8, "feet"),
  16181. weight: math.unit(44, "lb"),
  16182. name: "Side",
  16183. image: {
  16184. source: "./media/characters/perseus/side.svg",
  16185. bottom: 0.21
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(1.8, "feet"),
  16193. default: true
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16199. {
  16200. side: {
  16201. height: math.unit(4 + 2 / 12, "feet"),
  16202. weight: math.unit(20, "lb"),
  16203. name: "Side",
  16204. image: {
  16205. source: "./media/characters/remus/side.svg"
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(4 + 2 / 12, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(4 + 11 / 12, "feet"),
  16222. weight: math.unit(114, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/raf/front.svg",
  16226. bottom: 20.5/1863
  16227. }
  16228. },
  16229. side: {
  16230. height: math.unit(4 + 11 / 12, "feet"),
  16231. weight: math.unit(114, "lb"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/raf/side.svg",
  16235. bottom: 22/1822
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Micro",
  16242. height: math.unit(2, "inches")
  16243. },
  16244. {
  16245. name: "Normal",
  16246. height: math.unit(4 + 11 / 12, "feet"),
  16247. default: true
  16248. },
  16249. {
  16250. name: "Macro",
  16251. height: math.unit(70, "feet")
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16257. {
  16258. front: {
  16259. height: math.unit(1.5, "meters"),
  16260. weight: math.unit(68, "kg"),
  16261. name: "Front",
  16262. image: {
  16263. source: "./media/characters/liam-einarr/front.svg",
  16264. extra: 2822 / 2666
  16265. }
  16266. },
  16267. back: {
  16268. height: math.unit(1.5, "meters"),
  16269. weight: math.unit(68, "kg"),
  16270. name: "Back",
  16271. image: {
  16272. source: "./media/characters/liam-einarr/back.svg",
  16273. extra: 2822 / 2666,
  16274. bottom: 0.015
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(1.5, "meters"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Macro",
  16286. height: math.unit(150, "meters")
  16287. },
  16288. {
  16289. name: "Megamacro",
  16290. height: math.unit(35, "km")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(75, "kg"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/linda/front.svg",
  16303. extra: 930 / 874,
  16304. bottom: 0.004
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(6, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6 + 8 / 12, "feet"),
  16321. weight: math.unit(220, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/caylex/front.svg",
  16325. extra: 821 / 772,
  16326. bottom: 0.07
  16327. }
  16328. },
  16329. back: {
  16330. height: math.unit(6 + 8 / 12, "feet"),
  16331. weight: math.unit(220, "lb"),
  16332. name: "Back",
  16333. image: {
  16334. source: "./media/characters/caylex/back.svg",
  16335. extra: 821 / 772,
  16336. bottom: 0.022
  16337. }
  16338. },
  16339. hand: {
  16340. height: math.unit(1.25, "feet"),
  16341. name: "Hand",
  16342. image: {
  16343. source: "./media/characters/caylex/hand.svg"
  16344. }
  16345. },
  16346. foot: {
  16347. height: math.unit(1.6, "feet"),
  16348. name: "Foot",
  16349. image: {
  16350. source: "./media/characters/caylex/foot.svg"
  16351. }
  16352. },
  16353. armored: {
  16354. height: math.unit(6 + 8 / 12, "feet"),
  16355. weight: math.unit(250, "lb"),
  16356. name: "Armored",
  16357. image: {
  16358. source: "./media/characters/caylex/armored.svg",
  16359. extra: 1420 / 1310,
  16360. bottom: 0.045
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(6 + 8 / 12, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Normal+",
  16372. height: math.unit(12, "feet")
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(7 + 6 / 12, "feet"),
  16381. weight: math.unit(288, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/alana/front.svg",
  16385. extra: 679 / 653,
  16386. bottom: 22.5 / 701
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(7 + 6 / 12, "feet")
  16394. },
  16395. {
  16396. name: "Large",
  16397. height: math.unit(50, "feet")
  16398. },
  16399. {
  16400. name: "Macro",
  16401. height: math.unit(100, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Macro+",
  16406. height: math.unit(200, "feet")
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16412. {
  16413. front: {
  16414. height: math.unit(6 + 1 / 12, "feet"),
  16415. weight: math.unit(210, "lb"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/hasani/front.svg",
  16419. extra: 244 / 232,
  16420. bottom: 0.01
  16421. }
  16422. },
  16423. back: {
  16424. height: math.unit(6 + 1 / 12, "feet"),
  16425. weight: math.unit(210, "lb"),
  16426. name: "Back",
  16427. image: {
  16428. source: "./media/characters/hasani/back.svg",
  16429. extra: 244 / 232,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(6 + 1 / 12, "feet")
  16438. },
  16439. {
  16440. name: "Macro",
  16441. height: math.unit(175, "feet"),
  16442. default: true
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(1.82, "meters"),
  16451. weight: math.unit(140, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/nita/front.svg",
  16455. extra: 2473 / 2363,
  16456. bottom: 0.01
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(1.82, "m")
  16464. },
  16465. {
  16466. name: "Macro",
  16467. height: math.unit(300, "m")
  16468. },
  16469. {
  16470. name: "Mistake Canon",
  16471. height: math.unit(0.5, "miles"),
  16472. default: true
  16473. },
  16474. {
  16475. name: "Big Mistake",
  16476. height: math.unit(13, "miles")
  16477. },
  16478. {
  16479. name: "Playing God",
  16480. height: math.unit(2450, "miles")
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16486. {
  16487. front: {
  16488. height: math.unit(4, "feet"),
  16489. weight: math.unit(120, "lb"),
  16490. name: "Front",
  16491. image: {
  16492. source: "./media/characters/shiriko/front.svg",
  16493. extra: 195 / 188
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(4, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6, "feet"),
  16510. name: "front",
  16511. image: {
  16512. source: "./media/characters/deja/front.svg",
  16513. extra: 926 / 840,
  16514. bottom: 0.07
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Planck Length",
  16521. height: math.unit(1.6e-35, "meters")
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(30.48, "meters"),
  16526. default: true
  16527. },
  16528. {
  16529. name: "Universal",
  16530. height: math.unit(8.8e26, "meters")
  16531. },
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16536. {
  16537. side: {
  16538. height: math.unit(8, "feet"),
  16539. weight: math.unit(6300, "lb"),
  16540. name: "Side",
  16541. image: {
  16542. source: "./media/characters/anima/side.svg",
  16543. bottom: 0.035
  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: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(8, "feet"),
  16560. weight: math.unit(350, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/bianca/front.svg",
  16564. extra: 234 / 225,
  16565. bottom: 0.03
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(8, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(150, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/adinia/front.svg",
  16586. extra: 1845 / 1672,
  16587. bottom: 0.02
  16588. }
  16589. },
  16590. back: {
  16591. height: math.unit(6, "feet"),
  16592. weight: math.unit(150, "lb"),
  16593. name: "Back",
  16594. image: {
  16595. source: "./media/characters/adinia/back.svg",
  16596. extra: 1845 / 1672,
  16597. bottom: 0.002
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(11 + 5 / 12, "feet"),
  16605. default: true
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(3, "meters"),
  16614. weight: math.unit(200, "kg"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/lykasa/front.svg",
  16618. extra: 1076 / 976,
  16619. bottom: 0.06
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(3, "meters")
  16627. },
  16628. {
  16629. name: "Kaiju",
  16630. height: math.unit(120, "meters"),
  16631. default: true
  16632. },
  16633. {
  16634. name: "Mega Kaiju",
  16635. height: math.unit(240, "km")
  16636. },
  16637. {
  16638. name: "Giga Kaiju",
  16639. height: math.unit(400, "megameters")
  16640. },
  16641. {
  16642. name: "Tera Kaiju",
  16643. height: math.unit(800, "gigameters")
  16644. },
  16645. {
  16646. name: "Kaiju Dragon Goddess",
  16647. height: math.unit(26, "zettaparsecs")
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16653. {
  16654. side: {
  16655. height: math.unit(283 / 124 * 6, "feet"),
  16656. weight: math.unit(35000, "lb"),
  16657. name: "Side",
  16658. image: {
  16659. source: "./media/characters/malfaren/side.svg",
  16660. extra: 2500 / 1010,
  16661. bottom: 0.01
  16662. }
  16663. },
  16664. front: {
  16665. height: math.unit(22.36, "feet"),
  16666. weight: math.unit(35000, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/malfaren/front.svg",
  16670. extra: 1631 / 1476,
  16671. bottom: 0.01
  16672. }
  16673. },
  16674. maw: {
  16675. height: math.unit(6.9, "feet"),
  16676. name: "Maw",
  16677. image: {
  16678. source: "./media/characters/malfaren/maw.svg"
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Big",
  16685. height: math.unit(283 / 162 * 6, "feet"),
  16686. },
  16687. {
  16688. name: "Bigger",
  16689. height: math.unit(283 / 124 * 6, "feet")
  16690. },
  16691. {
  16692. name: "Massive",
  16693. height: math.unit(283 / 92 * 6, "feet"),
  16694. default: true
  16695. },
  16696. {
  16697. name: "👀💦",
  16698. height: math.unit(283 / 73 * 6, "feet"),
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16704. {
  16705. front: {
  16706. height: math.unit(1.7, "m"),
  16707. weight: math.unit(70, "kg"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/kernel/front.svg",
  16711. extra: 222 / 210,
  16712. bottom: 0.007
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Nano",
  16719. height: math.unit(17, "micrometers")
  16720. },
  16721. {
  16722. name: "Micro",
  16723. height: math.unit(1.7, "mm")
  16724. },
  16725. {
  16726. name: "Small",
  16727. height: math.unit(1.7, "cm")
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(1.7, "m"),
  16732. default: true
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16738. {
  16739. front: {
  16740. height: math.unit(1.75, "meters"),
  16741. weight: math.unit(65, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/jayne-folest/front.svg",
  16745. extra: 2115 / 2007,
  16746. bottom: 0.02
  16747. }
  16748. },
  16749. back: {
  16750. height: math.unit(1.75, "meters"),
  16751. weight: math.unit(65, "kg"),
  16752. name: "Back",
  16753. image: {
  16754. source: "./media/characters/jayne-folest/back.svg",
  16755. extra: 2115 / 2007,
  16756. bottom: 0.005
  16757. }
  16758. },
  16759. frontClothed: {
  16760. height: math.unit(1.75, "meters"),
  16761. weight: math.unit(65, "kg"),
  16762. name: "Front (Clothed)",
  16763. image: {
  16764. source: "./media/characters/jayne-folest/front-clothed.svg",
  16765. extra: 2115 / 2007,
  16766. bottom: 0.035
  16767. }
  16768. },
  16769. hand: {
  16770. height: math.unit(1 / 1.260, "feet"),
  16771. name: "Hand",
  16772. image: {
  16773. source: "./media/characters/jayne-folest/hand.svg"
  16774. }
  16775. },
  16776. foot: {
  16777. height: math.unit(1 / 0.918, "feet"),
  16778. name: "Foot",
  16779. image: {
  16780. source: "./media/characters/jayne-folest/foot.svg"
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Micro",
  16787. height: math.unit(4, "cm")
  16788. },
  16789. {
  16790. name: "Normal",
  16791. height: math.unit(1.75, "meters")
  16792. },
  16793. {
  16794. name: "Macro",
  16795. height: math.unit(47.5, "meters"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(180, "cm"),
  16805. weight: math.unit(70, "kg"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/algier/front.svg",
  16809. extra: 596 / 572,
  16810. bottom: 0.04
  16811. }
  16812. },
  16813. back: {
  16814. height: math.unit(180, "cm"),
  16815. weight: math.unit(70, "kg"),
  16816. name: "Back",
  16817. image: {
  16818. source: "./media/characters/algier/back.svg",
  16819. extra: 596 / 572,
  16820. bottom: 0.025
  16821. }
  16822. },
  16823. frontdressed: {
  16824. height: math.unit(180, "cm"),
  16825. weight: math.unit(150, "kg"),
  16826. name: "Front-dressed",
  16827. image: {
  16828. source: "./media/characters/algier/front-dressed.svg",
  16829. extra: 596 / 572,
  16830. bottom: 0.038
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Micro",
  16837. height: math.unit(5, "cm")
  16838. },
  16839. {
  16840. name: "Normal",
  16841. height: math.unit(180, "cm"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Macro",
  16846. height: math.unit(64, "m")
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16852. {
  16853. upright: {
  16854. height: math.unit(7, "feet"),
  16855. weight: math.unit(300, "lb"),
  16856. name: "Upright",
  16857. image: {
  16858. source: "./media/characters/pretzel/upright.svg",
  16859. extra: 534 / 522,
  16860. bottom: 0.065
  16861. }
  16862. },
  16863. sprawling: {
  16864. height: math.unit(3.75, "feet"),
  16865. weight: math.unit(300, "lb"),
  16866. name: "Sprawling",
  16867. image: {
  16868. source: "./media/characters/pretzel/sprawling.svg",
  16869. extra: 314 / 281,
  16870. bottom: 0.1
  16871. }
  16872. },
  16873. tongue: {
  16874. height: math.unit(2, "feet"),
  16875. name: "Tongue",
  16876. image: {
  16877. source: "./media/characters/pretzel/tongue.svg"
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(7, "feet"),
  16885. default: true
  16886. },
  16887. {
  16888. name: "Oversized",
  16889. height: math.unit(15, "feet")
  16890. },
  16891. {
  16892. name: "Huge",
  16893. height: math.unit(30, "feet")
  16894. },
  16895. {
  16896. name: "Macro",
  16897. height: math.unit(250, "feet")
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16903. {
  16904. sideFront: {
  16905. height: math.unit(5 + 2 / 12, "feet"),
  16906. weight: math.unit(120, "lb"),
  16907. name: "Front Side",
  16908. image: {
  16909. source: "./media/characters/roxi/side-front.svg",
  16910. extra: 2924 / 2717,
  16911. bottom: 0.08
  16912. }
  16913. },
  16914. sideBack: {
  16915. height: math.unit(5 + 2 / 12, "feet"),
  16916. weight: math.unit(120, "lb"),
  16917. name: "Back Side",
  16918. image: {
  16919. source: "./media/characters/roxi/side-back.svg",
  16920. extra: 2904 / 2693,
  16921. bottom: 0.06
  16922. }
  16923. },
  16924. front: {
  16925. height: math.unit(5 + 2 / 12, "feet"),
  16926. weight: math.unit(120, "lb"),
  16927. name: "Front",
  16928. image: {
  16929. source: "./media/characters/roxi/front.svg",
  16930. extra: 2028 / 1907,
  16931. bottom: 0.01
  16932. }
  16933. },
  16934. frontAlt: {
  16935. height: math.unit(5 + 2 / 12, "feet"),
  16936. weight: math.unit(120, "lb"),
  16937. name: "Front (Alt)",
  16938. image: {
  16939. source: "./media/characters/roxi/front-alt.svg",
  16940. extra: 1828 / 1798,
  16941. bottom: 0.01
  16942. }
  16943. },
  16944. sitting: {
  16945. height: math.unit(2.8, "feet"),
  16946. weight: math.unit(120, "lb"),
  16947. name: "Sitting",
  16948. image: {
  16949. source: "./media/characters/roxi/sitting.svg",
  16950. extra: 2660 / 2462,
  16951. bottom: 0.1
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(5 + 2 / 12, "feet"),
  16959. default: true
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16965. {
  16966. side: {
  16967. height: math.unit(55, "feet"),
  16968. weight: math.unit(153, "tons"),
  16969. name: "Side",
  16970. image: {
  16971. source: "./media/characters/shadow/side.svg",
  16972. extra: 701 / 628,
  16973. bottom: 0.02
  16974. }
  16975. },
  16976. flying: {
  16977. height: math.unit(145, "feet"),
  16978. weight: math.unit(153, "tons"),
  16979. name: "Flying",
  16980. image: {
  16981. source: "./media/characters/shadow/flying.svg"
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Normal",
  16988. height: math.unit(55, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(6, "feet"),
  16998. weight: math.unit(200, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/marcie/front.svg",
  17002. extra: 960 / 876,
  17003. bottom: 58 / 1017.87
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Macro",
  17010. height: math.unit(1, "mile"),
  17011. default: true
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(7, "feet"),
  17020. weight: math.unit(200, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/kachina/front.svg",
  17024. extra: 1290.68 / 1119,
  17025. bottom: 36.5 / 1327.18
  17026. }
  17027. },
  17028. },
  17029. [
  17030. {
  17031. name: "Normal",
  17032. height: math.unit(7, "feet"),
  17033. default: true
  17034. },
  17035. ]
  17036. ))
  17037. characterMakers.push(() => makeCharacter(
  17038. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17039. {
  17040. looking: {
  17041. height: math.unit(2, "meters"),
  17042. weight: math.unit(300, "kg"),
  17043. name: "Looking",
  17044. image: {
  17045. source: "./media/characters/kash/looking.svg",
  17046. extra: 474 / 344,
  17047. bottom: 0.03
  17048. }
  17049. },
  17050. side: {
  17051. height: math.unit(2, "meters"),
  17052. weight: math.unit(300, "kg"),
  17053. name: "Side",
  17054. image: {
  17055. source: "./media/characters/kash/side.svg",
  17056. extra: 302 / 251,
  17057. bottom: 0.03
  17058. }
  17059. },
  17060. front: {
  17061. height: math.unit(2, "meters"),
  17062. weight: math.unit(300, "kg"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/kash/front.svg",
  17066. extra: 495 / 360,
  17067. bottom: 0.015
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(2, "meters"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Big",
  17079. height: math.unit(3, "meters")
  17080. },
  17081. {
  17082. name: "Large",
  17083. height: math.unit(5, "meters")
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17089. {
  17090. feeding: {
  17091. height: math.unit(6.7, "feet"),
  17092. weight: math.unit(350, "lb"),
  17093. name: "Feeding",
  17094. image: {
  17095. source: "./media/characters/lalim/feeding.svg",
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(6.7, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(9.5, "feet"),
  17112. weight: math.unit(600, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/de'vout/front.svg",
  17116. extra: 1443 / 1328,
  17117. bottom: 0.025
  17118. }
  17119. },
  17120. back: {
  17121. height: math.unit(9.5, "feet"),
  17122. weight: math.unit(600, "lb"),
  17123. name: "Back",
  17124. image: {
  17125. source: "./media/characters/de'vout/back.svg",
  17126. extra: 1443 / 1328
  17127. }
  17128. },
  17129. frontDressed: {
  17130. height: math.unit(9.5, "feet"),
  17131. weight: math.unit(600, "lb"),
  17132. name: "Front (Dressed",
  17133. image: {
  17134. source: "./media/characters/de'vout/front-dressed.svg",
  17135. extra: 1443 / 1328,
  17136. bottom: 0.025
  17137. }
  17138. },
  17139. backDressed: {
  17140. height: math.unit(9.5, "feet"),
  17141. weight: math.unit(600, "lb"),
  17142. name: "Back (Dressed",
  17143. image: {
  17144. source: "./media/characters/de'vout/back-dressed.svg",
  17145. extra: 1443 / 1328
  17146. }
  17147. },
  17148. },
  17149. [
  17150. {
  17151. name: "Normal",
  17152. height: math.unit(9.5, "feet"),
  17153. default: true
  17154. },
  17155. ]
  17156. ))
  17157. characterMakers.push(() => makeCharacter(
  17158. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17159. {
  17160. front: {
  17161. height: math.unit(8, "feet"),
  17162. weight: math.unit(225, "lb"),
  17163. name: "Front",
  17164. image: {
  17165. source: "./media/characters/talana/front.svg",
  17166. extra: 1410 / 1300,
  17167. bottom: 0.015
  17168. }
  17169. },
  17170. frontDressed: {
  17171. height: math.unit(8, "feet"),
  17172. weight: math.unit(225, "lb"),
  17173. name: "Front (Dressed",
  17174. image: {
  17175. source: "./media/characters/talana/front-dressed.svg",
  17176. extra: 1410 / 1300,
  17177. bottom: 0.015
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(8, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17191. {
  17192. side: {
  17193. height: math.unit(7.2, "feet"),
  17194. weight: math.unit(150, "lb"),
  17195. name: "Side",
  17196. image: {
  17197. source: "./media/characters/xeauvok/side.svg",
  17198. extra: 1975 / 1523,
  17199. bottom: 0.07
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(7.2, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17213. {
  17214. side: {
  17215. height: math.unit(10, "feet"),
  17216. weight: math.unit(900, "kg"),
  17217. name: "Side",
  17218. image: {
  17219. source: "./media/characters/zara/side.svg",
  17220. extra: 504 / 498
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(10, "feet"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17234. {
  17235. side: {
  17236. height: math.unit(6, "feet"),
  17237. weight: math.unit(150, "lb"),
  17238. name: "Side",
  17239. image: {
  17240. source: "./media/characters/richard-dragon/side.svg",
  17241. extra: 845 / 340,
  17242. bottom: 0.017
  17243. }
  17244. },
  17245. maw: {
  17246. height: math.unit(2.97, "feet"),
  17247. name: "Maw",
  17248. image: {
  17249. source: "./media/characters/richard-dragon/maw.svg"
  17250. }
  17251. },
  17252. },
  17253. [
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(4, "feet"),
  17261. weight: math.unit(100, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/richard-smeargle/front.svg",
  17265. extra: 2952 / 2820,
  17266. bottom: 0.028
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(4, "feet"),
  17274. default: true
  17275. },
  17276. {
  17277. name: "Dynamax",
  17278. height: math.unit(20, "meters")
  17279. },
  17280. ]
  17281. ))
  17282. characterMakers.push(() => makeCharacter(
  17283. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17284. {
  17285. front: {
  17286. height: math.unit(6, "feet"),
  17287. weight: math.unit(110, "lb"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/klay/front.svg",
  17291. extra: 962 / 883,
  17292. bottom: 0.04
  17293. }
  17294. },
  17295. back: {
  17296. height: math.unit(6, "feet"),
  17297. weight: math.unit(110, "lb"),
  17298. name: "Back",
  17299. image: {
  17300. source: "./media/characters/klay/back.svg",
  17301. extra: 962 / 883
  17302. }
  17303. },
  17304. beans: {
  17305. height: math.unit(1.15, "feet"),
  17306. name: "Beans",
  17307. image: {
  17308. source: "./media/characters/klay/beans.svg"
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Micro",
  17315. height: math.unit(6, "inches")
  17316. },
  17317. {
  17318. name: "Mini",
  17319. height: math.unit(3, "feet")
  17320. },
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(6, "feet"),
  17324. default: true
  17325. },
  17326. {
  17327. name: "Big",
  17328. height: math.unit(25, "feet")
  17329. },
  17330. {
  17331. name: "Macro",
  17332. height: math.unit(100, "feet")
  17333. },
  17334. {
  17335. name: "Megamacro",
  17336. height: math.unit(400, "feet")
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17342. {
  17343. front: {
  17344. height: math.unit(6, "feet"),
  17345. weight: math.unit(160, "lb"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/marcus/front.svg",
  17349. extra: 734 / 676,
  17350. bottom: 0.03
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Little",
  17357. height: math.unit(6, "feet")
  17358. },
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(110, "feet"),
  17362. default: true
  17363. },
  17364. {
  17365. name: "Macro",
  17366. height: math.unit(250, "feet")
  17367. },
  17368. {
  17369. name: "Megamacro",
  17370. height: math.unit(1000, "feet")
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17376. {
  17377. front: {
  17378. height: math.unit(7, "feet"),
  17379. weight: math.unit(275, "lb"),
  17380. name: "Front",
  17381. image: {
  17382. source: "./media/characters/claude-delroute/front.svg",
  17383. extra: 230 / 214,
  17384. bottom: 0.007
  17385. }
  17386. },
  17387. side: {
  17388. height: math.unit(7, "feet"),
  17389. weight: math.unit(275, "lb"),
  17390. name: "Side",
  17391. image: {
  17392. source: "./media/characters/claude-delroute/side.svg",
  17393. extra: 222 / 214,
  17394. bottom: 0.01
  17395. }
  17396. },
  17397. back: {
  17398. height: math.unit(7, "feet"),
  17399. weight: math.unit(275, "lb"),
  17400. name: "Back",
  17401. image: {
  17402. source: "./media/characters/claude-delroute/back.svg",
  17403. extra: 230 / 214,
  17404. bottom: 0.015
  17405. }
  17406. },
  17407. maw: {
  17408. height: math.unit(0.6407, "meters"),
  17409. name: "Maw",
  17410. image: {
  17411. source: "./media/characters/claude-delroute/maw.svg"
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(7, "feet"),
  17419. default: true
  17420. },
  17421. {
  17422. name: "Lorge",
  17423. height: math.unit(20, "feet")
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17429. {
  17430. front: {
  17431. height: math.unit(8 + 4 / 12, "feet"),
  17432. weight: math.unit(600, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/dragonien/front.svg",
  17436. extra: 100 / 94,
  17437. bottom: 3.3 / 103.3445
  17438. }
  17439. },
  17440. back: {
  17441. height: math.unit(8 + 4 / 12, "feet"),
  17442. weight: math.unit(600, "lb"),
  17443. name: "Back",
  17444. image: {
  17445. source: "./media/characters/dragonien/back.svg",
  17446. extra: 776 / 746,
  17447. bottom: 6.4 / 782.0616
  17448. }
  17449. },
  17450. foot: {
  17451. height: math.unit(1.54, "feet"),
  17452. name: "Foot",
  17453. image: {
  17454. source: "./media/characters/dragonien/foot.svg",
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(8 + 4 / 12, "feet"),
  17462. default: true
  17463. },
  17464. {
  17465. name: "Macro",
  17466. height: math.unit(200, "feet")
  17467. },
  17468. {
  17469. name: "Megamacro",
  17470. height: math.unit(1, "mile")
  17471. },
  17472. {
  17473. name: "Gigamacro",
  17474. height: math.unit(1000, "miles")
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(5 + 2 / 12, "feet"),
  17483. weight: math.unit(110, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/desta/front.svg",
  17487. extra: 767/726,
  17488. bottom: 11.7/779
  17489. }
  17490. },
  17491. back: {
  17492. height: math.unit(5 + 2 / 12, "feet"),
  17493. weight: math.unit(110, "lb"),
  17494. name: "Back",
  17495. image: {
  17496. source: "./media/characters/desta/back.svg",
  17497. extra: 777/728,
  17498. bottom: 6/784
  17499. }
  17500. },
  17501. frontAlt: {
  17502. height: math.unit(5 + 2 / 12, "feet"),
  17503. weight: math.unit(110, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/desta/front-alt.svg",
  17507. extra: 1482 / 1417
  17508. }
  17509. },
  17510. side: {
  17511. height: math.unit(5 + 2 / 12, "feet"),
  17512. weight: math.unit(110, "lb"),
  17513. name: "Side",
  17514. image: {
  17515. source: "./media/characters/desta/side.svg",
  17516. extra: 2579 / 2491,
  17517. bottom: 0.053
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Micro",
  17524. height: math.unit(6, "inches")
  17525. },
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 2 / 12, "feet"),
  17529. default: true
  17530. },
  17531. {
  17532. name: "Macro",
  17533. height: math.unit(62, "feet")
  17534. },
  17535. {
  17536. name: "Megamacro",
  17537. height: math.unit(1800, "feet")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(10, "feet"),
  17546. weight: math.unit(700, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/storm-alystar/front.svg",
  17550. extra: 2112 / 1898,
  17551. bottom: 0.034
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Micro",
  17558. height: math.unit(3.5, "inches")
  17559. },
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(10, "feet"),
  17563. default: true
  17564. },
  17565. {
  17566. name: "Macro",
  17567. height: math.unit(400, "feet")
  17568. },
  17569. {
  17570. name: "Deific",
  17571. height: math.unit(60, "miles")
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(2.35, "meters"),
  17580. weight: math.unit(119, "kg"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/ilia/front.svg",
  17584. extra: 1285 / 1255,
  17585. bottom: 0.06
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(2.35, "meters")
  17593. },
  17594. {
  17595. name: "Macro",
  17596. height: math.unit(140, "meters"),
  17597. default: true
  17598. },
  17599. {
  17600. name: "Megamacro",
  17601. height: math.unit(100, "miles")
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(6 + 5 / 12, "feet"),
  17610. weight: math.unit(190, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/kingdead/front.svg",
  17614. extra: 1228 / 1177
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Micro",
  17621. height: math.unit(7, "inches")
  17622. },
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(6 + 5 / 12, "feet")
  17626. },
  17627. {
  17628. name: "Macro",
  17629. height: math.unit(150, "feet"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Megamacro",
  17634. height: math.unit(200, "miles")
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(8, "feet"),
  17643. weight: math.unit(600, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/kyrehx/front.svg",
  17647. extra: 1195 / 1095,
  17648. bottom: 0.034
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Micro",
  17655. height: math.unit(2, "inches")
  17656. },
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(8, "feet"),
  17660. default: true
  17661. },
  17662. {
  17663. name: "Macro",
  17664. height: math.unit(255, "feet")
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17670. {
  17671. front: {
  17672. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17673. weight: math.unit(184, "lb"),
  17674. name: "Front",
  17675. image: {
  17676. source: "./media/characters/xang/front.svg",
  17677. extra: 845 / 755
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Macro",
  17689. height: math.unit(0.935 * 146, "feet")
  17690. },
  17691. {
  17692. name: "Megamacro",
  17693. height: math.unit(0.935 * 3, "miles")
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17699. {
  17700. frontDressed: {
  17701. height: math.unit(5 + 7 / 12, "feet"),
  17702. weight: math.unit(140, "lb"),
  17703. name: "Front (Dressed)",
  17704. image: {
  17705. source: "./media/characters/doc-weardno/front-dressed.svg",
  17706. extra: 263 / 234
  17707. }
  17708. },
  17709. backDressed: {
  17710. height: math.unit(5 + 7 / 12, "feet"),
  17711. weight: math.unit(140, "lb"),
  17712. name: "Back (Dressed)",
  17713. image: {
  17714. source: "./media/characters/doc-weardno/back-dressed.svg",
  17715. extra: 266 / 238
  17716. }
  17717. },
  17718. front: {
  17719. height: math.unit(5 + 7 / 12, "feet"),
  17720. weight: math.unit(140, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/doc-weardno/front.svg",
  17724. extra: 254 / 233
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Micro",
  17731. height: math.unit(3, "inches")
  17732. },
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(5 + 7 / 12, "feet"),
  17736. default: true
  17737. },
  17738. {
  17739. name: "Macro",
  17740. height: math.unit(25, "feet")
  17741. },
  17742. {
  17743. name: "Megamacro",
  17744. height: math.unit(2, "miles")
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17750. {
  17751. front: {
  17752. height: math.unit(6 + 2 / 12, "feet"),
  17753. weight: math.unit(153, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/seth-whilst/front.svg",
  17757. bottom: 0.07
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Micro",
  17764. height: math.unit(5, "inches")
  17765. },
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(6 + 2 / 12, "feet"),
  17769. default: true
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(3, "inches"),
  17778. weight: math.unit(8, "grams"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/pocket-jabari/front.svg",
  17782. extra: 1024 / 974,
  17783. bottom: 0.039
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Minimicro",
  17790. height: math.unit(8, "mm")
  17791. },
  17792. {
  17793. name: "Micro",
  17794. height: math.unit(3, "inches"),
  17795. default: true
  17796. },
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(3, "feet")
  17800. },
  17801. ]
  17802. ))
  17803. characterMakers.push(() => makeCharacter(
  17804. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17805. {
  17806. front: {
  17807. height: math.unit(15, "feet"),
  17808. weight: math.unit(3280, "lb"),
  17809. name: "Front",
  17810. image: {
  17811. source: "./media/characters/sapphy/front.svg",
  17812. extra: 671 / 577,
  17813. bottom: 0.085
  17814. }
  17815. },
  17816. back: {
  17817. height: math.unit(15, "feet"),
  17818. weight: math.unit(3280, "lb"),
  17819. name: "Back",
  17820. image: {
  17821. source: "./media/characters/sapphy/back.svg",
  17822. extra: 631 / 607,
  17823. bottom: 0.045
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(15, "feet")
  17831. },
  17832. {
  17833. name: "Casual Macro",
  17834. height: math.unit(120, "feet")
  17835. },
  17836. {
  17837. name: "Macro",
  17838. height: math.unit(2150, "feet"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Megamacro",
  17843. height: math.unit(8, "miles")
  17844. },
  17845. {
  17846. name: "Galaxy Mom",
  17847. height: math.unit(6, "megalightyears")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17853. {
  17854. front: {
  17855. height: math.unit(6, "feet"),
  17856. weight: math.unit(170, "lb"),
  17857. name: "Front",
  17858. image: {
  17859. source: "./media/characters/kiro/front.svg",
  17860. extra: 1064 / 1012,
  17861. bottom: 0.052
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Micro",
  17868. height: math.unit(6, "inches")
  17869. },
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(6, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Macro",
  17877. height: math.unit(72, "feet")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(5 + 9 / 12, "feet"),
  17886. weight: math.unit(175, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/irishfox/front.svg",
  17890. extra: 1912 / 1680,
  17891. bottom: 0.02
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Nano",
  17898. height: math.unit(1, "mm")
  17899. },
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(2, "inches")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(5 + 9 / 12, "feet"),
  17907. default: true
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(45, "feet")
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(6 + 1 / 12, "feet"),
  17920. weight: math.unit(150, "lb"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/aronai-sieyes/front.svg",
  17924. extra: 1556 / 1480,
  17925. bottom: 0.015
  17926. }
  17927. },
  17928. side: {
  17929. height: math.unit(6 + 1 / 12, "feet"),
  17930. weight: math.unit(150, "lb"),
  17931. name: "Side",
  17932. image: {
  17933. source: "./media/characters/aronai-sieyes/side.svg",
  17934. extra: 1433 / 1390,
  17935. bottom: 0.0393
  17936. }
  17937. },
  17938. back: {
  17939. height: math.unit(6 + 1 / 12, "feet"),
  17940. weight: math.unit(150, "lb"),
  17941. name: "Back",
  17942. image: {
  17943. source: "./media/characters/aronai-sieyes/back.svg",
  17944. extra: 1544 / 1494,
  17945. bottom: 0.02
  17946. }
  17947. },
  17948. frontClothed: {
  17949. height: math.unit(6 + 1 / 12, "feet"),
  17950. weight: math.unit(150, "lb"),
  17951. name: "Front (Clothed)",
  17952. image: {
  17953. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17954. extra: 1582 / 1527
  17955. }
  17956. },
  17957. feral: {
  17958. height: math.unit(18, "feet"),
  17959. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17960. name: "Feral",
  17961. image: {
  17962. source: "./media/characters/aronai-sieyes/feral.svg",
  17963. extra: 1530 / 1240,
  17964. bottom: 0.035
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Micro",
  17971. height: math.unit(2, "inches")
  17972. },
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(6 + 1 / 12, "feet"),
  17976. default: true
  17977. }
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(12, "feet"),
  17985. weight: math.unit(410, "kg"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/xuna/front.svg",
  17989. extra: 2184 / 1980
  17990. }
  17991. },
  17992. side: {
  17993. height: math.unit(12, "feet"),
  17994. weight: math.unit(410, "kg"),
  17995. name: "Side",
  17996. image: {
  17997. source: "./media/characters/xuna/side.svg",
  17998. extra: 2184 / 1980
  17999. }
  18000. },
  18001. back: {
  18002. height: math.unit(12, "feet"),
  18003. weight: math.unit(410, "kg"),
  18004. name: "Back",
  18005. image: {
  18006. source: "./media/characters/xuna/back.svg",
  18007. extra: 2184 / 1980
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Nano glow",
  18014. height: math.unit(10, "nm")
  18015. },
  18016. {
  18017. name: "Micro floof",
  18018. height: math.unit(0.3, "m")
  18019. },
  18020. {
  18021. name: "Huggable softy boi",
  18022. height: math.unit(3.6576, "m"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Admirable floof",
  18027. height: math.unit(80, "meters")
  18028. },
  18029. {
  18030. name: "Gentle macro",
  18031. height: math.unit(300, "meters")
  18032. },
  18033. {
  18034. name: "Very careful floof",
  18035. height: math.unit(3200, "meters")
  18036. },
  18037. {
  18038. name: "The mega floof",
  18039. height: math.unit(36000, "meters")
  18040. },
  18041. {
  18042. name: "Giga-fur-Wicker",
  18043. height: math.unit(4800000, "meters")
  18044. },
  18045. {
  18046. name: "Licky world",
  18047. height: math.unit(20000000, "meters")
  18048. },
  18049. {
  18050. name: "Floofy cyan sun",
  18051. height: math.unit(1500000000, "meters")
  18052. },
  18053. {
  18054. name: "Milky Wicker",
  18055. height: math.unit(1000000000000000000000, "meters")
  18056. },
  18057. {
  18058. name: "The observing Wicker",
  18059. height: math.unit(999999999999999999999999999, "meters")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(5 + 9 / 12, "feet"),
  18068. weight: math.unit(150, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/arokha-sieyes/front.svg",
  18072. extra: 1425 / 1284,
  18073. bottom: 0.05
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(5 + 9 / 12, "feet")
  18081. },
  18082. {
  18083. name: "Macro",
  18084. height: math.unit(30, "meters"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(6, "feet"),
  18094. weight: math.unit(180, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/arokh-sieyes/front.svg",
  18098. extra: 1830 / 1769,
  18099. bottom: 0.01
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6, "feet")
  18107. },
  18108. {
  18109. name: "Macro",
  18110. height: math.unit(30, "meters"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18117. {
  18118. side: {
  18119. height: math.unit(13 + 1 / 12, "feet"),
  18120. weight: math.unit(8.5, "tonnes"),
  18121. name: "Side",
  18122. image: {
  18123. source: "./media/characters/goldeneye/side.svg",
  18124. extra: 1182 / 778,
  18125. bottom: 0.067
  18126. }
  18127. },
  18128. paw: {
  18129. height: math.unit(3.4, "feet"),
  18130. name: "Paw",
  18131. image: {
  18132. source: "./media/characters/goldeneye/paw.svg"
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(13 + 1 / 12, "feet"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18146. {
  18147. front: {
  18148. height: math.unit(6 + 1 / 12, "feet"),
  18149. weight: math.unit(210, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/leonardo-lycheborne/front.svg",
  18153. extra: 390 / 365,
  18154. bottom: 0.032
  18155. }
  18156. },
  18157. side: {
  18158. height: math.unit(6 + 1 / 12, "feet"),
  18159. weight: math.unit(210, "lb"),
  18160. name: "Side",
  18161. image: {
  18162. source: "./media/characters/leonardo-lycheborne/side.svg",
  18163. extra: 390 / 365,
  18164. bottom: 0.005
  18165. }
  18166. },
  18167. back: {
  18168. height: math.unit(6 + 1 / 12, "feet"),
  18169. weight: math.unit(210, "lb"),
  18170. name: "Back",
  18171. image: {
  18172. source: "./media/characters/leonardo-lycheborne/back.svg",
  18173. extra: 392 / 366,
  18174. bottom: 0.01
  18175. }
  18176. },
  18177. hand: {
  18178. height: math.unit(1.08, "feet"),
  18179. name: "Hand",
  18180. image: {
  18181. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18182. }
  18183. },
  18184. foot: {
  18185. height: math.unit(1.32, "feet"),
  18186. name: "Foot",
  18187. image: {
  18188. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18189. }
  18190. },
  18191. were: {
  18192. height: math.unit(20, "feet"),
  18193. weight: math.unit(7800, "lb"),
  18194. name: "Were",
  18195. image: {
  18196. source: "./media/characters/leonardo-lycheborne/were.svg",
  18197. extra: 308 / 294,
  18198. bottom: 0.048
  18199. }
  18200. },
  18201. feral: {
  18202. height: math.unit(7.5, "feet"),
  18203. weight: math.unit(600, "lb"),
  18204. name: "Feral",
  18205. image: {
  18206. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18207. extra: 210 / 186,
  18208. bottom: 0.108
  18209. }
  18210. },
  18211. taur: {
  18212. height: math.unit(11, "feet"),
  18213. weight: math.unit(3300, "lb"),
  18214. name: "Taur",
  18215. image: {
  18216. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18217. extra: 320 / 303,
  18218. bottom: 0.025
  18219. }
  18220. },
  18221. barghest: {
  18222. height: math.unit(11, "feet"),
  18223. weight: math.unit(1300, "lb"),
  18224. name: "Barghest",
  18225. image: {
  18226. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18227. extra: 323 / 302,
  18228. bottom: 0.027
  18229. }
  18230. },
  18231. dick: {
  18232. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18233. name: "Dick",
  18234. image: {
  18235. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18236. }
  18237. },
  18238. dickWere: {
  18239. height: math.unit((20) / 3.8, "feet"),
  18240. name: "Dick (Were)",
  18241. image: {
  18242. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6 + 1 / 12, "feet"),
  18250. default: true
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(10, "feet"),
  18259. weight: math.unit(350, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/jet/front.svg",
  18263. extra: 2050 / 1980,
  18264. bottom: 0.013
  18265. }
  18266. },
  18267. back: {
  18268. height: math.unit(10, "feet"),
  18269. weight: math.unit(350, "lb"),
  18270. name: "Back",
  18271. image: {
  18272. source: "./media/characters/jet/back.svg",
  18273. extra: 2050 / 1980,
  18274. bottom: 0.013
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Micro",
  18281. height: math.unit(6, "inches")
  18282. },
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(10, "feet"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Macro",
  18290. height: math.unit(100, "feet")
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(15, "feet"),
  18299. weight: math.unit(2800, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/tanarath/front.svg",
  18303. extra: 2392 / 2220,
  18304. bottom: 0.03
  18305. }
  18306. },
  18307. back: {
  18308. height: math.unit(15, "feet"),
  18309. weight: math.unit(2800, "lb"),
  18310. name: "Back",
  18311. image: {
  18312. source: "./media/characters/tanarath/back.svg",
  18313. extra: 2392 / 2220,
  18314. bottom: 0.03
  18315. }
  18316. },
  18317. },
  18318. [
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(15, "feet"),
  18322. default: true
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(7 + 1 / 12, "feet"),
  18331. weight: math.unit(175, "lb"),
  18332. name: "Front",
  18333. image: {
  18334. source: "./media/characters/patty-cattybatty/front.svg",
  18335. extra: 908 / 874,
  18336. bottom: 0.025
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Micro",
  18343. height: math.unit(1, "inch")
  18344. },
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(7 + 1 / 12, "feet")
  18348. },
  18349. {
  18350. name: "Mini Macro",
  18351. height: math.unit(155, "feet")
  18352. },
  18353. {
  18354. name: "Macro",
  18355. height: math.unit(1077, "feet")
  18356. },
  18357. {
  18358. name: "Mega Macro",
  18359. height: math.unit(47650, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Giga Macro",
  18364. height: math.unit(440, "miles")
  18365. },
  18366. {
  18367. name: "Tera Macro",
  18368. height: math.unit(8700, "miles")
  18369. },
  18370. {
  18371. name: "Planetary Macro",
  18372. height: math.unit(32700, "miles")
  18373. },
  18374. {
  18375. name: "Solar Macro",
  18376. height: math.unit(550000, "miles")
  18377. },
  18378. {
  18379. name: "Celestial Macro",
  18380. height: math.unit(2.5, "AU")
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18386. {
  18387. front: {
  18388. height: math.unit(4 + 5 / 12, "feet"),
  18389. weight: math.unit(90, "lb"),
  18390. name: "Front",
  18391. image: {
  18392. source: "./media/characters/cappu/front.svg",
  18393. extra: 1247 / 1152,
  18394. bottom: 0.012
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(4 + 5 / 12, "feet"),
  18402. default: true
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18408. {
  18409. frontDressed: {
  18410. height: math.unit(70, "cm"),
  18411. weight: math.unit(6, "kg"),
  18412. name: "Front (Dressed)",
  18413. image: {
  18414. source: "./media/characters/sebi/front-dressed.svg",
  18415. extra: 713.5 / 686.5,
  18416. bottom: 0.003
  18417. }
  18418. },
  18419. front: {
  18420. height: math.unit(70, "cm"),
  18421. weight: math.unit(5, "kg"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/sebi/front.svg",
  18425. extra: 713.5 / 686.5,
  18426. bottom: 0.003
  18427. }
  18428. }
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(70, "cm"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(8, "meters")
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18444. {
  18445. front: {
  18446. height: math.unit(6, "feet"),
  18447. weight: math.unit(150, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/typhek/front.svg",
  18451. extra: 1948 / 1929,
  18452. bottom: 0.025
  18453. }
  18454. },
  18455. side: {
  18456. height: math.unit(6, "feet"),
  18457. weight: math.unit(150, "lb"),
  18458. name: "Side",
  18459. image: {
  18460. source: "./media/characters/typhek/side.svg",
  18461. extra: 2034 / 2010,
  18462. bottom: 0.003
  18463. }
  18464. },
  18465. back: {
  18466. height: math.unit(6, "feet"),
  18467. weight: math.unit(150, "lb"),
  18468. name: "Back",
  18469. image: {
  18470. source: "./media/characters/typhek/back.svg",
  18471. extra: 2005 / 1978,
  18472. bottom: 0.004
  18473. }
  18474. },
  18475. palm: {
  18476. height: math.unit(1.2, "feet"),
  18477. name: "Palm",
  18478. image: {
  18479. source: "./media/characters/typhek/palm.svg"
  18480. }
  18481. },
  18482. fist: {
  18483. height: math.unit(1.1, "feet"),
  18484. name: "Fist",
  18485. image: {
  18486. source: "./media/characters/typhek/fist.svg"
  18487. }
  18488. },
  18489. foot: {
  18490. height: math.unit(1.57, "feet"),
  18491. name: "Foot",
  18492. image: {
  18493. source: "./media/characters/typhek/foot.svg"
  18494. }
  18495. },
  18496. sole: {
  18497. height: math.unit(2.05, "feet"),
  18498. name: "Sole",
  18499. image: {
  18500. source: "./media/characters/typhek/sole.svg"
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Macro",
  18507. height: math.unit(40, "stories"),
  18508. default: true
  18509. },
  18510. {
  18511. name: "Megamacro",
  18512. height: math.unit(1, "mile")
  18513. },
  18514. {
  18515. name: "Gigamacro",
  18516. height: math.unit(4000, "solarradii")
  18517. },
  18518. {
  18519. name: "Universal",
  18520. height: math.unit(1.1, "universes")
  18521. }
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18526. {
  18527. side: {
  18528. height: math.unit(5 + 7 / 12, "feet"),
  18529. weight: math.unit(150, "lb"),
  18530. name: "Side",
  18531. image: {
  18532. source: "./media/characters/kassy/side.svg",
  18533. extra: 1280 / 1225,
  18534. bottom: 0.002
  18535. }
  18536. },
  18537. front: {
  18538. height: math.unit(5 + 7 / 12, "feet"),
  18539. weight: math.unit(150, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/kassy/front.svg",
  18543. extra: 1280 / 1225,
  18544. bottom: 0.025
  18545. }
  18546. },
  18547. back: {
  18548. height: math.unit(5 + 7 / 12, "feet"),
  18549. weight: math.unit(150, "lb"),
  18550. name: "Back",
  18551. image: {
  18552. source: "./media/characters/kassy/back.svg",
  18553. extra: 1280 / 1225,
  18554. bottom: 0.002
  18555. }
  18556. },
  18557. foot: {
  18558. height: math.unit(1.266, "feet"),
  18559. name: "Foot",
  18560. image: {
  18561. source: "./media/characters/kassy/foot.svg"
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(5 + 7 / 12, "feet")
  18569. },
  18570. {
  18571. name: "Macro",
  18572. height: math.unit(137, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Megamacro",
  18577. height: math.unit(1, "mile")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(6 + 1 / 12, "feet"),
  18586. weight: math.unit(200, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/neil/front.svg",
  18590. extra: 1326 / 1250,
  18591. bottom: 0.023
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Normal",
  18598. height: math.unit(6 + 1 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macro",
  18603. height: math.unit(200, "feet")
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(5 + 9 / 12, "feet"),
  18612. weight: math.unit(190, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/atticus/front.svg",
  18616. extra: 2934 / 2785,
  18617. bottom: 0.025
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(5 + 9 / 12, "feet"),
  18625. default: true
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(180, "feet")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18635. {
  18636. side: {
  18637. height: math.unit(9, "feet"),
  18638. weight: math.unit(650, "lb"),
  18639. name: "Side",
  18640. image: {
  18641. source: "./media/characters/milo/side.svg",
  18642. extra: 2644 / 2310,
  18643. bottom: 0.032
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(9, "feet"),
  18651. default: true
  18652. },
  18653. {
  18654. name: "Macro",
  18655. height: math.unit(300, "feet")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18661. {
  18662. side: {
  18663. height: math.unit(8, "meters"),
  18664. weight: math.unit(90000, "kg"),
  18665. name: "Side",
  18666. image: {
  18667. source: "./media/characters/ijzer/side.svg",
  18668. extra: 2756 / 1600,
  18669. bottom: 0.01
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Small",
  18676. height: math.unit(3, "meters")
  18677. },
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(8, "meters"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Normal+",
  18685. height: math.unit(10, "meters")
  18686. },
  18687. {
  18688. name: "Bigger",
  18689. height: math.unit(24, "meters")
  18690. },
  18691. {
  18692. name: "Huge",
  18693. height: math.unit(80, "meters")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(6 + 2 / 12, "feet"),
  18702. weight: math.unit(153, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/luca-cervicum/front.svg",
  18706. extra: 370 / 327,
  18707. bottom: 0.015
  18708. }
  18709. },
  18710. back: {
  18711. height: math.unit(6 + 2 / 12, "feet"),
  18712. weight: math.unit(153, "lb"),
  18713. name: "Back",
  18714. image: {
  18715. source: "./media/characters/luca-cervicum/back.svg",
  18716. extra: 367 / 333,
  18717. bottom: 0.005
  18718. }
  18719. },
  18720. frontGear: {
  18721. height: math.unit(6 + 2 / 12, "feet"),
  18722. weight: math.unit(173, "lb"),
  18723. name: "Front (Gear)",
  18724. image: {
  18725. source: "./media/characters/luca-cervicum/front-gear.svg",
  18726. extra: 377 / 333,
  18727. bottom: 0.006
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(6 + 2 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(6 + 1 / 12, "feet"),
  18744. weight: math.unit(304, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/oliver/front.svg",
  18748. extra: 157 / 143,
  18749. bottom: 0.08
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(5 + 7 / 12, "feet"),
  18766. weight: math.unit(140, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/shane/front.svg",
  18770. extra: 304 / 289,
  18771. bottom: 0.005
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(5 + 7 / 12, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(5 + 9 / 12, "feet"),
  18788. weight: math.unit(178, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/shin/front.svg",
  18792. extra: 159 / 151,
  18793. bottom: 0.015
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(5 + 9 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(5 + 10 / 12, "feet"),
  18810. weight: math.unit(168, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/xerxes/front.svg",
  18814. extra: 282 / 260,
  18815. bottom: 0.045
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(5 + 10 / 12, "feet"),
  18823. default: true
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(6 + 7 / 12, "feet"),
  18832. weight: math.unit(208, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/chaska/front.svg",
  18836. extra: 332 / 319,
  18837. bottom: 0.015
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(6 + 7 / 12, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(5 + 8 / 12, "feet"),
  18854. weight: math.unit(208, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/enuk/front.svg",
  18858. extra: 437 / 406,
  18859. bottom: 0.02
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5 + 8 / 12, "feet"),
  18867. default: true
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(5 + 10 / 12, "feet"),
  18876. weight: math.unit(252, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/bruun/front.svg",
  18880. extra: 197 / 187,
  18881. bottom: 0.012
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(5 + 10 / 12, "feet"),
  18889. default: true
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(6 + 10 / 12, "feet"),
  18898. weight: math.unit(255, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/alexeev/front.svg",
  18902. extra: 213 / 200,
  18903. bottom: 0.05
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(6 + 10 / 12, "feet"),
  18911. default: true
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18917. {
  18918. front: {
  18919. height: math.unit(2 + 8 / 12, "feet"),
  18920. weight: math.unit(22, "lb"),
  18921. name: "Front",
  18922. image: {
  18923. source: "./media/characters/evelyn/front.svg",
  18924. extra: 208 / 180
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(2 + 8 / 12, "feet"),
  18932. default: true
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(5 + 9 / 12, "feet"),
  18941. weight: math.unit(139, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/inca/front.svg",
  18945. extra: 294 / 291,
  18946. bottom: 0.03
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(5 + 9 / 12, "feet"),
  18954. default: true
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(5 + 1 / 12, "feet"),
  18963. weight: math.unit(84, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/magdalene/front.svg",
  18967. extra: 293 / 273
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(5 + 1 / 12, "feet"),
  18975. default: true
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18981. {
  18982. front: {
  18983. height: math.unit(6 + 3 / 12, "feet"),
  18984. weight: math.unit(185, "lb"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/mera/front.svg",
  18988. extra: 291 / 277,
  18989. bottom: 0.03
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(6 + 3 / 12, "feet"),
  18997. default: true
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19003. {
  19004. front: {
  19005. height: math.unit(6 + 7 / 12, "feet"),
  19006. weight: math.unit(160, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/ceres/front.svg",
  19010. extra: 1023 / 950,
  19011. bottom: 0.027
  19012. }
  19013. },
  19014. back: {
  19015. height: math.unit(6 + 7 / 12, "feet"),
  19016. weight: math.unit(160, "lb"),
  19017. name: "Back",
  19018. image: {
  19019. source: "./media/characters/ceres/back.svg",
  19020. extra: 1023 / 950
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(6 + 7 / 12, "feet"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(5 + 10 / 12, "feet"),
  19037. weight: math.unit(150, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/kris/front.svg",
  19041. extra: 885 / 803,
  19042. bottom: 0.03
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(5 + 10 / 12, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(7, "feet"),
  19059. weight: math.unit(120, "kg"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/taluthus/front.svg",
  19063. extra: 903 / 833,
  19064. bottom: 0.015
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(7, "feet"),
  19072. default: true
  19073. },
  19074. {
  19075. name: "Macro",
  19076. height: math.unit(300, "feet")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(5 + 9 / 12, "feet"),
  19085. weight: math.unit(145, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/dawn/front.svg",
  19089. extra: 2094 / 2016,
  19090. bottom: 0.025
  19091. }
  19092. },
  19093. back: {
  19094. height: math.unit(5 + 9 / 12, "feet"),
  19095. weight: math.unit(160, "lb"),
  19096. name: "Back",
  19097. image: {
  19098. source: "./media/characters/dawn/back.svg",
  19099. extra: 2112 / 2080,
  19100. bottom: 0.005
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(6 + 7 / 12, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19114. {
  19115. anthro: {
  19116. height: math.unit(8 + 3 / 12, "feet"),
  19117. weight: math.unit(450, "lb"),
  19118. name: "Anthro",
  19119. image: {
  19120. source: "./media/characters/arador/anthro.svg",
  19121. extra: 1835 / 1718,
  19122. bottom: 0.025
  19123. }
  19124. },
  19125. feral: {
  19126. height: math.unit(4, "feet"),
  19127. weight: math.unit(200, "lb"),
  19128. name: "Feral",
  19129. image: {
  19130. source: "./media/characters/arador/feral.svg",
  19131. extra: 1683 / 1514,
  19132. bottom: 0.07
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(8 + 3 / 12, "feet")
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(82.5, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(5 + 10 / 12, "feet"),
  19153. weight: math.unit(125, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/dharsi/front.svg",
  19157. extra: 716 / 630,
  19158. bottom: 0.035
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Nano",
  19165. height: math.unit(100, "nm")
  19166. },
  19167. {
  19168. name: "Micro",
  19169. height: math.unit(2, "inches")
  19170. },
  19171. {
  19172. name: "Normal",
  19173. height: math.unit(5 + 10 / 12, "feet"),
  19174. default: true
  19175. },
  19176. {
  19177. name: "Macro",
  19178. height: math.unit(1000, "feet")
  19179. },
  19180. {
  19181. name: "Megamacro",
  19182. height: math.unit(10, "miles")
  19183. },
  19184. {
  19185. name: "Gigamacro",
  19186. height: math.unit(3000, "miles")
  19187. },
  19188. {
  19189. name: "Teramacro",
  19190. height: math.unit(500000, "miles")
  19191. },
  19192. {
  19193. name: "Teramacro+",
  19194. height: math.unit(30, "galaxies")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(6, "feet"),
  19203. weight: math.unit(150, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/deathy/front.svg",
  19207. extra: 1552 / 1463,
  19208. bottom: 0.025
  19209. }
  19210. },
  19211. side: {
  19212. height: math.unit(6, "feet"),
  19213. weight: math.unit(150, "lb"),
  19214. name: "Side",
  19215. image: {
  19216. source: "./media/characters/deathy/side.svg",
  19217. extra: 1604 / 1455,
  19218. bottom: 0.025
  19219. }
  19220. },
  19221. back: {
  19222. height: math.unit(6, "feet"),
  19223. weight: math.unit(150, "lb"),
  19224. name: "Back",
  19225. image: {
  19226. source: "./media/characters/deathy/back.svg",
  19227. extra: 1580 / 1463,
  19228. bottom: 0.005
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Micro",
  19235. height: math.unit(5, "millimeters")
  19236. },
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(6 + 5 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19246. {
  19247. front: {
  19248. height: math.unit(16, "feet"),
  19249. weight: math.unit(4000, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/juniper/front.svg",
  19253. bottom: 0.04
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(16, "feet"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(6, "feet"),
  19270. weight: math.unit(150, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/hipster/front.svg",
  19274. extra: 1312 / 1209,
  19275. bottom: 0.025
  19276. }
  19277. },
  19278. back: {
  19279. height: math.unit(6, "feet"),
  19280. weight: math.unit(150, "lb"),
  19281. name: "Back",
  19282. image: {
  19283. source: "./media/characters/hipster/back.svg",
  19284. extra: 1281 / 1196,
  19285. bottom: 0.01
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Micro",
  19292. height: math.unit(1, "mm")
  19293. },
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(4, "inches"),
  19297. default: true
  19298. },
  19299. {
  19300. name: "Macro",
  19301. height: math.unit(500, "feet")
  19302. },
  19303. {
  19304. name: "Megamacro",
  19305. height: math.unit(1000, "miles")
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(6, "feet"),
  19314. weight: math.unit(150, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/tendirmuldr/front.svg",
  19318. extra: 1878 / 1772,
  19319. bottom: 0.015
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Megamacro",
  19326. height: math.unit(1500, "miles"),
  19327. default: true
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19333. {
  19334. front: {
  19335. height: math.unit(14, "feet"),
  19336. weight: math.unit(12000, "lb"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/mort/front.svg",
  19340. extra: 365 / 318,
  19341. bottom: 0.01
  19342. }
  19343. },
  19344. side: {
  19345. height: math.unit(14, "feet"),
  19346. weight: math.unit(12000, "lb"),
  19347. name: "Side",
  19348. image: {
  19349. source: "./media/characters/mort/side.svg",
  19350. extra: 365 / 318,
  19351. bottom: 0.052
  19352. },
  19353. default: true
  19354. },
  19355. back: {
  19356. height: math.unit(14, "feet"),
  19357. weight: math.unit(12000, "lb"),
  19358. name: "Back",
  19359. image: {
  19360. source: "./media/characters/mort/back.svg",
  19361. extra: 371 / 332,
  19362. bottom: 0.18
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(14, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19376. {
  19377. front: {
  19378. height: math.unit(8, "feet"),
  19379. weight: math.unit(1, "ton"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/lycoa/front.svg",
  19383. extra: 1875 / 1789,
  19384. bottom: 0.022
  19385. }
  19386. },
  19387. back: {
  19388. height: math.unit(8, "feet"),
  19389. weight: math.unit(1, "ton"),
  19390. name: "Back",
  19391. image: {
  19392. source: "./media/characters/lycoa/back.svg",
  19393. extra: 1835 / 1781,
  19394. bottom: 0.03
  19395. }
  19396. },
  19397. head: {
  19398. height: math.unit(2.1, "feet"),
  19399. name: "Head",
  19400. image: {
  19401. source: "./media/characters/lycoa/head.svg"
  19402. }
  19403. },
  19404. tailmaw: {
  19405. height: math.unit(1.9, "feet"),
  19406. name: "Tailmaw",
  19407. image: {
  19408. source: "./media/characters/lycoa/tailmaw.svg"
  19409. }
  19410. },
  19411. tentacles: {
  19412. height: math.unit(2.1, "feet"),
  19413. name: "Tentacles",
  19414. image: {
  19415. source: "./media/characters/lycoa/tentacles.svg"
  19416. }
  19417. },
  19418. dick: {
  19419. height: math.unit(1.73, "feet"),
  19420. name: "Dick",
  19421. image: {
  19422. source: "./media/characters/lycoa/dick.svg"
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(8, "feet"),
  19430. default: true
  19431. },
  19432. {
  19433. name: "Macro",
  19434. height: math.unit(30, "feet")
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19440. {
  19441. front: {
  19442. height: math.unit(4 + 2 / 12, "feet"),
  19443. weight: math.unit(70, "lb"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/naldara/front.svg",
  19447. extra: 841 / 720,
  19448. bottom: 0.04
  19449. }
  19450. },
  19451. naga: {
  19452. height: math.unit(23, "feet"),
  19453. weight: math.unit(15000, "kg"),
  19454. name: "Naga",
  19455. image: {
  19456. source: "./media/characters/naldara/naga.svg",
  19457. extra: 3290/2959,
  19458. bottom: 124/3432
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(4 + 2 / 12, "feet"),
  19466. default: true
  19467. },
  19468. ]
  19469. ))
  19470. characterMakers.push(() => makeCharacter(
  19471. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19472. {
  19473. front: {
  19474. height: math.unit(13 + 7 / 12, "feet"),
  19475. weight: math.unit(1500, "lb"),
  19476. name: "Front",
  19477. image: {
  19478. source: "./media/characters/briar/front.svg",
  19479. extra: 626 / 596,
  19480. bottom: 0.08
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(13 + 7 / 12, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19494. {
  19495. side: {
  19496. height: math.unit(10, "feet"),
  19497. weight: math.unit(500, "lb"),
  19498. name: "Side",
  19499. image: {
  19500. source: "./media/characters/vanguard/side.svg",
  19501. extra: 502 / 425,
  19502. bottom: 0.087
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(10, "feet"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(7.5, "feet"),
  19519. weight: math.unit(2, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/artemis/front.svg",
  19523. extra: 1192 / 1075,
  19524. bottom: 0.07
  19525. }
  19526. },
  19527. frontNsfw: {
  19528. height: math.unit(7.5, "feet"),
  19529. weight: math.unit(2, "lb"),
  19530. name: "Front (NSFW)",
  19531. image: {
  19532. source: "./media/characters/artemis/front-nsfw.svg",
  19533. extra: 1192 / 1075,
  19534. bottom: 0.07
  19535. }
  19536. },
  19537. frontNsfwer: {
  19538. height: math.unit(7.5, "feet"),
  19539. weight: math.unit(2, "lb"),
  19540. name: "Front (NSFW-er)",
  19541. image: {
  19542. source: "./media/characters/artemis/front-nsfwer.svg",
  19543. extra: 1192 / 1075,
  19544. bottom: 0.07
  19545. }
  19546. },
  19547. side: {
  19548. height: math.unit(7.5, "feet"),
  19549. weight: math.unit(2, "lb"),
  19550. name: "Side",
  19551. image: {
  19552. source: "./media/characters/artemis/side.svg",
  19553. extra: 1192 / 1075,
  19554. bottom: 0.07
  19555. }
  19556. },
  19557. sideNsfw: {
  19558. height: math.unit(7.5, "feet"),
  19559. weight: math.unit(2, "lb"),
  19560. name: "Side (NSFW)",
  19561. image: {
  19562. source: "./media/characters/artemis/side-nsfw.svg",
  19563. extra: 1192 / 1075,
  19564. bottom: 0.07
  19565. }
  19566. },
  19567. sideNsfwer: {
  19568. height: math.unit(7.5, "feet"),
  19569. weight: math.unit(2, "lb"),
  19570. name: "Side (NSFW-er)",
  19571. image: {
  19572. source: "./media/characters/artemis/side-nsfwer.svg",
  19573. extra: 1192 / 1075,
  19574. bottom: 0.07
  19575. }
  19576. },
  19577. maw: {
  19578. height: math.unit(1.1, "feet"),
  19579. name: "Maw",
  19580. image: {
  19581. source: "./media/characters/artemis/maw.svg"
  19582. }
  19583. },
  19584. stomach: {
  19585. height: math.unit(0.95, "feet"),
  19586. name: "Stomach",
  19587. image: {
  19588. source: "./media/characters/artemis/stomach.svg"
  19589. }
  19590. },
  19591. dickCanine: {
  19592. height: math.unit(1, "feet"),
  19593. name: "Dick (Canine)",
  19594. image: {
  19595. source: "./media/characters/artemis/dick-canine.svg"
  19596. }
  19597. },
  19598. dickEquine: {
  19599. height: math.unit(0.85, "feet"),
  19600. name: "Dick (Equine)",
  19601. image: {
  19602. source: "./media/characters/artemis/dick-equine.svg"
  19603. }
  19604. },
  19605. dickExotic: {
  19606. height: math.unit(0.85, "feet"),
  19607. name: "Dick (Exotic)",
  19608. image: {
  19609. source: "./media/characters/artemis/dick-exotic.svg"
  19610. }
  19611. },
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(7.5, "feet"),
  19617. default: true
  19618. },
  19619. {
  19620. name: "Enlarged",
  19621. height: math.unit(12, "feet")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(5 + 3 / 12, "feet"),
  19630. weight: math.unit(160, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/kira/front.svg",
  19634. extra: 906 / 786,
  19635. bottom: 0.01
  19636. }
  19637. },
  19638. back: {
  19639. height: math.unit(5 + 3 / 12, "feet"),
  19640. weight: math.unit(160, "lb"),
  19641. name: "Back",
  19642. image: {
  19643. source: "./media/characters/kira/back.svg",
  19644. extra: 882 / 757,
  19645. bottom: 0.005
  19646. }
  19647. },
  19648. frontDressed: {
  19649. height: math.unit(5 + 3 / 12, "feet"),
  19650. weight: math.unit(160, "lb"),
  19651. name: "Front (Dressed)",
  19652. image: {
  19653. source: "./media/characters/kira/front-dressed.svg",
  19654. extra: 906 / 786,
  19655. bottom: 0.01
  19656. }
  19657. },
  19658. beans: {
  19659. height: math.unit(0.92, "feet"),
  19660. name: "Beans",
  19661. image: {
  19662. source: "./media/characters/kira/beans.svg"
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(5 + 3 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(5 + 4 / 12, "feet"),
  19679. weight: math.unit(145, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/scramble/front.svg",
  19683. extra: 763 / 727,
  19684. bottom: 0.05
  19685. }
  19686. },
  19687. back: {
  19688. height: math.unit(5 + 4 / 12, "feet"),
  19689. weight: math.unit(145, "lb"),
  19690. name: "Back",
  19691. image: {
  19692. source: "./media/characters/scramble/back.svg",
  19693. extra: 826 / 737,
  19694. bottom: 0.002
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 4 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19708. {
  19709. side: {
  19710. height: math.unit(6 + 2 / 12, "feet"),
  19711. weight: math.unit(190, "lb"),
  19712. name: "Side",
  19713. image: {
  19714. source: "./media/characters/biscuit/side.svg",
  19715. extra: 858 / 791,
  19716. bottom: 0.044
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(6 + 2 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(5 + 2 / 12, "feet"),
  19733. weight: math.unit(120, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/poffin/front.svg",
  19737. extra: 786 / 680,
  19738. bottom: 0.005
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Normal",
  19745. height: math.unit(5 + 2 / 12, "feet"),
  19746. default: true
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19752. {
  19753. front: {
  19754. height: math.unit(6 + 3 / 12, "feet"),
  19755. weight: math.unit(519, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/dhari/front.svg",
  19759. extra: 1048 / 946,
  19760. bottom: 0.015
  19761. }
  19762. },
  19763. back: {
  19764. height: math.unit(6 + 3 / 12, "feet"),
  19765. weight: math.unit(519, "lb"),
  19766. name: "Back",
  19767. image: {
  19768. source: "./media/characters/dhari/back.svg",
  19769. extra: 1048 / 931,
  19770. bottom: 0.005
  19771. }
  19772. },
  19773. frontDressed: {
  19774. height: math.unit(6 + 3 / 12, "feet"),
  19775. weight: math.unit(519, "lb"),
  19776. name: "Front (Dressed)",
  19777. image: {
  19778. source: "./media/characters/dhari/front-dressed.svg",
  19779. extra: 1713 / 1546,
  19780. bottom: 0.02
  19781. }
  19782. },
  19783. backDressed: {
  19784. height: math.unit(6 + 3 / 12, "feet"),
  19785. weight: math.unit(519, "lb"),
  19786. name: "Back (Dressed)",
  19787. image: {
  19788. source: "./media/characters/dhari/back-dressed.svg",
  19789. extra: 1699 / 1537,
  19790. bottom: 0.01
  19791. }
  19792. },
  19793. maw: {
  19794. height: math.unit(0.95, "feet"),
  19795. name: "Maw",
  19796. image: {
  19797. source: "./media/characters/dhari/maw.svg"
  19798. }
  19799. },
  19800. wereFront: {
  19801. height: math.unit(12 + 8 / 12, "feet"),
  19802. weight: math.unit(4000, "lb"),
  19803. name: "Front (Were)",
  19804. image: {
  19805. source: "./media/characters/dhari/were-front.svg",
  19806. extra: 1065 / 969,
  19807. bottom: 0.015
  19808. }
  19809. },
  19810. wereBack: {
  19811. height: math.unit(12 + 8 / 12, "feet"),
  19812. weight: math.unit(4000, "lb"),
  19813. name: "Back (Were)",
  19814. image: {
  19815. source: "./media/characters/dhari/were-back.svg",
  19816. extra: 1065 / 969,
  19817. bottom: 0.012
  19818. }
  19819. },
  19820. wereMaw: {
  19821. height: math.unit(0.625, "meters"),
  19822. name: "Maw (Were)",
  19823. image: {
  19824. source: "./media/characters/dhari/were-maw.svg"
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(6 + 3 / 12, "feet"),
  19832. default: true
  19833. },
  19834. ]
  19835. ))
  19836. characterMakers.push(() => makeCharacter(
  19837. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19838. {
  19839. anthro: {
  19840. height: math.unit(5 + 7 / 12, "feet"),
  19841. weight: math.unit(175, "lb"),
  19842. name: "Anthro",
  19843. image: {
  19844. source: "./media/characters/rena-dyne/anthro.svg",
  19845. extra: 1849 / 1785,
  19846. bottom: 0.005
  19847. }
  19848. },
  19849. taur: {
  19850. height: math.unit(15 + 6 / 12, "feet"),
  19851. weight: math.unit(8000, "lb"),
  19852. name: "Taur",
  19853. image: {
  19854. source: "./media/characters/rena-dyne/taur.svg",
  19855. extra: 2315 / 2234,
  19856. bottom: 0.033
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(5 + 7 / 12, "feet"),
  19864. default: true
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(8, "feet"),
  19873. weight: math.unit(600, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/weremeep/front.svg",
  19877. extra: 967 / 862,
  19878. bottom: 0.01
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(8, "feet"),
  19886. default: true
  19887. },
  19888. {
  19889. name: "Lorg",
  19890. height: math.unit(12, "feet")
  19891. },
  19892. {
  19893. name: "Oh Lawd She Comin'",
  19894. height: math.unit(20, "feet")
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19900. {
  19901. front: {
  19902. height: math.unit(4, "feet"),
  19903. weight: math.unit(90, "lb"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/reza/front.svg",
  19907. extra: 1183 / 1111,
  19908. bottom: 0.017
  19909. }
  19910. },
  19911. back: {
  19912. height: math.unit(4, "feet"),
  19913. weight: math.unit(90, "lb"),
  19914. name: "Back",
  19915. image: {
  19916. source: "./media/characters/reza/back.svg",
  19917. extra: 1183 / 1111,
  19918. bottom: 0.01
  19919. }
  19920. },
  19921. drake: {
  19922. height: math.unit(30, "feet"),
  19923. weight: math.unit(246960, "lb"),
  19924. name: "Drake",
  19925. image: {
  19926. source: "./media/characters/reza/drake.svg",
  19927. extra: 2350 / 2024,
  19928. bottom: 60.7 / 2403
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(4, "feet"),
  19936. default: true
  19937. },
  19938. ]
  19939. ))
  19940. characterMakers.push(() => makeCharacter(
  19941. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19942. {
  19943. side: {
  19944. height: math.unit(15, "feet"),
  19945. weight: math.unit(14, "tons"),
  19946. name: "Side",
  19947. image: {
  19948. source: "./media/characters/athea/side.svg",
  19949. extra: 960 / 540,
  19950. bottom: 0.003
  19951. }
  19952. },
  19953. sitting: {
  19954. height: math.unit(6 * 2.85, "feet"),
  19955. weight: math.unit(14, "tons"),
  19956. name: "Sitting",
  19957. image: {
  19958. source: "./media/characters/athea/sitting.svg",
  19959. extra: 621 / 581,
  19960. bottom: 0.075
  19961. }
  19962. },
  19963. maw: {
  19964. height: math.unit(7.59498031496063, "feet"),
  19965. name: "Maw",
  19966. image: {
  19967. source: "./media/characters/athea/maw.svg"
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Lap Cat",
  19974. height: math.unit(2.5, "feet")
  19975. },
  19976. {
  19977. name: "Minimacro",
  19978. height: math.unit(15, "feet"),
  19979. default: true
  19980. },
  19981. {
  19982. name: "Macro",
  19983. height: math.unit(120, "feet")
  19984. },
  19985. {
  19986. name: "Macro+",
  19987. height: math.unit(640, "feet")
  19988. },
  19989. {
  19990. name: "Colossus",
  19991. height: math.unit(2.2, "miles")
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(8 + 8 / 12, "feet"),
  20000. weight: math.unit(130, "kg"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/seroko/front.svg",
  20004. extra: 1385 / 1280,
  20005. bottom: 0.025
  20006. }
  20007. },
  20008. back: {
  20009. height: math.unit(8 + 8 / 12, "feet"),
  20010. weight: math.unit(130, "kg"),
  20011. name: "Back",
  20012. image: {
  20013. source: "./media/characters/seroko/back.svg",
  20014. extra: 1369 / 1238,
  20015. bottom: 0.018
  20016. }
  20017. },
  20018. frontDressed: {
  20019. height: math.unit(8 + 8 / 12, "feet"),
  20020. weight: math.unit(130, "kg"),
  20021. name: "Front (Dressed)",
  20022. image: {
  20023. source: "./media/characters/seroko/front-dressed.svg",
  20024. extra: 1366 / 1275,
  20025. bottom: 0.03
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(8 + 8 / 12, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(5.5, "feet"),
  20042. weight: math.unit(160, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/quatzi/front.svg",
  20046. extra: 2346 / 2242,
  20047. bottom: 0.015
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(5.5, "feet"),
  20055. default: true
  20056. },
  20057. {
  20058. name: "Big",
  20059. height: math.unit(7.7, "feet")
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(5 + 11 / 12, "feet"),
  20068. weight: math.unit(180, "lb"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/sen/front.svg",
  20072. extra: 1321 / 1254,
  20073. bottom: 0.015
  20074. }
  20075. },
  20076. side: {
  20077. height: math.unit(5 + 11 / 12, "feet"),
  20078. weight: math.unit(180, "lb"),
  20079. name: "Side",
  20080. image: {
  20081. source: "./media/characters/sen/side.svg",
  20082. extra: 1321 / 1254,
  20083. bottom: 0.007
  20084. }
  20085. },
  20086. back: {
  20087. height: math.unit(5 + 11 / 12, "feet"),
  20088. weight: math.unit(180, "lb"),
  20089. name: "Back",
  20090. image: {
  20091. source: "./media/characters/sen/back.svg",
  20092. extra: 1321 / 1254
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(5 + 11 / 12, "feet"),
  20100. default: true
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(166.6, "cm"),
  20109. weight: math.unit(66.6, "kg"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/fruity/front.svg",
  20113. extra: 1510 / 1386,
  20114. bottom: 0.04
  20115. }
  20116. },
  20117. back: {
  20118. height: math.unit(166.6, "cm"),
  20119. weight: math.unit(66.6, "lb"),
  20120. name: "Back",
  20121. image: {
  20122. source: "./media/characters/fruity/back.svg",
  20123. extra: 1563 / 1435,
  20124. bottom: 0.005
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(166.6, "cm"),
  20132. default: true
  20133. },
  20134. {
  20135. name: "Demonic",
  20136. height: math.unit(166.6, "feet")
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20142. {
  20143. side: {
  20144. height: math.unit(10, "feet"),
  20145. weight: math.unit(500, "lb"),
  20146. name: "Side",
  20147. image: {
  20148. source: "./media/characters/zost/side.svg",
  20149. extra: 966 / 880,
  20150. bottom: 0.075
  20151. }
  20152. },
  20153. mawFront: {
  20154. height: math.unit(1.08, "meters"),
  20155. name: "Maw (Front)",
  20156. image: {
  20157. source: "./media/characters/zost/maw-front.svg"
  20158. }
  20159. },
  20160. mawSide: {
  20161. height: math.unit(2.66, "feet"),
  20162. name: "Maw (Side)",
  20163. image: {
  20164. source: "./media/characters/zost/maw-side.svg"
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(10, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(5 + 4 / 12, "feet"),
  20181. weight: math.unit(120, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/luci/front.svg",
  20185. extra: 1985 / 1884,
  20186. bottom: 0.04
  20187. }
  20188. },
  20189. back: {
  20190. height: math.unit(5 + 4 / 12, "feet"),
  20191. weight: math.unit(120, "lb"),
  20192. name: "Back",
  20193. image: {
  20194. source: "./media/characters/luci/back.svg",
  20195. extra: 1892 / 1791,
  20196. bottom: 0.002
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(5 + 4 / 12, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(1500, "feet"),
  20213. weight: math.unit(3.8e6, "tons"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/2th/front.svg",
  20217. extra: 3489 / 3350,
  20218. bottom: 0.1
  20219. }
  20220. },
  20221. foot: {
  20222. height: math.unit(461, "feet"),
  20223. name: "Foot",
  20224. image: {
  20225. source: "./media/characters/2th/foot.svg"
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "\"Micro\"",
  20232. height: math.unit(15 + 7 / 12, "feet")
  20233. },
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(1500, "feet"),
  20237. default: true
  20238. },
  20239. {
  20240. name: "Macro",
  20241. height: math.unit(5000, "feet")
  20242. },
  20243. {
  20244. name: "Megamacro",
  20245. height: math.unit(15, "miles")
  20246. },
  20247. {
  20248. name: "Gigamacro",
  20249. height: math.unit(4000, "miles")
  20250. },
  20251. {
  20252. name: "Galactic",
  20253. height: math.unit(50, "AU")
  20254. },
  20255. ]
  20256. ))
  20257. characterMakers.push(() => makeCharacter(
  20258. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20259. {
  20260. front: {
  20261. height: math.unit(5 + 6 / 12, "feet"),
  20262. weight: math.unit(220, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/amethyst/front.svg",
  20266. extra: 2078 / 2040,
  20267. bottom: 0.045
  20268. }
  20269. },
  20270. back: {
  20271. height: math.unit(5 + 6 / 12, "feet"),
  20272. weight: math.unit(220, "lb"),
  20273. name: "Back",
  20274. image: {
  20275. source: "./media/characters/amethyst/back.svg",
  20276. extra: 2021 / 1989,
  20277. bottom: 0.02
  20278. }
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(5 + 6 / 12, "feet"),
  20285. default: true
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20291. {
  20292. front: {
  20293. height: math.unit(4 + 11 / 12, "feet"),
  20294. weight: math.unit(120, "lb"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/yumi-akiyama/front.svg",
  20298. extra: 1327 / 1235,
  20299. bottom: 0.02
  20300. }
  20301. },
  20302. back: {
  20303. height: math.unit(4 + 11 / 12, "feet"),
  20304. weight: math.unit(120, "lb"),
  20305. name: "Back",
  20306. image: {
  20307. source: "./media/characters/yumi-akiyama/back.svg",
  20308. extra: 1287 / 1245,
  20309. bottom: 0.002
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Galactic",
  20316. height: math.unit(50, "galaxies"),
  20317. default: true
  20318. },
  20319. {
  20320. name: "Universal",
  20321. height: math.unit(100, "universes")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(8, "feet"),
  20330. weight: math.unit(500, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/rifter-yrmori/front.svg",
  20334. extra: 1180 / 1125,
  20335. bottom: 0.02
  20336. }
  20337. },
  20338. back: {
  20339. height: math.unit(8, "feet"),
  20340. weight: math.unit(500, "lb"),
  20341. name: "Back",
  20342. image: {
  20343. source: "./media/characters/rifter-yrmori/back.svg",
  20344. extra: 1190 / 1145,
  20345. bottom: 0.001
  20346. }
  20347. },
  20348. wings: {
  20349. height: math.unit(7.75, "feet"),
  20350. weight: math.unit(500, "lb"),
  20351. name: "Wings",
  20352. image: {
  20353. source: "./media/characters/rifter-yrmori/wings.svg",
  20354. extra: 1357 / 1285
  20355. }
  20356. },
  20357. maw: {
  20358. height: math.unit(0.8, "feet"),
  20359. name: "Maw",
  20360. image: {
  20361. source: "./media/characters/rifter-yrmori/maw.svg"
  20362. }
  20363. },
  20364. mawfront: {
  20365. height: math.unit(1.45, "feet"),
  20366. name: "Maw (Front)",
  20367. image: {
  20368. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(8, "feet"),
  20376. default: true
  20377. },
  20378. {
  20379. name: "Macro",
  20380. height: math.unit(42, "meters")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20386. {
  20387. were: {
  20388. height: math.unit(25 + 6 / 12, "feet"),
  20389. weight: math.unit(10000, "lb"),
  20390. name: "Were",
  20391. image: {
  20392. source: "./media/characters/tahajin/were.svg",
  20393. extra: 801 / 770,
  20394. bottom: 0.042
  20395. }
  20396. },
  20397. aquatic: {
  20398. height: math.unit(6 + 4 / 12, "feet"),
  20399. weight: math.unit(160, "lb"),
  20400. name: "Aquatic",
  20401. image: {
  20402. source: "./media/characters/tahajin/aquatic.svg",
  20403. extra: 572 / 542,
  20404. bottom: 0.04
  20405. }
  20406. },
  20407. chow: {
  20408. height: math.unit(8 + 11 / 12, "feet"),
  20409. weight: math.unit(450, "lb"),
  20410. name: "Chow",
  20411. image: {
  20412. source: "./media/characters/tahajin/chow.svg",
  20413. extra: 660 / 640,
  20414. bottom: 0.015
  20415. }
  20416. },
  20417. demiNaga: {
  20418. height: math.unit(6 + 8 / 12, "feet"),
  20419. weight: math.unit(300, "lb"),
  20420. name: "Demi Naga",
  20421. image: {
  20422. source: "./media/characters/tahajin/demi-naga.svg",
  20423. extra: 643 / 615,
  20424. bottom: 0.1
  20425. }
  20426. },
  20427. data: {
  20428. height: math.unit(5, "inches"),
  20429. weight: math.unit(0.1, "lb"),
  20430. name: "Data",
  20431. image: {
  20432. source: "./media/characters/tahajin/data.svg"
  20433. }
  20434. },
  20435. fluu: {
  20436. height: math.unit(5 + 7 / 12, "feet"),
  20437. weight: math.unit(140, "lb"),
  20438. name: "Fluu",
  20439. image: {
  20440. source: "./media/characters/tahajin/fluu.svg",
  20441. extra: 628 / 592,
  20442. bottom: 0.02
  20443. }
  20444. },
  20445. starWarrior: {
  20446. height: math.unit(4 + 5 / 12, "feet"),
  20447. weight: math.unit(50, "lb"),
  20448. name: "Star Warrior",
  20449. image: {
  20450. source: "./media/characters/tahajin/star-warrior.svg"
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(25 + 6 / 12, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(8, "feet"),
  20467. weight: math.unit(350, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/gabira/front.svg",
  20471. extra: 608 / 580,
  20472. bottom: 0.03
  20473. }
  20474. },
  20475. back: {
  20476. height: math.unit(8, "feet"),
  20477. weight: math.unit(350, "lb"),
  20478. name: "Back",
  20479. image: {
  20480. source: "./media/characters/gabira/back.svg",
  20481. extra: 608 / 580,
  20482. bottom: 0.03
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(8, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5 + 3 / 12, "feet"),
  20499. weight: math.unit(137, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/sasha-katraine/front.svg",
  20503. bottom: 0.045
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Micro",
  20510. height: math.unit(5, "inches")
  20511. },
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 3 / 12, "feet"),
  20515. default: true
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20521. {
  20522. side: {
  20523. height: math.unit(4, "inches"),
  20524. weight: math.unit(200, "grams"),
  20525. name: "Side",
  20526. image: {
  20527. source: "./media/characters/der/side.svg",
  20528. extra: 719 / 400,
  20529. bottom: 30.6 / 749.9187
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Micro",
  20536. height: math.unit(4, "inches"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20543. {
  20544. side: {
  20545. height: math.unit(30, "meters"),
  20546. weight: math.unit(700, "tonnes"),
  20547. name: "Side",
  20548. image: {
  20549. source: "./media/characters/fixerdragon/side.svg",
  20550. extra: (1293.0514 - 116.03) / 1106.86,
  20551. bottom: 116.03 / 1293.0514
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Planck",
  20558. height: math.unit(1.6e-35, "meters")
  20559. },
  20560. {
  20561. name: "Micro",
  20562. height: math.unit(0.4, "meters")
  20563. },
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(30, "meters"),
  20567. default: true
  20568. },
  20569. {
  20570. name: "Megamacro",
  20571. height: math.unit(1.2, "megameters")
  20572. },
  20573. {
  20574. name: "Teramacro",
  20575. height: math.unit(130, "terameters")
  20576. },
  20577. {
  20578. name: "Yottamacro",
  20579. height: math.unit(6200, "yottameters")
  20580. },
  20581. ]
  20582. ));
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(8, "feet"),
  20588. weight: math.unit(250, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/kite/front.svg",
  20592. extra: 2796 / 2659,
  20593. bottom: 0.002
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(8, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(360, "feet")
  20606. },
  20607. {
  20608. name: "Megamacro",
  20609. height: math.unit(1500, "feet")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20615. {
  20616. front: {
  20617. height: math.unit(5 + 10 / 12, "feet"),
  20618. weight: math.unit(150, "lb"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/poojawa-vynar/front.svg",
  20622. extra: (1506.1547 - 55) / 1356.6,
  20623. bottom: 55 / 1506.1547
  20624. }
  20625. },
  20626. frontTailless: {
  20627. height: math.unit(5 + 10 / 12, "feet"),
  20628. weight: math.unit(150, "lb"),
  20629. name: "Front (Tailless)",
  20630. image: {
  20631. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20632. extra: (1506.1547 - 55) / 1356.6,
  20633. bottom: 55 / 1506.1547
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(5 + 10 / 12, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(293, "meters"),
  20650. weight: math.unit(70400, "tons"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/violette/front.svg",
  20654. extra: 1227 / 1180,
  20655. bottom: 0.005
  20656. }
  20657. },
  20658. back: {
  20659. height: math.unit(293, "meters"),
  20660. weight: math.unit(70400, "tons"),
  20661. name: "Back",
  20662. image: {
  20663. source: "./media/characters/violette/back.svg",
  20664. extra: 1227 / 1180,
  20665. bottom: 0.005
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Macro",
  20672. height: math.unit(293, "meters"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(1050, "feet"),
  20682. weight: math.unit(200000, "tons"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/alessandra/front.svg",
  20686. extra: 960 / 912,
  20687. bottom: 0.06
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Macro",
  20694. height: math.unit(1050, "feet")
  20695. },
  20696. {
  20697. name: "Macro+",
  20698. height: math.unit(900, "meters"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(5, "feet"),
  20708. weight: math.unit(187, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/person/front.svg",
  20712. extra: 3087 / 2945,
  20713. bottom: 91 / 3181
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Micro",
  20720. height: math.unit(3, "inches")
  20721. },
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5, "feet"),
  20725. default: true
  20726. },
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(90, "feet")
  20730. },
  20731. {
  20732. name: "Max Size",
  20733. height: math.unit(280, "feet")
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(4.5, "meters"),
  20742. weight: math.unit(3200, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/ty/front.svg",
  20746. extra: 1038 / 960,
  20747. bottom: 31.156 / 1068
  20748. }
  20749. },
  20750. back: {
  20751. height: math.unit(4.5, "meters"),
  20752. weight: math.unit(3200, "lb"),
  20753. name: "Back",
  20754. image: {
  20755. source: "./media/characters/ty/back.svg",
  20756. extra: 1044 / 966,
  20757. bottom: 7.48 / 1049
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(4.5, "meters"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(5 + 4 / 12, "feet"),
  20774. weight: math.unit(115, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/rocky/front.svg",
  20778. extra: 1012 / 975,
  20779. bottom: 54 / 1066
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(5 + 4 / 12, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20793. {
  20794. upright: {
  20795. height: math.unit(6, "meters"),
  20796. weight: math.unit(4000, "kg"),
  20797. name: "Upright",
  20798. image: {
  20799. source: "./media/characters/ruin/upright.svg",
  20800. extra: 668 / 661,
  20801. bottom: 42 / 799.8396
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(6, "meters"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(5, "feet"),
  20818. weight: math.unit(106, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/robin/front.svg",
  20822. extra: 862 / 799,
  20823. bottom: 42.4 / 914.8856
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20837. {
  20838. side: {
  20839. height: math.unit(3, "feet"),
  20840. weight: math.unit(225, "lb"),
  20841. name: "Side",
  20842. image: {
  20843. source: "./media/characters/saian/side.svg",
  20844. extra: 566 / 356,
  20845. bottom: 79.7 / 643
  20846. }
  20847. },
  20848. maw: {
  20849. height: math.unit(2.85, "feet"),
  20850. name: "Maw",
  20851. image: {
  20852. source: "./media/characters/saian/maw.svg"
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(3, "feet"),
  20860. default: true
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20866. {
  20867. side: {
  20868. height: math.unit(8, "feet"),
  20869. weight: math.unit(300, "lb"),
  20870. name: "Side",
  20871. image: {
  20872. source: "./media/characters/equus-silvermane/side.svg",
  20873. extra: 2176 / 2050,
  20874. bottom: 65.7 / 2245
  20875. }
  20876. },
  20877. front: {
  20878. height: math.unit(8, "feet"),
  20879. weight: math.unit(300, "lb"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/equus-silvermane/front.svg",
  20883. extra: 4633 / 4400,
  20884. bottom: 71.3 / 4706.915
  20885. }
  20886. },
  20887. sideStepping: {
  20888. height: math.unit(8, "feet"),
  20889. weight: math.unit(300, "lb"),
  20890. name: "Side (Stepping)",
  20891. image: {
  20892. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20893. extra: 1968 / 1860,
  20894. bottom: 16.4 / 1989
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(8, "feet")
  20902. },
  20903. {
  20904. name: "Minimacro",
  20905. height: math.unit(75, "feet"),
  20906. default: true
  20907. },
  20908. {
  20909. name: "Macro",
  20910. height: math.unit(150, "feet")
  20911. },
  20912. {
  20913. name: "Macro+",
  20914. height: math.unit(1000, "feet")
  20915. },
  20916. {
  20917. name: "Megamacro",
  20918. height: math.unit(1, "mile")
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20924. {
  20925. side: {
  20926. height: math.unit(20, "feet"),
  20927. weight: math.unit(30000, "kg"),
  20928. name: "Side",
  20929. image: {
  20930. source: "./media/characters/windar/side.svg",
  20931. extra: 1491 / 1248,
  20932. bottom: 82.56 / 1568
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(20, "feet"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20946. {
  20947. side: {
  20948. height: math.unit(15.66, "feet"),
  20949. weight: math.unit(150, "lb"),
  20950. name: "Side",
  20951. image: {
  20952. source: "./media/characters/melody/side.svg",
  20953. extra: 1097 / 944,
  20954. bottom: 11.8 / 1109
  20955. }
  20956. },
  20957. sideOutfit: {
  20958. height: math.unit(15.66, "feet"),
  20959. weight: math.unit(150, "lb"),
  20960. name: "Side (Outfit)",
  20961. image: {
  20962. source: "./media/characters/melody/side-outfit.svg",
  20963. extra: 1097 / 944,
  20964. bottom: 11.8 / 1109
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(15.66, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20978. {
  20979. front: {
  20980. height: math.unit(8, "feet"),
  20981. weight: math.unit(325, "lb"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/windera/front.svg",
  20985. extra: 3180 / 2845,
  20986. bottom: 178 / 3365
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(8, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21000. {
  21001. front: {
  21002. height: math.unit(28.75, "feet"),
  21003. weight: math.unit(2000, "kg"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/sonear/front.svg",
  21007. extra: 1041.1 / 964.9,
  21008. bottom: 53.7 / 1096.6
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Normal",
  21015. height: math.unit(28.75, "feet"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21022. {
  21023. side: {
  21024. height: math.unit(25.5, "feet"),
  21025. weight: math.unit(23000, "kg"),
  21026. name: "Side",
  21027. image: {
  21028. source: "./media/characters/kanara/side.svg"
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(25.5, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21042. {
  21043. side: {
  21044. height: math.unit(10, "feet"),
  21045. weight: math.unit(1000, "kg"),
  21046. name: "Side",
  21047. image: {
  21048. source: "./media/characters/ereus/side.svg",
  21049. extra: 1157 / 959,
  21050. bottom: 153 / 1312.5
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(10, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21064. {
  21065. side: {
  21066. height: math.unit(4.5, "feet"),
  21067. weight: math.unit(500, "lb"),
  21068. name: "Side",
  21069. image: {
  21070. source: "./media/characters/e-ter/side.svg",
  21071. extra: 1550 / 1248,
  21072. bottom: 146 / 1694
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(4.5, "feet"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21086. {
  21087. side: {
  21088. height: math.unit(9.7, "feet"),
  21089. weight: math.unit(4000, "kg"),
  21090. name: "Side",
  21091. image: {
  21092. source: "./media/characters/yamie/side.svg"
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(9.7, "feet"),
  21100. default: true
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(50, "feet"),
  21109. weight: math.unit(50000, "kg"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/anders/front.svg",
  21113. extra: 570 / 539,
  21114. bottom: 14.7 / 586.7
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Large",
  21121. height: math.unit(50, "feet")
  21122. },
  21123. {
  21124. name: "Macro",
  21125. height: math.unit(2000, "feet"),
  21126. default: true
  21127. },
  21128. {
  21129. name: "Megamacro",
  21130. height: math.unit(12, "miles")
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(7 + 2 / 12, "feet"),
  21139. weight: math.unit(300, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/reban/front.svg",
  21143. extra: 516 / 487,
  21144. bottom: 42.82 / 558.356
  21145. }
  21146. },
  21147. dick: {
  21148. height: math.unit(7 / 5, "feet"),
  21149. name: "Dick",
  21150. image: {
  21151. source: "./media/characters/reban/dick.svg"
  21152. }
  21153. },
  21154. },
  21155. [
  21156. {
  21157. name: "Natural Height",
  21158. height: math.unit(7 + 2 / 12, "feet")
  21159. },
  21160. {
  21161. name: "Macro",
  21162. height: math.unit(500, "feet"),
  21163. default: true
  21164. },
  21165. {
  21166. name: "Canon Height",
  21167. height: math.unit(50, "AU")
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21173. {
  21174. front: {
  21175. height: math.unit(6, "feet"),
  21176. weight: math.unit(150, "lb"),
  21177. name: "Front",
  21178. image: {
  21179. source: "./media/characters/terrance-keayes/front.svg",
  21180. extra: 1.005,
  21181. bottom: 151 / 1615
  21182. }
  21183. },
  21184. side: {
  21185. height: math.unit(6, "feet"),
  21186. weight: math.unit(150, "lb"),
  21187. name: "Side",
  21188. image: {
  21189. source: "./media/characters/terrance-keayes/side.svg",
  21190. extra: 1.005,
  21191. bottom: 129.4 / 1544
  21192. }
  21193. },
  21194. back: {
  21195. height: math.unit(6, "feet"),
  21196. weight: math.unit(150, "lb"),
  21197. name: "Back",
  21198. image: {
  21199. source: "./media/characters/terrance-keayes/back.svg",
  21200. extra: 1.005,
  21201. bottom: 58.4 / 1557.3
  21202. }
  21203. },
  21204. dick: {
  21205. height: math.unit(6 * 0.208, "feet"),
  21206. name: "Dick",
  21207. image: {
  21208. source: "./media/characters/terrance-keayes/dick.svg"
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Canon Height",
  21215. height: math.unit(35, "miles"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(6, "feet"),
  21225. weight: math.unit(150, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/ofelia/front.svg",
  21229. extra: 546 / 541,
  21230. bottom: 39 / 583
  21231. }
  21232. },
  21233. back: {
  21234. height: math.unit(6, "feet"),
  21235. weight: math.unit(150, "lb"),
  21236. name: "Back",
  21237. image: {
  21238. source: "./media/characters/ofelia/back.svg",
  21239. extra: 564 / 559.5,
  21240. bottom: 8.69 / 573.02
  21241. }
  21242. },
  21243. maw: {
  21244. height: math.unit(1, "feet"),
  21245. name: "Maw",
  21246. image: {
  21247. source: "./media/characters/ofelia/maw.svg"
  21248. }
  21249. },
  21250. foot: {
  21251. height: math.unit(1.949, "feet"),
  21252. name: "Foot",
  21253. image: {
  21254. source: "./media/characters/ofelia/foot.svg"
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Canon Height",
  21261. height: math.unit(2000, "miles"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(6, "feet"),
  21271. weight: math.unit(150, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/samuel/front.svg",
  21275. extra: 265 / 258,
  21276. bottom: 2 / 266.1566
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Macro",
  21283. height: math.unit(100, "feet"),
  21284. default: true
  21285. },
  21286. {
  21287. name: "Full Size",
  21288. height: math.unit(1000, "miles")
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21294. {
  21295. front: {
  21296. height: math.unit(6, "feet"),
  21297. weight: math.unit(300, "lb"),
  21298. name: "Front",
  21299. image: {
  21300. source: "./media/characters/beishir-kiel/front.svg",
  21301. extra: 569 / 547,
  21302. bottom: 41.9 / 609
  21303. }
  21304. },
  21305. maw: {
  21306. height: math.unit(6 * 0.202, "feet"),
  21307. name: "Maw",
  21308. image: {
  21309. source: "./media/characters/beishir-kiel/maw.svg"
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Macro",
  21316. height: math.unit(300, "feet"),
  21317. default: true
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(5 + 8 / 12, "feet"),
  21326. weight: math.unit(120, "lb"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/logan-grey/front.svg",
  21330. extra: 2539 / 2393,
  21331. bottom: 97.6 / 2636.37
  21332. }
  21333. },
  21334. frontAlt: {
  21335. height: math.unit(5 + 8 / 12, "feet"),
  21336. weight: math.unit(120, "lb"),
  21337. name: "Front (Alt)",
  21338. image: {
  21339. source: "./media/characters/logan-grey/front-alt.svg",
  21340. extra: 958 / 893,
  21341. bottom: 15 / 970.768
  21342. }
  21343. },
  21344. back: {
  21345. height: math.unit(5 + 8 / 12, "feet"),
  21346. weight: math.unit(120, "lb"),
  21347. name: "Back",
  21348. image: {
  21349. source: "./media/characters/logan-grey/back.svg",
  21350. extra: 958 / 893,
  21351. bottom: 2.1881 / 970.9788
  21352. }
  21353. },
  21354. dick: {
  21355. height: math.unit(1.437, "feet"),
  21356. name: "Dick",
  21357. image: {
  21358. source: "./media/characters/logan-grey/dick.svg"
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 8 / 12, "feet")
  21366. },
  21367. {
  21368. name: "The 500 Foot Femboy",
  21369. height: math.unit(500, "feet"),
  21370. default: true
  21371. },
  21372. {
  21373. name: "Megmacro",
  21374. height: math.unit(20, "miles")
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(8 + 2 / 12, "feet"),
  21383. weight: math.unit(275, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/draganta/front.svg",
  21387. extra: 1177 / 1135,
  21388. bottom: 33.46 / 1212.1
  21389. }
  21390. },
  21391. },
  21392. [
  21393. {
  21394. name: "Normal",
  21395. height: math.unit(8 + 6 / 12, "feet"),
  21396. default: true
  21397. },
  21398. {
  21399. name: "Macro",
  21400. height: math.unit(150, "feet")
  21401. },
  21402. {
  21403. name: "Megamacro",
  21404. height: math.unit(1000, "miles")
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(1.72, "m"),
  21413. weight: math.unit(80, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/voski/front.svg",
  21417. extra: 2076.22 / 2022.4,
  21418. bottom: 102.7 / 2177.3866
  21419. }
  21420. },
  21421. frontNsfw: {
  21422. height: math.unit(1.72, "m"),
  21423. weight: math.unit(80, "lb"),
  21424. name: "Front (NSFW)",
  21425. image: {
  21426. source: "./media/characters/voski/front-nsfw.svg",
  21427. extra: 2076.22 / 2022.4,
  21428. bottom: 102.7 / 2177.3866
  21429. }
  21430. },
  21431. back: {
  21432. height: math.unit(1.72, "m"),
  21433. weight: math.unit(80, "lb"),
  21434. name: "Back",
  21435. image: {
  21436. source: "./media/characters/voski/back.svg",
  21437. extra: 2104 / 2051,
  21438. bottom: 10.45 / 2113.63
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(1.72, "m")
  21446. },
  21447. {
  21448. name: "Macro",
  21449. height: math.unit(55, "m"),
  21450. default: true
  21451. },
  21452. {
  21453. name: "Macro+",
  21454. height: math.unit(300, "m")
  21455. },
  21456. {
  21457. name: "Macro++",
  21458. height: math.unit(700, "m")
  21459. },
  21460. {
  21461. name: "Macro+++",
  21462. height: math.unit(4500, "m")
  21463. },
  21464. {
  21465. name: "Macro++++",
  21466. height: math.unit(45, "km")
  21467. },
  21468. {
  21469. name: "Macro+++++",
  21470. height: math.unit(1220, "km")
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21476. {
  21477. front: {
  21478. height: math.unit(2.3, "m"),
  21479. weight: math.unit(304, "kg"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/icowom-lee/front.svg",
  21483. extra: 985 / 955,
  21484. bottom: 25.4 / 1012
  21485. }
  21486. },
  21487. fronttentacles: {
  21488. height: math.unit(2.3, "m"),
  21489. weight: math.unit(304, "kg"),
  21490. name: "Front-tentacles",
  21491. image: {
  21492. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21493. extra: 985 / 955,
  21494. bottom: 25.4 / 1012
  21495. }
  21496. },
  21497. back: {
  21498. height: math.unit(2.3, "m"),
  21499. weight: math.unit(304, "kg"),
  21500. name: "Back",
  21501. image: {
  21502. source: "./media/characters/icowom-lee/back.svg",
  21503. extra: 975 / 954,
  21504. bottom: 9.5 / 985
  21505. }
  21506. },
  21507. backtentacles: {
  21508. height: math.unit(2.3, "m"),
  21509. weight: math.unit(304, "kg"),
  21510. name: "Back-tentacles",
  21511. image: {
  21512. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21513. extra: 975 / 954,
  21514. bottom: 9.5 / 985
  21515. }
  21516. },
  21517. frontDressed: {
  21518. height: math.unit(2.3, "m"),
  21519. weight: math.unit(304, "kg"),
  21520. name: "Front (Dressed)",
  21521. image: {
  21522. source: "./media/characters/icowom-lee/front-dressed.svg",
  21523. extra: 3076 / 2933,
  21524. bottom: 51.4 / 3125.1889
  21525. }
  21526. },
  21527. rump: {
  21528. height: math.unit(0.776, "meters"),
  21529. name: "Rump",
  21530. image: {
  21531. source: "./media/characters/icowom-lee/rump.svg"
  21532. }
  21533. },
  21534. genitals: {
  21535. height: math.unit(0.78, "meters"),
  21536. name: "Genitals",
  21537. image: {
  21538. source: "./media/characters/icowom-lee/genitals.svg"
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(2.3, "meters"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Macro",
  21550. height: math.unit(94, "meters"),
  21551. default: true
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21557. {
  21558. front: {
  21559. height: math.unit(22, "meters"),
  21560. weight: math.unit(21000, "kg"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/shock-diamond/front.svg",
  21564. extra: 2204 / 2053,
  21565. bottom: 65 / 2239.47
  21566. }
  21567. },
  21568. frontNude: {
  21569. height: math.unit(22, "meters"),
  21570. weight: math.unit(21000, "kg"),
  21571. name: "Front (Nude)",
  21572. image: {
  21573. source: "./media/characters/shock-diamond/front-nude.svg",
  21574. extra: 2514 / 2285,
  21575. bottom: 13 / 2527.56
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(3, "meters")
  21583. },
  21584. {
  21585. name: "Macro",
  21586. height: math.unit(22, "meters"),
  21587. default: true
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(5 + 4 / 12, "feet"),
  21596. weight: math.unit(120, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/rory/front.svg",
  21600. extra: 589 / 556,
  21601. bottom: 45.7 / 635.76
  21602. }
  21603. },
  21604. frontNude: {
  21605. height: math.unit(5 + 4 / 12, "feet"),
  21606. weight: math.unit(120, "lb"),
  21607. name: "Front (Nude)",
  21608. image: {
  21609. source: "./media/characters/rory/front-nude.svg",
  21610. extra: 589 / 556,
  21611. bottom: 45.7 / 635.76
  21612. }
  21613. },
  21614. side: {
  21615. height: math.unit(5 + 4 / 12, "feet"),
  21616. weight: math.unit(120, "lb"),
  21617. name: "Side",
  21618. image: {
  21619. source: "./media/characters/rory/side.svg",
  21620. extra: 597 / 564,
  21621. bottom: 55 / 653
  21622. }
  21623. },
  21624. back: {
  21625. height: math.unit(5 + 4 / 12, "feet"),
  21626. weight: math.unit(120, "lb"),
  21627. name: "Back",
  21628. image: {
  21629. source: "./media/characters/rory/back.svg",
  21630. extra: 620 / 585,
  21631. bottom: 8.86 / 630.43
  21632. }
  21633. },
  21634. dick: {
  21635. height: math.unit(0.86, "feet"),
  21636. name: "Dick",
  21637. image: {
  21638. source: "./media/characters/rory/dick.svg"
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(5 + 4 / 12, "feet"),
  21646. default: true
  21647. },
  21648. {
  21649. name: "Macro",
  21650. height: math.unit(100, "feet")
  21651. },
  21652. {
  21653. name: "Macro+",
  21654. height: math.unit(140, "feet")
  21655. },
  21656. {
  21657. name: "Macro++",
  21658. height: math.unit(300, "feet")
  21659. },
  21660. ]
  21661. ))
  21662. characterMakers.push(() => makeCharacter(
  21663. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21664. {
  21665. front: {
  21666. height: math.unit(5 + 9 / 12, "feet"),
  21667. weight: math.unit(190, "lb"),
  21668. name: "Front",
  21669. image: {
  21670. source: "./media/characters/sprisk/front.svg",
  21671. extra: 1225 / 1180,
  21672. bottom: 42.7 / 1266.4
  21673. }
  21674. },
  21675. frontNsfw: {
  21676. height: math.unit(5 + 9 / 12, "feet"),
  21677. weight: math.unit(190, "lb"),
  21678. name: "Front (NSFW)",
  21679. image: {
  21680. source: "./media/characters/sprisk/front-nsfw.svg",
  21681. extra: 1225 / 1180,
  21682. bottom: 42.7 / 1266.4
  21683. }
  21684. },
  21685. back: {
  21686. height: math.unit(5 + 9 / 12, "feet"),
  21687. weight: math.unit(190, "lb"),
  21688. name: "Back",
  21689. image: {
  21690. source: "./media/characters/sprisk/back.svg",
  21691. extra: 1247 / 1200,
  21692. bottom: 5.6 / 1253.04
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Tiny",
  21699. height: math.unit(2, "inches")
  21700. },
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(5 + 9 / 12, "feet"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Mini Macro",
  21708. height: math.unit(18, "feet")
  21709. },
  21710. {
  21711. name: "Macro",
  21712. height: math.unit(100, "feet")
  21713. },
  21714. {
  21715. name: "MACRO",
  21716. height: math.unit(50, "miles")
  21717. },
  21718. {
  21719. name: "M A C R O",
  21720. height: math.unit(300, "miles")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21726. {
  21727. side: {
  21728. height: math.unit(15.6, "meters"),
  21729. weight: math.unit(700000, "kg"),
  21730. name: "Side",
  21731. image: {
  21732. source: "./media/characters/bunsen/side.svg",
  21733. extra: 1644 / 358
  21734. }
  21735. },
  21736. foot: {
  21737. height: math.unit(1.611 * 1644 / 358, "meter"),
  21738. name: "Foot",
  21739. image: {
  21740. source: "./media/characters/bunsen/foot.svg"
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Small",
  21747. height: math.unit(10, "feet")
  21748. },
  21749. {
  21750. name: "Normal",
  21751. height: math.unit(15.6, "meters"),
  21752. default: true
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(4 + 11 / 12, "feet"),
  21761. weight: math.unit(140, "lb"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/sesh/front.svg",
  21765. extra: 3420 / 3231,
  21766. bottom: 72 / 3949.5
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(4 + 11 / 12, "feet")
  21774. },
  21775. {
  21776. name: "Grown",
  21777. height: math.unit(15, "feet"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Macro",
  21782. height: math.unit(1500, "feet")
  21783. },
  21784. {
  21785. name: "Megamacro",
  21786. height: math.unit(30, "miles")
  21787. },
  21788. {
  21789. name: "Continental",
  21790. height: math.unit(3000, "miles")
  21791. },
  21792. {
  21793. name: "Gravity Mass",
  21794. height: math.unit(300000, "miles")
  21795. },
  21796. {
  21797. name: "Planet Buster",
  21798. height: math.unit(30000000, "miles")
  21799. },
  21800. {
  21801. name: "Big",
  21802. height: math.unit(3000000000, "miles")
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(9, "feet"),
  21811. weight: math.unit(350, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/pepper/front.svg",
  21815. extra: 1448 / 1312,
  21816. bottom: 9.4 / 1457.88
  21817. }
  21818. },
  21819. back: {
  21820. height: math.unit(9, "feet"),
  21821. weight: math.unit(350, "lb"),
  21822. name: "Back",
  21823. image: {
  21824. source: "./media/characters/pepper/back.svg",
  21825. extra: 1423 / 1300,
  21826. bottom: 4.6 / 1429
  21827. }
  21828. },
  21829. maw: {
  21830. height: math.unit(0.932, "feet"),
  21831. name: "Maw",
  21832. image: {
  21833. source: "./media/characters/pepper/maw.svg"
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Normal",
  21840. height: math.unit(9, "feet"),
  21841. default: true
  21842. },
  21843. ]
  21844. ))
  21845. characterMakers.push(() => makeCharacter(
  21846. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21847. {
  21848. front: {
  21849. height: math.unit(6, "feet"),
  21850. weight: math.unit(150, "lb"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/maelstrom/front.svg",
  21854. extra: 2100 / 1883,
  21855. bottom: 94 / 2196.7
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Less Kaiju",
  21862. height: math.unit(200, "feet")
  21863. },
  21864. {
  21865. name: "Kaiju",
  21866. height: math.unit(400, "feet"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Kaiju-er",
  21871. height: math.unit(600, "feet")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(6 + 5 / 12, "feet"),
  21880. weight: math.unit(180, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/lexir/front.svg",
  21884. extra: 180 / 172,
  21885. bottom: 12 / 192
  21886. }
  21887. },
  21888. back: {
  21889. height: math.unit(6 + 5 / 12, "feet"),
  21890. weight: math.unit(180, "lb"),
  21891. name: "Back",
  21892. image: {
  21893. source: "./media/characters/lexir/back.svg",
  21894. extra: 183.84 / 175.5,
  21895. bottom: 3.1 / 187
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Very Smal",
  21902. height: math.unit(1, "nm")
  21903. },
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(6 + 5 / 12, "feet"),
  21907. default: true
  21908. },
  21909. {
  21910. name: "Macro",
  21911. height: math.unit(1, "mile")
  21912. },
  21913. {
  21914. name: "Megamacro",
  21915. height: math.unit(50, "miles")
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21921. {
  21922. front: {
  21923. height: math.unit(1.5, "meters"),
  21924. weight: math.unit(100, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/maksio/front.svg",
  21928. extra: 1549 / 1531,
  21929. bottom: 123.7 / 1674.5429
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(1.5, "meters"),
  21934. weight: math.unit(100, "lb"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/maksio/back.svg",
  21938. extra: 1541 / 1509,
  21939. bottom: 97 / 1639
  21940. }
  21941. },
  21942. hand: {
  21943. height: math.unit(0.621, "feet"),
  21944. name: "Hand",
  21945. image: {
  21946. source: "./media/characters/maksio/hand.svg"
  21947. }
  21948. },
  21949. foot: {
  21950. height: math.unit(1.611, "feet"),
  21951. name: "Foot",
  21952. image: {
  21953. source: "./media/characters/maksio/foot.svg"
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Shrunken",
  21960. height: math.unit(10, "cm")
  21961. },
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(150, "cm"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(100, "feet"),
  21974. name: "Front",
  21975. image: {
  21976. source: "./media/characters/erza-bear/front.svg",
  21977. extra: 2449 / 2390,
  21978. bottom: 46 / 2494
  21979. }
  21980. },
  21981. back: {
  21982. height: math.unit(100, "feet"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/erza-bear/back.svg",
  21986. extra: 2489 / 2430,
  21987. bottom: 85.4 / 2480
  21988. }
  21989. },
  21990. tail: {
  21991. height: math.unit(42, "feet"),
  21992. name: "Tail",
  21993. image: {
  21994. source: "./media/characters/erza-bear/tail.svg"
  21995. }
  21996. },
  21997. tongue: {
  21998. height: math.unit(8, "feet"),
  21999. name: "Tongue",
  22000. image: {
  22001. source: "./media/characters/erza-bear/tongue.svg"
  22002. }
  22003. },
  22004. dick: {
  22005. height: math.unit(10.5, "feet"),
  22006. name: "Dick",
  22007. image: {
  22008. source: "./media/characters/erza-bear/dick.svg"
  22009. }
  22010. },
  22011. dickVertical: {
  22012. height: math.unit(16.9, "feet"),
  22013. name: "Dick (Vertical)",
  22014. image: {
  22015. source: "./media/characters/erza-bear/dick-vertical.svg"
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(100, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(172, "cm"),
  22032. weight: math.unit(73, "kg"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/violet-flor/front.svg",
  22036. extra: 1530 / 1442,
  22037. bottom: 61.9 / 1588.8
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(180, "cm"),
  22042. weight: math.unit(73, "kg"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/violet-flor/back.svg",
  22046. extra: 1692 / 1630,
  22047. bottom: 20 / 1712
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(172, "cm"),
  22055. default: true
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22061. {
  22062. front: {
  22063. height: math.unit(6, "feet"),
  22064. weight: math.unit(220, "lb"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/lynn-rhea/front.svg",
  22068. extra: 310 / 273
  22069. }
  22070. },
  22071. back: {
  22072. height: math.unit(6, "feet"),
  22073. weight: math.unit(220, "lb"),
  22074. name: "Back",
  22075. image: {
  22076. source: "./media/characters/lynn-rhea/back.svg",
  22077. extra: 310 / 273
  22078. }
  22079. },
  22080. dicks: {
  22081. height: math.unit(0.9, "feet"),
  22082. name: "Dicks",
  22083. image: {
  22084. source: "./media/characters/lynn-rhea/dicks.svg"
  22085. }
  22086. },
  22087. slit: {
  22088. height: math.unit(0.4, "feet"),
  22089. name: "Slit",
  22090. image: {
  22091. source: "./media/characters/lynn-rhea/slit.svg"
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Micro",
  22098. height: math.unit(1, "inch")
  22099. },
  22100. {
  22101. name: "Macro",
  22102. height: math.unit(60, "feet"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Megamacro",
  22107. height: math.unit(2, "miles")
  22108. },
  22109. {
  22110. name: "Gigamacro",
  22111. height: math.unit(3, "earths")
  22112. },
  22113. {
  22114. name: "Galactic",
  22115. height: math.unit(0.8, "galaxies")
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22121. {
  22122. front: {
  22123. height: math.unit(1600, "feet"),
  22124. weight: math.unit(85758785169, "kg"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/valathos/front.svg",
  22128. extra: 1451 / 1339
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Macro",
  22135. height: math.unit(1600, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(7 + 5 / 12, "feet"),
  22145. weight: math.unit(300, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/azula/front.svg",
  22149. extra: 3208 / 2880,
  22150. bottom: 80.2 / 3277
  22151. }
  22152. },
  22153. back: {
  22154. height: math.unit(7 + 5 / 12, "feet"),
  22155. weight: math.unit(300, "lb"),
  22156. name: "Back",
  22157. image: {
  22158. source: "./media/characters/azula/back.svg",
  22159. extra: 3169 / 2822,
  22160. bottom: 150.6 / 3321
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(7 + 5 / 12, "feet"),
  22168. default: true
  22169. },
  22170. {
  22171. name: "Big",
  22172. height: math.unit(20, "feet")
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(5 + 1 / 12, "feet"),
  22181. weight: math.unit(110, "lb"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/rupert/front.svg",
  22185. extra: 1549 / 1495,
  22186. bottom: 54.2 / 1604.4
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Normal",
  22193. height: math.unit(5 + 1 / 12, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(8 + 4 / 12, "feet"),
  22203. weight: math.unit(350, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/sheera-castellar/front.svg",
  22207. extra: 1957 / 1894,
  22208. bottom: 26.97 / 1975.017
  22209. }
  22210. },
  22211. side: {
  22212. height: math.unit(8 + 4 / 12, "feet"),
  22213. weight: math.unit(350, "lb"),
  22214. name: "Side",
  22215. image: {
  22216. source: "./media/characters/sheera-castellar/side.svg",
  22217. extra: 1957 / 1894
  22218. }
  22219. },
  22220. back: {
  22221. height: math.unit(8 + 4 / 12, "feet"),
  22222. weight: math.unit(350, "lb"),
  22223. name: "Back",
  22224. image: {
  22225. source: "./media/characters/sheera-castellar/back.svg",
  22226. extra: 1957 / 1894
  22227. }
  22228. },
  22229. angled: {
  22230. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22231. weight: math.unit(350, "lb"),
  22232. name: "Angled",
  22233. image: {
  22234. source: "./media/characters/sheera-castellar/angled.svg",
  22235. extra: 1807 / 1707,
  22236. bottom: 68 / 1875
  22237. }
  22238. },
  22239. genitals: {
  22240. height: math.unit(2.2, "feet"),
  22241. name: "Genitals",
  22242. image: {
  22243. source: "./media/characters/sheera-castellar/genitals.svg"
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(8 + 4 / 12, "feet")
  22251. },
  22252. {
  22253. name: "Macro",
  22254. height: math.unit(150, "feet"),
  22255. default: true
  22256. },
  22257. {
  22258. name: "Macro+",
  22259. height: math.unit(800, "feet")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(6, "feet"),
  22268. weight: math.unit(150, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/jaipur/front.svg",
  22272. extra: 3860 / 3731,
  22273. bottom: 287 / 4140
  22274. }
  22275. },
  22276. back: {
  22277. height: math.unit(6, "feet"),
  22278. weight: math.unit(150, "lb"),
  22279. name: "Back",
  22280. image: {
  22281. source: "./media/characters/jaipur/back.svg",
  22282. extra: 4060 / 3930,
  22283. bottom: 151 / 4200
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(1.85, "meters"),
  22291. default: true
  22292. },
  22293. {
  22294. name: "Macro",
  22295. height: math.unit(150, "meters")
  22296. },
  22297. {
  22298. name: "Macro+",
  22299. height: math.unit(0.5, "miles")
  22300. },
  22301. {
  22302. name: "Macro++",
  22303. height: math.unit(2.5, "miles")
  22304. },
  22305. {
  22306. name: "Macro+++",
  22307. height: math.unit(12, "miles")
  22308. },
  22309. {
  22310. name: "Macro++++",
  22311. height: math.unit(120, "miles")
  22312. },
  22313. {
  22314. name: "Macro+++++",
  22315. height: math.unit(1200, "miles")
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22321. {
  22322. front: {
  22323. height: math.unit(6, "feet"),
  22324. weight: math.unit(150, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/sheila-wolf/front.svg",
  22328. extra: 1931 / 1808,
  22329. bottom: 29.5 / 1960
  22330. }
  22331. },
  22332. dick: {
  22333. height: math.unit(1.464, "feet"),
  22334. name: "Dick",
  22335. image: {
  22336. source: "./media/characters/sheila-wolf/dick.svg"
  22337. }
  22338. },
  22339. muzzle: {
  22340. height: math.unit(0.513, "feet"),
  22341. name: "Muzzle",
  22342. image: {
  22343. source: "./media/characters/sheila-wolf/muzzle.svg"
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Macro",
  22350. height: math.unit(70, "feet"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(32, "meters"),
  22360. weight: math.unit(300000, "kg"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/almor/front.svg",
  22364. extra: 1408 / 1322,
  22365. bottom: 94.6 / 1506.5
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Macro",
  22372. height: math.unit(32, "meters"),
  22373. default: true
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(7, "feet"),
  22382. weight: math.unit(200, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/silver/front.svg",
  22386. extra: 472.1 / 450.5,
  22387. bottom: 26.5 / 499.424
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(7, "feet"),
  22395. default: true
  22396. },
  22397. {
  22398. name: "Macro",
  22399. height: math.unit(800, "feet")
  22400. },
  22401. {
  22402. name: "Megamacro",
  22403. height: math.unit(250, "miles")
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(6, "feet"),
  22412. weight: math.unit(150, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/pliskin/front.svg",
  22416. extra: 1469 / 1359,
  22417. bottom: 70 / 1540
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Micro",
  22424. height: math.unit(3, "inches")
  22425. },
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(5 + 11 / 12, "feet"),
  22429. default: true
  22430. },
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(120, "feet")
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(6, "feet"),
  22442. weight: math.unit(150, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/sammy/front.svg",
  22446. extra: 1193 / 1089,
  22447. bottom: 30.5 / 1226
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(1700, "feet"),
  22455. default: true
  22456. },
  22457. {
  22458. name: "Examacro",
  22459. height: math.unit(2.5e9, "lightyears")
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(21, "meters"),
  22468. weight: math.unit(12, "tonnes"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/kuru/front.svg",
  22472. extra: 4301 / 3785,
  22473. bottom: 371.3 / 4691
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Macro",
  22480. height: math.unit(21, "meters"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(23, "meters"),
  22490. weight: math.unit(12.2, "tonnes"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/rakka/front.svg",
  22494. extra: 4670 / 4169,
  22495. bottom: 301 / 4968.7
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Macro",
  22502. height: math.unit(23, "meters"),
  22503. default: true
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22509. {
  22510. front: {
  22511. height: math.unit(6, "feet"),
  22512. weight: math.unit(150, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/rhys-feline/front.svg",
  22516. extra: 2488 / 2308,
  22517. bottom: 35.67 / 2519.19
  22518. }
  22519. },
  22520. },
  22521. [
  22522. {
  22523. name: "Really Small",
  22524. height: math.unit(1, "nm")
  22525. },
  22526. {
  22527. name: "Micro",
  22528. height: math.unit(4, "inches")
  22529. },
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(4 + 10 / 12, "feet"),
  22533. default: true
  22534. },
  22535. {
  22536. name: "Macro",
  22537. height: math.unit(100, "feet")
  22538. },
  22539. {
  22540. name: "Megamacto",
  22541. height: math.unit(50, "miles")
  22542. },
  22543. ]
  22544. ))
  22545. characterMakers.push(() => makeCharacter(
  22546. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22547. {
  22548. side: {
  22549. height: math.unit(30, "feet"),
  22550. weight: math.unit(35000, "kg"),
  22551. name: "Side",
  22552. image: {
  22553. source: "./media/characters/alydar/side.svg",
  22554. extra: 234 / 222,
  22555. bottom: 6.5 / 241
  22556. }
  22557. },
  22558. front: {
  22559. height: math.unit(30, "feet"),
  22560. weight: math.unit(35000, "kg"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/alydar/front.svg",
  22564. extra: 223.37 / 210.2,
  22565. bottom: 22.3 / 246.76
  22566. }
  22567. },
  22568. top: {
  22569. height: math.unit(64.54, "feet"),
  22570. weight: math.unit(35000, "kg"),
  22571. name: "Top",
  22572. image: {
  22573. source: "./media/characters/alydar/top.svg"
  22574. }
  22575. },
  22576. anthro: {
  22577. height: math.unit(30, "feet"),
  22578. weight: math.unit(9000, "kg"),
  22579. name: "Anthro",
  22580. image: {
  22581. source: "./media/characters/alydar/anthro.svg",
  22582. extra: 432 / 421,
  22583. bottom: 7.18 / 440
  22584. }
  22585. },
  22586. maw: {
  22587. height: math.unit(11.693, "feet"),
  22588. name: "Maw",
  22589. image: {
  22590. source: "./media/characters/alydar/maw.svg"
  22591. }
  22592. },
  22593. head: {
  22594. height: math.unit(11.693, "feet"),
  22595. name: "Head",
  22596. image: {
  22597. source: "./media/characters/alydar/head.svg"
  22598. }
  22599. },
  22600. headAlt: {
  22601. height: math.unit(12.861, "feet"),
  22602. name: "Head (Alt)",
  22603. image: {
  22604. source: "./media/characters/alydar/head-alt.svg"
  22605. }
  22606. },
  22607. wing: {
  22608. height: math.unit(20.712, "feet"),
  22609. name: "Wing",
  22610. image: {
  22611. source: "./media/characters/alydar/wing.svg"
  22612. }
  22613. },
  22614. wingFeather: {
  22615. height: math.unit(9.662, "feet"),
  22616. name: "Wing Feather",
  22617. image: {
  22618. source: "./media/characters/alydar/wing-feather.svg"
  22619. }
  22620. },
  22621. countourFeather: {
  22622. height: math.unit(4.154, "feet"),
  22623. name: "Contour Feather",
  22624. image: {
  22625. source: "./media/characters/alydar/contour-feather.svg"
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Diplomatic",
  22632. height: math.unit(13, "feet"),
  22633. default: true
  22634. },
  22635. {
  22636. name: "Small",
  22637. height: math.unit(30, "feet")
  22638. },
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(95, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Large",
  22646. height: math.unit(285, "feet")
  22647. },
  22648. {
  22649. name: "Incomprehensible",
  22650. height: math.unit(450, "megameters")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22656. {
  22657. side: {
  22658. height: math.unit(11, "feet"),
  22659. weight: math.unit(1750, "kg"),
  22660. name: "Side",
  22661. image: {
  22662. source: "./media/characters/selicia/side.svg",
  22663. extra: 440 / 396,
  22664. bottom: 24.8 / 465.979
  22665. }
  22666. },
  22667. maw: {
  22668. height: math.unit(4.665, "feet"),
  22669. name: "Maw",
  22670. image: {
  22671. source: "./media/characters/selicia/maw.svg"
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(11, "feet"),
  22679. default: true
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22685. {
  22686. side: {
  22687. height: math.unit(2 + 6 / 12, "feet"),
  22688. weight: math.unit(30, "lb"),
  22689. name: "Side",
  22690. image: {
  22691. source: "./media/characters/layla/side.svg",
  22692. extra: 244 / 188,
  22693. bottom: 18.2 / 262.1
  22694. }
  22695. },
  22696. back: {
  22697. height: math.unit(2 + 6 / 12, "feet"),
  22698. weight: math.unit(30, "lb"),
  22699. name: "Back",
  22700. image: {
  22701. source: "./media/characters/layla/back.svg",
  22702. extra: 308 / 241.5,
  22703. bottom: 8.9 / 316.8
  22704. }
  22705. },
  22706. cumming: {
  22707. height: math.unit(2 + 6 / 12, "feet"),
  22708. weight: math.unit(30, "lb"),
  22709. name: "Cumming",
  22710. image: {
  22711. source: "./media/characters/layla/cumming.svg",
  22712. extra: 342 / 279,
  22713. bottom: 595 / 938
  22714. }
  22715. },
  22716. dickFlaccid: {
  22717. height: math.unit(2.595, "feet"),
  22718. name: "Flaccid Genitals",
  22719. image: {
  22720. source: "./media/characters/layla/dick-flaccid.svg"
  22721. }
  22722. },
  22723. dickErect: {
  22724. height: math.unit(2.359, "feet"),
  22725. name: "Erect Genitals",
  22726. image: {
  22727. source: "./media/characters/layla/dick-erect.svg"
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Micro",
  22734. height: math.unit(1, "inch")
  22735. },
  22736. {
  22737. name: "Small",
  22738. height: math.unit(1, "foot")
  22739. },
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(2 + 6 / 12, "feet"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(200, "feet")
  22748. },
  22749. {
  22750. name: "Megamacro",
  22751. height: math.unit(1000, "miles")
  22752. },
  22753. {
  22754. name: "Planetary",
  22755. height: math.unit(8000, "miles")
  22756. },
  22757. {
  22758. name: "True Layla",
  22759. height: math.unit(200000 * 7, "multiverses")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22765. {
  22766. back: {
  22767. height: math.unit(10.5, "feet"),
  22768. weight: math.unit(800, "lb"),
  22769. name: "Back",
  22770. image: {
  22771. source: "./media/characters/knox/back.svg",
  22772. extra: 1486 / 1089,
  22773. bottom: 107 / 1601.4
  22774. }
  22775. },
  22776. side: {
  22777. height: math.unit(10.5, "feet"),
  22778. weight: math.unit(800, "lb"),
  22779. name: "Side",
  22780. image: {
  22781. source: "./media/characters/knox/side.svg",
  22782. extra: 244 / 218,
  22783. bottom: 14 / 260
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Compact",
  22790. height: math.unit(10.5, "feet"),
  22791. default: true
  22792. },
  22793. {
  22794. name: "Dynamax",
  22795. height: math.unit(210, "feet")
  22796. },
  22797. {
  22798. name: "Full Macro",
  22799. height: math.unit(850, "feet")
  22800. },
  22801. ]
  22802. ))
  22803. characterMakers.push(() => makeCharacter(
  22804. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22805. {
  22806. front: {
  22807. height: math.unit(6, "feet"),
  22808. weight: math.unit(152, "lb"),
  22809. name: "Front",
  22810. image: {
  22811. source: "./media/characters/shin-pikachu/front.svg",
  22812. extra: 1574 / 1480,
  22813. bottom: 53.3 / 1626
  22814. }
  22815. },
  22816. hand: {
  22817. height: math.unit(1.055, "feet"),
  22818. name: "Hand",
  22819. image: {
  22820. source: "./media/characters/shin-pikachu/hand.svg"
  22821. }
  22822. },
  22823. foot: {
  22824. height: math.unit(1.1, "feet"),
  22825. name: "Foot",
  22826. image: {
  22827. source: "./media/characters/shin-pikachu/foot.svg"
  22828. }
  22829. },
  22830. collar: {
  22831. height: math.unit(0.386, "feet"),
  22832. name: "Collar",
  22833. image: {
  22834. source: "./media/characters/shin-pikachu/collar.svg"
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Smallest",
  22841. height: math.unit(0.5, "inches")
  22842. },
  22843. {
  22844. name: "Micro",
  22845. height: math.unit(6, "inches")
  22846. },
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(6, "feet"),
  22850. default: true
  22851. },
  22852. {
  22853. name: "Macro",
  22854. height: math.unit(150, "feet")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(28, "feet"),
  22863. weight: math.unit(10500, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/kayda/front.svg",
  22867. extra: 1536 / 1428,
  22868. bottom: 68.7 / 1603
  22869. }
  22870. },
  22871. back: {
  22872. height: math.unit(28, "feet"),
  22873. weight: math.unit(10500, "lb"),
  22874. name: "Back",
  22875. image: {
  22876. source: "./media/characters/kayda/back.svg",
  22877. extra: 1557 / 1464,
  22878. bottom: 39.5 / 1597.49
  22879. }
  22880. },
  22881. dick: {
  22882. height: math.unit(3.858, "feet"),
  22883. name: "Dick",
  22884. image: {
  22885. source: "./media/characters/kayda/dick.svg"
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Macro",
  22892. height: math.unit(28, "feet"),
  22893. default: true
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(10 + 11 / 12, "feet"),
  22902. weight: math.unit(1400, "lb"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/brian/front.svg",
  22906. extra: 737 / 692,
  22907. bottom: 55.4 / 785
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Normal",
  22914. height: math.unit(10 + 11 / 12, "feet"),
  22915. default: true
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(5 + 8 / 12, "feet"),
  22924. weight: math.unit(140, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/khemri/front.svg",
  22928. extra: 4780 / 4059,
  22929. bottom: 80.1 / 4859.25
  22930. }
  22931. },
  22932. },
  22933. [
  22934. {
  22935. name: "Micro",
  22936. height: math.unit(6, "inches")
  22937. },
  22938. {
  22939. name: "Normal",
  22940. height: math.unit(5 + 8 / 12, "feet"),
  22941. default: true
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22947. {
  22948. front: {
  22949. height: math.unit(13, "feet"),
  22950. weight: math.unit(1700, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/felix-braveheart/front.svg",
  22954. extra: 1222 / 1157,
  22955. bottom: 53.2 / 1280
  22956. }
  22957. },
  22958. back: {
  22959. height: math.unit(13, "feet"),
  22960. weight: math.unit(1700, "lb"),
  22961. name: "Back",
  22962. image: {
  22963. source: "./media/characters/felix-braveheart/back.svg",
  22964. extra: 1277 / 1203,
  22965. bottom: 50.2 / 1327
  22966. }
  22967. },
  22968. feral: {
  22969. height: math.unit(6, "feet"),
  22970. weight: math.unit(400, "lb"),
  22971. name: "Feral",
  22972. image: {
  22973. source: "./media/characters/felix-braveheart/feral.svg",
  22974. extra: 682 / 625,
  22975. bottom: 6.9 / 688
  22976. }
  22977. },
  22978. },
  22979. [
  22980. {
  22981. name: "Normal",
  22982. height: math.unit(13, "feet"),
  22983. default: true
  22984. },
  22985. ]
  22986. ))
  22987. characterMakers.push(() => makeCharacter(
  22988. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22989. {
  22990. side: {
  22991. height: math.unit(5 + 11 / 12, "feet"),
  22992. weight: math.unit(1400, "lb"),
  22993. name: "Side",
  22994. image: {
  22995. source: "./media/characters/shadow-blade/side.svg",
  22996. extra: 1726 / 1267,
  22997. bottom: 58.4 / 1785
  22998. }
  22999. },
  23000. },
  23001. [
  23002. {
  23003. name: "Normal",
  23004. height: math.unit(5 + 11 / 12, "feet"),
  23005. default: true
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23011. {
  23012. front: {
  23013. height: math.unit(1 + 6 / 12, "feet"),
  23014. weight: math.unit(25, "lb"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/karla-halldor/front.svg",
  23018. extra: 1459 / 1383,
  23019. bottom: 12 / 1472
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(1 + 6 / 12, "feet"),
  23027. default: true
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23033. {
  23034. front: {
  23035. height: math.unit(6 + 2 / 12, "feet"),
  23036. weight: math.unit(160, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/ariam/front.svg",
  23040. extra: 714 / 617,
  23041. bottom: 23.4 / 737,
  23042. }
  23043. },
  23044. squatting: {
  23045. height: math.unit(4.1, "feet"),
  23046. weight: math.unit(160, "lb"),
  23047. name: "Squatting",
  23048. image: {
  23049. source: "./media/characters/ariam/squatting.svg",
  23050. extra: 2617 / 2112,
  23051. bottom: 61.2 / 2681,
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(6 + 2 / 12, "feet"),
  23059. default: true
  23060. },
  23061. {
  23062. name: "Normal+",
  23063. height: math.unit(4, "meters")
  23064. },
  23065. {
  23066. name: "Macro",
  23067. height: math.unit(50, "meters")
  23068. },
  23069. {
  23070. name: "Macro+",
  23071. height: math.unit(100, "meters")
  23072. },
  23073. {
  23074. name: "Megamacro",
  23075. height: math.unit(20, "km")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(1.67, "meters"),
  23084. weight: math.unit(140, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23088. extra: 438 / 410,
  23089. bottom: 0.75 / 439
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Shrunken",
  23096. height: math.unit(7.6, "cm")
  23097. },
  23098. {
  23099. name: "Human Scale",
  23100. height: math.unit(1.67, "meters")
  23101. },
  23102. {
  23103. name: "Wolxi Scale",
  23104. height: math.unit(36.7, "meters"),
  23105. default: true
  23106. },
  23107. ]
  23108. ))
  23109. characterMakers.push(() => makeCharacter(
  23110. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23111. {
  23112. front: {
  23113. height: math.unit(1.73, "meters"),
  23114. weight: math.unit(240, "lb"),
  23115. name: "Front",
  23116. image: {
  23117. source: "./media/characters/izue-two-mothers/front.svg",
  23118. extra: 469 / 437,
  23119. bottom: 1.24 / 470.6
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Shrunken",
  23126. height: math.unit(7.86, "cm")
  23127. },
  23128. {
  23129. name: "Human Scale",
  23130. height: math.unit(1.73, "meters")
  23131. },
  23132. {
  23133. name: "Wolxi Scale",
  23134. height: math.unit(38, "meters"),
  23135. default: true
  23136. },
  23137. ]
  23138. ))
  23139. characterMakers.push(() => makeCharacter(
  23140. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23141. {
  23142. front: {
  23143. height: math.unit(1.55, "meters"),
  23144. weight: math.unit(120, "lb"),
  23145. name: "Front",
  23146. image: {
  23147. source: "./media/characters/teeku-love-shack/front.svg",
  23148. extra: 387 / 362,
  23149. bottom: 1.51 / 388
  23150. }
  23151. },
  23152. },
  23153. [
  23154. {
  23155. name: "Shrunken",
  23156. height: math.unit(7, "cm")
  23157. },
  23158. {
  23159. name: "Human Scale",
  23160. height: math.unit(1.55, "meters")
  23161. },
  23162. {
  23163. name: "Wolxi Scale",
  23164. height: math.unit(34.1, "meters"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23171. {
  23172. front: {
  23173. height: math.unit(1.83, "meters"),
  23174. weight: math.unit(135, "lb"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/dejma-the-red/front.svg",
  23178. extra: 480 / 458,
  23179. bottom: 1.8 / 482
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Shrunken",
  23186. height: math.unit(8.3, "cm")
  23187. },
  23188. {
  23189. name: "Human Scale",
  23190. height: math.unit(1.83, "meters")
  23191. },
  23192. {
  23193. name: "Wolxi Scale",
  23194. height: math.unit(40, "meters"),
  23195. default: true
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23201. {
  23202. front: {
  23203. height: math.unit(1.78, "meters"),
  23204. weight: math.unit(65, "kg"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/aki/front.svg",
  23208. extra: 452 / 415
  23209. }
  23210. },
  23211. frontNsfw: {
  23212. height: math.unit(1.78, "meters"),
  23213. weight: math.unit(65, "kg"),
  23214. name: "Front (NSFW)",
  23215. image: {
  23216. source: "./media/characters/aki/front-nsfw.svg",
  23217. extra: 452 / 415
  23218. }
  23219. },
  23220. back: {
  23221. height: math.unit(1.78, "meters"),
  23222. weight: math.unit(65, "kg"),
  23223. name: "Back",
  23224. image: {
  23225. source: "./media/characters/aki/back.svg",
  23226. extra: 452 / 415
  23227. }
  23228. },
  23229. rump: {
  23230. height: math.unit(2.05, "feet"),
  23231. name: "Rump",
  23232. image: {
  23233. source: "./media/characters/aki/rump.svg"
  23234. }
  23235. },
  23236. dick: {
  23237. height: math.unit(0.95, "feet"),
  23238. name: "Dick",
  23239. image: {
  23240. source: "./media/characters/aki/dick.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Micro",
  23247. height: math.unit(15, "cm")
  23248. },
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(178, "cm"),
  23252. default: true
  23253. },
  23254. {
  23255. name: "Macro",
  23256. height: math.unit(214, "m")
  23257. },
  23258. {
  23259. name: "Macro+",
  23260. height: math.unit(534, "m")
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23266. {
  23267. front: {
  23268. height: math.unit(5 + 5 / 12, "feet"),
  23269. weight: math.unit(120, "lb"),
  23270. name: "Front",
  23271. image: {
  23272. source: "./media/characters/ari/front.svg",
  23273. extra: 714.5 / 682,
  23274. bottom: 8 / 722.5
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(5 + 5 / 12, "feet")
  23282. },
  23283. {
  23284. name: "Macro",
  23285. height: math.unit(100, "feet"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Megamacro",
  23290. height: math.unit(100, "miles")
  23291. },
  23292. {
  23293. name: "Gigamacro",
  23294. height: math.unit(80000, "miles")
  23295. },
  23296. ]
  23297. ))
  23298. characterMakers.push(() => makeCharacter(
  23299. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23300. {
  23301. side: {
  23302. height: math.unit(9, "feet"),
  23303. weight: math.unit(400, "kg"),
  23304. name: "Side",
  23305. image: {
  23306. source: "./media/characters/bolt/side.svg",
  23307. extra: 1126 / 896,
  23308. bottom: 60 / 1187.3,
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Micro",
  23315. height: math.unit(5, "inches")
  23316. },
  23317. {
  23318. name: "Normal",
  23319. height: math.unit(9, "feet"),
  23320. default: true
  23321. },
  23322. {
  23323. name: "Macro",
  23324. height: math.unit(700, "feet")
  23325. },
  23326. {
  23327. name: "Max Size",
  23328. height: math.unit(1.52e22, "yottameters")
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(4.53, "meters"),
  23337. weight: math.unit(3, "tons"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/draekon-sylviar/front.svg",
  23341. extra: 1228 / 1068,
  23342. bottom: 41 / 1270
  23343. }
  23344. },
  23345. tail: {
  23346. height: math.unit(1.772, "meter"),
  23347. name: "Tail",
  23348. image: {
  23349. source: "./media/characters/draekon-sylviar/tail.svg"
  23350. }
  23351. },
  23352. head: {
  23353. height: math.unit(1.331, "meter"),
  23354. name: "Head",
  23355. image: {
  23356. source: "./media/characters/draekon-sylviar/head.svg"
  23357. }
  23358. },
  23359. hand: {
  23360. height: math.unit(0.564, "meter"),
  23361. name: "Hand",
  23362. image: {
  23363. source: "./media/characters/draekon-sylviar/hand.svg"
  23364. }
  23365. },
  23366. foot: {
  23367. height: math.unit(0.621, "meter"),
  23368. name: "Foot",
  23369. image: {
  23370. source: "./media/characters/draekon-sylviar/foot.svg",
  23371. bottom: 32 / 324
  23372. }
  23373. },
  23374. dick: {
  23375. height: math.unit(61, "cm"),
  23376. name: "Dick",
  23377. image: {
  23378. source: "./media/characters/draekon-sylviar/dick.svg"
  23379. }
  23380. },
  23381. dickseparated: {
  23382. height: math.unit(61, "cm"),
  23383. name: "Dick-separated",
  23384. image: {
  23385. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Small",
  23392. height: math.unit(4.53 / 2, "meters"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(4.53, "meters"),
  23398. default: true
  23399. },
  23400. {
  23401. name: "Large",
  23402. height: math.unit(4.53 * 2, "meters"),
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(6 + 2 / 12, "feet"),
  23411. weight: math.unit(180, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/brawler/front.svg",
  23415. extra: 3301 / 3027,
  23416. bottom: 138 / 3439
  23417. }
  23418. },
  23419. },
  23420. [
  23421. {
  23422. name: "Normal",
  23423. height: math.unit(6 + 2 / 12, "feet"),
  23424. default: true
  23425. },
  23426. ]
  23427. ))
  23428. characterMakers.push(() => makeCharacter(
  23429. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23430. {
  23431. front: {
  23432. height: math.unit(11, "feet"),
  23433. weight: math.unit(1000, "lb"),
  23434. name: "Front",
  23435. image: {
  23436. source: "./media/characters/alex/front.svg",
  23437. bottom: 44.5 / 620
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Micro",
  23444. height: math.unit(5, "inches")
  23445. },
  23446. {
  23447. name: "Normal",
  23448. height: math.unit(11, "feet"),
  23449. default: true
  23450. },
  23451. {
  23452. name: "Macro",
  23453. height: math.unit(9.5e9, "feet")
  23454. },
  23455. {
  23456. name: "Max Size",
  23457. height: math.unit(1.4e283, "yottameters")
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23463. {
  23464. female: {
  23465. height: math.unit(29.9, "m"),
  23466. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23467. name: "Female",
  23468. image: {
  23469. source: "./media/characters/zenari/female.svg",
  23470. extra: 3281.6 / 3217,
  23471. bottom: 72.2 / 3353
  23472. }
  23473. },
  23474. male: {
  23475. height: math.unit(27.7, "m"),
  23476. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23477. name: "Male",
  23478. image: {
  23479. source: "./media/characters/zenari/male.svg",
  23480. extra: 3008 / 2991,
  23481. bottom: 54.6 / 3069
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Macro",
  23488. height: math.unit(29.7, "meters"),
  23489. default: true
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23495. {
  23496. female: {
  23497. height: math.unit(23.8, "m"),
  23498. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23499. name: "Female",
  23500. image: {
  23501. source: "./media/characters/mactarian/female.svg",
  23502. extra: 2662 / 2569,
  23503. bottom: 73 / 2736
  23504. }
  23505. },
  23506. male: {
  23507. height: math.unit(23.8, "m"),
  23508. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23509. name: "Male",
  23510. image: {
  23511. source: "./media/characters/mactarian/male.svg",
  23512. extra: 2673 / 2600,
  23513. bottom: 76 / 2750
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Macro",
  23520. height: math.unit(23.8, "meters"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23527. {
  23528. female: {
  23529. height: math.unit(19.3, "m"),
  23530. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23531. name: "Female",
  23532. image: {
  23533. source: "./media/characters/umok/female.svg",
  23534. extra: 2186 / 2078,
  23535. bottom: 87 / 2277
  23536. }
  23537. },
  23538. male: {
  23539. height: math.unit(19.5, "m"),
  23540. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23541. name: "Male",
  23542. image: {
  23543. source: "./media/characters/umok/male.svg",
  23544. extra: 2233 / 2140,
  23545. bottom: 24.4 / 2258
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(19.3, "meters"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23559. {
  23560. female: {
  23561. height: math.unit(26.15, "m"),
  23562. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23563. name: "Female",
  23564. image: {
  23565. source: "./media/characters/joraxian/female.svg",
  23566. extra: 2912 / 2824,
  23567. bottom: 36 / 2956
  23568. }
  23569. },
  23570. male: {
  23571. height: math.unit(25.4, "m"),
  23572. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23573. name: "Male",
  23574. image: {
  23575. source: "./media/characters/joraxian/male.svg",
  23576. extra: 2877 / 2721,
  23577. bottom: 82 / 2967
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Macro",
  23584. height: math.unit(26.15, "meters"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23591. {
  23592. female: {
  23593. height: math.unit(21.6, "m"),
  23594. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23595. name: "Female",
  23596. image: {
  23597. source: "./media/characters/sthara/female.svg",
  23598. extra: 2516 / 2347,
  23599. bottom: 21.5 / 2537
  23600. }
  23601. },
  23602. male: {
  23603. height: math.unit(24, "m"),
  23604. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23605. name: "Male",
  23606. image: {
  23607. source: "./media/characters/sthara/male.svg",
  23608. extra: 2732 / 2607,
  23609. bottom: 23 / 2732
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Macro",
  23616. height: math.unit(21.6, "meters"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23623. {
  23624. front: {
  23625. height: math.unit(6 + 4 / 12, "feet"),
  23626. weight: math.unit(175, "lb"),
  23627. name: "Front",
  23628. image: {
  23629. source: "./media/characters/luka-bryzant/front.svg",
  23630. extra: 311 / 289,
  23631. bottom: 4 / 315
  23632. }
  23633. },
  23634. back: {
  23635. height: math.unit(6 + 4 / 12, "feet"),
  23636. weight: math.unit(175, "lb"),
  23637. name: "Back",
  23638. image: {
  23639. source: "./media/characters/luka-bryzant/back.svg",
  23640. extra: 311 / 289,
  23641. bottom: 3.8 / 313.7
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Micro",
  23648. height: math.unit(10, "inches")
  23649. },
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(6 + 4 / 12, "feet"),
  23653. default: true
  23654. },
  23655. {
  23656. name: "Large",
  23657. height: math.unit(12, "feet")
  23658. },
  23659. ]
  23660. ))
  23661. characterMakers.push(() => makeCharacter(
  23662. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23663. {
  23664. front: {
  23665. height: math.unit(5 + 7 / 12, "feet"),
  23666. weight: math.unit(185, "lb"),
  23667. name: "Front",
  23668. image: {
  23669. source: "./media/characters/aman-aquila/front.svg",
  23670. extra: 1013 / 976,
  23671. bottom: 45.6 / 1057
  23672. }
  23673. },
  23674. side: {
  23675. height: math.unit(5 + 7 / 12, "feet"),
  23676. weight: math.unit(185, "lb"),
  23677. name: "Side",
  23678. image: {
  23679. source: "./media/characters/aman-aquila/side.svg",
  23680. extra: 1054 / 1011,
  23681. bottom: 15 / 1070
  23682. }
  23683. },
  23684. back: {
  23685. height: math.unit(5 + 7 / 12, "feet"),
  23686. weight: math.unit(185, "lb"),
  23687. name: "Back",
  23688. image: {
  23689. source: "./media/characters/aman-aquila/back.svg",
  23690. extra: 1026 / 970,
  23691. bottom: 12 / 1039
  23692. }
  23693. },
  23694. head: {
  23695. height: math.unit(1.211, "feet"),
  23696. name: "Head",
  23697. image: {
  23698. source: "./media/characters/aman-aquila/head.svg",
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Minimicro",
  23705. height: math.unit(0.057, "inches")
  23706. },
  23707. {
  23708. name: "Micro",
  23709. height: math.unit(7, "inches")
  23710. },
  23711. {
  23712. name: "Mini",
  23713. height: math.unit(3 + 7 / 12, "feet")
  23714. },
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(5 + 7 / 12, "feet"),
  23718. default: true
  23719. },
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(157 + 7 / 12, "feet")
  23723. },
  23724. {
  23725. name: "Megamacro",
  23726. height: math.unit(1557 + 7 / 12, "feet")
  23727. },
  23728. {
  23729. name: "Gigamacro",
  23730. height: math.unit(15557 + 7 / 12, "feet")
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(3 + 2 / 12, "inches"),
  23739. weight: math.unit(0.3, "ounces"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/hiphae/front.svg",
  23743. extra: 1931 / 1683,
  23744. bottom: 24 / 1955
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Normal",
  23751. height: math.unit(3 + 1 / 2, "inches"),
  23752. default: true
  23753. },
  23754. ]
  23755. ))
  23756. characterMakers.push(() => makeCharacter(
  23757. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23758. {
  23759. front: {
  23760. height: math.unit(5 + 10 / 12, "feet"),
  23761. weight: math.unit(165, "lb"),
  23762. name: "Front",
  23763. image: {
  23764. source: "./media/characters/nicky/front.svg",
  23765. extra: 3144 / 2886,
  23766. bottom: 45.6 / 3192
  23767. }
  23768. },
  23769. back: {
  23770. height: math.unit(5 + 10 / 12, "feet"),
  23771. weight: math.unit(165, "lb"),
  23772. name: "Back",
  23773. image: {
  23774. source: "./media/characters/nicky/back.svg",
  23775. extra: 3055 / 2804,
  23776. bottom: 28.4 / 3087
  23777. }
  23778. },
  23779. frontclothed: {
  23780. height: math.unit(5 + 10 / 12, "feet"),
  23781. weight: math.unit(165, "lb"),
  23782. name: "Front-clothed",
  23783. image: {
  23784. source: "./media/characters/nicky/front-clothed.svg",
  23785. extra: 3184.9 / 2926.9,
  23786. bottom: 86.5 / 3239.9
  23787. }
  23788. },
  23789. foot: {
  23790. height: math.unit(1.16, "feet"),
  23791. name: "Foot",
  23792. image: {
  23793. source: "./media/characters/nicky/foot.svg"
  23794. }
  23795. },
  23796. feet: {
  23797. height: math.unit(1.34, "feet"),
  23798. name: "Feet",
  23799. image: {
  23800. source: "./media/characters/nicky/feet.svg"
  23801. }
  23802. },
  23803. maw: {
  23804. height: math.unit(0.9, "feet"),
  23805. name: "Maw",
  23806. image: {
  23807. source: "./media/characters/nicky/maw.svg"
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(5 + 10 / 12, "feet"),
  23815. default: true
  23816. },
  23817. {
  23818. name: "Macro",
  23819. height: math.unit(60, "feet")
  23820. },
  23821. {
  23822. name: "Megamacro",
  23823. height: math.unit(1, "mile")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23829. {
  23830. side: {
  23831. height: math.unit(10, "feet"),
  23832. weight: math.unit(600, "lb"),
  23833. name: "Side",
  23834. image: {
  23835. source: "./media/characters/blair/side.svg",
  23836. bottom: 16.6 / 475,
  23837. extra: 458 / 431
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Micro",
  23844. height: math.unit(8, "inches")
  23845. },
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(10, "feet"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(180, "feet")
  23854. },
  23855. ]
  23856. ))
  23857. characterMakers.push(() => makeCharacter(
  23858. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23859. {
  23860. front: {
  23861. height: math.unit(5 + 4 / 12, "feet"),
  23862. weight: math.unit(125, "lb"),
  23863. name: "Front",
  23864. image: {
  23865. source: "./media/characters/fisher/front.svg",
  23866. extra: 444 / 390,
  23867. bottom: 2 / 444.8
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Micro",
  23874. height: math.unit(4, "inches")
  23875. },
  23876. {
  23877. name: "Normal",
  23878. height: math.unit(5 + 4 / 12, "feet"),
  23879. default: true
  23880. },
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(100, "feet")
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(6.71, "feet"),
  23892. weight: math.unit(200, "lb"),
  23893. capacity: math.unit(1000000, "people"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/gliss/front.svg",
  23897. extra: 2347 / 2231,
  23898. bottom: 113 / 2462
  23899. }
  23900. },
  23901. hammerspaceSize: {
  23902. height: math.unit(6.71 * 717, "feet"),
  23903. weight: math.unit(200, "lb"),
  23904. capacity: math.unit(1000000, "people"),
  23905. name: "Hammerspace Size",
  23906. image: {
  23907. source: "./media/characters/gliss/front.svg",
  23908. extra: 2347 / 2231,
  23909. bottom: 113 / 2462
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(6.71, "feet"),
  23917. default: true
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23923. {
  23924. side: {
  23925. height: math.unit(1.44, "m"),
  23926. weight: math.unit(80, "kg"),
  23927. name: "Side",
  23928. image: {
  23929. source: "./media/characters/dune-anderson/side.svg",
  23930. bottom: 49 / 1426
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Wolf-sized",
  23937. height: math.unit(1.44, "meters")
  23938. },
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(5.05, "meters"),
  23942. default: true
  23943. },
  23944. {
  23945. name: "Big",
  23946. height: math.unit(14.4, "meters")
  23947. },
  23948. {
  23949. name: "Huge",
  23950. height: math.unit(144, "meters")
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(7, "feet"),
  23959. weight: math.unit(425, "lb"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/hind/front.svg",
  23963. extra: 2091 / 1860,
  23964. bottom: 129 / 2220
  23965. }
  23966. },
  23967. back: {
  23968. height: math.unit(7, "feet"),
  23969. weight: math.unit(425, "lb"),
  23970. name: "Back",
  23971. image: {
  23972. source: "./media/characters/hind/back.svg",
  23973. extra: 2091 / 1860,
  23974. bottom: 24.6 / 2309
  23975. }
  23976. },
  23977. tail: {
  23978. height: math.unit(2.8, "feet"),
  23979. name: "Tail",
  23980. image: {
  23981. source: "./media/characters/hind/tail.svg"
  23982. }
  23983. },
  23984. head: {
  23985. height: math.unit(2.55, "feet"),
  23986. name: "Head",
  23987. image: {
  23988. source: "./media/characters/hind/head.svg"
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "XS",
  23995. height: math.unit(0.7, "feet")
  23996. },
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(7, "feet"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "XL",
  24004. height: math.unit(70, "feet")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(6, "feet"),
  24013. weight: math.unit(150, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/dylan-skaven/front.svg",
  24017. extra: 2318 / 2063,
  24018. bottom: 93.4 / 2410
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Nano",
  24025. height: math.unit(1, "mm")
  24026. },
  24027. {
  24028. name: "Micro",
  24029. height: math.unit(1, "cm")
  24030. },
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(2.1, "meters"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(7 + 5 / 12, "feet"),
  24043. weight: math.unit(357, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/solex-draconov/front.svg",
  24047. extra: 1993 / 1865,
  24048. bottom: 117 / 2111
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Natural Height",
  24055. height: math.unit(7 + 5 / 12, "feet"),
  24056. default: true
  24057. },
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(350, "feet")
  24061. },
  24062. {
  24063. name: "Macro+",
  24064. height: math.unit(1000, "feet")
  24065. },
  24066. {
  24067. name: "Megamacro",
  24068. height: math.unit(20, "km")
  24069. },
  24070. {
  24071. name: "Megamacro+",
  24072. height: math.unit(1000, "km")
  24073. },
  24074. {
  24075. name: "Gigamacro",
  24076. height: math.unit(2.5, "Gm")
  24077. },
  24078. {
  24079. name: "Teramacro",
  24080. height: math.unit(15, "Tm")
  24081. },
  24082. {
  24083. name: "Galactic",
  24084. height: math.unit(30, "Zm")
  24085. },
  24086. {
  24087. name: "Universal",
  24088. height: math.unit(21000, "Ym")
  24089. },
  24090. {
  24091. name: "Omniversal",
  24092. height: math.unit(9.861e50, "Ym")
  24093. },
  24094. {
  24095. name: "Existential",
  24096. height: math.unit(1e300, "meters")
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24102. {
  24103. side: {
  24104. height: math.unit(25, "feet"),
  24105. weight: math.unit(90000, "lb"),
  24106. name: "Side",
  24107. image: {
  24108. source: "./media/characters/mandarax/side.svg",
  24109. extra: 614 / 332,
  24110. bottom: 55 / 630
  24111. }
  24112. },
  24113. head: {
  24114. height: math.unit(11.4, "feet"),
  24115. name: "Head",
  24116. image: {
  24117. source: "./media/characters/mandarax/head.svg"
  24118. }
  24119. },
  24120. belly: {
  24121. height: math.unit(33, "feet"),
  24122. name: "Belly",
  24123. capacity: math.unit(500, "people"),
  24124. image: {
  24125. source: "./media/characters/mandarax/belly.svg"
  24126. }
  24127. },
  24128. dick: {
  24129. height: math.unit(8.46, "feet"),
  24130. name: "Dick",
  24131. image: {
  24132. source: "./media/characters/mandarax/dick.svg"
  24133. }
  24134. },
  24135. top: {
  24136. height: math.unit(28, "meters"),
  24137. name: "Top",
  24138. image: {
  24139. source: "./media/characters/mandarax/top.svg"
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(25, "feet"),
  24147. default: true
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(5, "feet"),
  24156. weight: math.unit(90, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/pixil/front.svg",
  24160. extra: 2000 / 1618,
  24161. bottom: 12.3 / 2011
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(5, "feet"),
  24169. default: true
  24170. },
  24171. {
  24172. name: "Megamacro",
  24173. height: math.unit(10, "miles"),
  24174. },
  24175. ]
  24176. ))
  24177. characterMakers.push(() => makeCharacter(
  24178. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24179. {
  24180. front: {
  24181. height: math.unit(7 + 2 / 12, "feet"),
  24182. weight: math.unit(200, "lb"),
  24183. name: "Front",
  24184. image: {
  24185. source: "./media/characters/angel/front.svg",
  24186. extra: 1830 / 1737,
  24187. bottom: 22.6 / 1854,
  24188. }
  24189. },
  24190. },
  24191. [
  24192. {
  24193. name: "Normal",
  24194. height: math.unit(7 + 2 / 12, "feet"),
  24195. default: true
  24196. },
  24197. {
  24198. name: "Macro",
  24199. height: math.unit(1000, "feet")
  24200. },
  24201. {
  24202. name: "Megamacro",
  24203. height: math.unit(2, "miles")
  24204. },
  24205. {
  24206. name: "Gigamacro",
  24207. height: math.unit(20, "earths")
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(5, "feet"),
  24216. weight: math.unit(180, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/mekana/front.svg",
  24220. extra: 1671 / 1605,
  24221. bottom: 3.5 / 1691
  24222. }
  24223. },
  24224. side: {
  24225. height: math.unit(5, "feet"),
  24226. weight: math.unit(180, "lb"),
  24227. name: "Side",
  24228. image: {
  24229. source: "./media/characters/mekana/side.svg",
  24230. extra: 1671 / 1605,
  24231. bottom: 3.5 / 1691
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(5, "feet"),
  24236. weight: math.unit(180, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/mekana/back.svg",
  24240. extra: 1671 / 1605,
  24241. bottom: 3.5 / 1691
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(5, "feet"),
  24249. default: true
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24255. {
  24256. front: {
  24257. height: math.unit(4 + 6 / 12, "feet"),
  24258. weight: math.unit(80, "lb"),
  24259. name: "Front",
  24260. image: {
  24261. source: "./media/characters/pixie/front.svg",
  24262. extra: 1924 / 1825,
  24263. bottom: 22.4 / 1946
  24264. }
  24265. },
  24266. },
  24267. [
  24268. {
  24269. name: "Normal",
  24270. height: math.unit(4 + 6 / 12, "feet"),
  24271. default: true
  24272. },
  24273. {
  24274. name: "Macro",
  24275. height: math.unit(40, "feet")
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24281. {
  24282. front: {
  24283. height: math.unit(2.1, "meters"),
  24284. weight: math.unit(200, "lb"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/the-lascivious/front.svg",
  24288. extra: 1 / 0.893,
  24289. bottom: 3.5 / 573.7
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Human Scale",
  24296. height: math.unit(2.1, "meters")
  24297. },
  24298. {
  24299. name: "Wolxi Scale",
  24300. height: math.unit(46.2, "m"),
  24301. default: true
  24302. },
  24303. {
  24304. name: "Boinker of Buildings",
  24305. height: math.unit(10, "km")
  24306. },
  24307. {
  24308. name: "Shagger of Skyscrapers",
  24309. height: math.unit(40, "km")
  24310. },
  24311. {
  24312. name: "Banger of Boroughs",
  24313. height: math.unit(4000, "km")
  24314. },
  24315. {
  24316. name: "Screwer of States",
  24317. height: math.unit(100000, "km")
  24318. },
  24319. {
  24320. name: "Pounder of Planets",
  24321. height: math.unit(2000000, "km")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24327. {
  24328. front: {
  24329. height: math.unit(6, "feet"),
  24330. weight: math.unit(150, "lb"),
  24331. name: "Front",
  24332. image: {
  24333. source: "./media/characters/aj/front.svg",
  24334. extra: 2039 / 1562,
  24335. bottom: 40 / 2079
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(11 + 6 / 12, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "Megamacro",
  24347. height: math.unit(60, "megameters")
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24353. {
  24354. side: {
  24355. height: math.unit(31 + 8/12, "feet"),
  24356. weight: math.unit(75000, "kg"),
  24357. name: "Side",
  24358. image: {
  24359. source: "./media/characters/koros/side.svg",
  24360. extra: 1442/1297,
  24361. bottom: 122.7/1562
  24362. }
  24363. },
  24364. dicksKingsCrown: {
  24365. height: math.unit(6, "feet"),
  24366. name: "Dicks (King's Crown)",
  24367. image: {
  24368. source: "./media/characters/koros/dicks-kings-crown.svg"
  24369. }
  24370. },
  24371. dicksTailSet: {
  24372. height: math.unit(3, "feet"),
  24373. name: "Dicks (Tail Set)",
  24374. image: {
  24375. source: "./media/characters/koros/dicks-tail-set.svg"
  24376. }
  24377. },
  24378. dickCumming: {
  24379. height: math.unit(7.98, "feet"),
  24380. name: "Dick (Cumming)",
  24381. image: {
  24382. source: "./media/characters/koros/dick-cumming.svg"
  24383. }
  24384. },
  24385. dicksBack: {
  24386. height: math.unit(5.9, "feet"),
  24387. name: "Dicks (Back)",
  24388. image: {
  24389. source: "./media/characters/koros/dicks-back.svg"
  24390. }
  24391. },
  24392. dicksFront: {
  24393. height: math.unit(3.72, "feet"),
  24394. name: "Dicks (Front)",
  24395. image: {
  24396. source: "./media/characters/koros/dicks-front.svg"
  24397. }
  24398. },
  24399. dicksPeeking: {
  24400. height: math.unit(3.0, "feet"),
  24401. name: "Dicks (Peeking)",
  24402. image: {
  24403. source: "./media/characters/koros/dicks-peeking.svg"
  24404. }
  24405. },
  24406. eye: {
  24407. height: math.unit(1.7, "feet"),
  24408. name: "Eye",
  24409. image: {
  24410. source: "./media/characters/koros/eye.svg"
  24411. }
  24412. },
  24413. headFront: {
  24414. height: math.unit(11.69, "feet"),
  24415. name: "Head (Front)",
  24416. image: {
  24417. source: "./media/characters/koros/head-front.svg"
  24418. }
  24419. },
  24420. headSide: {
  24421. height: math.unit(14, "feet"),
  24422. name: "Head (Side)",
  24423. image: {
  24424. source: "./media/characters/koros/head-side.svg"
  24425. }
  24426. },
  24427. leg: {
  24428. height: math.unit(17, "feet"),
  24429. name: "Leg",
  24430. image: {
  24431. source: "./media/characters/koros/leg.svg"
  24432. }
  24433. },
  24434. mawSide: {
  24435. height: math.unit(12.8, "feet"),
  24436. name: "Maw (Side)",
  24437. image: {
  24438. source: "./media/characters/koros/maw-side.svg"
  24439. }
  24440. },
  24441. mawSpitting: {
  24442. height: math.unit(17, "feet"),
  24443. name: "Maw (Spitting)",
  24444. image: {
  24445. source: "./media/characters/koros/maw-spitting.svg"
  24446. }
  24447. },
  24448. slit: {
  24449. height: math.unit(2.8, "feet"),
  24450. name: "Slit",
  24451. image: {
  24452. source: "./media/characters/koros/slit.svg"
  24453. }
  24454. },
  24455. stomach: {
  24456. height: math.unit(6.8, "feet"),
  24457. capacity: math.unit(20, "people"),
  24458. name: "Stomach",
  24459. image: {
  24460. source: "./media/characters/koros/stomach.svg"
  24461. }
  24462. },
  24463. wingspanBottom: {
  24464. height: math.unit(114, "feet"),
  24465. name: "Wingspan (Bottom)",
  24466. image: {
  24467. source: "./media/characters/koros/wingspan-bottom.svg"
  24468. }
  24469. },
  24470. wingspanTop: {
  24471. height: math.unit(104, "feet"),
  24472. name: "Wingspan (Top)",
  24473. image: {
  24474. source: "./media/characters/koros/wingspan-top.svg"
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(31 + 8/12, "feet"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(18 + 5/12, "feet"),
  24491. weight: math.unit(3750, "kg"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/vexx/front.svg",
  24495. extra: 426/396,
  24496. bottom: 31.5/458
  24497. }
  24498. },
  24499. maw: {
  24500. height: math.unit(6, "feet"),
  24501. name: "Maw",
  24502. image: {
  24503. source: "./media/characters/vexx/maw.svg"
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(18 + 5/12, "feet"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(17 + 6/12, "feet"),
  24520. weight: math.unit(150, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/baadra/front.svg",
  24524. extra: 3137/2890,
  24525. bottom: 168.4/3305
  24526. }
  24527. },
  24528. back: {
  24529. height: math.unit(17 + 6/12, "feet"),
  24530. weight: math.unit(150, "lb"),
  24531. name: "Back",
  24532. image: {
  24533. source: "./media/characters/baadra/back.svg",
  24534. extra: 3142/2890,
  24535. bottom: 220/3371
  24536. }
  24537. },
  24538. head: {
  24539. height: math.unit(5.45, "feet"),
  24540. name: "Head",
  24541. image: {
  24542. source: "./media/characters/baadra/head.svg"
  24543. }
  24544. },
  24545. headAngry: {
  24546. height: math.unit(4.95, "feet"),
  24547. name: "Head (Angry)",
  24548. image: {
  24549. source: "./media/characters/baadra/head-angry.svg"
  24550. }
  24551. },
  24552. headOpen: {
  24553. height: math.unit(6, "feet"),
  24554. name: "Head (Open)",
  24555. image: {
  24556. source: "./media/characters/baadra/head-open.svg"
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(17 + 6/12, "feet"),
  24564. default: true
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24570. {
  24571. front: {
  24572. height: math.unit(7 + 3/12, "feet"),
  24573. weight: math.unit(180, "lb"),
  24574. name: "Front",
  24575. image: {
  24576. source: "./media/characters/juri/front.svg",
  24577. extra: 1401/1237,
  24578. bottom: 18.5/1418
  24579. }
  24580. },
  24581. side: {
  24582. height: math.unit(7 + 3/12, "feet"),
  24583. weight: math.unit(180, "lb"),
  24584. name: "Side",
  24585. image: {
  24586. source: "./media/characters/juri/side.svg",
  24587. extra: 1424/1242,
  24588. bottom: 18.5/1447
  24589. }
  24590. },
  24591. sitting: {
  24592. height: math.unit(6, "feet"),
  24593. weight: math.unit(180, "lb"),
  24594. name: "Sitting",
  24595. image: {
  24596. source: "./media/characters/juri/sitting.svg",
  24597. extra: 1270/1143,
  24598. bottom: 100/1343
  24599. }
  24600. },
  24601. back: {
  24602. height: math.unit(7 + 3/12, "feet"),
  24603. weight: math.unit(180, "lb"),
  24604. name: "Back",
  24605. image: {
  24606. source: "./media/characters/juri/back.svg",
  24607. extra: 1377/1240,
  24608. bottom: 23.7/1405
  24609. }
  24610. },
  24611. maw: {
  24612. height: math.unit(2.8, "feet"),
  24613. name: "Maw",
  24614. image: {
  24615. source: "./media/characters/juri/maw.svg"
  24616. }
  24617. },
  24618. stomach: {
  24619. height: math.unit(0.89, "feet"),
  24620. capacity: math.unit(4, "liters"),
  24621. name: "Stomach",
  24622. image: {
  24623. source: "./media/characters/juri/stomach.svg"
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(7 + 3/12, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24637. {
  24638. fox: {
  24639. height: math.unit(5 + 6/12, "feet"),
  24640. weight: math.unit(140, "lb"),
  24641. name: "Fox",
  24642. image: {
  24643. source: "./media/characters/maxene-sita/fox.svg",
  24644. extra: 146/138,
  24645. bottom: 2.1/148.19
  24646. }
  24647. },
  24648. kitsune: {
  24649. height: math.unit(10, "feet"),
  24650. weight: math.unit(800, "lb"),
  24651. name: "Kitsune",
  24652. image: {
  24653. source: "./media/characters/maxene-sita/kitsune.svg",
  24654. extra: 185/176,
  24655. bottom: 4.7/189.9
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(5 + 6/12, "feet"),
  24663. default: true
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24669. {
  24670. front: {
  24671. height: math.unit(3 + 4/12, "feet"),
  24672. weight: math.unit(70, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/maia/front.svg",
  24676. extra: 227/219.5,
  24677. bottom: 40 / 267
  24678. }
  24679. },
  24680. back: {
  24681. height: math.unit(3 + 4/12, "feet"),
  24682. weight: math.unit(70, "lb"),
  24683. name: "Back",
  24684. image: {
  24685. source: "./media/characters/maia/back.svg",
  24686. extra: 237/225
  24687. }
  24688. },
  24689. },
  24690. [
  24691. {
  24692. name: "Normal",
  24693. height: math.unit(3 + 4/12, "feet"),
  24694. default: true
  24695. },
  24696. ]
  24697. ))
  24698. characterMakers.push(() => makeCharacter(
  24699. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24700. {
  24701. front: {
  24702. height: math.unit(5 + 10/12, "feet"),
  24703. weight: math.unit(197, "lb"),
  24704. name: "Front",
  24705. image: {
  24706. source: "./media/characters/jabaro/front.svg",
  24707. extra: 225/216,
  24708. bottom: 5.06/230
  24709. }
  24710. },
  24711. back: {
  24712. height: math.unit(5 + 10/12, "feet"),
  24713. weight: math.unit(197, "lb"),
  24714. name: "Back",
  24715. image: {
  24716. source: "./media/characters/jabaro/back.svg",
  24717. extra: 225/219,
  24718. bottom: 1.9/227
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(5 + 10/12, "feet"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(5 + 8/12, "feet"),
  24735. weight: math.unit(139, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/risa/front.svg",
  24739. extra: 270/260,
  24740. bottom: 11.2/282
  24741. }
  24742. },
  24743. back: {
  24744. height: math.unit(5 + 8/12, "feet"),
  24745. weight: math.unit(139, "lb"),
  24746. name: "Back",
  24747. image: {
  24748. source: "./media/characters/risa/back.svg",
  24749. extra: 264/255,
  24750. bottom: 4/268
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(5 + 8/12, "feet"),
  24758. default: true
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(2 + 11/12, "feet"),
  24767. weight: math.unit(30, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/weatley/front.svg",
  24771. bottom: 10.7/414,
  24772. extra: 403.5/362
  24773. }
  24774. },
  24775. back: {
  24776. height: math.unit(2 + 11/12, "feet"),
  24777. weight: math.unit(30, "lb"),
  24778. name: "Back",
  24779. image: {
  24780. source: "./media/characters/weatley/back.svg",
  24781. bottom: 10.7/414,
  24782. extra: 403.5/362
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(2 + 11/12, "feet"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24796. {
  24797. front: {
  24798. height: math.unit(5 + 2/12, "feet"),
  24799. weight: math.unit(50, "kg"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/mercury-crescent/front.svg",
  24803. extra: 1088/1033,
  24804. bottom: 18.9/1109
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(5 + 2/12, "feet"),
  24812. default: true
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(2, "feet"),
  24821. weight: math.unit(15, "kg"),
  24822. name: "Front",
  24823. image: {
  24824. source: "./media/characters/diamond-jones/front.svg",
  24825. bottom: 16/568
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Normal",
  24832. height: math.unit(2, "feet"),
  24833. default: true
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(3, "feet"),
  24842. weight: math.unit(30, "kg"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/sweet-bit/front.svg",
  24846. extra: 675/567,
  24847. bottom: 27.7/703
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(3, "feet"),
  24855. default: true
  24856. },
  24857. ]
  24858. ))
  24859. characterMakers.push(() => makeCharacter(
  24860. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24861. {
  24862. side: {
  24863. height: math.unit(9.178, "feet"),
  24864. weight: math.unit(500, "lb"),
  24865. name: "Side",
  24866. image: {
  24867. source: "./media/characters/umbrazen/side.svg",
  24868. extra: 1730/1473,
  24869. bottom: 34.6/1765
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(9.178, "feet"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24883. {
  24884. front: {
  24885. height: math.unit(10, "feet"),
  24886. weight: math.unit(750, "lb"),
  24887. name: "Front",
  24888. image: {
  24889. source: "./media/characters/arlist/front.svg",
  24890. extra: 961/778,
  24891. bottom: 6.2/986
  24892. }
  24893. },
  24894. },
  24895. [
  24896. {
  24897. name: "Normal",
  24898. height: math.unit(10, "feet"),
  24899. default: true
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(5 + 1/12, "feet"),
  24908. weight: math.unit(110, "lb"),
  24909. name: "Front",
  24910. image: {
  24911. source: "./media/characters/aradel/front.svg",
  24912. extra: 324/303,
  24913. bottom: 3.6/329.4
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(5 + 1/12, "feet"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24927. {
  24928. front: {
  24929. height: math.unit(3 + 8/12, "feet"),
  24930. weight: math.unit(50, "lb"),
  24931. name: "Front",
  24932. image: {
  24933. source: "./media/characters/serryn/front.svg",
  24934. extra: 1792/1656,
  24935. bottom: 43.5/1840
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(3 + 8/12, "feet"),
  24943. default: true
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Xavier Thyme" },
  24949. {
  24950. front: {
  24951. height: math.unit(7 + 10/12, "feet"),
  24952. weight: math.unit(255, "lb"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/xavier-thyme/front.svg",
  24956. extra: 3733/3642,
  24957. bottom: 131/3869
  24958. }
  24959. },
  24960. frontRaven: {
  24961. height: math.unit(7 + 10/12, "feet"),
  24962. weight: math.unit(255, "lb"),
  24963. name: "Front (Raven)",
  24964. image: {
  24965. source: "./media/characters/xavier-thyme/front-raven.svg",
  24966. extra: 4385/3642,
  24967. bottom: 131/4517
  24968. }
  24969. },
  24970. },
  24971. [
  24972. {
  24973. name: "Normal",
  24974. height: math.unit(7 + 10/12, "feet"),
  24975. default: true
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24981. {
  24982. front: {
  24983. height: math.unit(1.6, "m"),
  24984. weight: math.unit(50, "kg"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/kiki/front.svg",
  24988. extra: 4682/3610,
  24989. bottom: 115/4777
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(1.6, "meters"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(50, "m"),
  25006. weight: math.unit(500, "tonnes"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/ryoko/front.svg",
  25010. extra: 4632/3926,
  25011. bottom: 193/4823
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Normal",
  25018. height: math.unit(50, "meters"),
  25019. default: true
  25020. },
  25021. ]
  25022. ))
  25023. characterMakers.push(() => makeCharacter(
  25024. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25025. {
  25026. front: {
  25027. height: math.unit(30, "m"),
  25028. weight: math.unit(22, "tonnes"),
  25029. name: "Front",
  25030. image: {
  25031. source: "./media/characters/elio/front.svg",
  25032. extra: 4582/3720,
  25033. bottom: 236/4828
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(30, "meters"),
  25041. default: true
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(6 + 3/12, "feet"),
  25050. weight: math.unit(120, "lb"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/azura/front.svg",
  25054. extra: 1149/1135,
  25055. bottom: 45/1194
  25056. }
  25057. },
  25058. frontClothed: {
  25059. height: math.unit(6 + 3/12, "feet"),
  25060. weight: math.unit(120, "lb"),
  25061. name: "Front (Clothed)",
  25062. image: {
  25063. source: "./media/characters/azura/front-clothed.svg",
  25064. extra: 1149/1135,
  25065. bottom: 45/1194
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Normal",
  25072. height: math.unit(6 + 3/12, "feet"),
  25073. default: true
  25074. },
  25075. {
  25076. name: "Macro",
  25077. height: math.unit(20 + 6/12, "feet")
  25078. },
  25079. {
  25080. name: "Megamacro",
  25081. height: math.unit(12, "miles")
  25082. },
  25083. {
  25084. name: "Gigamacro",
  25085. height: math.unit(10000, "miles")
  25086. },
  25087. {
  25088. name: "Teramacro",
  25089. height: math.unit(900000, "miles")
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(12, "feet"),
  25098. weight: math.unit(1, "ton"),
  25099. capacity: math.unit(660000, "gallons"),
  25100. name: "Front",
  25101. image: {
  25102. source: "./media/characters/zeus/front.svg",
  25103. extra: 5005/4717,
  25104. bottom: 363/5388
  25105. }
  25106. },
  25107. },
  25108. [
  25109. {
  25110. name: "Normal",
  25111. height: math.unit(12, "feet")
  25112. },
  25113. {
  25114. name: "Preferred Size",
  25115. height: math.unit(0.5, "miles"),
  25116. default: true
  25117. },
  25118. {
  25119. name: "Giga Horse",
  25120. height: math.unit(300, "miles")
  25121. },
  25122. {
  25123. name: "Riding Planets",
  25124. height: math.unit(30, "megameters")
  25125. },
  25126. {
  25127. name: "Cosmic Giant",
  25128. height: math.unit(3, "zettameters")
  25129. },
  25130. {
  25131. name: "Breeding God",
  25132. height: math.unit(9.92e22, "yottameters")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25138. {
  25139. side: {
  25140. height: math.unit(9, "feet"),
  25141. weight: math.unit(1500, "kg"),
  25142. name: "Side",
  25143. image: {
  25144. source: "./media/characters/fang/side.svg",
  25145. extra: 924/866,
  25146. bottom: 47.5/972.3
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(9, "feet"),
  25154. default: true
  25155. },
  25156. {
  25157. name: "Macro",
  25158. height: math.unit(75 + 6/12, "feet")
  25159. },
  25160. {
  25161. name: "Teramacro",
  25162. height: math.unit(50000, "miles")
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(10, "feet"),
  25171. weight: math.unit(2, "tons"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/rekhit/front.svg",
  25175. extra: 2796/2590,
  25176. bottom: 225/3022
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(10, "feet"),
  25184. default: true
  25185. },
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(500, "feet")
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Dahlia Verrick" },
  25194. {
  25195. front: {
  25196. height: math.unit(7 + 6.451/12, "feet"),
  25197. weight: math.unit(310, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/dahlia-verrick/front.svg",
  25201. extra: 1488/1365,
  25202. bottom: 6.2/1495
  25203. }
  25204. },
  25205. back: {
  25206. height: math.unit(7 + 6.451/12, "feet"),
  25207. weight: math.unit(310, "lb"),
  25208. name: "Back",
  25209. image: {
  25210. source: "./media/characters/dahlia-verrick/back.svg",
  25211. extra: 1472/1351,
  25212. bottom: 5.28/1477
  25213. }
  25214. },
  25215. frontBusiness: {
  25216. height: math.unit(7 + 6.451/12, "feet"),
  25217. weight: math.unit(200, "lb"),
  25218. name: "Front (Business)",
  25219. image: {
  25220. source: "./media/characters/dahlia-verrick/front-business.svg",
  25221. extra: 1478/1381,
  25222. bottom: 5.5/1484
  25223. }
  25224. },
  25225. frontCasual: {
  25226. height: math.unit(7 + 6.451/12, "feet"),
  25227. weight: math.unit(200, "lb"),
  25228. name: "Front (Casual)",
  25229. image: {
  25230. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25231. extra: 1478/1381,
  25232. bottom: 5.5/1484
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Travel-Sized",
  25239. height: math.unit(7.45, "inches")
  25240. },
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(7 + 6.451/12, "feet"),
  25244. default: true
  25245. },
  25246. {
  25247. name: "Hitting the Town",
  25248. height: math.unit(37 + 8/12, "feet")
  25249. },
  25250. {
  25251. name: "Stomp in the Suburbs",
  25252. height: math.unit(964 + 9.728/12, "feet")
  25253. },
  25254. {
  25255. name: "Sit on the City",
  25256. height: math.unit(61747 + 10.592/12, "feet")
  25257. },
  25258. {
  25259. name: "Glomp the Globe",
  25260. height: math.unit(252919327 + 4.832/12, "feet")
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(6 + 4/12, "feet"),
  25269. weight: math.unit(320, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/balina-mahigan/front.svg",
  25273. extra: 447/428,
  25274. bottom: 18/466
  25275. }
  25276. },
  25277. back: {
  25278. height: math.unit(6 + 4/12, "feet"),
  25279. weight: math.unit(320, "lb"),
  25280. name: "Back",
  25281. image: {
  25282. source: "./media/characters/balina-mahigan/back.svg",
  25283. extra: 445/428,
  25284. bottom: 4.07/448
  25285. }
  25286. },
  25287. arm: {
  25288. height: math.unit(1.88, "feet"),
  25289. name: "Arm",
  25290. image: {
  25291. source: "./media/characters/balina-mahigan/arm.svg"
  25292. }
  25293. },
  25294. backPort: {
  25295. height: math.unit(0.685, "feet"),
  25296. name: "Back Port",
  25297. image: {
  25298. source: "./media/characters/balina-mahigan/back-port.svg"
  25299. }
  25300. },
  25301. hoofpaw: {
  25302. height: math.unit(1.41, "feet"),
  25303. name: "Hoofpaw",
  25304. image: {
  25305. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25306. }
  25307. },
  25308. leftHandBack: {
  25309. height: math.unit(0.938, "feet"),
  25310. name: "Left Hand (Back)",
  25311. image: {
  25312. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25313. }
  25314. },
  25315. leftHandFront: {
  25316. height: math.unit(0.938, "feet"),
  25317. name: "Left Hand (Front)",
  25318. image: {
  25319. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25320. }
  25321. },
  25322. rightHandBack: {
  25323. height: math.unit(0.95, "feet"),
  25324. name: "Right Hand (Back)",
  25325. image: {
  25326. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25327. }
  25328. },
  25329. rightHandFront: {
  25330. height: math.unit(0.95, "feet"),
  25331. name: "Right Hand (Front)",
  25332. image: {
  25333. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(6 + 4/12, "feet"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25347. {
  25348. front: {
  25349. height: math.unit(6, "feet"),
  25350. weight: math.unit(320, "lb"),
  25351. name: "Front",
  25352. image: {
  25353. source: "./media/characters/balina-mejeri/front.svg",
  25354. extra: 517/488,
  25355. bottom: 44.2/561
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(6 + 4/12, "feet")
  25363. },
  25364. {
  25365. name: "Business",
  25366. height: math.unit(155, "feet"),
  25367. default: true
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25373. {
  25374. kneeling: {
  25375. height: math.unit(6 + 4/12, "feet"),
  25376. weight: math.unit(300*20, "lb"),
  25377. name: "Kneeling",
  25378. image: {
  25379. source: "./media/characters/balbarian/kneeling.svg",
  25380. extra: 922/862,
  25381. bottom: 42.4/965
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Normal",
  25388. height: math.unit(6 + 4/12, "feet")
  25389. },
  25390. {
  25391. name: "Treasured",
  25392. height: math.unit(18 + 9/12, "feet"),
  25393. default: true
  25394. },
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(900, "feet")
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(6 + 4/12, "feet"),
  25406. weight: math.unit(325, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/balina-amarini/front.svg",
  25410. extra: 415/403,
  25411. bottom: 19/433.4
  25412. }
  25413. },
  25414. back: {
  25415. height: math.unit(6 + 4/12, "feet"),
  25416. weight: math.unit(325, "lb"),
  25417. name: "Back",
  25418. image: {
  25419. source: "./media/characters/balina-amarini/back.svg",
  25420. extra: 415/403,
  25421. bottom: 13.5/432
  25422. }
  25423. },
  25424. overdrive: {
  25425. height: math.unit(6 + 4/12, "feet"),
  25426. weight: math.unit(400, "lb"),
  25427. name: "Overdrive",
  25428. image: {
  25429. source: "./media/characters/balina-amarini/overdrive.svg",
  25430. extra: 269/259,
  25431. bottom: 12/282
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Boom",
  25438. height: math.unit(9 + 10/12, "feet"),
  25439. default: true
  25440. },
  25441. {
  25442. name: "Macro",
  25443. height: math.unit(280, "feet")
  25444. },
  25445. ]
  25446. ))
  25447. characterMakers.push(() => makeCharacter(
  25448. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25449. {
  25450. goddess: {
  25451. height: math.unit(600, "feet"),
  25452. weight: math.unit(2000000, "tons"),
  25453. name: "Goddess",
  25454. image: {
  25455. source: "./media/characters/lady-kubwa/goddess.svg",
  25456. extra: 1240.5/1223,
  25457. bottom: 22/1263
  25458. }
  25459. },
  25460. goddesser: {
  25461. height: math.unit(900, "feet"),
  25462. weight: math.unit(20000000, "lb"),
  25463. name: "Goddess-er",
  25464. image: {
  25465. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25466. extra: 899/888,
  25467. bottom: 12.6/912
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Macro",
  25474. height: math.unit(600, "feet"),
  25475. default: true
  25476. },
  25477. {
  25478. name: "Megamacro",
  25479. height: math.unit(250, "miles")
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(7 + 7/12, "feet"),
  25488. weight: math.unit(250, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/tala-grovehorn/front.svg",
  25492. extra: 2636/2525,
  25493. bottom: 147/2781
  25494. }
  25495. },
  25496. back: {
  25497. height: math.unit(7 + 7/12, "feet"),
  25498. weight: math.unit(250, "lb"),
  25499. name: "Back",
  25500. image: {
  25501. source: "./media/characters/tala-grovehorn/back.svg",
  25502. extra: 2635/2539,
  25503. bottom: 100/2732.8
  25504. }
  25505. },
  25506. mouth: {
  25507. height: math.unit(1.15, "feet"),
  25508. name: "Mouth",
  25509. image: {
  25510. source: "./media/characters/tala-grovehorn/mouth.svg"
  25511. }
  25512. },
  25513. dick: {
  25514. height: math.unit(2.36, "feet"),
  25515. name: "Dick",
  25516. image: {
  25517. source: "./media/characters/tala-grovehorn/dick.svg"
  25518. }
  25519. },
  25520. slit: {
  25521. height: math.unit(0.61, "feet"),
  25522. name: "Slit",
  25523. image: {
  25524. source: "./media/characters/tala-grovehorn/slit.svg"
  25525. }
  25526. },
  25527. },
  25528. [
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(7 + 7/12, "feet"),
  25536. weight: math.unit(225, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/epona/front.svg",
  25540. extra: 2445/2290,
  25541. bottom: 251/2696
  25542. }
  25543. },
  25544. back: {
  25545. height: math.unit(7 + 7/12, "feet"),
  25546. weight: math.unit(225, "lb"),
  25547. name: "Back",
  25548. image: {
  25549. source: "./media/characters/epona/back.svg",
  25550. extra: 2546/2408,
  25551. bottom: 44/2589
  25552. }
  25553. },
  25554. genitals: {
  25555. height: math.unit(1.5, "feet"),
  25556. name: "Genitals",
  25557. image: {
  25558. source: "./media/characters/epona/genitals.svg"
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(7 + 7/12, "feet")
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(7, "feet"),
  25574. weight: math.unit(518, "lb"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/avia-bloodbourn/front.svg",
  25578. extra: 1466/1350,
  25579. bottom: 65/1527
  25580. }
  25581. },
  25582. },
  25583. [
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(9.35, "feet"),
  25591. weight: math.unit(600, "lb"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/amera/front.svg",
  25595. extra: 891/818,
  25596. bottom: 30/922.7
  25597. }
  25598. },
  25599. back: {
  25600. height: math.unit(9.35, "feet"),
  25601. weight: math.unit(600, "lb"),
  25602. name: "Back",
  25603. image: {
  25604. source: "./media/characters/amera/back.svg",
  25605. extra: 876/824,
  25606. bottom: 6.8/884
  25607. }
  25608. },
  25609. dick: {
  25610. height: math.unit(2.14, "feet"),
  25611. name: "Dick",
  25612. image: {
  25613. source: "./media/characters/amera/dick.svg"
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(9.35, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25627. {
  25628. kneeling: {
  25629. height: math.unit(3 + 4/12, "feet"),
  25630. weight: math.unit(90, "lb"),
  25631. name: "Kneeling",
  25632. image: {
  25633. source: "./media/characters/rosewen/kneeling.svg",
  25634. extra: 1835/1571,
  25635. bottom: 27.7/1862
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(3 + 4/12, "feet"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(5 + 10/12, "feet"),
  25652. weight: math.unit(200, "lb"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/sabah/front.svg",
  25656. extra: 849/763,
  25657. bottom: 33.9/881
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Normal",
  25664. height: math.unit(5 + 10/12, "feet"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25671. {
  25672. front: {
  25673. height: math.unit(3 + 5/12, "feet"),
  25674. weight: math.unit(40, "kg"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/purple-flame/front.svg",
  25678. extra: 1577/1412,
  25679. bottom: 97/1694
  25680. }
  25681. },
  25682. frontDressed: {
  25683. height: math.unit(3 + 5/12, "feet"),
  25684. weight: math.unit(40, "kg"),
  25685. name: "Front (Dressed)",
  25686. image: {
  25687. source: "./media/characters/purple-flame/front-dressed.svg",
  25688. extra: 1577/1412,
  25689. bottom: 97/1694
  25690. }
  25691. },
  25692. headphones: {
  25693. height: math.unit(0.85, "feet"),
  25694. name: "Headphones",
  25695. image: {
  25696. source: "./media/characters/purple-flame/headphones.svg"
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Really Small",
  25703. height: math.unit(5, "cm")
  25704. },
  25705. {
  25706. name: "Micro",
  25707. height: math.unit(1 + 5/12, "feet")
  25708. },
  25709. {
  25710. name: "Normal",
  25711. height: math.unit(3 + 5/12, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Minimacro",
  25716. height: math.unit(125, "feet")
  25717. },
  25718. {
  25719. name: "Macro",
  25720. height: math.unit(0.5, "miles")
  25721. },
  25722. {
  25723. name: "Megamacro",
  25724. height: math.unit(50, "miles")
  25725. },
  25726. {
  25727. name: "Gigantic",
  25728. height: math.unit(750, "miles")
  25729. },
  25730. {
  25731. name: "Planetary",
  25732. height: math.unit(15000, "miles")
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(14, "feet"),
  25741. weight: math.unit(959, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/arsenal/front.svg",
  25745. extra: 2357/2157,
  25746. bottom: 93/2458
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(14, "feet"),
  25754. default: true
  25755. },
  25756. ]
  25757. ))
  25758. characterMakers.push(() => makeCharacter(
  25759. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25760. {
  25761. front: {
  25762. height: math.unit(6, "feet"),
  25763. weight: math.unit(150, "lb"),
  25764. name: "Front",
  25765. image: {
  25766. source: "./media/characters/adira/front.svg",
  25767. extra: 1078/1029,
  25768. bottom: 87/1166
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "Micro",
  25775. height: math.unit(4, "inches"),
  25776. default: true
  25777. },
  25778. {
  25779. name: "Macro",
  25780. height: math.unit(50, "feet")
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(16, "feet"),
  25789. weight: math.unit(1000, "lb"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/grim/front.svg",
  25793. extra: 622/614,
  25794. bottom: 18.1/642
  25795. }
  25796. },
  25797. back: {
  25798. height: math.unit(16, "feet"),
  25799. weight: math.unit(1000, "lb"),
  25800. name: "Back",
  25801. image: {
  25802. source: "./media/characters/grim/back.svg",
  25803. extra: 610.6/602,
  25804. bottom: 40.8/652
  25805. }
  25806. },
  25807. hunched: {
  25808. height: math.unit(9.75, "feet"),
  25809. weight: math.unit(1000, "lb"),
  25810. name: "Hunched",
  25811. image: {
  25812. source: "./media/characters/grim/hunched.svg",
  25813. extra: 304/297,
  25814. bottom: 35.4/394
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(16, "feet"),
  25822. default: true
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(2.3, "meters"),
  25831. weight: math.unit(300, "lb"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/sinja/front-sfw.svg",
  25835. extra: 1393/1294,
  25836. bottom: 70/1463
  25837. }
  25838. },
  25839. frontNsfw: {
  25840. height: math.unit(2.3, "meters"),
  25841. weight: math.unit(300, "lb"),
  25842. name: "Front (NSFW)",
  25843. image: {
  25844. source: "./media/characters/sinja/front-nsfw.svg",
  25845. extra: 1393/1294,
  25846. bottom: 70/1463
  25847. }
  25848. },
  25849. back: {
  25850. height: math.unit(2.3, "meters"),
  25851. weight: math.unit(300, "lb"),
  25852. name: "Back",
  25853. image: {
  25854. source: "./media/characters/sinja/back.svg",
  25855. extra: 1393/1294,
  25856. bottom: 70/1463
  25857. }
  25858. },
  25859. head: {
  25860. height: math.unit(1.771, "feet"),
  25861. name: "Head",
  25862. image: {
  25863. source: "./media/characters/sinja/head.svg"
  25864. }
  25865. },
  25866. slit: {
  25867. height: math.unit(0.8, "feet"),
  25868. name: "Slit",
  25869. image: {
  25870. source: "./media/characters/sinja/slit.svg"
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Normal",
  25877. height: math.unit(2.3, "meters")
  25878. },
  25879. {
  25880. name: "Macro",
  25881. height: math.unit(91, "meters"),
  25882. default: true
  25883. },
  25884. {
  25885. name: "Megamacro",
  25886. height: math.unit(91440, "meters")
  25887. },
  25888. {
  25889. name: "Gigamacro",
  25890. height: math.unit(60960000, "meters")
  25891. },
  25892. {
  25893. name: "Teramacro",
  25894. height: math.unit(9144000000, "meters")
  25895. },
  25896. ]
  25897. ))
  25898. characterMakers.push(() => makeCharacter(
  25899. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25900. {
  25901. front: {
  25902. height: math.unit(1.7, "meters"),
  25903. weight: math.unit(130, "lb"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/kyu/front.svg",
  25907. extra: 415/395,
  25908. bottom: 5/420
  25909. }
  25910. },
  25911. head: {
  25912. height: math.unit(1.75, "feet"),
  25913. name: "Head",
  25914. image: {
  25915. source: "./media/characters/kyu/head.svg"
  25916. }
  25917. },
  25918. foot: {
  25919. height: math.unit(0.81, "feet"),
  25920. name: "Foot",
  25921. image: {
  25922. source: "./media/characters/kyu/foot.svg"
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(1.7, "meters")
  25930. },
  25931. {
  25932. name: "Macro",
  25933. height: math.unit(131, "feet"),
  25934. default: true
  25935. },
  25936. {
  25937. name: "Megamacro",
  25938. height: math.unit(91440, "meters")
  25939. },
  25940. {
  25941. name: "Gigamacro",
  25942. height: math.unit(60960000, "meters")
  25943. },
  25944. {
  25945. name: "Teramacro",
  25946. height: math.unit(9144000000, "meters")
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(7 + 1/12, "feet"),
  25955. weight: math.unit(250, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/joey/front.svg",
  25959. extra: 1791/1537,
  25960. bottom: 28/1816
  25961. }
  25962. },
  25963. },
  25964. [
  25965. {
  25966. name: "Micro",
  25967. height: math.unit(3, "inches")
  25968. },
  25969. {
  25970. name: "Normal",
  25971. height: math.unit(7 + 1/12, "feet"),
  25972. default: true
  25973. },
  25974. ]
  25975. ))
  25976. characterMakers.push(() => makeCharacter(
  25977. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25978. {
  25979. front: {
  25980. height: math.unit(165, "cm"),
  25981. weight: math.unit(140, "lb"),
  25982. name: "Front",
  25983. image: {
  25984. source: "./media/characters/sam-evans/front.svg",
  25985. extra: 3417/3230,
  25986. bottom: 41.3/3417
  25987. }
  25988. },
  25989. frontSixTails: {
  25990. height: math.unit(165, "cm"),
  25991. weight: math.unit(140, "lb"),
  25992. name: "Front-six-tails",
  25993. image: {
  25994. source: "./media/characters/sam-evans/front-six-tails.svg",
  25995. extra: 3417/3230,
  25996. bottom: 41.3/3417
  25997. }
  25998. },
  25999. back: {
  26000. height: math.unit(165, "cm"),
  26001. weight: math.unit(140, "lb"),
  26002. name: "Back",
  26003. image: {
  26004. source: "./media/characters/sam-evans/back.svg",
  26005. extra: 3227/3032,
  26006. bottom: 6.8/3234
  26007. }
  26008. },
  26009. face: {
  26010. height: math.unit(0.68, "feet"),
  26011. name: "Face",
  26012. image: {
  26013. source: "./media/characters/sam-evans/face.svg"
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(165, "cm"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Macro",
  26025. height: math.unit(100, "meters")
  26026. },
  26027. {
  26028. name: "Macro+",
  26029. height: math.unit(800, "meters")
  26030. },
  26031. {
  26032. name: "Macro++",
  26033. height: math.unit(3, "km")
  26034. },
  26035. {
  26036. name: "Macro+++",
  26037. height: math.unit(30, "km")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(10, "feet"),
  26046. weight: math.unit(750, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/juliet-a/front.svg",
  26050. extra: 1766/1720,
  26051. bottom: 43/1809
  26052. }
  26053. },
  26054. back: {
  26055. height: math.unit(10, "feet"),
  26056. weight: math.unit(750, "lb"),
  26057. name: "Back",
  26058. image: {
  26059. source: "./media/characters/juliet-a/back.svg",
  26060. extra: 1781/1734,
  26061. bottom: 35/1810,
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Normal",
  26068. height: math.unit(10, "feet"),
  26069. default: true
  26070. },
  26071. {
  26072. name: "Dragon Form",
  26073. height: math.unit(250, "feet")
  26074. },
  26075. {
  26076. name: "Macro",
  26077. height: math.unit(1000, "feet")
  26078. },
  26079. {
  26080. name: "Megamacro",
  26081. height: math.unit(10000, "feet")
  26082. }
  26083. ]
  26084. ))
  26085. characterMakers.push(() => makeCharacter(
  26086. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26087. {
  26088. regular: {
  26089. height: math.unit(7 + 3/12, "feet"),
  26090. weight: math.unit(260, "lb"),
  26091. name: "Regular",
  26092. image: {
  26093. source: "./media/characters/wild/regular.svg",
  26094. extra: 97.45/92,
  26095. bottom: 6.8/104.3
  26096. }
  26097. },
  26098. biggums: {
  26099. height: math.unit(8 + 6 /12, "feet"),
  26100. weight: math.unit(425, "lb"),
  26101. name: "Biggums",
  26102. image: {
  26103. source: "./media/characters/wild/biggums.svg",
  26104. extra: 97.45/92,
  26105. bottom: 7.5/132.34
  26106. }
  26107. },
  26108. mawRegular: {
  26109. height: math.unit(1.24, "feet"),
  26110. name: "Maw (Regular)",
  26111. image: {
  26112. source: "./media/characters/wild/maw.svg"
  26113. }
  26114. },
  26115. mawBiggums: {
  26116. height: math.unit(1.47, "feet"),
  26117. name: "Maw (Biggums)",
  26118. image: {
  26119. source: "./media/characters/wild/maw.svg"
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(7 + 3/12, "feet"),
  26127. default: true
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26133. {
  26134. front: {
  26135. height: math.unit(2.5, "meters"),
  26136. weight: math.unit(200, "kg"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/vidar/front.svg",
  26140. extra: 2994/2795,
  26141. bottom: 56/3061
  26142. }
  26143. },
  26144. back: {
  26145. height: math.unit(2.5, "meters"),
  26146. weight: math.unit(200, "kg"),
  26147. name: "Back",
  26148. image: {
  26149. source: "./media/characters/vidar/back.svg",
  26150. extra: 3131/2928,
  26151. bottom: 13.5/3141.5
  26152. }
  26153. },
  26154. feral: {
  26155. height: math.unit(2.5, "meters"),
  26156. weight: math.unit(2000, "kg"),
  26157. name: "Feral",
  26158. image: {
  26159. source: "./media/characters/vidar/feral.svg",
  26160. extra: 2790/1765,
  26161. bottom: 6/2796
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(2.5, "meters"),
  26169. default: true
  26170. },
  26171. {
  26172. name: "Macro",
  26173. height: math.unit(100, "meters")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(5 + 9/12, "feet"),
  26182. weight: math.unit(120, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/ash/front.svg",
  26186. extra: 2189/1961,
  26187. bottom: 5.2/2194
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(5 + 9/12, "feet"),
  26195. default: true
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(9, "feet"),
  26204. weight: math.unit(10000, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/gygabite/front.svg",
  26208. bottom: 31.7/537.8,
  26209. extra: 505/370
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(9, "feet"),
  26217. default: true
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26223. {
  26224. front: {
  26225. height: math.unit(12, "feet"),
  26226. weight: math.unit(35000, "lb"),
  26227. name: "Front",
  26228. image: {
  26229. source: "./media/characters/p0tat0/front.svg",
  26230. extra: 1065/921,
  26231. bottom: 55.7/1121.25
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Normal",
  26238. height: math.unit(12, "feet"),
  26239. default: true
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26245. {
  26246. side: {
  26247. height: math.unit(6.5, "feet"),
  26248. weight: math.unit(800, "lb"),
  26249. name: "Side",
  26250. image: {
  26251. source: "./media/characters/dusk/side.svg",
  26252. extra: 615/373,
  26253. bottom: 53/664
  26254. }
  26255. },
  26256. sitting: {
  26257. height: math.unit(7, "feet"),
  26258. weight: math.unit(800, "lb"),
  26259. name: "Sitting",
  26260. image: {
  26261. source: "./media/characters/dusk/sitting.svg",
  26262. extra: 753/425,
  26263. bottom: 33/774
  26264. }
  26265. },
  26266. head: {
  26267. height: math.unit(6.1, "feet"),
  26268. name: "Head",
  26269. image: {
  26270. source: "./media/characters/dusk/head.svg"
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Normal",
  26277. height: math.unit(7, "feet"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(15, "feet"),
  26287. weight: math.unit(7000, "lb"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/jay-direwolf/front.svg",
  26291. extra: 1810/1732,
  26292. bottom: 66/1892
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Normal",
  26299. height: math.unit(15, "feet"),
  26300. default: true
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(4 + 9/12, "feet"),
  26309. weight: math.unit(130, "lb"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/anchovie/front.svg",
  26313. extra: 382/350,
  26314. bottom: 25/409
  26315. }
  26316. },
  26317. back: {
  26318. height: math.unit(4 + 9/12, "feet"),
  26319. weight: math.unit(130, "lb"),
  26320. name: "Back",
  26321. image: {
  26322. source: "./media/characters/anchovie/back.svg",
  26323. extra: 385/352,
  26324. bottom: 16.6/402
  26325. }
  26326. },
  26327. frontDressed: {
  26328. height: math.unit(4 + 9/12, "feet"),
  26329. weight: math.unit(130, "lb"),
  26330. name: "Front (Dressed)",
  26331. image: {
  26332. source: "./media/characters/anchovie/front-dressed.svg",
  26333. extra: 382/350,
  26334. bottom: 25/409
  26335. }
  26336. },
  26337. backDressed: {
  26338. height: math.unit(4 + 9/12, "feet"),
  26339. weight: math.unit(130, "lb"),
  26340. name: "Back (Dressed)",
  26341. image: {
  26342. source: "./media/characters/anchovie/back-dressed.svg",
  26343. extra: 385/352,
  26344. bottom: 16.6/402
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Micro",
  26351. height: math.unit(6.4, "inches")
  26352. },
  26353. {
  26354. name: "Normal",
  26355. height: math.unit(4 + 9/12, "feet"),
  26356. default: true
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26362. {
  26363. front: {
  26364. height: math.unit(2, "meters"),
  26365. weight: math.unit(180, "lb"),
  26366. name: "Front",
  26367. image: {
  26368. source: "./media/characters/acidrenamon/front.svg",
  26369. extra: 987/890,
  26370. bottom: 22.8/1009
  26371. }
  26372. },
  26373. back: {
  26374. height: math.unit(2, "meters"),
  26375. weight: math.unit(180, "lb"),
  26376. name: "Back",
  26377. image: {
  26378. source: "./media/characters/acidrenamon/back.svg",
  26379. extra: 983/891,
  26380. bottom: 8.4/992
  26381. }
  26382. },
  26383. head: {
  26384. height: math.unit(1.92, "feet"),
  26385. name: "Head",
  26386. image: {
  26387. source: "./media/characters/acidrenamon/head.svg"
  26388. }
  26389. },
  26390. rump: {
  26391. height: math.unit(1.72, "feet"),
  26392. name: "Rump",
  26393. image: {
  26394. source: "./media/characters/acidrenamon/rump.svg"
  26395. }
  26396. },
  26397. tail: {
  26398. height: math.unit(4.2, "feet"),
  26399. name: "Tail",
  26400. image: {
  26401. source: "./media/characters/acidrenamon/tail.svg"
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(2, "meters"),
  26409. default: true
  26410. },
  26411. {
  26412. name: "Minimacro",
  26413. height: math.unit(7, "meters")
  26414. },
  26415. {
  26416. name: "Macro",
  26417. height: math.unit(200, "meters")
  26418. },
  26419. {
  26420. name: "Gigamacro",
  26421. height: math.unit(0.2, "earths")
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(6, "feet"),
  26430. weight: math.unit(150, "lb"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/kenzie-lee/front.svg",
  26434. extra: 1525/1465,
  26435. bottom: 45/1570
  26436. }
  26437. },
  26438. side: {
  26439. height: math.unit(6, "feet"),
  26440. weight: math.unit(150, "lb"),
  26441. name: "Side",
  26442. image: {
  26443. source: "./media/characters/kenzie-lee/side.svg",
  26444. extra: 5505/5383,
  26445. bottom: 60/5573
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Normal",
  26452. height: math.unit(152, "feet"),
  26453. default: true
  26454. },
  26455. {
  26456. name: "Megamacro",
  26457. height: math.unit(7, "miles")
  26458. },
  26459. {
  26460. name: "Gigamacro",
  26461. height: math.unit(8000, "miles")
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26467. {
  26468. side: {
  26469. height: math.unit(6, "feet"),
  26470. weight: math.unit(150, "lb"),
  26471. name: "Side",
  26472. image: {
  26473. source: "./media/characters/withers/side.svg",
  26474. extra: 1830/1728,
  26475. bottom: 96/1927
  26476. }
  26477. },
  26478. front: {
  26479. height: math.unit(6, "feet"),
  26480. weight: math.unit(150, "lb"),
  26481. name: "Front",
  26482. image: {
  26483. source: "./media/characters/withers/front.svg",
  26484. extra: 1514/1438,
  26485. bottom: 118/1632
  26486. }
  26487. },
  26488. },
  26489. [
  26490. {
  26491. name: "Normal",
  26492. height: math.unit(6, "feet")
  26493. },
  26494. {
  26495. name: "Macro",
  26496. height: math.unit(50, "feet")
  26497. },
  26498. {
  26499. name: "Megamacro",
  26500. height: math.unit(15, "miles"),
  26501. default: true
  26502. },
  26503. {
  26504. name: "Megamacro+",
  26505. height: math.unit(100, "km")
  26506. },
  26507. {
  26508. name: "Gigamacro",
  26509. height: math.unit(4750, "miles")
  26510. },
  26511. {
  26512. name: "Gigamacro+",
  26513. height: math.unit(32000, "miles")
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(6 + 7/12, "feet"),
  26522. weight: math.unit(250, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/nemoskii/front.svg",
  26526. extra: 2270/1734,
  26527. bottom: 86/2354
  26528. }
  26529. },
  26530. back: {
  26531. height: math.unit(6 + 7/12, "feet"),
  26532. weight: math.unit(250, "lb"),
  26533. name: "Back",
  26534. image: {
  26535. source: "./media/characters/nemoskii/back.svg",
  26536. extra: 1845/1788,
  26537. bottom: 10.5/1852
  26538. }
  26539. },
  26540. head: {
  26541. height: math.unit(1.31, "feet"),
  26542. name: "Head",
  26543. image: {
  26544. source: "./media/characters/nemoskii/head.svg"
  26545. }
  26546. },
  26547. },
  26548. [
  26549. {
  26550. name: "Normal",
  26551. height: math.unit(6 + 7/12, "feet"),
  26552. default: true
  26553. },
  26554. ]
  26555. ))
  26556. characterMakers.push(() => makeCharacter(
  26557. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26558. {
  26559. front: {
  26560. height: math.unit(1, "mile"),
  26561. weight: math.unit(265261.9, "lb"),
  26562. name: "Front",
  26563. image: {
  26564. source: "./media/characters/shui/front.svg",
  26565. extra: 1633/1564,
  26566. bottom: 91.5/1726
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Macro",
  26573. height: math.unit(1, "mile"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26580. {
  26581. front: {
  26582. height: math.unit(12 + 6/12, "feet"),
  26583. weight: math.unit(1342, "lb"),
  26584. name: "Front",
  26585. image: {
  26586. source: "./media/characters/arokh-takakura/front.svg",
  26587. extra: 1089/1043,
  26588. bottom: 77.4/1176.7
  26589. }
  26590. },
  26591. back: {
  26592. height: math.unit(12 + 6/12, "feet"),
  26593. weight: math.unit(1342, "lb"),
  26594. name: "Back",
  26595. image: {
  26596. source: "./media/characters/arokh-takakura/back.svg",
  26597. extra: 1046/1019,
  26598. bottom: 102/1150
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Big",
  26605. height: math.unit(12 + 6/12, "feet"),
  26606. default: true
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(5 + 6/12, "feet"),
  26615. weight: math.unit(150, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/theo/front.svg",
  26619. extra: 1184/1131,
  26620. bottom: 7.4/1191
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Micro",
  26627. height: math.unit(5, "inches")
  26628. },
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(5 + 6/12, "feet"),
  26632. default: true
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(5 + 9/12, "feet"),
  26641. weight: math.unit(130, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/cecelia-swift/front.svg",
  26645. extra: 502/484,
  26646. bottom: 23/523
  26647. }
  26648. },
  26649. back: {
  26650. height: math.unit(5 + 9/12, "feet"),
  26651. weight: math.unit(130, "lb"),
  26652. name: "Back",
  26653. image: {
  26654. source: "./media/characters/cecelia-swift/back.svg",
  26655. extra: 499/485,
  26656. bottom: 12/511
  26657. }
  26658. },
  26659. head: {
  26660. height: math.unit(0.90, "feet"),
  26661. name: "Head",
  26662. image: {
  26663. source: "./media/characters/cecelia-swift/head.svg"
  26664. }
  26665. },
  26666. rump: {
  26667. height: math.unit(1.75, "feet"),
  26668. name: "Rump",
  26669. image: {
  26670. source: "./media/characters/cecelia-swift/rump.svg"
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(5 + 9/12, "feet"),
  26678. default: true
  26679. },
  26680. {
  26681. name: "Big",
  26682. height: math.unit(50, "feet")
  26683. },
  26684. {
  26685. name: "Macro",
  26686. height: math.unit(100, "feet")
  26687. },
  26688. {
  26689. name: "Macro+",
  26690. height: math.unit(500, "feet")
  26691. },
  26692. {
  26693. name: "Macro++",
  26694. height: math.unit(1000, "feet")
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26700. {
  26701. front: {
  26702. height: math.unit(6, "feet"),
  26703. weight: math.unit(150, "lb"),
  26704. name: "Front",
  26705. image: {
  26706. source: "./media/characters/kaunan/front.svg",
  26707. extra: 2890/2523,
  26708. bottom: 49/2939
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Macro",
  26715. height: math.unit(150, "feet"),
  26716. default: true
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26722. {
  26723. front: {
  26724. height: math.unit(175, "cm"),
  26725. weight: math.unit(60, "kg"),
  26726. name: "Front",
  26727. image: {
  26728. source: "./media/characters/fei/front.svg",
  26729. extra: 2581/2400,
  26730. bottom: 82.2/2663
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Mortal",
  26737. height: math.unit(175, "cm")
  26738. },
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(3500, "m"),
  26742. default: true
  26743. },
  26744. {
  26745. name: "Stroll",
  26746. height: math.unit(17.5, "km")
  26747. },
  26748. {
  26749. name: "Showoff",
  26750. height: math.unit(175, "km")
  26751. },
  26752. ]
  26753. ))
  26754. characterMakers.push(() => makeCharacter(
  26755. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26756. {
  26757. front: {
  26758. height: math.unit(7, "feet"),
  26759. weight: math.unit(1000, "kg"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/edrax/front.svg",
  26763. extra: 2838/2550,
  26764. bottom: 130/2968
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Small",
  26771. height: math.unit(7, "feet")
  26772. },
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(1500, "meters")
  26776. },
  26777. {
  26778. name: "Mega",
  26779. height: math.unit(12000000, "km"),
  26780. default: true
  26781. },
  26782. {
  26783. name: "Megamacro",
  26784. height: math.unit(10600000, "lightyears")
  26785. },
  26786. {
  26787. name: "Hypermacro",
  26788. height: math.unit(256, "yottameters")
  26789. },
  26790. ]
  26791. ))
  26792. characterMakers.push(() => makeCharacter(
  26793. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26794. {
  26795. front: {
  26796. height: math.unit(10, "feet"),
  26797. weight: math.unit(750, "lb"),
  26798. name: "Front",
  26799. image: {
  26800. source: "./media/characters/clove/front.svg",
  26801. extra: 2031/1860,
  26802. bottom: 47.8/2080
  26803. }
  26804. },
  26805. back: {
  26806. height: math.unit(10, "feet"),
  26807. weight: math.unit(750, "lb"),
  26808. name: "Back",
  26809. image: {
  26810. source: "./media/characters/clove/back.svg",
  26811. extra: 2025/1859,
  26812. bottom: 46/2071
  26813. }
  26814. },
  26815. },
  26816. [
  26817. {
  26818. name: "Normal",
  26819. height: math.unit(10, "feet")
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(4, "feet"),
  26828. weight: math.unit(50, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/alex-rabbit/front.svg",
  26832. extra: 507/458,
  26833. bottom: 18.5/527
  26834. }
  26835. },
  26836. back: {
  26837. height: math.unit(4, "feet"),
  26838. weight: math.unit(50, "lb"),
  26839. name: "Back",
  26840. image: {
  26841. source: "./media/characters/alex-rabbit/back.svg",
  26842. extra: 502/460,
  26843. bottom: 18.9/521
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(4, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(1 + 3 / 12, "feet"),
  26860. weight: math.unit(80, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/zander-rose/front.svg",
  26864. extra: 916 / 797,
  26865. bottom: 17 / 933
  26866. }
  26867. },
  26868. back: {
  26869. height: math.unit(1 + 3 / 12, "feet"),
  26870. weight: math.unit(80, "lb"),
  26871. name: "Back",
  26872. image: {
  26873. source: "./media/characters/zander-rose/back.svg",
  26874. extra: 903/779,
  26875. bottom: 31/934
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(1 + 3 / 12, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26889. {
  26890. anthro: {
  26891. height: math.unit(6, "feet"),
  26892. weight: math.unit(150, "lb"),
  26893. name: "Anthro",
  26894. image: {
  26895. source: "./media/characters/razz/anthro.svg",
  26896. extra: 1437/1343,
  26897. bottom: 48/1485
  26898. }
  26899. },
  26900. feral: {
  26901. height: math.unit(6, "feet"),
  26902. weight: math.unit(150, "lb"),
  26903. name: "Feral",
  26904. image: {
  26905. source: "./media/characters/razz/feral.svg",
  26906. extra: 2569/1385,
  26907. bottom: 95/2664
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Normal",
  26914. height: math.unit(6, "feet"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(9 + 4/12, "feet"),
  26924. weight: math.unit(500, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/morrigan/front.svg",
  26928. extra: 2707/2579,
  26929. bottom: 156/2863
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(9 + 4/12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(5, "stories"),
  26946. weight: math.unit(4000, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/jenene/front.svg",
  26950. extra: 1780/1710,
  26951. bottom: 57/1837
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Normal",
  26958. height: math.unit(5, "stories"),
  26959. default: true
  26960. },
  26961. ]
  26962. ))
  26963. characterMakers.push(() => makeCharacter(
  26964. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26965. {
  26966. front: {
  26967. height: math.unit(6, "feet"),
  26968. weight: math.unit(150, "lb"),
  26969. name: "Front",
  26970. image: {
  26971. source: "./media/characters/vix-archaser/front.svg",
  26972. extra: 2767/2562,
  26973. bottom: 36/2803
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Micro",
  26980. height: math.unit(1, "foot")
  26981. },
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(6 + 5/12, "feet")
  26985. },
  26986. {
  26987. name: "Minimacro",
  26988. height: math.unit(500, "feet")
  26989. },
  26990. {
  26991. name: "Macro",
  26992. height: math.unit(4, "miles")
  26993. },
  26994. {
  26995. name: "Megamacro",
  26996. height: math.unit(250, "miles"),
  26997. default: true
  26998. },
  26999. {
  27000. name: "Gigamacro",
  27001. height: math.unit(1, "universe")
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27007. {
  27008. taurSfw: {
  27009. height: math.unit(10, "meters"),
  27010. weight: math.unit(17500, "kg"),
  27011. name: "Taur",
  27012. image: {
  27013. source: "./media/characters/faey/taur-sfw.svg",
  27014. extra: 1200/968,
  27015. bottom: 41/1241
  27016. }
  27017. },
  27018. chestmaw: {
  27019. height: math.unit(2.01, "meters"),
  27020. name: "Chestmaw",
  27021. image: {
  27022. source: "./media/characters/faey/chestmaw.svg"
  27023. }
  27024. },
  27025. foot: {
  27026. height: math.unit(2.43, "meters"),
  27027. name: "Foot",
  27028. image: {
  27029. source: "./media/characters/faey/foot.svg"
  27030. }
  27031. },
  27032. jaws: {
  27033. height: math.unit(1.66, "meters"),
  27034. name: "Jaws",
  27035. image: {
  27036. source: "./media/characters/faey/jaws.svg"
  27037. }
  27038. },
  27039. tongues: {
  27040. height: math.unit(2.01, "meters"),
  27041. name: "Tongues",
  27042. image: {
  27043. source: "./media/characters/faey/tongues.svg"
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Small",
  27050. height: math.unit(10, "meters"),
  27051. default: true
  27052. },
  27053. {
  27054. name: "Big",
  27055. height: math.unit(500000, "km")
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(7, "feet"),
  27064. weight: math.unit(275, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/roku/front.svg",
  27068. extra: 903/878,
  27069. bottom: 37/940
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(7, "feet"),
  27077. default: true
  27078. },
  27079. {
  27080. name: "Macro",
  27081. height: math.unit(500, "feet")
  27082. },
  27083. {
  27084. name: "Megamacro",
  27085. height: math.unit(200, "miles")
  27086. },
  27087. ]
  27088. ))
  27089. characterMakers.push(() => makeCharacter(
  27090. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27091. {
  27092. front: {
  27093. height: math.unit(6 + 2/12, "feet"),
  27094. weight: math.unit(150, "lb"),
  27095. name: "Front",
  27096. image: {
  27097. source: "./media/characters/lira/front.svg",
  27098. extra: 1727/1605,
  27099. bottom: 26/1753
  27100. }
  27101. },
  27102. back: {
  27103. height: math.unit(6 + 2/12, "feet"),
  27104. weight: math.unit(150, "lb"),
  27105. name: "Back",
  27106. image: {
  27107. source: "./media/characters/lira/back.svg",
  27108. extra: 1713/159,
  27109. bottom: 20/1733
  27110. }
  27111. },
  27112. hand: {
  27113. height: math.unit(0.75, "feet"),
  27114. name: "Hand",
  27115. image: {
  27116. source: "./media/characters/lira/hand.svg"
  27117. }
  27118. },
  27119. maw: {
  27120. height: math.unit(0.65, "feet"),
  27121. name: "Maw",
  27122. image: {
  27123. source: "./media/characters/lira/maw.svg"
  27124. }
  27125. },
  27126. pawDigi: {
  27127. height: math.unit(1.6, "feet"),
  27128. name: "Paw Digi",
  27129. image: {
  27130. source: "./media/characters/lira/paw-digi.svg"
  27131. }
  27132. },
  27133. pawPlanti: {
  27134. height: math.unit(1.4, "feet"),
  27135. name: "Paw Planti",
  27136. image: {
  27137. source: "./media/characters/lira/paw-planti.svg"
  27138. }
  27139. },
  27140. },
  27141. [
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(6 + 2/12, "feet"),
  27145. default: true
  27146. },
  27147. {
  27148. name: "Macro",
  27149. height: math.unit(100, "feet")
  27150. },
  27151. {
  27152. name: "Macro²",
  27153. height: math.unit(1600, "feet")
  27154. },
  27155. {
  27156. name: "Planetary",
  27157. height: math.unit(20, "earths")
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(6, "feet"),
  27166. weight: math.unit(150, "lb"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/hadjet/front.svg",
  27170. extra: 1480/1346,
  27171. bottom: 26/1506
  27172. }
  27173. },
  27174. frontNsfw: {
  27175. height: math.unit(6, "feet"),
  27176. weight: math.unit(150, "lb"),
  27177. name: "Front (NSFW)",
  27178. image: {
  27179. source: "./media/characters/hadjet/front-nsfw.svg",
  27180. extra: 1440/1358,
  27181. bottom: 52/1492
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Macro",
  27188. height: math.unit(10, "stories"),
  27189. default: true
  27190. },
  27191. {
  27192. name: "Megamacro",
  27193. height: math.unit(1.5, "miles")
  27194. },
  27195. {
  27196. name: "Megamacro+",
  27197. height: math.unit(5, "miles")
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27203. {
  27204. side: {
  27205. height: math.unit(106, "feet"),
  27206. weight: math.unit(500, "tonnes"),
  27207. name: "Side",
  27208. image: {
  27209. source: "./media/characters/kodran/side.svg",
  27210. extra: 553/480,
  27211. bottom: 33/586
  27212. }
  27213. },
  27214. front: {
  27215. height: math.unit(132, "feet"),
  27216. weight: math.unit(500, "tonnes"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/kodran/front.svg",
  27220. extra: 667/643,
  27221. bottom: 42/709
  27222. }
  27223. },
  27224. flying: {
  27225. height: math.unit(350, "feet"),
  27226. weight: math.unit(500, "tonnes"),
  27227. name: "Flying",
  27228. image: {
  27229. source: "./media/characters/kodran/flying.svg"
  27230. }
  27231. },
  27232. foot: {
  27233. height: math.unit(33, "feet"),
  27234. name: "Foot",
  27235. image: {
  27236. source: "./media/characters/kodran/foot.svg"
  27237. }
  27238. },
  27239. footFront: {
  27240. height: math.unit(19, "feet"),
  27241. name: "Foot (Front)",
  27242. image: {
  27243. source: "./media/characters/kodran/foot-front.svg",
  27244. extra: 261/261,
  27245. bottom: 91/352
  27246. }
  27247. },
  27248. headFront: {
  27249. height: math.unit(53, "feet"),
  27250. name: "Head (Front)",
  27251. image: {
  27252. source: "./media/characters/kodran/head-front.svg"
  27253. }
  27254. },
  27255. headSide: {
  27256. height: math.unit(65, "feet"),
  27257. name: "Head (Side)",
  27258. image: {
  27259. source: "./media/characters/kodran/head-side.svg"
  27260. }
  27261. },
  27262. throat: {
  27263. height: math.unit(79, "feet"),
  27264. name: "Throat",
  27265. image: {
  27266. source: "./media/characters/kodran/throat.svg"
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Large",
  27273. height: math.unit(106, "feet"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27280. {
  27281. side: {
  27282. height: math.unit(11, "feet"),
  27283. weight: math.unit(150, "lb"),
  27284. name: "Side",
  27285. image: {
  27286. source: "./media/characters/pyxaron/side.svg",
  27287. extra: 305/195,
  27288. bottom: 17/322
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(11, "feet")
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(6, "feet"),
  27304. weight: math.unit(150, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/meep/front.svg",
  27308. extra: 88/80,
  27309. bottom: 6/94
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Fun Sized",
  27316. height: math.unit(2, "inches"),
  27317. default: true
  27318. },
  27319. {
  27320. name: "Friend Sized",
  27321. height: math.unit(8, "inches")
  27322. },
  27323. ]
  27324. ))
  27325. characterMakers.push(() => makeCharacter(
  27326. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27327. {
  27328. front: {
  27329. height: math.unit(15, "feet"),
  27330. weight: math.unit(2500, "lb"),
  27331. name: "Front",
  27332. image: {
  27333. source: "./media/characters/holly-rabbit/front.svg",
  27334. extra: 1433/1233,
  27335. bottom: 125/1558
  27336. }
  27337. },
  27338. dick: {
  27339. height: math.unit(4.6, "feet"),
  27340. name: "Dick",
  27341. image: {
  27342. source: "./media/characters/holly-rabbit/dick.svg"
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(15, "feet"),
  27350. default: true
  27351. },
  27352. {
  27353. name: "Macro",
  27354. height: math.unit(250, "feet")
  27355. },
  27356. {
  27357. name: "Macro+",
  27358. height: math.unit(2500, "feet")
  27359. },
  27360. ]
  27361. ))
  27362. characterMakers.push(() => makeCharacter(
  27363. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27364. {
  27365. front: {
  27366. height: math.unit(3.02, "meters"),
  27367. weight: math.unit(500, "kg"),
  27368. name: "Front",
  27369. image: {
  27370. source: "./media/characters/drena/front.svg",
  27371. extra: 282/243,
  27372. bottom: 8/290
  27373. }
  27374. },
  27375. side: {
  27376. height: math.unit(3.02, "meters"),
  27377. weight: math.unit(500, "kg"),
  27378. name: "Side",
  27379. image: {
  27380. source: "./media/characters/drena/side.svg",
  27381. extra: 280/245,
  27382. bottom: 10/290
  27383. }
  27384. },
  27385. back: {
  27386. height: math.unit(3.02, "meters"),
  27387. weight: math.unit(500, "kg"),
  27388. name: "Back",
  27389. image: {
  27390. source: "./media/characters/drena/back.svg",
  27391. extra: 278/243,
  27392. bottom: 2/280
  27393. }
  27394. },
  27395. foot: {
  27396. height: math.unit(0.75, "meters"),
  27397. name: "Foot",
  27398. image: {
  27399. source: "./media/characters/drena/foot.svg"
  27400. }
  27401. },
  27402. maw: {
  27403. height: math.unit(0.82, "meters"),
  27404. name: "Maw",
  27405. image: {
  27406. source: "./media/characters/drena/maw.svg"
  27407. }
  27408. },
  27409. rump: {
  27410. height: math.unit(0.93, "meters"),
  27411. name: "Rump",
  27412. image: {
  27413. source: "./media/characters/drena/rump.svg"
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(3.02, "meters"),
  27421. default: true
  27422. },
  27423. ]
  27424. ))
  27425. //characters
  27426. function makeCharacters() {
  27427. const results = [];
  27428. characterMakers.forEach(character => {
  27429. results.push(character());
  27430. });
  27431. return results;
  27432. }