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

28605 строки
714 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. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. }
  1352. //species
  1353. function getSpeciesInfo(speciesList) {
  1354. let result = new Set();
  1355. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1356. result.add(entry)
  1357. });
  1358. return Array.from(result);
  1359. };
  1360. function getSpeciesInfoHelper(species) {
  1361. if (!speciesData[species]) {
  1362. console.warn(species + " doesn't exist");
  1363. return [];
  1364. }
  1365. if (speciesData[species].parents) {
  1366. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1367. } else {
  1368. return [species];
  1369. }
  1370. }
  1371. characterMakers.push(() => makeCharacter(
  1372. {
  1373. name: "Fen",
  1374. species: ["crux"],
  1375. description: {
  1376. title: "Bio",
  1377. text: "Very furry. Sheds on everything."
  1378. },
  1379. tags: [
  1380. "anthro",
  1381. "goo"
  1382. ]
  1383. },
  1384. {
  1385. back: {
  1386. height: math.unit(2.2428, "meter"),
  1387. weight: math.unit(124.738, "kg"),
  1388. name: "Back",
  1389. image: {
  1390. source: "./media/characters/fen/back.svg",
  1391. extra: 2024 / 1867,
  1392. bottom: 13 / 2037
  1393. },
  1394. info: {
  1395. description: {
  1396. mode: "append",
  1397. text: "\n\nHe is not currently looking at you."
  1398. }
  1399. }
  1400. },
  1401. full: {
  1402. height: math.unit(1.34, "meter"),
  1403. weight: math.unit(225, "kg"),
  1404. name: "Full",
  1405. image: {
  1406. source: "./media/characters/fen/full.svg"
  1407. },
  1408. info: {
  1409. description: {
  1410. mode: "append",
  1411. text: "\n\nMunch."
  1412. }
  1413. }
  1414. },
  1415. kneeling: {
  1416. height: math.unit(5.4, "feet"),
  1417. weight: math.unit(124.738, "kg"),
  1418. name: "Kneeling",
  1419. image: {
  1420. source: "./media/characters/fen/kneeling.svg",
  1421. extra: 563 / 507
  1422. }
  1423. },
  1424. goo: {
  1425. height: math.unit(2.8, "feet"),
  1426. weight: math.unit(125, "kg"),
  1427. capacity: math.unit(1, "people"),
  1428. name: "Goo",
  1429. image: {
  1430. source: "./media/characters/fen/goo.svg",
  1431. bottom: 116 / 613
  1432. }
  1433. },
  1434. lounging: {
  1435. height: math.unit(6.5, "feet"),
  1436. weight: math.unit(125, "kg"),
  1437. name: "Lounging",
  1438. image: {
  1439. source: "./media/characters/fen/lounging.svg"
  1440. }
  1441. },
  1442. },
  1443. [
  1444. {
  1445. name: "Normal",
  1446. height: math.unit(2.2428, "meter")
  1447. },
  1448. {
  1449. name: "Big",
  1450. height: math.unit(12, "feet")
  1451. },
  1452. {
  1453. name: "Minimacro",
  1454. height: math.unit(40, "feet"),
  1455. default: true,
  1456. info: {
  1457. description: {
  1458. mode: "append",
  1459. text: "\n\nTOO DAMN BIG"
  1460. }
  1461. }
  1462. },
  1463. {
  1464. name: "Macro",
  1465. height: math.unit(100, "feet"),
  1466. info: {
  1467. description: {
  1468. mode: "append",
  1469. text: "\n\nTOO DAMN BIG"
  1470. }
  1471. }
  1472. },
  1473. {
  1474. name: "Macro+",
  1475. height: math.unit(300, "feet")
  1476. },
  1477. {
  1478. name: "Megamacro",
  1479. height: math.unit(2, "miles")
  1480. }
  1481. ]
  1482. ))
  1483. characterMakers.push(() => makeCharacter(
  1484. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1485. {
  1486. front: {
  1487. height: math.unit(183, "cm"),
  1488. weight: math.unit(80, "kg"),
  1489. name: "Front",
  1490. image: {
  1491. source: "./media/characters/sofia-fluttertail/front.svg",
  1492. bottom: 0.01,
  1493. extra: 2154 / 2081
  1494. }
  1495. },
  1496. frontAlt: {
  1497. height: math.unit(183, "cm"),
  1498. weight: math.unit(80, "kg"),
  1499. name: "Front (alt)",
  1500. image: {
  1501. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1502. }
  1503. },
  1504. back: {
  1505. height: math.unit(183, "cm"),
  1506. weight: math.unit(80, "kg"),
  1507. name: "Back",
  1508. image: {
  1509. source: "./media/characters/sofia-fluttertail/back.svg"
  1510. }
  1511. },
  1512. kneeling: {
  1513. height: math.unit(125, "cm"),
  1514. weight: math.unit(80, "kg"),
  1515. name: "Kneeling",
  1516. image: {
  1517. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1518. extra: 1033 / 977,
  1519. bottom: 23.7 / 1057
  1520. }
  1521. },
  1522. maw: {
  1523. height: math.unit(183 / 5, "cm"),
  1524. name: "Maw",
  1525. image: {
  1526. source: "./media/characters/sofia-fluttertail/maw.svg"
  1527. }
  1528. },
  1529. mawcloseup: {
  1530. height: math.unit(183 / 5 * 0.41, "cm"),
  1531. name: "Maw (Closeup)",
  1532. image: {
  1533. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1534. }
  1535. },
  1536. },
  1537. [
  1538. {
  1539. name: "Normal",
  1540. height: math.unit(1.83, "meter")
  1541. },
  1542. {
  1543. name: "Size Thief",
  1544. height: math.unit(18, "feet")
  1545. },
  1546. {
  1547. name: "50 Foot Collie",
  1548. height: math.unit(50, "feet")
  1549. },
  1550. {
  1551. name: "Macro",
  1552. height: math.unit(96, "feet"),
  1553. default: true
  1554. },
  1555. {
  1556. name: "Megamerger",
  1557. height: math.unit(650, "feet")
  1558. },
  1559. ]
  1560. ))
  1561. characterMakers.push(() => makeCharacter(
  1562. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1563. {
  1564. front: {
  1565. height: math.unit(7, "feet"),
  1566. weight: math.unit(100, "kg"),
  1567. name: "Front",
  1568. image: {
  1569. source: "./media/characters/march/front.svg",
  1570. extra: 1,
  1571. bottom: 0.015
  1572. }
  1573. },
  1574. foot: {
  1575. height: math.unit(0.9, "feet"),
  1576. name: "Foot",
  1577. image: {
  1578. source: "./media/characters/march/foot.svg"
  1579. }
  1580. },
  1581. },
  1582. [
  1583. {
  1584. name: "Normal",
  1585. height: math.unit(7.9, "feet")
  1586. },
  1587. {
  1588. name: "Macro",
  1589. height: math.unit(220, "meters")
  1590. },
  1591. {
  1592. name: "Megamacro",
  1593. height: math.unit(2.98, "km"),
  1594. default: true
  1595. },
  1596. {
  1597. name: "Gigamacro",
  1598. height: math.unit(15963, "km")
  1599. },
  1600. {
  1601. name: "Teramacro",
  1602. height: math.unit(2980000000, "km")
  1603. },
  1604. {
  1605. name: "Examacro",
  1606. height: math.unit(250, "parsecs")
  1607. },
  1608. ]
  1609. ))
  1610. characterMakers.push(() => makeCharacter(
  1611. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1612. {
  1613. front: {
  1614. height: math.unit(6, "feet"),
  1615. weight: math.unit(60, "kg"),
  1616. name: "Front",
  1617. image: {
  1618. source: "./media/characters/noir/front.svg",
  1619. extra: 1,
  1620. bottom: 0.032
  1621. }
  1622. },
  1623. },
  1624. [
  1625. {
  1626. name: "Normal",
  1627. height: math.unit(6.6, "feet")
  1628. },
  1629. {
  1630. name: "Macro",
  1631. height: math.unit(500, "feet")
  1632. },
  1633. {
  1634. name: "Megamacro",
  1635. height: math.unit(2.5, "km"),
  1636. default: true
  1637. },
  1638. {
  1639. name: "Gigamacro",
  1640. height: math.unit(22500, "km")
  1641. },
  1642. {
  1643. name: "Teramacro",
  1644. height: math.unit(2500000000, "km")
  1645. },
  1646. {
  1647. name: "Examacro",
  1648. height: math.unit(200, "parsecs")
  1649. },
  1650. ]
  1651. ))
  1652. characterMakers.push(() => makeCharacter(
  1653. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1654. {
  1655. front: {
  1656. height: math.unit(7, "feet"),
  1657. weight: math.unit(100, "kg"),
  1658. name: "Front",
  1659. image: {
  1660. source: "./media/characters/okuri/front.svg",
  1661. extra: 1,
  1662. bottom: 0.037
  1663. }
  1664. },
  1665. back: {
  1666. height: math.unit(7, "feet"),
  1667. weight: math.unit(100, "kg"),
  1668. name: "Back",
  1669. image: {
  1670. source: "./media/characters/okuri/back.svg",
  1671. extra: 1,
  1672. bottom: 0.007
  1673. }
  1674. },
  1675. },
  1676. [
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(100, "miles"),
  1680. default: true
  1681. },
  1682. ]
  1683. ))
  1684. characterMakers.push(() => makeCharacter(
  1685. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1686. {
  1687. front: {
  1688. height: math.unit(7, "feet"),
  1689. weight: math.unit(100, "kg"),
  1690. name: "Front",
  1691. image: {
  1692. source: "./media/characters/manny/front.svg",
  1693. extra: 1,
  1694. bottom: 0.06
  1695. }
  1696. },
  1697. back: {
  1698. height: math.unit(7, "feet"),
  1699. weight: math.unit(100, "kg"),
  1700. name: "Back",
  1701. image: {
  1702. source: "./media/characters/manny/back.svg",
  1703. extra: 1,
  1704. bottom: 0.014
  1705. }
  1706. },
  1707. },
  1708. [
  1709. {
  1710. name: "Normal",
  1711. height: math.unit(7, "feet"),
  1712. },
  1713. {
  1714. name: "Macro",
  1715. height: math.unit(78, "feet"),
  1716. default: true
  1717. },
  1718. {
  1719. name: "Macro+",
  1720. height: math.unit(300, "meters")
  1721. },
  1722. {
  1723. name: "Macro++",
  1724. height: math.unit(2400, "meters")
  1725. },
  1726. {
  1727. name: "Megamacro",
  1728. height: math.unit(5167, "meters")
  1729. },
  1730. {
  1731. name: "Gigamacro",
  1732. height: math.unit(41769, "miles")
  1733. },
  1734. ]
  1735. ))
  1736. characterMakers.push(() => makeCharacter(
  1737. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1738. {
  1739. front: {
  1740. height: math.unit(7, "feet"),
  1741. weight: math.unit(100, "kg"),
  1742. name: "Front",
  1743. image: {
  1744. source: "./media/characters/adake/front-1.svg"
  1745. }
  1746. },
  1747. frontAlt: {
  1748. height: math.unit(7, "feet"),
  1749. weight: math.unit(100, "kg"),
  1750. name: "Front (Alt)",
  1751. image: {
  1752. source: "./media/characters/adake/front-2.svg",
  1753. extra: 1,
  1754. bottom: 0.01
  1755. }
  1756. },
  1757. back: {
  1758. height: math.unit(7, "feet"),
  1759. weight: math.unit(100, "kg"),
  1760. name: "Back",
  1761. image: {
  1762. source: "./media/characters/adake/back.svg",
  1763. }
  1764. },
  1765. kneel: {
  1766. height: math.unit(5.385, "feet"),
  1767. weight: math.unit(100, "kg"),
  1768. name: "Kneeling",
  1769. image: {
  1770. source: "./media/characters/adake/kneel.svg",
  1771. bottom: 0.052
  1772. }
  1773. },
  1774. },
  1775. [
  1776. {
  1777. name: "Normal",
  1778. height: math.unit(7, "feet"),
  1779. },
  1780. {
  1781. name: "Macro",
  1782. height: math.unit(78, "feet"),
  1783. default: true
  1784. },
  1785. {
  1786. name: "Macro+",
  1787. height: math.unit(300, "meters")
  1788. },
  1789. {
  1790. name: "Macro++",
  1791. height: math.unit(2400, "meters")
  1792. },
  1793. {
  1794. name: "Megamacro",
  1795. height: math.unit(5167, "meters")
  1796. },
  1797. {
  1798. name: "Gigamacro",
  1799. height: math.unit(41769, "miles")
  1800. },
  1801. ]
  1802. ))
  1803. characterMakers.push(() => makeCharacter(
  1804. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1805. {
  1806. front: {
  1807. height: math.unit(1.65, "meters"),
  1808. weight: math.unit(50, "kg"),
  1809. name: "Front",
  1810. image: {
  1811. source: "./media/characters/elijah/front.svg",
  1812. extra: 858 / 830,
  1813. bottom: 95.5 / 953.8559
  1814. }
  1815. },
  1816. back: {
  1817. height: math.unit(1.65, "meters"),
  1818. weight: math.unit(50, "kg"),
  1819. name: "Back",
  1820. image: {
  1821. source: "./media/characters/elijah/back.svg",
  1822. extra: 895 / 850,
  1823. bottom: 5.3 / 897.956
  1824. }
  1825. },
  1826. frontNsfw: {
  1827. height: math.unit(1.65, "meters"),
  1828. weight: math.unit(50, "kg"),
  1829. name: "Front (NSFW)",
  1830. image: {
  1831. source: "./media/characters/elijah/front-nsfw.svg",
  1832. extra: 858 / 830,
  1833. bottom: 95.5 / 953.8559
  1834. }
  1835. },
  1836. backNsfw: {
  1837. height: math.unit(1.65, "meters"),
  1838. weight: math.unit(50, "kg"),
  1839. name: "Back (NSFW)",
  1840. image: {
  1841. source: "./media/characters/elijah/back-nsfw.svg",
  1842. extra: 895 / 850,
  1843. bottom: 5.3 / 897.956
  1844. }
  1845. },
  1846. dick: {
  1847. height: math.unit(1, "feet"),
  1848. name: "Dick",
  1849. image: {
  1850. source: "./media/characters/elijah/dick.svg"
  1851. }
  1852. },
  1853. beakOpen: {
  1854. height: math.unit(1.25, "feet"),
  1855. name: "Beak (Open)",
  1856. image: {
  1857. source: "./media/characters/elijah/beak-open.svg"
  1858. }
  1859. },
  1860. beakShut: {
  1861. height: math.unit(1.25, "feet"),
  1862. name: "Beak (Shut)",
  1863. image: {
  1864. source: "./media/characters/elijah/beak-shut.svg"
  1865. }
  1866. },
  1867. footFlexing: {
  1868. height: math.unit(1.61, "feet"),
  1869. name: "Foot (Flexing)",
  1870. image: {
  1871. source: "./media/characters/elijah/foot-flexing.svg"
  1872. }
  1873. },
  1874. footStepping: {
  1875. height: math.unit(1.44, "feet"),
  1876. name: "Foot (Stepping)",
  1877. image: {
  1878. source: "./media/characters/elijah/foot-stepping.svg"
  1879. }
  1880. },
  1881. plantigradeLeg: {
  1882. height: math.unit(2.34, "feet"),
  1883. name: "Plantigrade Leg",
  1884. image: {
  1885. source: "./media/characters/elijah/plantigrade-leg.svg"
  1886. }
  1887. },
  1888. plantigradeFootLeft: {
  1889. height: math.unit(0.9, "feet"),
  1890. name: "Plantigrade Foot (Left)",
  1891. image: {
  1892. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1893. }
  1894. },
  1895. plantigradeFootRight: {
  1896. height: math.unit(0.9, "feet"),
  1897. name: "Plantigrade Foot (Right)",
  1898. image: {
  1899. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1900. }
  1901. },
  1902. },
  1903. [
  1904. {
  1905. name: "Normal",
  1906. height: math.unit(1.65, "meters")
  1907. },
  1908. {
  1909. name: "Macro",
  1910. height: math.unit(55, "meters"),
  1911. default: true
  1912. },
  1913. {
  1914. name: "Macro+",
  1915. height: math.unit(105, "meters")
  1916. },
  1917. ]
  1918. ))
  1919. characterMakers.push(() => makeCharacter(
  1920. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1921. {
  1922. front: {
  1923. height: math.unit(11, "feet"),
  1924. weight: math.unit(80, "kg"),
  1925. name: "Front",
  1926. image: {
  1927. source: "./media/characters/rai/front.svg",
  1928. extra: 1,
  1929. bottom: 0.03
  1930. }
  1931. },
  1932. side: {
  1933. height: math.unit(11, "feet"),
  1934. weight: math.unit(80, "kg"),
  1935. name: "Side",
  1936. image: {
  1937. source: "./media/characters/rai/side.svg"
  1938. }
  1939. },
  1940. back: {
  1941. height: math.unit(11, "feet"),
  1942. weight: math.unit(80, "lb"),
  1943. name: "Back",
  1944. image: {
  1945. source: "./media/characters/rai/back.svg",
  1946. extra: 1,
  1947. bottom: 0.01
  1948. }
  1949. },
  1950. feral: {
  1951. height: math.unit(11, "feet"),
  1952. weight: math.unit(800, "lb"),
  1953. name: "Feral",
  1954. image: {
  1955. source: "./media/characters/rai/feral.svg",
  1956. extra: 1050 / 659,
  1957. bottom: 0.07
  1958. }
  1959. },
  1960. dragon: {
  1961. height: math.unit(23, "feet"),
  1962. weight: math.unit(50000, "lb"),
  1963. name: "Dragon",
  1964. image: {
  1965. source: "./media/characters/rai/dragon.svg",
  1966. extra: 2498 / 2030,
  1967. bottom: 85.2 / 2584
  1968. }
  1969. },
  1970. maw: {
  1971. height: math.unit(6 / 3.81416, "feet"),
  1972. name: "Maw",
  1973. image: {
  1974. source: "./media/characters/rai/maw.svg"
  1975. }
  1976. },
  1977. },
  1978. [
  1979. {
  1980. name: "Normal",
  1981. height: math.unit(11, "feet")
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(302, "feet"),
  1986. default: true
  1987. },
  1988. ]
  1989. ))
  1990. characterMakers.push(() => makeCharacter(
  1991. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1992. {
  1993. frontDressed: {
  1994. height: math.unit(216, "feet"),
  1995. weight: math.unit(7000000, "lb"),
  1996. name: "Front (Dressed)",
  1997. image: {
  1998. source: "./media/characters/jazzy/front-dressed.svg",
  1999. extra: 2738 / 2651,
  2000. bottom: 41.8 / 2786
  2001. }
  2002. },
  2003. backDressed: {
  2004. height: math.unit(216, "feet"),
  2005. weight: math.unit(7000000, "lb"),
  2006. name: "Back (Dressed)",
  2007. image: {
  2008. source: "./media/characters/jazzy/back-dressed.svg",
  2009. extra: 2775 / 2673,
  2010. bottom: 36.8 / 2817
  2011. }
  2012. },
  2013. front: {
  2014. height: math.unit(216, "feet"),
  2015. weight: math.unit(7000000, "lb"),
  2016. name: "Front",
  2017. image: {
  2018. source: "./media/characters/jazzy/front.svg",
  2019. extra: 2738 / 2651,
  2020. bottom: 41.8 / 2786
  2021. }
  2022. },
  2023. back: {
  2024. height: math.unit(216, "feet"),
  2025. weight: math.unit(7000000, "lb"),
  2026. name: "Back",
  2027. image: {
  2028. source: "./media/characters/jazzy/back.svg",
  2029. extra: 2775 / 2673,
  2030. bottom: 36.8 / 2817
  2031. }
  2032. },
  2033. maw: {
  2034. height: math.unit(20, "feet"),
  2035. name: "Maw",
  2036. image: {
  2037. source: "./media/characters/jazzy/maw.svg"
  2038. }
  2039. },
  2040. paws: {
  2041. height: math.unit(27.5, "feet"),
  2042. name: "Paws",
  2043. image: {
  2044. source: "./media/characters/jazzy/paws.svg"
  2045. }
  2046. },
  2047. eye: {
  2048. height: math.unit(4.4, "feet"),
  2049. name: "Eye",
  2050. image: {
  2051. source: "./media/characters/jazzy/eye.svg"
  2052. }
  2053. },
  2054. droneOffense: {
  2055. height: math.unit(9.5, "inches"),
  2056. name: "Drone (Offense)",
  2057. image: {
  2058. source: "./media/characters/jazzy/drone-offense.svg"
  2059. }
  2060. },
  2061. droneRecon: {
  2062. height: math.unit(9.5, "inches"),
  2063. name: "Drone (Recon)",
  2064. image: {
  2065. source: "./media/characters/jazzy/drone-recon.svg"
  2066. }
  2067. },
  2068. droneDefense: {
  2069. height: math.unit(9.5, "inches"),
  2070. name: "Drone (Defense)",
  2071. image: {
  2072. source: "./media/characters/jazzy/drone-defense.svg"
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Macro",
  2079. height: math.unit(216, "feet"),
  2080. default: true
  2081. },
  2082. ]
  2083. ))
  2084. characterMakers.push(() => makeCharacter(
  2085. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2086. {
  2087. front: {
  2088. height: math.unit(7, "feet"),
  2089. weight: math.unit(80, "kg"),
  2090. name: "Front",
  2091. image: {
  2092. source: "./media/characters/flamm/front.svg",
  2093. extra: 1794 / 1677,
  2094. bottom: 31.7 / 1828.5
  2095. }
  2096. },
  2097. },
  2098. [
  2099. {
  2100. name: "Normal",
  2101. height: math.unit(9.5, "feet")
  2102. },
  2103. {
  2104. name: "Macro",
  2105. height: math.unit(200, "feet"),
  2106. default: true
  2107. },
  2108. ]
  2109. ))
  2110. characterMakers.push(() => makeCharacter(
  2111. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2112. {
  2113. front: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(80, "kg"),
  2116. name: "Front",
  2117. image: {
  2118. source: "./media/characters/zephiro/front.svg",
  2119. extra: 2309 / 2162,
  2120. bottom: 0.069
  2121. }
  2122. },
  2123. side: {
  2124. height: math.unit(7, "feet"),
  2125. weight: math.unit(80, "kg"),
  2126. name: "Side",
  2127. image: {
  2128. source: "./media/characters/zephiro/side.svg",
  2129. extra: 2403 / 2279,
  2130. bottom: 0.015
  2131. }
  2132. },
  2133. back: {
  2134. height: math.unit(7, "feet"),
  2135. weight: math.unit(80, "kg"),
  2136. name: "Back",
  2137. image: {
  2138. source: "./media/characters/zephiro/back.svg",
  2139. extra: 2373 / 2244,
  2140. bottom: 0.013
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Micro",
  2147. height: math.unit(3, "inches")
  2148. },
  2149. {
  2150. name: "Normal",
  2151. height: math.unit(5 + 3 / 12, "feet"),
  2152. default: true
  2153. },
  2154. {
  2155. name: "Macro",
  2156. height: math.unit(118, "feet")
  2157. },
  2158. ]
  2159. ))
  2160. characterMakers.push(() => makeCharacter(
  2161. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2162. {
  2163. front: {
  2164. height: math.unit(5, "feet"),
  2165. weight: math.unit(90, "kg"),
  2166. name: "Front",
  2167. image: {
  2168. source: "./media/characters/fory/front.svg",
  2169. extra: 2862 / 2674,
  2170. bottom: 180 / 3043.8
  2171. }
  2172. },
  2173. back: {
  2174. height: math.unit(5, "feet"),
  2175. weight: math.unit(90, "kg"),
  2176. name: "Back",
  2177. image: {
  2178. source: "./media/characters/fory/back.svg",
  2179. extra: 2962 / 2791,
  2180. bottom: 106 / 3071.8
  2181. }
  2182. },
  2183. foot: {
  2184. height: math.unit(2.14, "feet"),
  2185. name: "Foot",
  2186. image: {
  2187. source: "./media/characters/fory/foot.svg"
  2188. }
  2189. },
  2190. },
  2191. [
  2192. {
  2193. name: "Normal",
  2194. height: math.unit(5, "feet")
  2195. },
  2196. {
  2197. name: "Macro",
  2198. height: math.unit(50, "feet"),
  2199. default: true
  2200. },
  2201. {
  2202. name: "Megamacro",
  2203. height: math.unit(10, "miles")
  2204. },
  2205. {
  2206. name: "Gigamacro",
  2207. height: math.unit(5, "earths")
  2208. },
  2209. ]
  2210. ))
  2211. characterMakers.push(() => makeCharacter(
  2212. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2213. {
  2214. front: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(90, "kg"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/kurrikage/front.svg",
  2220. extra: 1,
  2221. bottom: 0.035
  2222. }
  2223. },
  2224. back: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(90, "lb"),
  2227. name: "Back",
  2228. image: {
  2229. source: "./media/characters/kurrikage/back.svg"
  2230. }
  2231. },
  2232. paw: {
  2233. height: math.unit(1.5, "feet"),
  2234. name: "Paw",
  2235. image: {
  2236. source: "./media/characters/kurrikage/paw.svg"
  2237. }
  2238. },
  2239. staff: {
  2240. height: math.unit(6.7, "feet"),
  2241. name: "Staff",
  2242. image: {
  2243. source: "./media/characters/kurrikage/staff.svg"
  2244. }
  2245. },
  2246. peek: {
  2247. height: math.unit(1.05, "feet"),
  2248. name: "Peeking",
  2249. image: {
  2250. source: "./media/characters/kurrikage/peek.svg",
  2251. bottom: 0.08
  2252. }
  2253. },
  2254. },
  2255. [
  2256. {
  2257. name: "Normal",
  2258. height: math.unit(12, "feet"),
  2259. default: true
  2260. },
  2261. {
  2262. name: "Big",
  2263. height: math.unit(20, "feet")
  2264. },
  2265. {
  2266. name: "Macro",
  2267. height: math.unit(500, "feet")
  2268. },
  2269. {
  2270. name: "Megamacro",
  2271. height: math.unit(20, "miles")
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(6, "feet"),
  2280. weight: math.unit(75, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/shingo/front.svg",
  2284. extra: 3511 / 3338,
  2285. bottom: 0.005
  2286. }
  2287. },
  2288. paw: {
  2289. height: math.unit(1, "feet"),
  2290. name: "Paw",
  2291. image: {
  2292. source: "./media/characters/shingo/paw.svg"
  2293. }
  2294. },
  2295. },
  2296. [
  2297. {
  2298. name: "Micro",
  2299. height: math.unit(4, "inches")
  2300. },
  2301. {
  2302. name: "Normal",
  2303. height: math.unit(6, "feet"),
  2304. default: true
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(108, "feet")
  2309. }
  2310. ]
  2311. ))
  2312. characterMakers.push(() => makeCharacter(
  2313. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2314. {
  2315. side: {
  2316. height: math.unit(6, "feet"),
  2317. weight: math.unit(75, "kg"),
  2318. name: "Side",
  2319. image: {
  2320. source: "./media/characters/aigey/side.svg"
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Macro",
  2327. height: math.unit(200, "feet"),
  2328. default: true
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(100, "miles")
  2333. },
  2334. ]
  2335. )
  2336. )
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(5 + 5 / 12, "feet"),
  2342. weight: math.unit(75, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/natasha/front.svg",
  2346. extra: 859 / 824,
  2347. bottom: 23 / 879.6
  2348. }
  2349. },
  2350. frontNsfw: {
  2351. height: math.unit(5 + 5 / 12, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Front (NSFW)",
  2354. image: {
  2355. source: "./media/characters/natasha/front-nsfw.svg",
  2356. extra: 859 / 824,
  2357. bottom: 23 / 879.6
  2358. }
  2359. },
  2360. frontErect: {
  2361. height: math.unit(5 + 5 / 12, "feet"),
  2362. weight: math.unit(75, "kg"),
  2363. name: "Front (Erect)",
  2364. image: {
  2365. source: "./media/characters/natasha/front-erect.svg",
  2366. extra: 859 / 824,
  2367. bottom: 23 / 879.6
  2368. }
  2369. },
  2370. back: {
  2371. height: math.unit(5 + 5 / 12, "feet"),
  2372. weight: math.unit(75, "kg"),
  2373. name: "Back",
  2374. image: {
  2375. source: "./media/characters/natasha/back.svg",
  2376. extra: 887.9 / 852.6,
  2377. bottom: 9.7 / 896.4
  2378. }
  2379. },
  2380. backAlt: {
  2381. height: math.unit(5 + 5 / 12, "feet"),
  2382. weight: math.unit(75, "kg"),
  2383. name: "Back (Alt)",
  2384. image: {
  2385. source: "./media/characters/natasha/back-alt.svg",
  2386. extra: 1236.7 / 1192,
  2387. bottom: 22.3 / 1258.2
  2388. }
  2389. },
  2390. dick: {
  2391. height: math.unit(1.772, "feet"),
  2392. name: "Dick",
  2393. image: {
  2394. source: "./media/characters/natasha/dick.svg"
  2395. }
  2396. },
  2397. },
  2398. [
  2399. {
  2400. name: "Normal",
  2401. height: math.unit(5 + 5 / 12, "feet")
  2402. },
  2403. {
  2404. name: "Large",
  2405. height: math.unit(12, "feet")
  2406. },
  2407. {
  2408. name: "Macro",
  2409. height: math.unit(100, "feet"),
  2410. default: true
  2411. },
  2412. {
  2413. name: "Macro+",
  2414. height: math.unit(260, "feet")
  2415. },
  2416. {
  2417. name: "Macro++",
  2418. height: math.unit(1, "mile")
  2419. },
  2420. ]
  2421. ))
  2422. characterMakers.push(() => makeCharacter(
  2423. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2424. {
  2425. front: {
  2426. height: math.unit(6, "feet"),
  2427. weight: math.unit(75, "kg"),
  2428. name: "Front",
  2429. image: {
  2430. source: "./media/characters/malik/front.svg"
  2431. }
  2432. },
  2433. side: {
  2434. height: math.unit(6, "feet"),
  2435. weight: math.unit(75, "kg"),
  2436. name: "Side",
  2437. image: {
  2438. source: "./media/characters/malik/side.svg",
  2439. extra: 1.1539
  2440. }
  2441. },
  2442. back: {
  2443. height: math.unit(6, "feet"),
  2444. weight: math.unit(75, "kg"),
  2445. name: "Back",
  2446. image: {
  2447. source: "./media/characters/malik/back.svg"
  2448. }
  2449. },
  2450. },
  2451. [
  2452. {
  2453. name: "Macro",
  2454. height: math.unit(156, "feet"),
  2455. default: true
  2456. },
  2457. {
  2458. name: "Macro+",
  2459. height: math.unit(1188, "feet")
  2460. },
  2461. ]
  2462. ))
  2463. characterMakers.push(() => makeCharacter(
  2464. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2465. {
  2466. front: {
  2467. height: math.unit(6, "feet"),
  2468. weight: math.unit(75, "kg"),
  2469. name: "Front",
  2470. image: {
  2471. source: "./media/characters/sefer/front.svg",
  2472. extra: 848 / 659,
  2473. bottom: 28.3 / 876.442
  2474. }
  2475. },
  2476. back: {
  2477. height: math.unit(6, "feet"),
  2478. weight: math.unit(75, "kg"),
  2479. name: "Back",
  2480. image: {
  2481. source: "./media/characters/sefer/back.svg",
  2482. extra: 864 / 695,
  2483. bottom: 10 / 871
  2484. }
  2485. },
  2486. frontDressed: {
  2487. height: math.unit(6, "feet"),
  2488. weight: math.unit(75, "kg"),
  2489. name: "Front (Dressed)",
  2490. image: {
  2491. source: "./media/characters/sefer/front-dressed.svg",
  2492. extra: 839 / 653,
  2493. bottom: 37.6 / 878
  2494. }
  2495. },
  2496. },
  2497. [
  2498. {
  2499. name: "Normal",
  2500. height: math.unit(6, "feet"),
  2501. default: true
  2502. },
  2503. ]
  2504. ))
  2505. characterMakers.push(() => makeCharacter(
  2506. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2507. {
  2508. body: {
  2509. height: math.unit(2.2428, "meter"),
  2510. weight: math.unit(124.738, "kg"),
  2511. name: "Body",
  2512. image: {
  2513. extra: 1225 / 1050,
  2514. source: "./media/characters/north/front.svg"
  2515. }
  2516. }
  2517. },
  2518. [
  2519. {
  2520. name: "Micro",
  2521. height: math.unit(4, "inches")
  2522. },
  2523. {
  2524. name: "Macro",
  2525. height: math.unit(63, "meters")
  2526. },
  2527. {
  2528. name: "Megamacro",
  2529. height: math.unit(101, "miles"),
  2530. default: true
  2531. }
  2532. ]
  2533. ))
  2534. characterMakers.push(() => makeCharacter(
  2535. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2536. {
  2537. angled: {
  2538. height: math.unit(4, "meter"),
  2539. weight: math.unit(150, "kg"),
  2540. name: "Angled",
  2541. image: {
  2542. source: "./media/characters/talan/angled-sfw.svg",
  2543. bottom: 29 / 3734
  2544. }
  2545. },
  2546. angledNsfw: {
  2547. height: math.unit(4, "meter"),
  2548. weight: math.unit(150, "kg"),
  2549. name: "Angled (NSFW)",
  2550. image: {
  2551. source: "./media/characters/talan/angled-nsfw.svg",
  2552. bottom: 29 / 3734
  2553. }
  2554. },
  2555. frontNsfw: {
  2556. height: math.unit(4, "meter"),
  2557. weight: math.unit(150, "kg"),
  2558. name: "Front (NSFW)",
  2559. image: {
  2560. source: "./media/characters/talan/front-nsfw.svg",
  2561. bottom: 29 / 3734
  2562. }
  2563. },
  2564. sideNsfw: {
  2565. height: math.unit(4, "meter"),
  2566. weight: math.unit(150, "kg"),
  2567. name: "Side (NSFW)",
  2568. image: {
  2569. source: "./media/characters/talan/side-nsfw.svg",
  2570. bottom: 29 / 3734
  2571. }
  2572. },
  2573. back: {
  2574. height: math.unit(4, "meter"),
  2575. weight: math.unit(150, "kg"),
  2576. name: "Back",
  2577. image: {
  2578. source: "./media/characters/talan/back.svg"
  2579. }
  2580. },
  2581. dickBottom: {
  2582. height: math.unit(0.621, "meter"),
  2583. name: "Dick (Bottom)",
  2584. image: {
  2585. source: "./media/characters/talan/dick-bottom.svg"
  2586. }
  2587. },
  2588. dickTop: {
  2589. height: math.unit(0.621, "meter"),
  2590. name: "Dick (Top)",
  2591. image: {
  2592. source: "./media/characters/talan/dick-top.svg"
  2593. }
  2594. },
  2595. dickSide: {
  2596. height: math.unit(0.305, "meter"),
  2597. name: "Dick (Side)",
  2598. image: {
  2599. source: "./media/characters/talan/dick-side.svg"
  2600. }
  2601. },
  2602. dickFront: {
  2603. height: math.unit(0.305, "meter"),
  2604. name: "Dick (Front)",
  2605. image: {
  2606. source: "./media/characters/talan/dick-front.svg"
  2607. }
  2608. },
  2609. },
  2610. [
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(4, "meters")
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(100, "meters")
  2618. },
  2619. {
  2620. name: "Megamacro",
  2621. height: math.unit(2, "miles"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Gigamacro",
  2626. height: math.unit(5000, "miles")
  2627. },
  2628. {
  2629. name: "Teramacro",
  2630. height: math.unit(100, "parsecs")
  2631. }
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2636. {
  2637. front: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(90, "kg"),
  2640. name: "Front",
  2641. image: {
  2642. source: "./media/characters/gael'rathus/front.svg"
  2643. }
  2644. },
  2645. frontAlt: {
  2646. height: math.unit(2, "meter"),
  2647. weight: math.unit(90, "kg"),
  2648. name: "Front (alt)",
  2649. image: {
  2650. source: "./media/characters/gael'rathus/front-alt.svg"
  2651. }
  2652. },
  2653. frontAlt2: {
  2654. height: math.unit(2, "meter"),
  2655. weight: math.unit(90, "kg"),
  2656. name: "Front (alt 2)",
  2657. image: {
  2658. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2659. }
  2660. }
  2661. },
  2662. [
  2663. {
  2664. name: "Normal",
  2665. height: math.unit(9, "feet"),
  2666. default: true
  2667. },
  2668. {
  2669. name: "Large",
  2670. height: math.unit(25, "feet")
  2671. },
  2672. {
  2673. name: "Macro",
  2674. height: math.unit(0.25, "miles")
  2675. },
  2676. {
  2677. name: "Megamacro",
  2678. height: math.unit(10, "miles")
  2679. }
  2680. ]
  2681. ))
  2682. characterMakers.push(() => makeCharacter(
  2683. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2684. {
  2685. side: {
  2686. height: math.unit(2, "meter"),
  2687. weight: math.unit(140, "kg"),
  2688. name: "Side",
  2689. image: {
  2690. source: "./media/characters/sosha/side.svg",
  2691. bottom: 0.042
  2692. }
  2693. },
  2694. },
  2695. [
  2696. {
  2697. name: "Normal",
  2698. height: math.unit(12, "feet"),
  2699. default: true
  2700. }
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2705. {
  2706. side: {
  2707. height: math.unit(5 + 5 / 12, "feet"),
  2708. weight: math.unit(170, "kg"),
  2709. name: "Side",
  2710. image: {
  2711. source: "./media/characters/runnola/side.svg",
  2712. extra: 741 / 448,
  2713. bottom: 0.05
  2714. }
  2715. },
  2716. },
  2717. [
  2718. {
  2719. name: "Small",
  2720. height: math.unit(3, "feet")
  2721. },
  2722. {
  2723. name: "Normal",
  2724. height: math.unit(5 + 5 / 12, "feet"),
  2725. default: true
  2726. },
  2727. {
  2728. name: "Big",
  2729. height: math.unit(10, "feet")
  2730. },
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2735. {
  2736. front: {
  2737. height: math.unit(2, "meter"),
  2738. weight: math.unit(50, "kg"),
  2739. name: "Front",
  2740. image: {
  2741. source: "./media/characters/kurribird/front.svg",
  2742. bottom: 0.015
  2743. }
  2744. },
  2745. frontAlt: {
  2746. height: math.unit(1.5, "meter"),
  2747. weight: math.unit(50, "kg"),
  2748. name: "Front (Alt)",
  2749. image: {
  2750. source: "./media/characters/kurribird/front-alt.svg",
  2751. extra: 1.45
  2752. }
  2753. },
  2754. },
  2755. [
  2756. {
  2757. name: "Normal",
  2758. height: math.unit(7, "feet")
  2759. },
  2760. {
  2761. name: "Big",
  2762. height: math.unit(12, "feet"),
  2763. default: true
  2764. },
  2765. {
  2766. name: "Macro",
  2767. height: math.unit(1500, "feet")
  2768. },
  2769. {
  2770. name: "Megamacro",
  2771. height: math.unit(2, "miles")
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(80, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/elbial/front.svg",
  2784. extra: 1643 / 1556,
  2785. bottom: 60.2 / 1696
  2786. }
  2787. },
  2788. side: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(80, "kg"),
  2791. name: "Side",
  2792. image: {
  2793. source: "./media/characters/elbial/side.svg",
  2794. extra: 1630 / 1565,
  2795. bottom: 71.5 / 1697
  2796. }
  2797. },
  2798. back: {
  2799. height: math.unit(2, "meter"),
  2800. weight: math.unit(80, "kg"),
  2801. name: "Back",
  2802. image: {
  2803. source: "./media/characters/elbial/back.svg",
  2804. extra: 1668 / 1595,
  2805. bottom: 5.6 / 1672
  2806. }
  2807. },
  2808. frontDressed: {
  2809. height: math.unit(2, "meter"),
  2810. weight: math.unit(80, "kg"),
  2811. name: "Front (Dressed)",
  2812. image: {
  2813. source: "./media/characters/elbial/front-dressed.svg",
  2814. extra: 1653 / 1584,
  2815. bottom: 57 / 1708
  2816. }
  2817. },
  2818. genitals: {
  2819. height: math.unit(2 / 3.367, "meter"),
  2820. name: "Genitals",
  2821. image: {
  2822. source: "./media/characters/elbial/genitals.svg"
  2823. }
  2824. },
  2825. },
  2826. [
  2827. {
  2828. name: "Large",
  2829. height: math.unit(100, "feet")
  2830. },
  2831. {
  2832. name: "Macro",
  2833. height: math.unit(500, "feet"),
  2834. default: true
  2835. },
  2836. {
  2837. name: "Megamacro",
  2838. height: math.unit(10, "miles")
  2839. },
  2840. {
  2841. name: "Gigamacro",
  2842. height: math.unit(25000, "miles")
  2843. },
  2844. {
  2845. name: "Full-Size",
  2846. height: math.unit(8000000, "gigaparsecs")
  2847. }
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(2, "meter"),
  2855. weight: math.unit(60, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/noah/front.svg"
  2859. }
  2860. },
  2861. talons: {
  2862. height: math.unit(0.315, "meter"),
  2863. name: "Talons",
  2864. image: {
  2865. source: "./media/characters/noah/talons.svg"
  2866. }
  2867. }
  2868. },
  2869. [
  2870. {
  2871. name: "Large",
  2872. height: math.unit(50, "feet")
  2873. },
  2874. {
  2875. name: "Macro",
  2876. height: math.unit(750, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Megamacro",
  2881. height: math.unit(50, "miles")
  2882. },
  2883. {
  2884. name: "Gigamacro",
  2885. height: math.unit(100000, "miles")
  2886. },
  2887. {
  2888. name: "Full-Size",
  2889. height: math.unit(3000000000, "miles")
  2890. }
  2891. ]
  2892. ))
  2893. characterMakers.push(() => makeCharacter(
  2894. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2895. {
  2896. front: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(80, "kg"),
  2899. name: "Front",
  2900. image: {
  2901. source: "./media/characters/natalya/front.svg"
  2902. }
  2903. },
  2904. back: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Back",
  2908. image: {
  2909. source: "./media/characters/natalya/back.svg"
  2910. }
  2911. }
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(150, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(5, "miles")
  2922. },
  2923. {
  2924. name: "Full-Size",
  2925. height: math.unit(600, "kiloparsecs")
  2926. }
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2931. {
  2932. front: {
  2933. height: math.unit(2, "meter"),
  2934. weight: math.unit(50, "kg"),
  2935. name: "Front",
  2936. image: {
  2937. source: "./media/characters/erestrebah/front.svg",
  2938. extra: 208 / 193,
  2939. bottom: 0.055
  2940. }
  2941. },
  2942. back: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(50, "kg"),
  2945. name: "Back",
  2946. image: {
  2947. source: "./media/characters/erestrebah/back.svg",
  2948. extra: 1.3
  2949. }
  2950. }
  2951. },
  2952. [
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(10, "feet")
  2956. },
  2957. {
  2958. name: "Large",
  2959. height: math.unit(50, "feet"),
  2960. default: true
  2961. },
  2962. {
  2963. name: "Macro",
  2964. height: math.unit(300, "feet")
  2965. },
  2966. {
  2967. name: "Macro+",
  2968. height: math.unit(750, "feet")
  2969. },
  2970. {
  2971. name: "Megamacro",
  2972. height: math.unit(3, "miles")
  2973. }
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(80, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/jennifer/front.svg",
  2985. bottom: 0.11,
  2986. extra: 1.16
  2987. }
  2988. },
  2989. frontAlt: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(80, "kg"),
  2992. name: "Front (Alt)",
  2993. image: {
  2994. source: "./media/characters/jennifer/front-alt.svg"
  2995. }
  2996. }
  2997. },
  2998. [
  2999. {
  3000. name: "Canon Height",
  3001. height: math.unit(120, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Macro+",
  3006. height: math.unit(300, "feet")
  3007. },
  3008. {
  3009. name: "Megamacro",
  3010. height: math.unit(20000, "feet")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(50, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/kalista/front.svg",
  3023. extra: 1947 / 1700,
  3024. bottom: 76.6 / 1412.98
  3025. }
  3026. },
  3027. back: {
  3028. height: math.unit(2, "meter"),
  3029. weight: math.unit(50, "kg"),
  3030. name: "Back",
  3031. image: {
  3032. source: "./media/characters/kalista/back.svg",
  3033. extra: 1366 / 1156,
  3034. bottom: 33.9 / 1362.78
  3035. }
  3036. }
  3037. },
  3038. [
  3039. {
  3040. name: "Uncomfortably Small",
  3041. height: math.unit(10, "feet")
  3042. },
  3043. {
  3044. name: "Small",
  3045. height: math.unit(30, "feet")
  3046. },
  3047. {
  3048. name: "Macro",
  3049. height: math.unit(100, "feet"),
  3050. default: true
  3051. },
  3052. {
  3053. name: "Macro+",
  3054. height: math.unit(2000, "feet")
  3055. },
  3056. {
  3057. name: "True Form",
  3058. height: math.unit(8924, "miles")
  3059. }
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(120, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/ggv/front.svg"
  3071. }
  3072. },
  3073. side: {
  3074. height: math.unit(2, "meter"),
  3075. weight: math.unit(120, "kg"),
  3076. name: "Side",
  3077. image: {
  3078. source: "./media/characters/ggv/side.svg"
  3079. }
  3080. }
  3081. },
  3082. [
  3083. {
  3084. name: "Extremely Puny",
  3085. height: math.unit(9 + 5 / 12, "feet")
  3086. },
  3087. {
  3088. name: "Horribly Small",
  3089. height: math.unit(47.7, "miles"),
  3090. default: true
  3091. },
  3092. {
  3093. name: "Reasonably Sized",
  3094. height: math.unit(25000, "parsecs")
  3095. },
  3096. {
  3097. name: "Slightly Uncompressed",
  3098. height: math.unit(7.77e31, "parsecs")
  3099. },
  3100. {
  3101. name: "Omniversal",
  3102. height: math.unit(1e300, "meters")
  3103. },
  3104. ]
  3105. ))
  3106. characterMakers.push(() => makeCharacter(
  3107. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3108. {
  3109. front: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(75, "lb"),
  3112. name: "Front",
  3113. image: {
  3114. source: "./media/characters/napalm/front.svg"
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(2, "meter"),
  3119. weight: math.unit(75, "lb"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/napalm/back.svg"
  3123. }
  3124. }
  3125. },
  3126. [
  3127. {
  3128. name: "Standard",
  3129. height: math.unit(55, "feet"),
  3130. default: true
  3131. }
  3132. ]
  3133. ))
  3134. characterMakers.push(() => makeCharacter(
  3135. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3136. {
  3137. front: {
  3138. height: math.unit(7 + 5 / 6, "feet"),
  3139. weight: math.unit(325, "lb"),
  3140. name: "Front",
  3141. image: {
  3142. source: "./media/characters/asana/front.svg",
  3143. extra: 1133 / 1060,
  3144. bottom: 15.2 / 1148.6
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(7 + 5 / 6, "feet"),
  3149. weight: math.unit(325, "lb"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/asana/back.svg",
  3153. extra: 1114 / 1043,
  3154. bottom: 5 / 1120
  3155. }
  3156. },
  3157. dressedDark: {
  3158. height: math.unit(7 + 5 / 6, "feet"),
  3159. weight: math.unit(325, "lb"),
  3160. name: "Dressed (Dark)",
  3161. image: {
  3162. source: "./media/characters/asana/dressed-dark.svg",
  3163. extra: 1133 / 1060,
  3164. bottom: 15.2 / 1148.6
  3165. }
  3166. },
  3167. dressedLight: {
  3168. height: math.unit(7 + 5 / 6, "feet"),
  3169. weight: math.unit(325, "lb"),
  3170. name: "Dressed (Light)",
  3171. image: {
  3172. source: "./media/characters/asana/dressed-light.svg",
  3173. extra: 1133 / 1060,
  3174. bottom: 15.2 / 1148.6
  3175. }
  3176. },
  3177. },
  3178. [
  3179. {
  3180. name: "Standard",
  3181. height: math.unit(7 + 5 / 6, "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Large",
  3186. height: math.unit(10, "meters")
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(2500, "meters")
  3191. },
  3192. {
  3193. name: "Megamacro",
  3194. height: math.unit(5e6, "meters")
  3195. },
  3196. {
  3197. name: "Examacro",
  3198. height: math.unit(5e12, "lightyears")
  3199. },
  3200. {
  3201. name: "Max Size",
  3202. height: math.unit(1e31, "lightyears")
  3203. }
  3204. ]
  3205. ))
  3206. characterMakers.push(() => makeCharacter(
  3207. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3208. {
  3209. front: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(60, "kg"),
  3212. name: "Front",
  3213. image: {
  3214. source: "./media/characters/ebony/front.svg",
  3215. bottom: 0.03,
  3216. extra: 1045 / 810 + 0.03
  3217. }
  3218. },
  3219. side: {
  3220. height: math.unit(2, "meter"),
  3221. weight: math.unit(60, "kg"),
  3222. name: "Side",
  3223. image: {
  3224. source: "./media/characters/ebony/side.svg",
  3225. bottom: 0.03,
  3226. extra: 1045 / 810 + 0.03
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(2, "meter"),
  3231. weight: math.unit(60, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/ebony/back.svg",
  3235. bottom: 0.01,
  3236. extra: 1045 / 810 + 0.01
  3237. }
  3238. },
  3239. },
  3240. [
  3241. // TODO check why I did this lol
  3242. {
  3243. name: "Standard",
  3244. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(200, "feet")
  3250. },
  3251. {
  3252. name: "Gigamacro",
  3253. height: math.unit(13000, "km")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(6, "feet"),
  3262. weight: math.unit(175, "lb"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/mountain/front.svg",
  3266. extra: 972 / 955,
  3267. bottom: 64 / 1036.6
  3268. }
  3269. },
  3270. back: {
  3271. height: math.unit(6, "feet"),
  3272. weight: math.unit(175, "lb"),
  3273. name: "Back",
  3274. image: {
  3275. source: "./media/characters/mountain/back.svg",
  3276. extra: 970 / 950,
  3277. bottom: 28.25 / 999
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Large",
  3284. height: math.unit(20, "meters")
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(300, "meters")
  3289. },
  3290. {
  3291. name: "Gigamacro",
  3292. height: math.unit(10000, "km"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Examacro",
  3297. height: math.unit(10e9, "lightyears")
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(8, "feet"),
  3306. weight: math.unit(500, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/rick/front.svg"
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(8, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(5, "km")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(8, "feet"),
  3330. weight: math.unit(120, "lb"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/ona/front.svg"
  3334. }
  3335. },
  3336. frontAlt: {
  3337. height: math.unit(8, "feet"),
  3338. weight: math.unit(120, "lb"),
  3339. name: "Front (Alt)",
  3340. image: {
  3341. source: "./media/characters/ona/front-alt.svg"
  3342. }
  3343. },
  3344. back: {
  3345. height: math.unit(8, "feet"),
  3346. weight: math.unit(120, "lb"),
  3347. name: "Back",
  3348. image: {
  3349. source: "./media/characters/ona/back.svg"
  3350. }
  3351. },
  3352. foot: {
  3353. height: math.unit(1.1, "feet"),
  3354. name: "Foot",
  3355. image: {
  3356. source: "./media/characters/ona/foot.svg"
  3357. }
  3358. }
  3359. },
  3360. [
  3361. {
  3362. name: "Megamacro",
  3363. height: math.unit(70, "km"),
  3364. default: true
  3365. },
  3366. {
  3367. name: "Gigamacro",
  3368. height: math.unit(681818, "miles")
  3369. },
  3370. {
  3371. name: "Examacro",
  3372. height: math.unit(3800000, "lightyears")
  3373. },
  3374. ]
  3375. ))
  3376. characterMakers.push(() => makeCharacter(
  3377. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3378. {
  3379. front: {
  3380. height: math.unit(12, "feet"),
  3381. weight: math.unit(3000, "lb"),
  3382. name: "Front",
  3383. image: {
  3384. source: "./media/characters/mech/front.svg",
  3385. bottom: 0.025,
  3386. }
  3387. },
  3388. back: {
  3389. height: math.unit(12, "feet"),
  3390. weight: math.unit(3000, "lb"),
  3391. name: "Back",
  3392. image: {
  3393. source: "./media/characters/mech/back.svg",
  3394. bottom: 0.03,
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(12, "feet")
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(300, "feet"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro+",
  3410. height: math.unit(1500, "feet")
  3411. },
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(1.3, "meter"),
  3419. weight: math.unit(30, "kg"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/gregory/front.svg",
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(1.3, "meter"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(20, "meter")
  3435. }
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3440. {
  3441. front: {
  3442. height: math.unit(2.8, "meter"),
  3443. weight: math.unit(200, "kg"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/elory/front.svg",
  3447. }
  3448. }
  3449. },
  3450. [
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(2.8, "meter"),
  3454. default: true
  3455. },
  3456. {
  3457. name: "Macro",
  3458. height: math.unit(38, "meter")
  3459. }
  3460. ]
  3461. ))
  3462. characterMakers.push(() => makeCharacter(
  3463. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3464. {
  3465. front: {
  3466. height: math.unit(470, "feet"),
  3467. weight: math.unit(924, "tons"),
  3468. name: "Front",
  3469. image: {
  3470. source: "./media/characters/angelpatamon/front.svg",
  3471. }
  3472. }
  3473. },
  3474. [
  3475. {
  3476. name: "Normal",
  3477. height: math.unit(470, "feet"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Deity Size I",
  3482. height: math.unit(28651.2, "km")
  3483. },
  3484. {
  3485. name: "Deity Size II",
  3486. height: math.unit(171907.2, "km")
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(7.2, "meter"),
  3495. weight: math.unit(8.2, "tons"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/cryae/side.svg",
  3499. extra: 3500 / 1500
  3500. }
  3501. }
  3502. },
  3503. [
  3504. {
  3505. name: "Normal",
  3506. height: math.unit(7.2, "meter"),
  3507. default: true
  3508. }
  3509. ]
  3510. ))
  3511. characterMakers.push(() => makeCharacter(
  3512. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3513. {
  3514. front: {
  3515. height: math.unit(6, "feet"),
  3516. weight: math.unit(175, "lb"),
  3517. name: "Front",
  3518. image: {
  3519. source: "./media/characters/xera/front.svg",
  3520. extra: 2377 / 1972,
  3521. bottom: 75.5 / 2452
  3522. }
  3523. },
  3524. side: {
  3525. height: math.unit(6, "feet"),
  3526. weight: math.unit(175, "lb"),
  3527. name: "Side",
  3528. image: {
  3529. source: "./media/characters/xera/side.svg",
  3530. extra: 2345 / 2019,
  3531. bottom: 39.7 / 2384
  3532. }
  3533. },
  3534. back: {
  3535. height: math.unit(6, "feet"),
  3536. weight: math.unit(175, "lb"),
  3537. name: "Back",
  3538. image: {
  3539. source: "./media/characters/xera/back.svg",
  3540. extra: 2095 / 1984,
  3541. bottom: 67 / 2166
  3542. }
  3543. },
  3544. },
  3545. [
  3546. {
  3547. name: "Small",
  3548. height: math.unit(10, "feet")
  3549. },
  3550. {
  3551. name: "Macro",
  3552. height: math.unit(500, "meters"),
  3553. default: true
  3554. },
  3555. {
  3556. name: "Macro+",
  3557. height: math.unit(10, "km")
  3558. },
  3559. {
  3560. name: "Gigamacro",
  3561. height: math.unit(25000, "km")
  3562. },
  3563. {
  3564. name: "Teramacro",
  3565. height: math.unit(3e6, "km")
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(6, "feet"),
  3574. weight: math.unit(175, "lb"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/nebula/front.svg",
  3578. extra: 2566 / 2362,
  3579. bottom: 81 / 2644
  3580. }
  3581. }
  3582. },
  3583. [
  3584. {
  3585. name: "Small",
  3586. height: math.unit(4.5, "meters")
  3587. },
  3588. {
  3589. name: "Macro",
  3590. height: math.unit(1500, "meters"),
  3591. default: true
  3592. },
  3593. {
  3594. name: "Megamacro",
  3595. height: math.unit(150, "km")
  3596. },
  3597. {
  3598. name: "Gigamacro",
  3599. height: math.unit(27000, "km")
  3600. }
  3601. ]
  3602. ))
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3605. {
  3606. front: {
  3607. height: math.unit(6, "feet"),
  3608. weight: math.unit(225, "lb"),
  3609. name: "Front",
  3610. image: {
  3611. source: "./media/characters/abysgar/front.svg"
  3612. }
  3613. }
  3614. },
  3615. [
  3616. {
  3617. name: "Small",
  3618. height: math.unit(4.5, "meters")
  3619. },
  3620. {
  3621. name: "Macro",
  3622. height: math.unit(1250, "meters"),
  3623. default: true
  3624. },
  3625. {
  3626. name: "Megamacro",
  3627. height: math.unit(125, "km")
  3628. },
  3629. {
  3630. name: "Gigamacro",
  3631. height: math.unit(26000, "km")
  3632. }
  3633. ]
  3634. ))
  3635. characterMakers.push(() => makeCharacter(
  3636. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3637. {
  3638. front: {
  3639. height: math.unit(6, "feet"),
  3640. weight: math.unit(180, "lb"),
  3641. name: "Front",
  3642. image: {
  3643. source: "./media/characters/yakuz/front.svg"
  3644. }
  3645. }
  3646. },
  3647. [
  3648. {
  3649. name: "Small",
  3650. height: math.unit(5, "meters")
  3651. },
  3652. {
  3653. name: "Macro",
  3654. height: math.unit(1500, "meters"),
  3655. default: true
  3656. },
  3657. {
  3658. name: "Megamacro",
  3659. height: math.unit(200, "km")
  3660. },
  3661. {
  3662. name: "Gigamacro",
  3663. height: math.unit(100000, "km")
  3664. }
  3665. ]
  3666. ))
  3667. characterMakers.push(() => makeCharacter(
  3668. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3669. {
  3670. front: {
  3671. height: math.unit(6, "feet"),
  3672. weight: math.unit(175, "lb"),
  3673. name: "Front",
  3674. image: {
  3675. source: "./media/characters/mirova/front.svg",
  3676. extra: 3334 / 3071,
  3677. bottom: 42 / 3375.6
  3678. }
  3679. }
  3680. },
  3681. [
  3682. {
  3683. name: "Small",
  3684. height: math.unit(5, "meters")
  3685. },
  3686. {
  3687. name: "Macro",
  3688. height: math.unit(900, "meters"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Megamacro",
  3693. height: math.unit(135, "km")
  3694. },
  3695. {
  3696. name: "Gigamacro",
  3697. height: math.unit(20000, "km")
  3698. }
  3699. ]
  3700. ))
  3701. characterMakers.push(() => makeCharacter(
  3702. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3703. {
  3704. side: {
  3705. height: math.unit(28.35, "feet"),
  3706. weight: math.unit(99.75, "tons"),
  3707. name: "Side",
  3708. image: {
  3709. source: "./media/characters/asana-mech/side.svg",
  3710. extra: 923 / 699,
  3711. bottom: 50 / 975
  3712. }
  3713. },
  3714. chaingun: {
  3715. height: math.unit(7, "feet"),
  3716. weight: math.unit(2400, "lb"),
  3717. name: "Chaingun",
  3718. image: {
  3719. source: "./media/characters/asana-mech/chaingun.svg"
  3720. }
  3721. },
  3722. laser: {
  3723. height: math.unit(7.12, "feet"),
  3724. weight: math.unit(2000, "lb"),
  3725. name: "Laser",
  3726. image: {
  3727. source: "./media/characters/asana-mech/laser.svg"
  3728. }
  3729. },
  3730. },
  3731. [
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(28.35, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(2500, "feet")
  3740. },
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(25, "miles")
  3744. },
  3745. {
  3746. name: "Examacro",
  3747. height: math.unit(6e8, "lightyears")
  3748. },
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(5, "meters"),
  3756. weight: math.unit(1000, "kg"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/asche/front.svg",
  3760. extra: 1258 / 1190,
  3761. bottom: 47 / 1305
  3762. }
  3763. },
  3764. frontUnderwear: {
  3765. height: math.unit(5, "meters"),
  3766. weight: math.unit(1000, "kg"),
  3767. name: "Front (Underwear)",
  3768. image: {
  3769. source: "./media/characters/asche/front-underwear.svg",
  3770. extra: 1258 / 1190,
  3771. bottom: 47 / 1305
  3772. }
  3773. },
  3774. frontDressed: {
  3775. height: math.unit(5, "meters"),
  3776. weight: math.unit(1000, "kg"),
  3777. name: "Front (Dressed)",
  3778. image: {
  3779. source: "./media/characters/asche/front-dressed.svg",
  3780. extra: 1258 / 1190,
  3781. bottom: 47 / 1305
  3782. }
  3783. },
  3784. frontArmor: {
  3785. height: math.unit(5, "meters"),
  3786. weight: math.unit(1000, "kg"),
  3787. name: "Front (Armored)",
  3788. image: {
  3789. source: "./media/characters/asche/front-armored.svg",
  3790. extra: 1374 / 1308,
  3791. bottom: 23 / 1397
  3792. }
  3793. },
  3794. mp724: {
  3795. height: math.unit(0.96, "meters"),
  3796. weight: math.unit(38, "kg"),
  3797. name: "H&K MP724",
  3798. image: {
  3799. source: "./media/characters/asche/h&k-mp724.svg"
  3800. }
  3801. },
  3802. side: {
  3803. height: math.unit(5, "meters"),
  3804. weight: math.unit(1000, "kg"),
  3805. name: "Side",
  3806. image: {
  3807. source: "./media/characters/asche/side.svg",
  3808. extra: 1717 / 1609,
  3809. bottom: 0.005
  3810. }
  3811. },
  3812. back: {
  3813. height: math.unit(5, "meters"),
  3814. weight: math.unit(1000, "kg"),
  3815. name: "Back",
  3816. image: {
  3817. source: "./media/characters/asche/back.svg",
  3818. extra: 1570 / 1501
  3819. }
  3820. },
  3821. },
  3822. [
  3823. {
  3824. name: "DEFCON 5",
  3825. height: math.unit(5, "meters")
  3826. },
  3827. {
  3828. name: "DEFCON 4",
  3829. height: math.unit(500, "meters"),
  3830. default: true
  3831. },
  3832. {
  3833. name: "DEFCON 3",
  3834. height: math.unit(5, "km")
  3835. },
  3836. {
  3837. name: "DEFCON 2",
  3838. height: math.unit(500, "km")
  3839. },
  3840. {
  3841. name: "DEFCON 1",
  3842. height: math.unit(500000, "km")
  3843. },
  3844. {
  3845. name: "DEFCON 0",
  3846. height: math.unit(3, "gigaparsecs")
  3847. },
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3852. {
  3853. front: {
  3854. height: math.unit(2, "meters"),
  3855. weight: math.unit(76, "kg"),
  3856. name: "Front",
  3857. image: {
  3858. source: "./media/characters/gale/front.svg"
  3859. }
  3860. },
  3861. frontAlt1: {
  3862. height: math.unit(2, "meters"),
  3863. weight: math.unit(76, "kg"),
  3864. name: "Front (Alt 1)",
  3865. image: {
  3866. source: "./media/characters/gale/front-alt-1.svg"
  3867. }
  3868. },
  3869. frontAlt2: {
  3870. height: math.unit(2, "meters"),
  3871. weight: math.unit(76, "kg"),
  3872. name: "Front (Alt 2)",
  3873. image: {
  3874. source: "./media/characters/gale/front-alt-2.svg"
  3875. }
  3876. },
  3877. },
  3878. [
  3879. {
  3880. name: "Normal",
  3881. height: math.unit(7, "feet")
  3882. },
  3883. {
  3884. name: "Macro",
  3885. height: math.unit(150, "feet"),
  3886. default: true
  3887. },
  3888. {
  3889. name: "Macro+",
  3890. height: math.unit(300, "feet")
  3891. },
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(2, "meters"),
  3899. weight: math.unit(76, "kg"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/draylen/front.svg"
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Macro",
  3909. height: math.unit(150, "feet"),
  3910. default: true
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(7 + 9 / 12, "feet"),
  3919. weight: math.unit(379, "lbs"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/chez/front.svg"
  3923. }
  3924. },
  3925. side: {
  3926. height: math.unit(7 + 9 / 12, "feet"),
  3927. weight: math.unit(379, "lbs"),
  3928. name: "Side",
  3929. image: {
  3930. source: "./media/characters/chez/side.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Normal",
  3937. height: math.unit(7 + 9 / 12, "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "God King",
  3942. height: math.unit(9750000, "meters")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(275, "lbs"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/kaylum/front.svg",
  3955. bottom: 0.01,
  3956. extra: 1166 / 1031
  3957. }
  3958. },
  3959. frontWingless: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(275, "lbs"),
  3962. name: "Front (Wingless)",
  3963. image: {
  3964. source: "./media/characters/kaylum/front-wingless.svg",
  3965. bottom: 0.01,
  3966. extra: 1117 / 1031
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Normal",
  3973. height: math.unit(3.05, "meters")
  3974. },
  3975. {
  3976. name: "Master",
  3977. height: math.unit(5.5, "meters")
  3978. },
  3979. {
  3980. name: "Rampage",
  3981. height: math.unit(19, "meters")
  3982. },
  3983. {
  3984. name: "Macro Lite",
  3985. height: math.unit(37, "meters")
  3986. },
  3987. {
  3988. name: "Hyper Predator",
  3989. height: math.unit(61, "meters")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(138, "meters"),
  3994. default: true
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(150, "lbs"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/geta/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Micro",
  4013. height: math.unit(3, "inches"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Normal",
  4018. height: math.unit(5 + 5 / 12, "feet")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(300, "lbs"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/tyrnn/front.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Main Height",
  4037. height: math.unit(355, "feet"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Fave. Height",
  4042. height: math.unit(2400, "feet")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(300, "lbs"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/appledectomy/front.svg"
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(2500, "feet")
  4062. },
  4063. {
  4064. name: "Megamacro",
  4065. height: math.unit(50, "miles"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Gigamacro",
  4070. height: math.unit(5000, "miles")
  4071. },
  4072. {
  4073. name: "Teramacro",
  4074. height: math.unit(250000, "miles")
  4075. },
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4080. {
  4081. front: {
  4082. height: math.unit(6, "feet"),
  4083. weight: math.unit(200, "lbs"),
  4084. name: "Front",
  4085. image: {
  4086. source: "./media/characters/vulpes/front.svg",
  4087. extra: 573 / 543,
  4088. bottom: 0.033
  4089. }
  4090. },
  4091. side: {
  4092. height: math.unit(6, "feet"),
  4093. weight: math.unit(200, "lbs"),
  4094. name: "Side",
  4095. image: {
  4096. source: "./media/characters/vulpes/side.svg",
  4097. extra: 577 / 549,
  4098. bottom: 11 / 588
  4099. }
  4100. },
  4101. back: {
  4102. height: math.unit(6, "feet"),
  4103. weight: math.unit(200, "lbs"),
  4104. name: "Back",
  4105. image: {
  4106. source: "./media/characters/vulpes/back.svg",
  4107. extra: 573 / 549,
  4108. bottom: 20 / 593
  4109. }
  4110. },
  4111. feet: {
  4112. height: math.unit(1.276, "feet"),
  4113. name: "Feet",
  4114. image: {
  4115. source: "./media/characters/vulpes/feet.svg"
  4116. }
  4117. },
  4118. maw: {
  4119. height: math.unit(1.18, "feet"),
  4120. name: "Maw",
  4121. image: {
  4122. source: "./media/characters/vulpes/maw.svg"
  4123. }
  4124. },
  4125. },
  4126. [
  4127. {
  4128. name: "Micro",
  4129. height: math.unit(2, "inches")
  4130. },
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(6.3, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(850, "feet")
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(7500, "feet"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Gigamacro",
  4146. height: math.unit(570000, "miles")
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4152. {
  4153. front: {
  4154. height: math.unit(6, "feet"),
  4155. weight: math.unit(210, "lbs"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/rain-fallen/front.svg"
  4159. }
  4160. },
  4161. side: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(210, "lbs"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/rain-fallen/side.svg"
  4167. }
  4168. },
  4169. back: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(210, "lbs"),
  4172. name: "Back",
  4173. image: {
  4174. source: "./media/characters/rain-fallen/back.svg"
  4175. }
  4176. },
  4177. feral: {
  4178. height: math.unit(9, "feet"),
  4179. weight: math.unit(700, "lbs"),
  4180. name: "Feral",
  4181. image: {
  4182. source: "./media/characters/rain-fallen/feral.svg"
  4183. }
  4184. },
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(5, "meter")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(150, "meter"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Megamacro",
  4198. height: math.unit(278e6, "meter")
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(2e9, "meter")
  4203. },
  4204. {
  4205. name: "Teramacro",
  4206. height: math.unit(8e12, "meter")
  4207. },
  4208. {
  4209. name: "Devourer",
  4210. height: math.unit(14, "zettameters")
  4211. },
  4212. {
  4213. name: "Scarlet King",
  4214. height: math.unit(18, "yottameters")
  4215. },
  4216. {
  4217. name: "Void",
  4218. height: math.unit(6.66e66, "yottameters")
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4224. {
  4225. standing: {
  4226. height: math.unit(6, "feet"),
  4227. weight: math.unit(180, "lbs"),
  4228. name: "Standing",
  4229. image: {
  4230. source: "./media/characters/zaakira/standing.svg"
  4231. }
  4232. },
  4233. laying: {
  4234. height: math.unit(3, "feet"),
  4235. weight: math.unit(180, "lbs"),
  4236. name: "Laying",
  4237. image: {
  4238. source: "./media/characters/zaakira/laying.svg"
  4239. }
  4240. },
  4241. },
  4242. [
  4243. {
  4244. name: "Normal",
  4245. height: math.unit(12, "feet")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(279, "feet"),
  4250. default: true
  4251. }
  4252. ]
  4253. ))
  4254. characterMakers.push(() => makeCharacter(
  4255. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4256. {
  4257. femSfw: {
  4258. height: math.unit(8, "feet"),
  4259. weight: math.unit(350, "lb"),
  4260. name: "Fem",
  4261. image: {
  4262. source: "./media/characters/sigvald/fem-sfw.svg",
  4263. extra: 182 / 164,
  4264. bottom: 8.7 / 190.5
  4265. }
  4266. },
  4267. femNsfw: {
  4268. height: math.unit(8, "feet"),
  4269. weight: math.unit(350, "lb"),
  4270. name: "Fem (NSFW)",
  4271. image: {
  4272. source: "./media/characters/sigvald/fem-nsfw.svg",
  4273. extra: 182 / 164,
  4274. bottom: 8.7 / 190.5
  4275. }
  4276. },
  4277. maleNsfw: {
  4278. height: math.unit(8, "feet"),
  4279. weight: math.unit(350, "lb"),
  4280. name: "Male (NSFW)",
  4281. image: {
  4282. source: "./media/characters/sigvald/male-nsfw.svg",
  4283. extra: 182 / 164,
  4284. bottom: 8.7 / 190.5
  4285. }
  4286. },
  4287. hermNsfw: {
  4288. height: math.unit(8, "feet"),
  4289. weight: math.unit(350, "lb"),
  4290. name: "Herm (NSFW)",
  4291. image: {
  4292. source: "./media/characters/sigvald/herm-nsfw.svg",
  4293. extra: 182 / 164,
  4294. bottom: 8.7 / 190.5
  4295. }
  4296. },
  4297. dick: {
  4298. height: math.unit(2.36, "feet"),
  4299. name: "Dick",
  4300. image: {
  4301. source: "./media/characters/sigvald/dick.svg"
  4302. }
  4303. },
  4304. eye: {
  4305. height: math.unit(0.31, "feet"),
  4306. name: "Eye",
  4307. image: {
  4308. source: "./media/characters/sigvald/eye.svg"
  4309. }
  4310. },
  4311. mouth: {
  4312. height: math.unit(0.92, "feet"),
  4313. name: "Mouth",
  4314. image: {
  4315. source: "./media/characters/sigvald/mouth.svg"
  4316. }
  4317. },
  4318. paws: {
  4319. height: math.unit(2.2, "feet"),
  4320. name: "Paws",
  4321. image: {
  4322. source: "./media/characters/sigvald/paws.svg"
  4323. }
  4324. }
  4325. },
  4326. [
  4327. {
  4328. name: "Normal",
  4329. height: math.unit(8, "feet")
  4330. },
  4331. {
  4332. name: "Large",
  4333. height: math.unit(12, "feet")
  4334. },
  4335. {
  4336. name: "Larger",
  4337. height: math.unit(20, "feet")
  4338. },
  4339. {
  4340. name: "Macro",
  4341. height: math.unit(150, "feet")
  4342. },
  4343. {
  4344. name: "Macro+",
  4345. height: math.unit(200, "feet"),
  4346. default: true
  4347. },
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4352. {
  4353. side: {
  4354. height: math.unit(12, "feet"),
  4355. weight: math.unit(2000, "kg"),
  4356. name: "Side",
  4357. image: {
  4358. source: "./media/characters/scott/side.svg",
  4359. extra: 754 / 724,
  4360. bottom: 0.069
  4361. }
  4362. },
  4363. upright: {
  4364. height: math.unit(12, "feet"),
  4365. weight: math.unit(2000, "kg"),
  4366. name: "Upright",
  4367. image: {
  4368. source: "./media/characters/scott/upright.svg",
  4369. extra: 3881 / 3722,
  4370. bottom: 0.05
  4371. }
  4372. },
  4373. },
  4374. [
  4375. {
  4376. name: "Normal",
  4377. height: math.unit(12, "feet"),
  4378. default: true
  4379. },
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4384. {
  4385. side: {
  4386. height: math.unit(8, "meters"),
  4387. weight: math.unit(84755, "lbs"),
  4388. name: "Side",
  4389. image: {
  4390. source: "./media/characters/tobias/side.svg",
  4391. extra: 1474 / 1096,
  4392. bottom: 38.9 / 1513.1235
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(8, "meters"),
  4400. default: true
  4401. },
  4402. ]
  4403. ))
  4404. characterMakers.push(() => makeCharacter(
  4405. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4406. {
  4407. front: {
  4408. height: math.unit(5.5, "feet"),
  4409. weight: math.unit(400, "lbs"),
  4410. name: "Front",
  4411. image: {
  4412. source: "./media/characters/kieran/front.svg",
  4413. extra: 2694 / 2364,
  4414. bottom: 217 / 2908
  4415. }
  4416. },
  4417. side: {
  4418. height: math.unit(5.5, "feet"),
  4419. weight: math.unit(400, "lbs"),
  4420. name: "Side",
  4421. image: {
  4422. source: "./media/characters/kieran/side.svg",
  4423. extra: 875 / 777,
  4424. bottom: 84.6 / 959
  4425. }
  4426. },
  4427. },
  4428. [
  4429. {
  4430. name: "Normal",
  4431. height: math.unit(5.5, "feet"),
  4432. default: true
  4433. },
  4434. ]
  4435. ))
  4436. characterMakers.push(() => makeCharacter(
  4437. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4438. {
  4439. side: {
  4440. height: math.unit(2, "meters"),
  4441. weight: math.unit(70, "kg"),
  4442. name: "Side",
  4443. image: {
  4444. source: "./media/characters/sanya/side.svg",
  4445. bottom: 0.02,
  4446. extra: 1.02
  4447. }
  4448. },
  4449. },
  4450. [
  4451. {
  4452. name: "Small",
  4453. height: math.unit(2, "meters")
  4454. },
  4455. {
  4456. name: "Normal",
  4457. height: math.unit(3, "meters")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(16, "meters"),
  4462. default: true
  4463. },
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4468. {
  4469. front: {
  4470. height: math.unit(2, "meters"),
  4471. weight: math.unit(120, "kg"),
  4472. name: "Front",
  4473. image: {
  4474. source: "./media/characters/miranda/front.svg",
  4475. extra: 195 / 185,
  4476. bottom: 10.9 / 206.5
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(2, "meters"),
  4481. weight: math.unit(120, "kg"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/miranda/back.svg",
  4485. extra: 201 / 193,
  4486. bottom: 2.3 / 203.7
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(10, "feet"),
  4494. default: true
  4495. }
  4496. ]
  4497. ))
  4498. characterMakers.push(() => makeCharacter(
  4499. { name: "James", species: ["deer"], tags: ["anthro"] },
  4500. {
  4501. side: {
  4502. height: math.unit(2, "meters"),
  4503. weight: math.unit(100, "kg"),
  4504. name: "Front",
  4505. image: {
  4506. source: "./media/characters/james/front.svg",
  4507. extra: 10 / 8.5
  4508. }
  4509. },
  4510. },
  4511. [
  4512. {
  4513. name: "Normal",
  4514. height: math.unit(8.5, "feet"),
  4515. default: true
  4516. }
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4521. {
  4522. side: {
  4523. height: math.unit(9.5, "feet"),
  4524. weight: math.unit(2500, "lbs"),
  4525. name: "Side",
  4526. image: {
  4527. source: "./media/characters/heather/side.svg"
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Normal",
  4534. height: math.unit(9.5, "feet"),
  4535. default: true
  4536. }
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4541. {
  4542. side: {
  4543. height: math.unit(6.5, "feet"),
  4544. weight: math.unit(400, "lbs"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/lukas/side.svg",
  4548. extra: 7.25 / 6.5
  4549. }
  4550. },
  4551. },
  4552. [
  4553. {
  4554. name: "Normal",
  4555. height: math.unit(6.5, "feet"),
  4556. default: true
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4562. {
  4563. side: {
  4564. height: math.unit(5, "feet"),
  4565. weight: math.unit(3000, "lbs"),
  4566. name: "Side",
  4567. image: {
  4568. source: "./media/characters/louise/side.svg"
  4569. }
  4570. },
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(5, "feet"),
  4576. default: true
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4582. {
  4583. side: {
  4584. height: math.unit(6, "feet"),
  4585. weight: math.unit(150, "lbs"),
  4586. name: "Side",
  4587. image: {
  4588. source: "./media/characters/ramona/side.svg"
  4589. }
  4590. },
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(5.3, "meters"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(20, "stories")
  4601. },
  4602. {
  4603. name: "Macro+",
  4604. height: math.unit(50, "stories")
  4605. },
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4610. {
  4611. standing: {
  4612. height: math.unit(5.75, "feet"),
  4613. weight: math.unit(160, "lbs"),
  4614. name: "Standing",
  4615. image: {
  4616. source: "./media/characters/deerpuff/standing.svg",
  4617. extra: 682 / 624
  4618. }
  4619. },
  4620. sitting: {
  4621. height: math.unit(5.75 / 1.79, "feet"),
  4622. weight: math.unit(160, "lbs"),
  4623. name: "Sitting",
  4624. image: {
  4625. source: "./media/characters/deerpuff/sitting.svg",
  4626. bottom: 44 / 400,
  4627. extra: 1
  4628. }
  4629. },
  4630. taurLaying: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(400, "lbs"),
  4633. name: "Taur (Laying)",
  4634. image: {
  4635. source: "./media/characters/deerpuff/taur-laying.svg"
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Puffball",
  4642. height: math.unit(6, "inches")
  4643. },
  4644. {
  4645. name: "Normalpuff",
  4646. height: math.unit(5.75, "feet")
  4647. },
  4648. {
  4649. name: "Macropuff",
  4650. height: math.unit(1500, "feet"),
  4651. default: true
  4652. },
  4653. {
  4654. name: "Megapuff",
  4655. height: math.unit(500, "miles")
  4656. },
  4657. {
  4658. name: "Gigapuff",
  4659. height: math.unit(250000, "miles")
  4660. },
  4661. {
  4662. name: "Omegapuff",
  4663. height: math.unit(1000, "lightyears")
  4664. },
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4669. {
  4670. stomping: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(170, "lbs"),
  4673. name: "Stomping",
  4674. image: {
  4675. source: "./media/characters/vivian/stomping.svg"
  4676. }
  4677. },
  4678. sitting: {
  4679. height: math.unit(6 / 1.75, "feet"),
  4680. weight: math.unit(170, "lbs"),
  4681. name: "Sitting",
  4682. image: {
  4683. source: "./media/characters/vivian/sitting.svg",
  4684. bottom: 1 / 6.4,
  4685. extra: 1,
  4686. }
  4687. },
  4688. },
  4689. [
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(7, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Macro",
  4697. height: math.unit(10, "stories")
  4698. },
  4699. {
  4700. name: "Macro+",
  4701. height: math.unit(30, "stories")
  4702. },
  4703. {
  4704. name: "Megamacro",
  4705. height: math.unit(10, "miles")
  4706. },
  4707. {
  4708. name: "Megamacro+",
  4709. height: math.unit(2750000, "meters")
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(160, "lbs"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/prince/front.svg",
  4722. extra: 3400 / 3000
  4723. }
  4724. },
  4725. jumping: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(160, "lbs"),
  4728. name: "Jumping",
  4729. image: {
  4730. source: "./media/characters/prince/jump.svg",
  4731. extra: 2555 / 2134
  4732. }
  4733. },
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(7.75, "feet"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Not cute",
  4743. height: math.unit(17, "feet")
  4744. },
  4745. {
  4746. name: "I said NOT",
  4747. height: math.unit(91, "feet")
  4748. },
  4749. {
  4750. name: "Please stop",
  4751. height: math.unit(560, "feet")
  4752. },
  4753. {
  4754. name: "What have you done",
  4755. height: math.unit(2200, "feet")
  4756. },
  4757. {
  4758. name: "Deer God",
  4759. height: math.unit(3.6, "miles")
  4760. },
  4761. ]
  4762. ))
  4763. characterMakers.push(() => makeCharacter(
  4764. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4765. {
  4766. standing: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(300, "lbs"),
  4769. name: "Standing",
  4770. image: {
  4771. source: "./media/characters/psymon/standing.svg",
  4772. extra: 1888 / 1810,
  4773. bottom: 0.05
  4774. }
  4775. },
  4776. slithering: {
  4777. height: math.unit(6, "feet"),
  4778. weight: math.unit(300, "lbs"),
  4779. name: "Slithering",
  4780. image: {
  4781. source: "./media/characters/psymon/slithering.svg",
  4782. extra: 1330 / 1224
  4783. }
  4784. },
  4785. slitheringAlt: {
  4786. height: math.unit(6, "feet"),
  4787. weight: math.unit(300, "lbs"),
  4788. name: "Slithering (Alt)",
  4789. image: {
  4790. source: "./media/characters/psymon/slithering-alt.svg",
  4791. extra: 1330 / 1224
  4792. }
  4793. },
  4794. },
  4795. [
  4796. {
  4797. name: "Normal",
  4798. height: math.unit(11.25, "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Large",
  4803. height: math.unit(27, "feet")
  4804. },
  4805. {
  4806. name: "Giant",
  4807. height: math.unit(87, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(365, "feet")
  4812. },
  4813. {
  4814. name: "Megamacro",
  4815. height: math.unit(3, "miles")
  4816. },
  4817. {
  4818. name: "World Serpent",
  4819. height: math.unit(8000, "miles")
  4820. },
  4821. ]
  4822. ))
  4823. characterMakers.push(() => makeCharacter(
  4824. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4825. {
  4826. front: {
  4827. height: math.unit(6, "feet"),
  4828. weight: math.unit(180, "lbs"),
  4829. name: "Front",
  4830. image: {
  4831. source: "./media/characters/daimos/front.svg",
  4832. extra: 4160 / 3897,
  4833. bottom: 0.021
  4834. }
  4835. }
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(8, "feet"),
  4841. default: true
  4842. },
  4843. {
  4844. name: "Big Dog",
  4845. height: math.unit(22, "feet")
  4846. },
  4847. {
  4848. name: "Macro",
  4849. height: math.unit(127, "feet")
  4850. },
  4851. {
  4852. name: "Megamacro",
  4853. height: math.unit(3600, "feet")
  4854. },
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4859. {
  4860. side: {
  4861. height: math.unit(6, "feet"),
  4862. weight: math.unit(180, "lbs"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/blake/side.svg",
  4866. extra: 1212 / 1120,
  4867. bottom: 0.05
  4868. }
  4869. },
  4870. crouched: {
  4871. height: math.unit(6 * 0.57, "feet"),
  4872. weight: math.unit(180, "lbs"),
  4873. name: "Crouched",
  4874. image: {
  4875. source: "./media/characters/blake/crouched.svg",
  4876. extra: 840 / 587,
  4877. bottom: 0.04
  4878. }
  4879. },
  4880. bent: {
  4881. height: math.unit(6 * 0.75, "feet"),
  4882. weight: math.unit(180, "lbs"),
  4883. name: "Bent",
  4884. image: {
  4885. source: "./media/characters/blake/bent.svg",
  4886. extra: 592 / 544,
  4887. bottom: 0.035
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(8 + 1 / 6, "feet"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Big Backside",
  4899. height: math.unit(37, "feet")
  4900. },
  4901. {
  4902. name: "Subway Shredder",
  4903. height: math.unit(72, "feet")
  4904. },
  4905. {
  4906. name: "City Carver",
  4907. height: math.unit(1675, "feet")
  4908. },
  4909. {
  4910. name: "Tectonic Tweaker",
  4911. height: math.unit(2300, "miles")
  4912. },
  4913. ]
  4914. ))
  4915. characterMakers.push(() => makeCharacter(
  4916. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4917. {
  4918. front: {
  4919. height: math.unit(6, "feet"),
  4920. weight: math.unit(180, "lbs"),
  4921. name: "Front",
  4922. image: {
  4923. source: "./media/characters/guisetto/front.svg",
  4924. extra: 856 / 817,
  4925. bottom: 0.06
  4926. }
  4927. },
  4928. airborne: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(180, "lbs"),
  4931. name: "Airborne",
  4932. image: {
  4933. source: "./media/characters/guisetto/airborne.svg",
  4934. extra: 584 / 525
  4935. }
  4936. },
  4937. },
  4938. [
  4939. {
  4940. name: "Normal",
  4941. height: math.unit(10 + 11 / 12, "feet"),
  4942. default: true
  4943. },
  4944. {
  4945. name: "Large",
  4946. height: math.unit(35, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(475, "feet")
  4951. },
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(180, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/luxor/front.svg",
  4963. extra: 2940 / 2152
  4964. }
  4965. },
  4966. back: {
  4967. height: math.unit(6, "feet"),
  4968. weight: math.unit(180, "lbs"),
  4969. name: "Back",
  4970. image: {
  4971. source: "./media/characters/luxor/back.svg",
  4972. extra: 1083 / 960
  4973. }
  4974. },
  4975. },
  4976. [
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(5 + 5 / 6, "feet"),
  4980. default: true
  4981. },
  4982. {
  4983. name: "Lamp",
  4984. height: math.unit(50, "feet")
  4985. },
  4986. {
  4987. name: "Lämp",
  4988. height: math.unit(300, "feet")
  4989. },
  4990. {
  4991. name: "The sun is a lamp",
  4992. height: math.unit(250000, "miles")
  4993. },
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4998. {
  4999. front: {
  5000. height: math.unit(6, "feet"),
  5001. weight: math.unit(50, "lbs"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/huoyan/front.svg"
  5005. }
  5006. },
  5007. side: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(180, "lbs"),
  5010. name: "Side",
  5011. image: {
  5012. source: "./media/characters/huoyan/side.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Chef",
  5019. height: math.unit(9, "feet")
  5020. },
  5021. {
  5022. name: "Normal",
  5023. height: math.unit(65, "feet"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Macro",
  5028. height: math.unit(780, "feet")
  5029. },
  5030. {
  5031. name: "Flaming Mountain",
  5032. height: math.unit(4.8, "miles")
  5033. },
  5034. {
  5035. name: "Celestial",
  5036. height: math.unit(765000, "miles")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(5 + 3 / 4, "feet"),
  5045. weight: math.unit(120, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/tails/front.svg"
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(5 + 3 / 4, "feet"),
  5056. default: true
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5062. {
  5063. front: {
  5064. height: math.unit(4, "feet"),
  5065. weight: math.unit(50, "lbs"),
  5066. name: "Front",
  5067. image: {
  5068. source: "./media/characters/rainy/front.svg"
  5069. }
  5070. }
  5071. },
  5072. [
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(800, "feet"),
  5076. default: true
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(6, "feet"),
  5085. weight: math.unit(150, "lbs"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/rainier/front.svg"
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Micro",
  5095. height: math.unit(2, "mm"),
  5096. default: true
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5102. {
  5103. front: {
  5104. height: math.unit(6, "feet"),
  5105. weight: math.unit(180, "lbs"),
  5106. name: "Front",
  5107. image: {
  5108. source: "./media/characters/andy/front.svg"
  5109. }
  5110. }
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(8, "feet"),
  5116. default: true
  5117. },
  5118. {
  5119. name: "Macro",
  5120. height: math.unit(1000, "feet")
  5121. },
  5122. {
  5123. name: "Megamacro",
  5124. height: math.unit(5, "miles")
  5125. },
  5126. {
  5127. name: "Gigamacro",
  5128. height: math.unit(5000, "miles")
  5129. },
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5134. {
  5135. front: {
  5136. height: math.unit(6, "feet"),
  5137. weight: math.unit(210, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/cimmaron/front-sfw.svg",
  5141. extra: 701 / 676,
  5142. bottom: 0.046
  5143. }
  5144. },
  5145. back: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(210, "lbs"),
  5148. name: "Back",
  5149. image: {
  5150. source: "./media/characters/cimmaron/back-sfw.svg",
  5151. extra: 701 / 676,
  5152. bottom: 0.046
  5153. }
  5154. },
  5155. frontNsfw: {
  5156. height: math.unit(6, "feet"),
  5157. weight: math.unit(210, "lbs"),
  5158. name: "Front (NSFW)",
  5159. image: {
  5160. source: "./media/characters/cimmaron/front-nsfw.svg",
  5161. extra: 701 / 676,
  5162. bottom: 0.046
  5163. }
  5164. },
  5165. backNsfw: {
  5166. height: math.unit(6, "feet"),
  5167. weight: math.unit(210, "lbs"),
  5168. name: "Back (NSFW)",
  5169. image: {
  5170. source: "./media/characters/cimmaron/back-nsfw.svg",
  5171. extra: 701 / 676,
  5172. bottom: 0.046
  5173. }
  5174. },
  5175. dick: {
  5176. height: math.unit(1.714, "feet"),
  5177. name: "Dick",
  5178. image: {
  5179. source: "./media/characters/cimmaron/dick.svg"
  5180. }
  5181. },
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(6, "feet"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Macro Mayor",
  5191. height: math.unit(350, "meters")
  5192. },
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(200, "lbs"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/akari/front.svg",
  5204. extra: 962 / 901,
  5205. bottom: 0.04
  5206. }
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Micro",
  5212. height: math.unit(5, "inches"),
  5213. default: true
  5214. },
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(7, "feet")
  5218. },
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5223. {
  5224. front: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(140, "lbs"),
  5227. name: "Front",
  5228. image: {
  5229. source: "./media/characters/cynosura/front.svg",
  5230. extra: 896 / 847
  5231. }
  5232. },
  5233. back: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(140, "lbs"),
  5236. name: "Back",
  5237. image: {
  5238. source: "./media/characters/cynosura/back.svg",
  5239. extra: 1365 / 1250
  5240. }
  5241. },
  5242. },
  5243. [
  5244. {
  5245. name: "Micro",
  5246. height: math.unit(4, "inches")
  5247. },
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(5.75, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Tall",
  5255. height: math.unit(10, "feet")
  5256. },
  5257. {
  5258. name: "Big",
  5259. height: math.unit(20, "feet")
  5260. },
  5261. {
  5262. name: "Macro",
  5263. height: math.unit(50, "feet")
  5264. },
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5269. {
  5270. front: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(170, "lbs"),
  5273. name: "Front",
  5274. image: {
  5275. source: "./media/characters/gin/front.svg",
  5276. extra: 1.053,
  5277. bottom: 0.025
  5278. }
  5279. },
  5280. foot: {
  5281. height: math.unit(6 / 4.25, "feet"),
  5282. name: "Foot",
  5283. image: {
  5284. source: "./media/characters/gin/foot.svg"
  5285. }
  5286. },
  5287. sole: {
  5288. height: math.unit(6 / 4.40, "feet"),
  5289. name: "Sole",
  5290. image: {
  5291. source: "./media/characters/gin/sole.svg"
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(13 + 2 / 12, "feet")
  5299. },
  5300. {
  5301. name: "Macro",
  5302. height: math.unit(1500, "feet")
  5303. },
  5304. {
  5305. name: "Megamacro",
  5306. height: math.unit(200, "miles"),
  5307. default: true
  5308. },
  5309. {
  5310. name: "Gigamacro",
  5311. height: math.unit(500, "megameters")
  5312. },
  5313. {
  5314. name: "Teramacro",
  5315. height: math.unit(15, "lightyears")
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5321. {
  5322. front: {
  5323. height: math.unit(6 + 1 / 6, "feet"),
  5324. weight: math.unit(178, "lbs"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/guy/front.svg"
  5328. }
  5329. }
  5330. },
  5331. [
  5332. {
  5333. name: "Normal",
  5334. height: math.unit(6 + 1 / 6, "feet"),
  5335. default: true
  5336. },
  5337. {
  5338. name: "Large",
  5339. height: math.unit(25 + 7 / 12, "feet")
  5340. },
  5341. {
  5342. name: "Macro",
  5343. height: math.unit(60 + 9 / 12, "feet")
  5344. },
  5345. {
  5346. name: "Macro+",
  5347. height: math.unit(246, "feet")
  5348. },
  5349. {
  5350. name: "Macro++",
  5351. height: math.unit(878, "feet")
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5357. {
  5358. front: {
  5359. height: math.unit(9, "feet"),
  5360. weight: math.unit(800, "lbs"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/tiberius/front.svg",
  5364. extra: 2295 / 2071
  5365. }
  5366. },
  5367. back: {
  5368. height: math.unit(9, "feet"),
  5369. weight: math.unit(800, "lbs"),
  5370. name: "Back",
  5371. image: {
  5372. source: "./media/characters/tiberius/back.svg",
  5373. extra: 2373 / 2160
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(9, "feet"),
  5381. default: true
  5382. }
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5387. {
  5388. front: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(600, "lbs"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/surgo/front.svg",
  5394. extra: 3591 / 2227
  5395. }
  5396. },
  5397. back: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(600, "lbs"),
  5400. name: "Back",
  5401. image: {
  5402. source: "./media/characters/surgo/back.svg",
  5403. extra: 3557 / 2228
  5404. }
  5405. },
  5406. laying: {
  5407. height: math.unit(6 * 0.85, "feet"),
  5408. weight: math.unit(600, "lbs"),
  5409. name: "Laying",
  5410. image: {
  5411. source: "./media/characters/surgo/laying.svg"
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(6, "feet"),
  5419. default: true
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5425. {
  5426. side: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(150, "lbs"),
  5429. name: "Side",
  5430. image: {
  5431. source: "./media/characters/cibus/side.svg",
  5432. extra: 800 / 400
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(6, "feet"),
  5440. default: true
  5441. }
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(240, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/nibbles/front.svg"
  5453. }
  5454. },
  5455. side: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(240, "lbs"),
  5458. name: "Side",
  5459. image: {
  5460. source: "./media/characters/nibbles/side.svg"
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(9, "feet"),
  5468. default: true
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5474. {
  5475. side: {
  5476. height: math.unit(5 + 1 / 6, "feet"),
  5477. weight: math.unit(130, "lbs"),
  5478. name: "Side",
  5479. image: {
  5480. source: "./media/characters/rikky/side.svg",
  5481. extra: 851 / 801
  5482. }
  5483. },
  5484. },
  5485. [
  5486. {
  5487. name: "Normal",
  5488. height: math.unit(5 + 1 / 6, "feet")
  5489. },
  5490. {
  5491. name: "Macro",
  5492. height: math.unit(152, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megamacro",
  5497. height: math.unit(7, "miles")
  5498. }
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5503. {
  5504. side: {
  5505. height: math.unit(370, "cm"),
  5506. weight: math.unit(350, "lbs"),
  5507. name: "Side",
  5508. image: {
  5509. source: "./media/characters/malfressa/side.svg"
  5510. }
  5511. },
  5512. walking: {
  5513. height: math.unit(370, "cm"),
  5514. weight: math.unit(350, "lbs"),
  5515. name: "Walking",
  5516. image: {
  5517. source: "./media/characters/malfressa/walking.svg"
  5518. }
  5519. },
  5520. feral: {
  5521. height: math.unit(2500, "cm"),
  5522. weight: math.unit(100000, "lbs"),
  5523. name: "Feral",
  5524. image: {
  5525. source: "./media/characters/malfressa/feral.svg",
  5526. extra: 2108 / 837,
  5527. bottom: 0.02
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(370, "cm")
  5535. },
  5536. {
  5537. name: "Macro",
  5538. height: math.unit(300, "meters"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(60, "kg"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/jaro/front.svg"
  5552. }
  5553. },
  5554. back: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(60, "kg"),
  5557. name: "Back",
  5558. image: {
  5559. source: "./media/characters/jaro/back.svg"
  5560. }
  5561. },
  5562. },
  5563. [
  5564. {
  5565. name: "Micro",
  5566. height: math.unit(7, "inches")
  5567. },
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(5.5, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Minimacro",
  5575. height: math.unit(20, "feet")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(200, "meters")
  5580. }
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5585. {
  5586. front: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(195, "lb"),
  5589. name: "Front",
  5590. image: {
  5591. source: "./media/characters/rogue/front.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Macro",
  5598. height: math.unit(90, "feet"),
  5599. default: true
  5600. },
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5605. {
  5606. front: {
  5607. height: math.unit(5 + 8 / 12, "feet"),
  5608. weight: math.unit(140, "lb"),
  5609. name: "Front",
  5610. image: {
  5611. source: "./media/characters/piper/front.svg",
  5612. extra: 3928 / 3681
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Micro",
  5619. height: math.unit(2, "inches")
  5620. },
  5621. {
  5622. name: "Normal",
  5623. height: math.unit(5 + 8 / 12, "feet")
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(250, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Megamacro",
  5632. height: math.unit(7, "miles")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(6, "feet"),
  5641. weight: math.unit(220, "lb"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/gemini/front.svg"
  5645. }
  5646. },
  5647. back: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(220, "lb"),
  5650. name: "Back",
  5651. image: {
  5652. source: "./media/characters/gemini/back.svg"
  5653. }
  5654. },
  5655. kneeling: {
  5656. height: math.unit(6 / 1.5, "feet"),
  5657. weight: math.unit(220, "lb"),
  5658. name: "Kneeling",
  5659. image: {
  5660. source: "./media/characters/gemini/kneeling.svg",
  5661. bottom: 0.02
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(300, "meters"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "Megamacro",
  5673. height: math.unit(6900, "meters")
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5679. {
  5680. anthro: {
  5681. height: math.unit(2.35, "meters"),
  5682. weight: math.unit(73, "kg"),
  5683. name: "Anthro",
  5684. image: {
  5685. source: "./media/characters/alicia/anthro.svg",
  5686. extra: 2571 / 2385,
  5687. bottom: 75 / 2648
  5688. }
  5689. },
  5690. paw: {
  5691. height: math.unit(1.32, "feet"),
  5692. name: "Paw",
  5693. image: {
  5694. source: "./media/characters/alicia/paw.svg"
  5695. }
  5696. },
  5697. feral: {
  5698. height: math.unit(1.69, "meters"),
  5699. weight: math.unit(73, "kg"),
  5700. name: "Feral",
  5701. image: {
  5702. source: "./media/characters/alicia/feral.svg",
  5703. extra: 2123 / 1715,
  5704. bottom: 222 / 2349
  5705. }
  5706. },
  5707. },
  5708. [
  5709. {
  5710. name: "Normal",
  5711. height: math.unit(2.35, "meters")
  5712. },
  5713. {
  5714. name: "Macro",
  5715. height: math.unit(60, "meters"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Megamacro",
  5720. height: math.unit(10000, "kilometers")
  5721. },
  5722. ]
  5723. ))
  5724. characterMakers.push(() => makeCharacter(
  5725. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5726. {
  5727. front: {
  5728. height: math.unit(7, "feet"),
  5729. weight: math.unit(250, "lbs"),
  5730. name: "Front",
  5731. image: {
  5732. source: "./media/characters/archy/front.svg"
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Micro",
  5739. height: math.unit(1, "inch")
  5740. },
  5741. {
  5742. name: "Shorty",
  5743. height: math.unit(5, "feet")
  5744. },
  5745. {
  5746. name: "Normal",
  5747. height: math.unit(7, "feet")
  5748. },
  5749. {
  5750. name: "Macro",
  5751. height: math.unit(600, "meters"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Megamacro",
  5756. height: math.unit(1, "mile")
  5757. },
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(1.65, "meters"),
  5765. weight: math.unit(74, "kg"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/berri/front.svg",
  5769. extra: 857 / 837,
  5770. bottom: 18 / 877
  5771. }
  5772. },
  5773. bum: {
  5774. height: math.unit(1.46, "feet"),
  5775. name: "Bum",
  5776. image: {
  5777. source: "./media/characters/berri/bum.svg"
  5778. }
  5779. },
  5780. mouth: {
  5781. height: math.unit(0.44, "feet"),
  5782. name: "Mouth",
  5783. image: {
  5784. source: "./media/characters/berri/mouth.svg"
  5785. }
  5786. },
  5787. paw: {
  5788. height: math.unit(0.826, "feet"),
  5789. name: "Paw",
  5790. image: {
  5791. source: "./media/characters/berri/paw.svg"
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Normal",
  5798. height: math.unit(1.65, "meters")
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(60, "m"),
  5803. default: true
  5804. },
  5805. {
  5806. name: "Megamacro",
  5807. height: math.unit(9.213, "km")
  5808. },
  5809. {
  5810. name: "Planet Eater",
  5811. height: math.unit(489, "megameters")
  5812. },
  5813. {
  5814. name: "Teramacro",
  5815. height: math.unit(2471635000000, "meters")
  5816. },
  5817. {
  5818. name: "Examacro",
  5819. height: math.unit(8.0624e+26, "meters")
  5820. }
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5825. {
  5826. front: {
  5827. height: math.unit(1.72, "meters"),
  5828. weight: math.unit(68, "kg"),
  5829. name: "Front",
  5830. image: {
  5831. source: "./media/characters/lexi/front.svg"
  5832. }
  5833. }
  5834. },
  5835. [
  5836. {
  5837. name: "Very Smol",
  5838. height: math.unit(10, "mm")
  5839. },
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(6.8, "cm"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(1.72, "m")
  5848. }
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(1.69, "meters"),
  5856. weight: math.unit(68, "kg"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/martin/front.svg",
  5860. extra: 596 / 581
  5861. }
  5862. }
  5863. },
  5864. [
  5865. {
  5866. name: "Micro",
  5867. height: math.unit(6.85, "cm"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(1.69, "m")
  5873. }
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5878. {
  5879. front: {
  5880. height: math.unit(1.69, "meters"),
  5881. weight: math.unit(68, "kg"),
  5882. name: "Front",
  5883. image: {
  5884. source: "./media/characters/juno/front.svg"
  5885. }
  5886. }
  5887. },
  5888. [
  5889. {
  5890. name: "Micro",
  5891. height: math.unit(7, "cm")
  5892. },
  5893. {
  5894. name: "Normal",
  5895. height: math.unit(1.89, "m")
  5896. },
  5897. {
  5898. name: "Macro",
  5899. height: math.unit(353, "meters"),
  5900. default: true
  5901. }
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(1.93, "meters"),
  5909. weight: math.unit(83, "kg"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/samantha/front.svg"
  5913. }
  5914. },
  5915. frontClothed: {
  5916. height: math.unit(1.93, "meters"),
  5917. weight: math.unit(83, "kg"),
  5918. name: "Front (Clothed)",
  5919. image: {
  5920. source: "./media/characters/samantha/front-clothed.svg"
  5921. }
  5922. },
  5923. back: {
  5924. height: math.unit(1.93, "meters"),
  5925. weight: math.unit(83, "kg"),
  5926. name: "Back",
  5927. image: {
  5928. source: "./media/characters/samantha/back.svg"
  5929. }
  5930. },
  5931. },
  5932. [
  5933. {
  5934. name: "Normal",
  5935. height: math.unit(1.93, "m")
  5936. },
  5937. {
  5938. name: "Macro",
  5939. height: math.unit(74, "meters"),
  5940. default: true
  5941. },
  5942. {
  5943. name: "Macro+",
  5944. height: math.unit(223, "meters"),
  5945. },
  5946. {
  5947. name: "Megamacro",
  5948. height: math.unit(8381, "meters"),
  5949. },
  5950. {
  5951. name: "Megamacro+",
  5952. height: math.unit(12000, "kilometers")
  5953. },
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5958. {
  5959. front: {
  5960. height: math.unit(1.92, "meters"),
  5961. weight: math.unit(80, "kg"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/dr-clay/front.svg"
  5965. }
  5966. },
  5967. frontClothed: {
  5968. height: math.unit(1.92, "meters"),
  5969. weight: math.unit(80, "kg"),
  5970. name: "Front (Clothed)",
  5971. image: {
  5972. source: "./media/characters/dr-clay/front-clothed.svg"
  5973. }
  5974. }
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(1.92, "m")
  5980. },
  5981. {
  5982. name: "Macro",
  5983. height: math.unit(214, "meters"),
  5984. default: true
  5985. },
  5986. {
  5987. name: "Macro+",
  5988. height: math.unit(12.237, "meters"),
  5989. },
  5990. {
  5991. name: "Megamacro",
  5992. height: math.unit(557, "megameters"),
  5993. },
  5994. {
  5995. name: "Unimaginable",
  5996. height: math.unit(120e9, "lightyears")
  5997. },
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(2, "meters"),
  6005. weight: math.unit(80, "kg"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6009. }
  6010. }
  6011. },
  6012. [
  6013. {
  6014. name: "Teramacro",
  6015. height: math.unit(500000, "lightyears"),
  6016. default: true
  6017. },
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6022. {
  6023. front: {
  6024. height: math.unit(2, "meters"),
  6025. weight: math.unit(150, "kg"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/vemus/front.svg",
  6029. extra: 2384 / 2084,
  6030. bottom: 0.0123
  6031. }
  6032. }
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(3.75, "meters"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Big",
  6042. height: math.unit(8, "meters")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(100, "meters")
  6047. },
  6048. {
  6049. name: "Macro+",
  6050. height: math.unit(1500, "meters")
  6051. },
  6052. {
  6053. name: "Stellar",
  6054. height: math.unit(14e8, "meters")
  6055. },
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(2, "meters"),
  6063. weight: math.unit(70, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/beherit/front.svg",
  6067. extra: 1408 / 1242
  6068. }
  6069. }
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(6, "feet")
  6075. },
  6076. {
  6077. name: "Lorg",
  6078. height: math.unit(25, "feet"),
  6079. default: true
  6080. },
  6081. {
  6082. name: "Lorger",
  6083. height: math.unit(75, "feet")
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(200, "meters")
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6093. {
  6094. front: {
  6095. height: math.unit(2, "meters"),
  6096. weight: math.unit(150, "kg"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/everett/front.svg",
  6100. extra: 2038 / 1737,
  6101. bottom: 0.03
  6102. }
  6103. },
  6104. paw: {
  6105. height: math.unit(2 / 3.6, "meters"),
  6106. name: "Paw",
  6107. image: {
  6108. source: "./media/characters/everett/paw.svg"
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(15, "feet"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Lorg",
  6120. height: math.unit(70, "feet"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Lorger",
  6125. height: math.unit(250, "feet")
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(500, "meters")
  6130. },
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6135. {
  6136. front: {
  6137. height: math.unit(2, "meters"),
  6138. weight: math.unit(86, "kg"),
  6139. name: "Front",
  6140. image: {
  6141. source: "./media/characters/rose-lion/front.svg"
  6142. }
  6143. },
  6144. bent: {
  6145. height: math.unit(2 / 1.4288, "meters"),
  6146. weight: math.unit(86, "kg"),
  6147. name: "Bent",
  6148. image: {
  6149. source: "./media/characters/rose-lion/bent.svg"
  6150. }
  6151. }
  6152. },
  6153. [
  6154. {
  6155. name: "Mini-Micro",
  6156. height: math.unit(1, "cm")
  6157. },
  6158. {
  6159. name: "Micro",
  6160. height: math.unit(3.5, "inches"),
  6161. default: true
  6162. },
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(6 + 1 / 6, "feet")
  6166. },
  6167. {
  6168. name: "Mini-Macro",
  6169. height: math.unit(9 + 10 / 12, "feet")
  6170. },
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6175. {
  6176. front: {
  6177. height: math.unit(2, "meters"),
  6178. weight: math.unit(350, "lbs"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/regal/front.svg"
  6182. }
  6183. },
  6184. back: {
  6185. height: math.unit(2, "meters"),
  6186. weight: math.unit(350, "lbs"),
  6187. name: "Back",
  6188. image: {
  6189. source: "./media/characters/regal/back.svg"
  6190. }
  6191. },
  6192. },
  6193. [
  6194. {
  6195. name: "Macro",
  6196. height: math.unit(350, "feet"),
  6197. default: true
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6203. {
  6204. front: {
  6205. height: math.unit(4 + 11 / 12, "feet"),
  6206. weight: math.unit(100, "lbs"),
  6207. name: "Front",
  6208. image: {
  6209. source: "./media/characters/opal/front.svg"
  6210. }
  6211. },
  6212. frontAlt: {
  6213. height: math.unit(4 + 11 / 12, "feet"),
  6214. weight: math.unit(100, "lbs"),
  6215. name: "Front (Alt)",
  6216. image: {
  6217. source: "./media/characters/opal/front-alt.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Small",
  6224. height: math.unit(4 + 11 / 12, "feet")
  6225. },
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(20, "feet"),
  6229. default: true
  6230. },
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(120, "feet")
  6234. },
  6235. {
  6236. name: "Megamacro",
  6237. height: math.unit(80, "miles")
  6238. },
  6239. {
  6240. name: "True Size",
  6241. height: math.unit(100000, "lightyears")
  6242. },
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6247. {
  6248. front: {
  6249. height: math.unit(6, "feet"),
  6250. weight: math.unit(200, "lbs"),
  6251. name: "Front",
  6252. image: {
  6253. source: "./media/characters/vector-wuff/front.svg"
  6254. }
  6255. }
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(2.8, "meters")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(450, "meters"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Megamacro",
  6269. height: math.unit(15, "kilometers")
  6270. }
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(6, "feet"),
  6278. weight: math.unit(256, "lbs"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/dannik/front.svg"
  6282. }
  6283. }
  6284. },
  6285. [
  6286. {
  6287. name: "Macro",
  6288. height: math.unit(69.57, "meters"),
  6289. default: true
  6290. },
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6295. {
  6296. front: {
  6297. height: math.unit(6, "feet"),
  6298. weight: math.unit(120, "lbs"),
  6299. name: "Front",
  6300. image: {
  6301. source: "./media/characters/azura-saharah/front.svg"
  6302. }
  6303. },
  6304. back: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(120, "lbs"),
  6307. name: "Back",
  6308. image: {
  6309. source: "./media/characters/azura-saharah/back.svg"
  6310. }
  6311. },
  6312. },
  6313. [
  6314. {
  6315. name: "Macro",
  6316. height: math.unit(100, "feet"),
  6317. default: true
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6323. {
  6324. side: {
  6325. height: math.unit(5 + 4 / 12, "feet"),
  6326. weight: math.unit(163, "lbs"),
  6327. name: "Side",
  6328. image: {
  6329. source: "./media/characters/kennedy/side.svg"
  6330. }
  6331. }
  6332. },
  6333. [
  6334. {
  6335. name: "Standard Doggo",
  6336. height: math.unit(5 + 4 / 12, "feet")
  6337. },
  6338. {
  6339. name: "Big Doggo",
  6340. height: math.unit(25 + 3 / 12, "feet"),
  6341. default: true
  6342. },
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6347. {
  6348. front: {
  6349. height: math.unit(6, "feet"),
  6350. weight: math.unit(90, "lbs"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/odi-lunar/front.svg"
  6354. }
  6355. }
  6356. },
  6357. [
  6358. {
  6359. name: "Micro",
  6360. height: math.unit(3, "inches"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Normal",
  6365. height: math.unit(5.5, "feet")
  6366. }
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6371. {
  6372. back: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(220, "lbs"),
  6375. name: "Back",
  6376. image: {
  6377. source: "./media/characters/mandake/back.svg"
  6378. }
  6379. }
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(7, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(78, "feet")
  6390. },
  6391. {
  6392. name: "Macro+",
  6393. height: math.unit(300, "meters")
  6394. },
  6395. {
  6396. name: "Macro++",
  6397. height: math.unit(2400, "feet")
  6398. },
  6399. {
  6400. name: "Megamacro",
  6401. height: math.unit(5167, "meters")
  6402. },
  6403. {
  6404. name: "Gigamacro",
  6405. height: math.unit(41769, "miles")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(120, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/yozey/front.svg"
  6418. }
  6419. },
  6420. frontAlt: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(120, "lbs"),
  6423. name: "Front (Alt)",
  6424. image: {
  6425. source: "./media/characters/yozey/front-alt.svg"
  6426. }
  6427. },
  6428. side: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(120, "lbs"),
  6431. name: "Side",
  6432. image: {
  6433. source: "./media/characters/yozey/side.svg"
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Micro",
  6440. height: math.unit(3, "inches"),
  6441. default: true
  6442. },
  6443. {
  6444. name: "Normal",
  6445. height: math.unit(6, "feet")
  6446. }
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6451. {
  6452. front: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(103, "lbs"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/valeska-voss/front.svg"
  6458. }
  6459. }
  6460. },
  6461. [
  6462. {
  6463. name: "Mini-Sized Sub",
  6464. height: math.unit(3.1, "inches")
  6465. },
  6466. {
  6467. name: "Mid-Sized Sub",
  6468. height: math.unit(6.2, "inches")
  6469. },
  6470. {
  6471. name: "Full-Sized Sub",
  6472. height: math.unit(9.3, "inches")
  6473. },
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(5 + 2 / 12, "foot"),
  6477. default: true
  6478. },
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(6, "feet"),
  6486. weight: math.unit(160, "lbs"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/gene-zeta/front.svg",
  6490. bottom: 0.03,
  6491. extra: 1
  6492. }
  6493. }
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(6.25, "foot"),
  6499. default: true
  6500. },
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(6, "feet"),
  6508. weight: math.unit(350, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/razinox/front.svg",
  6512. extra: 1686 / 1548,
  6513. bottom: 28.2 / 1868
  6514. }
  6515. },
  6516. back: {
  6517. height: math.unit(6, "feet"),
  6518. weight: math.unit(350, "lbs"),
  6519. name: "Back",
  6520. image: {
  6521. source: "./media/characters/razinox/back.svg",
  6522. extra: 1660 / 1590,
  6523. bottom: 15 / 1665
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(10 + 8 / 12, "foot")
  6531. },
  6532. {
  6533. name: "Minimacro",
  6534. height: math.unit(15, "foot")
  6535. },
  6536. {
  6537. name: "Macro",
  6538. height: math.unit(60, "foot"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Megamacro",
  6543. height: math.unit(5, "miles")
  6544. },
  6545. {
  6546. name: "Gigamacro",
  6547. height: math.unit(6000, "miles")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(150, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/cobalt/front.svg"
  6560. }
  6561. }
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(8 + 1 / 12, "foot")
  6567. },
  6568. {
  6569. name: "Macro",
  6570. height: math.unit(111, "foot"),
  6571. default: true
  6572. },
  6573. {
  6574. name: "Supracosmic",
  6575. height: math.unit(1e42, "feet")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(140, "lbs"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/amanda/front.svg"
  6588. }
  6589. }
  6590. },
  6591. [
  6592. {
  6593. name: "Micro",
  6594. height: math.unit(5, "inches"),
  6595. default: true
  6596. },
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(5.59, "feet"),
  6604. weight: math.unit(250, "lbs"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/teal/front.svg"
  6608. }
  6609. },
  6610. frontAlt: {
  6611. height: math.unit(6, "feet"),
  6612. weight: math.unit(250, "lbs"),
  6613. name: "Front (Alt)",
  6614. image: {
  6615. source: "./media/characters/teal/front-alt.svg",
  6616. bottom: 0.04,
  6617. extra: 1
  6618. }
  6619. },
  6620. },
  6621. [
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(12, "feet"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(300, "feet")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6635. {
  6636. frontCat: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(180, "lbs"),
  6639. name: "Front (Cat)",
  6640. image: {
  6641. source: "./media/characters/ravin-amulet/front-cat.svg"
  6642. }
  6643. },
  6644. frontCatAlt: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(180, "lbs"),
  6647. name: "Front (Alt, Cat)",
  6648. image: {
  6649. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6650. }
  6651. },
  6652. frontWerewolf: {
  6653. height: math.unit(6 * 1.2, "feet"),
  6654. weight: math.unit(225, "lbs"),
  6655. name: "Front (Werewolf)",
  6656. image: {
  6657. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6658. }
  6659. },
  6660. backWerewolf: {
  6661. height: math.unit(6 * 1.2, "feet"),
  6662. weight: math.unit(225, "lbs"),
  6663. name: "Back (Werewolf)",
  6664. image: {
  6665. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6666. }
  6667. },
  6668. },
  6669. [
  6670. {
  6671. name: "Nano",
  6672. height: math.unit(1, "micrometer")
  6673. },
  6674. {
  6675. name: "Micro",
  6676. height: math.unit(1, "inch")
  6677. },
  6678. {
  6679. name: "Normal",
  6680. height: math.unit(6, "feet"),
  6681. default: true
  6682. },
  6683. {
  6684. name: "Macro",
  6685. height: math.unit(60, "feet")
  6686. }
  6687. ]
  6688. ))
  6689. characterMakers.push(() => makeCharacter(
  6690. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6691. {
  6692. front: {
  6693. height: math.unit(6, "feet"),
  6694. weight: math.unit(165, "lbs"),
  6695. name: "Front",
  6696. image: {
  6697. source: "./media/characters/fluoresce/front.svg"
  6698. }
  6699. }
  6700. },
  6701. [
  6702. {
  6703. name: "Micro",
  6704. height: math.unit(6, "cm")
  6705. },
  6706. {
  6707. name: "Normal",
  6708. height: math.unit(5 + 7 / 12, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(56, "feet")
  6714. },
  6715. {
  6716. name: "Megamacro",
  6717. height: math.unit(1.9, "miles")
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(9 + 6 / 12, "feet"),
  6726. weight: math.unit(523, "lbs"),
  6727. name: "Side",
  6728. image: {
  6729. source: "./media/characters/aurora/side.svg"
  6730. }
  6731. }
  6732. },
  6733. [
  6734. {
  6735. name: "Normal",
  6736. height: math.unit(9 + 6 / 12, "feet")
  6737. },
  6738. {
  6739. name: "Macro",
  6740. height: math.unit(96, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Macro+",
  6745. height: math.unit(243, "feet")
  6746. },
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6751. {
  6752. front: {
  6753. height: math.unit(194, "cm"),
  6754. weight: math.unit(90, "kg"),
  6755. name: "Front",
  6756. image: {
  6757. source: "./media/characters/ranek/front.svg"
  6758. }
  6759. },
  6760. side: {
  6761. height: math.unit(194, "cm"),
  6762. weight: math.unit(90, "kg"),
  6763. name: "Side",
  6764. image: {
  6765. source: "./media/characters/ranek/side.svg"
  6766. }
  6767. },
  6768. back: {
  6769. height: math.unit(194, "cm"),
  6770. weight: math.unit(90, "kg"),
  6771. name: "Back",
  6772. image: {
  6773. source: "./media/characters/ranek/back.svg"
  6774. }
  6775. },
  6776. feral: {
  6777. height: math.unit(30, "cm"),
  6778. weight: math.unit(1.6, "lbs"),
  6779. name: "Feral",
  6780. image: {
  6781. source: "./media/characters/ranek/feral.svg"
  6782. }
  6783. },
  6784. },
  6785. [
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(194, "cm"),
  6789. default: true
  6790. },
  6791. {
  6792. name: "Macro",
  6793. height: math.unit(100, "meters")
  6794. },
  6795. ]
  6796. ))
  6797. characterMakers.push(() => makeCharacter(
  6798. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6799. {
  6800. front: {
  6801. height: math.unit(5 + 6 / 12, "feet"),
  6802. weight: math.unit(153, "lbs"),
  6803. name: "Front",
  6804. image: {
  6805. source: "./media/characters/andrew-cooper/front.svg"
  6806. }
  6807. },
  6808. },
  6809. [
  6810. {
  6811. name: "Nano",
  6812. height: math.unit(1, "mm")
  6813. },
  6814. {
  6815. name: "Micro",
  6816. height: math.unit(2, "inches")
  6817. },
  6818. {
  6819. name: "Normal",
  6820. height: math.unit(5 + 6 / 12, "feet"),
  6821. default: true
  6822. }
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6827. {
  6828. front: {
  6829. height: math.unit(6, "feet"),
  6830. weight: math.unit(180, "lbs"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/akane-sato/front.svg",
  6834. extra: 1219 / 1140
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(180, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/akane-sato/back.svg",
  6843. extra: 1219 / 1170
  6844. }
  6845. },
  6846. },
  6847. [
  6848. {
  6849. name: "Normal",
  6850. height: math.unit(2.5, "meters")
  6851. },
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(250, "meters"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Megamacro",
  6859. height: math.unit(25, "km")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(65, "kg"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/rook/front.svg",
  6872. extra: 960 / 950
  6873. }
  6874. }
  6875. },
  6876. [
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(8.8, "feet")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(88, "feet"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Megamacro",
  6888. height: math.unit(8, "miles")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(12 + 2 / 12, "feet"),
  6897. weight: math.unit(808, "lbs"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/prodigy/front.svg"
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Normal",
  6907. height: math.unit(12 + 2 / 12, "feet"),
  6908. default: true
  6909. },
  6910. {
  6911. name: "Macro",
  6912. height: math.unit(143, "feet")
  6913. },
  6914. {
  6915. name: "Macro+",
  6916. height: math.unit(400, "feet")
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6922. {
  6923. front: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(225, "lbs"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/daniel/front.svg"
  6929. }
  6930. },
  6931. leaning: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(225, "lbs"),
  6934. name: "Leaning",
  6935. image: {
  6936. source: "./media/characters/daniel/leaning.svg"
  6937. }
  6938. },
  6939. },
  6940. [
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(1000, "feet"),
  6944. default: true
  6945. },
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6950. {
  6951. front: {
  6952. height: math.unit(6, "feet"),
  6953. weight: math.unit(88, "lbs"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/chiros/front.svg",
  6957. extra: 306 / 226
  6958. }
  6959. },
  6960. side: {
  6961. height: math.unit(6, "feet"),
  6962. weight: math.unit(88, "lbs"),
  6963. name: "Side",
  6964. image: {
  6965. source: "./media/characters/chiros/side.svg",
  6966. extra: 306 / 226
  6967. }
  6968. },
  6969. },
  6970. [
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(6, "cm"),
  6974. default: true
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6980. {
  6981. front: {
  6982. height: math.unit(6, "feet"),
  6983. weight: math.unit(100, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/selka/front.svg",
  6987. extra: 947 / 887
  6988. }
  6989. }
  6990. },
  6991. [
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(5, "cm"),
  6995. default: true
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(8 + 3 / 12, "feet"),
  7004. weight: math.unit(424, "lbs"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/verin/front.svg",
  7008. extra: 1845 / 1550
  7009. }
  7010. },
  7011. frontArmored: {
  7012. height: math.unit(8 + 3 / 12, "feet"),
  7013. weight: math.unit(424, "lbs"),
  7014. name: "Front (Armored)",
  7015. image: {
  7016. source: "./media/characters/verin/front-armor.svg",
  7017. extra: 1845 / 1550,
  7018. bottom: 0.01
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(8 + 3 / 12, "feet"),
  7023. weight: math.unit(424, "lbs"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/verin/back.svg",
  7027. bottom: 0.1,
  7028. extra: 1
  7029. }
  7030. },
  7031. foot: {
  7032. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7033. name: "Foot",
  7034. image: {
  7035. source: "./media/characters/verin/foot.svg"
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(8 + 3 / 12, "feet")
  7043. },
  7044. {
  7045. name: "Minimacro",
  7046. height: math.unit(21, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(626, "feet")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(2.718, "meters"),
  7060. weight: math.unit(150, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/sovrim-terraquian/front.svg"
  7064. }
  7065. },
  7066. back: {
  7067. height: math.unit(2.718, "meters"),
  7068. weight: math.unit(150, "lbs"),
  7069. name: "Back",
  7070. image: {
  7071. source: "./media/characters/sovrim-terraquian/back.svg"
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(2, "inches")
  7079. },
  7080. {
  7081. name: "Small",
  7082. height: math.unit(1, "meter")
  7083. },
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(Math.E, "meters"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(20, "meters")
  7092. },
  7093. {
  7094. name: "Macro+",
  7095. height: math.unit(400, "meters")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(7, "feet"),
  7104. weight: math.unit(489, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/reece-silvermane/front.svg",
  7108. bottom: 0.02,
  7109. extra: 1
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Macro",
  7116. height: math.unit(1.5, "miles"),
  7117. default: true
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(78, "kg"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/kane/front.svg",
  7130. extra: 978 / 899
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(2.1, "m"),
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(1, "km"),
  7142. default: true
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(200, "kg"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/tegon/front.svg",
  7155. bottom: 0.01,
  7156. extra: 1
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Micro",
  7163. height: math.unit(1, "inch")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(6 + 3 / 12, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(300, "feet")
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(69, "miles")
  7177. },
  7178. ]
  7179. ))
  7180. characterMakers.push(() => makeCharacter(
  7181. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7182. {
  7183. side: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(2304, "lbs"),
  7186. name: "Side",
  7187. image: {
  7188. source: "./media/characters/arcturax/side.svg",
  7189. extra: 790 / 376,
  7190. bottom: 0.01
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Micro",
  7197. height: math.unit(2, "inch")
  7198. },
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(6, "feet")
  7202. },
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(39, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Megamacro",
  7210. height: math.unit(7, "miles")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(50, "lbs"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/sentri/front.svg",
  7223. extra: 1750 / 1570,
  7224. bottom: 0.025
  7225. }
  7226. },
  7227. frontAlt: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(50, "lbs"),
  7230. name: "Front (Alt)",
  7231. image: {
  7232. source: "./media/characters/sentri/front-alt.svg",
  7233. extra: 1750 / 1570,
  7234. bottom: 0.025
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(15, "feet"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(2500, "feet")
  7247. }
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(5 + 8 / 12, "feet"),
  7255. weight: math.unit(130, "lbs"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/corvin/front.svg",
  7259. extra: 1803 / 1629
  7260. }
  7261. },
  7262. frontShirt: {
  7263. height: math.unit(5 + 8 / 12, "feet"),
  7264. weight: math.unit(130, "lbs"),
  7265. name: "Front (Shirt)",
  7266. image: {
  7267. source: "./media/characters/corvin/front-shirt.svg",
  7268. extra: 1803 / 1629
  7269. }
  7270. },
  7271. frontPoncho: {
  7272. height: math.unit(5 + 8 / 12, "feet"),
  7273. weight: math.unit(130, "lbs"),
  7274. name: "Front (Poncho)",
  7275. image: {
  7276. source: "./media/characters/corvin/front-poncho.svg",
  7277. extra: 1803 / 1629
  7278. }
  7279. },
  7280. side: {
  7281. height: math.unit(5 + 8 / 12, "feet"),
  7282. weight: math.unit(130, "lbs"),
  7283. name: "Side",
  7284. image: {
  7285. source: "./media/characters/corvin/side.svg",
  7286. extra: 1012 / 945
  7287. }
  7288. },
  7289. back: {
  7290. height: math.unit(5 + 8 / 12, "feet"),
  7291. weight: math.unit(130, "lbs"),
  7292. name: "Back",
  7293. image: {
  7294. source: "./media/characters/corvin/back.svg",
  7295. extra: 1803 / 1629
  7296. }
  7297. },
  7298. },
  7299. [
  7300. {
  7301. name: "Micro",
  7302. height: math.unit(3, "inches")
  7303. },
  7304. {
  7305. name: "Normal",
  7306. height: math.unit(5 + 8 / 12, "feet")
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(300, "feet"),
  7311. default: true
  7312. },
  7313. {
  7314. name: "Megamacro",
  7315. height: math.unit(500, "miles")
  7316. }
  7317. ]
  7318. ))
  7319. characterMakers.push(() => makeCharacter(
  7320. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7321. {
  7322. front: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(135, "lbs"),
  7325. name: "Front",
  7326. image: {
  7327. source: "./media/characters/q/front.svg",
  7328. extra: 854 / 752,
  7329. bottom: 0.005
  7330. }
  7331. },
  7332. back: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(130, "lbs"),
  7335. name: "Back",
  7336. image: {
  7337. source: "./media/characters/q/back.svg",
  7338. extra: 854 / 752
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(90, "feet"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Extra Macro",
  7350. height: math.unit(300, "feet"),
  7351. },
  7352. {
  7353. name: "BIG WALF",
  7354. height: math.unit(750, "feet"),
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(150, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/carley/front.svg",
  7367. extra: 3927 / 3540,
  7368. bottom: 29.2 / 735
  7369. }
  7370. }
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(6 + 3 / 12, "feet")
  7376. },
  7377. {
  7378. name: "Macro",
  7379. height: math.unit(185, "feet"),
  7380. default: true
  7381. },
  7382. {
  7383. name: "Megamacro",
  7384. height: math.unit(8, "miles"),
  7385. },
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(3, "feet"),
  7393. weight: math.unit(28, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/citrine/front.svg"
  7397. }
  7398. }
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(3, "feet"),
  7404. default: true
  7405. }
  7406. ]
  7407. ))
  7408. characterMakers.push(() => makeCharacter(
  7409. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7410. {
  7411. front: {
  7412. height: math.unit(14, "feet"),
  7413. weight: math.unit(1450, "kg"),
  7414. capacity: math.unit(15, "people"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/aura-starwind/front.svg",
  7418. extra: 1455 / 1335
  7419. }
  7420. },
  7421. side: {
  7422. height: math.unit(14, "feet"),
  7423. weight: math.unit(1450, "kg"),
  7424. capacity: math.unit(15, "people"),
  7425. name: "Side",
  7426. image: {
  7427. source: "./media/characters/aura-starwind/side.svg",
  7428. extra: 1654 / 1497
  7429. }
  7430. },
  7431. taur: {
  7432. height: math.unit(18, "feet"),
  7433. weight: math.unit(5500, "kg"),
  7434. capacity: math.unit(50, "people"),
  7435. name: "Taur",
  7436. image: {
  7437. source: "./media/characters/aura-starwind/taur.svg",
  7438. extra: 1760 / 1650
  7439. }
  7440. },
  7441. feral: {
  7442. height: math.unit(46, "feet"),
  7443. weight: math.unit(25000, "kg"),
  7444. capacity: math.unit(120, "people"),
  7445. name: "Feral",
  7446. image: {
  7447. source: "./media/characters/aura-starwind/feral.svg"
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(14, "feet"),
  7455. default: true
  7456. },
  7457. {
  7458. name: "Macro",
  7459. height: math.unit(50, "meters")
  7460. },
  7461. {
  7462. name: "Megamacro",
  7463. height: math.unit(5000, "meters")
  7464. },
  7465. {
  7466. name: "Gigamacro",
  7467. height: math.unit(100000, "kilometers")
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(2 + 7 / 12, "feet"),
  7476. weight: math.unit(32, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/rivet/front.svg",
  7480. extra: 1716 / 1658,
  7481. bottom: 0.03
  7482. }
  7483. },
  7484. foot: {
  7485. height: math.unit(0.551, "feet"),
  7486. name: "Rivet's Foot",
  7487. image: {
  7488. source: "./media/characters/rivet/foot.svg"
  7489. },
  7490. rename: true
  7491. }
  7492. },
  7493. [
  7494. {
  7495. name: "Micro",
  7496. height: math.unit(1.5, "inches"),
  7497. },
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(2 + 7 / 12, "feet"),
  7501. default: true
  7502. },
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(85, "feet")
  7506. },
  7507. {
  7508. name: "Megamacro",
  7509. height: math.unit(2.2, "km")
  7510. }
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7515. {
  7516. front: {
  7517. height: math.unit(5 + 9 / 12, "feet"),
  7518. weight: math.unit(150, "lbs"),
  7519. name: "Front",
  7520. image: {
  7521. source: "./media/characters/coffee/front.svg",
  7522. extra: 3666 / 3032,
  7523. bottom: 0.04
  7524. }
  7525. },
  7526. foot: {
  7527. height: math.unit(1.29, "feet"),
  7528. name: "Foot",
  7529. image: {
  7530. source: "./media/characters/coffee/foot.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Micro",
  7537. height: math.unit(2, "inches"),
  7538. },
  7539. {
  7540. name: "Normal",
  7541. height: math.unit(5 + 9 / 12, "feet"),
  7542. default: true
  7543. },
  7544. {
  7545. name: "Macro",
  7546. height: math.unit(800, "feet")
  7547. },
  7548. {
  7549. name: "Megamacro",
  7550. height: math.unit(25, "miles")
  7551. }
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7556. {
  7557. front: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(200, "lbs"),
  7560. name: "Front",
  7561. image: {
  7562. source: "./media/characters/chari-gal/front.svg",
  7563. extra: 1568 / 1385,
  7564. bottom: 0.047
  7565. }
  7566. },
  7567. gigantamax: {
  7568. height: math.unit(6 * 16, "feet"),
  7569. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7570. name: "Gigantamax",
  7571. image: {
  7572. source: "./media/characters/chari-gal/gigantamax.svg",
  7573. extra: 1124 / 888,
  7574. bottom: 0.03
  7575. }
  7576. },
  7577. },
  7578. [
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(5 + 7 / 12, "feet")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(200, "feet"),
  7586. default: true
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(150, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/nova/front.svg",
  7599. extra: 5000 / 4722,
  7600. bottom: 0.02
  7601. }
  7602. }
  7603. },
  7604. [
  7605. {
  7606. name: "Micro-",
  7607. height: math.unit(0.8, "inches")
  7608. },
  7609. {
  7610. name: "Micro",
  7611. height: math.unit(2, "inches"),
  7612. default: true
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(3 + 1 / 12, "feet"),
  7621. weight: math.unit(21.7, "lbs"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/argent/front.svg",
  7625. extra: 1471 / 1331,
  7626. bottom: 100.8 / 1575.5
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Micro",
  7633. height: math.unit(2, "inches")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(3 + 1 / 12, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(120, "feet")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7648. {
  7649. lamp: {
  7650. height: math.unit(7 * 1559 / 989, "feet"),
  7651. name: "Magic Lamp",
  7652. image: {
  7653. source: "./media/characters/mira-al-cul/lamp.svg",
  7654. extra: 1617 / 1559
  7655. }
  7656. },
  7657. front: {
  7658. height: math.unit(7, "feet"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/mira-al-cul/front.svg",
  7662. extra: 1044 / 990
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Heavily Restricted",
  7669. height: math.unit(7 * 1559 / 989, "feet")
  7670. },
  7671. {
  7672. name: "Freshly Freed",
  7673. height: math.unit(50 * 1559 / 989, "feet")
  7674. },
  7675. {
  7676. name: "World Encompassing",
  7677. height: math.unit(10000 * 1559 / 989, "miles")
  7678. },
  7679. {
  7680. name: "Galactic",
  7681. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7682. },
  7683. {
  7684. name: "Palmed Universe",
  7685. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7686. default: true
  7687. },
  7688. {
  7689. name: "Multiversal Matriarch",
  7690. height: math.unit(8.87e10, "yottameters")
  7691. },
  7692. {
  7693. name: "Void Mother",
  7694. height: math.unit(3.14e110, "yottaparsecs")
  7695. },
  7696. {
  7697. name: "Toying with Transcendence",
  7698. height: math.unit(1e307, "meters")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7704. {
  7705. front: {
  7706. height: math.unit(17 + 1 / 12, "feet"),
  7707. weight: math.unit(476.2 * 5, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/kuro-shi-uchū/front.svg",
  7711. extra: 2329 / 1835,
  7712. bottom: 0.02
  7713. }
  7714. },
  7715. },
  7716. [
  7717. {
  7718. name: "Micro",
  7719. height: math.unit(2, "inches")
  7720. },
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(12, "meters")
  7724. },
  7725. {
  7726. name: "Planetary",
  7727. height: math.unit(0.00929, "AU"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Universal",
  7732. height: math.unit(20, "gigaparsecs")
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7738. {
  7739. front: {
  7740. height: math.unit(5 + 2 / 12, "feet"),
  7741. weight: math.unit(120, "lbs"),
  7742. name: "Front",
  7743. image: {
  7744. source: "./media/characters/katherine/front.svg",
  7745. extra: 2075 / 1969
  7746. }
  7747. },
  7748. dress: {
  7749. height: math.unit(5 + 2 / 12, "feet"),
  7750. weight: math.unit(120, "lbs"),
  7751. name: "Dress",
  7752. image: {
  7753. source: "./media/characters/katherine/dress.svg",
  7754. extra: 2258 / 2064
  7755. }
  7756. },
  7757. },
  7758. [
  7759. {
  7760. name: "Micro",
  7761. height: math.unit(1, "inches"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(5 + 2 / 12, "feet")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(100, "meters")
  7771. },
  7772. {
  7773. name: "Megamacro",
  7774. height: math.unit(80, "miles")
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(7 + 8 / 12, "feet"),
  7783. weight: math.unit(250, "lbs"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/yevis/front.svg",
  7787. extra: 1938 / 1755
  7788. }
  7789. }
  7790. },
  7791. [
  7792. {
  7793. name: "Mortal",
  7794. height: math.unit(7 + 8 / 12, "feet")
  7795. },
  7796. {
  7797. name: "Battle",
  7798. height: math.unit(25 + 11 / 12, "feet")
  7799. },
  7800. {
  7801. name: "Wrath",
  7802. height: math.unit(1654 + 11 / 12, "feet")
  7803. },
  7804. {
  7805. name: "Planet Destroyer",
  7806. height: math.unit(12000, "miles")
  7807. },
  7808. {
  7809. name: "Galaxy Conqueror",
  7810. height: math.unit(1.45, "zettameters"),
  7811. default: true
  7812. },
  7813. {
  7814. name: "Universal War",
  7815. height: math.unit(184, "gigaparsecs")
  7816. },
  7817. {
  7818. name: "Eternity War",
  7819. height: math.unit(1.98e55, "yottaparsecs")
  7820. },
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(5 + 8 / 12, "feet"),
  7828. weight: math.unit(63, "kg"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/xavier/front.svg",
  7832. extra: 944 / 883
  7833. }
  7834. },
  7835. frontStretch: {
  7836. height: math.unit(5 + 8 / 12, "feet"),
  7837. weight: math.unit(63, "kg"),
  7838. name: "Stretching",
  7839. image: {
  7840. source: "./media/characters/xavier/front-stretch.svg",
  7841. extra: 962 / 820
  7842. }
  7843. },
  7844. },
  7845. [
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(5 + 8 / 12, "feet")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(100, "meters"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "McLargeHuge",
  7857. height: math.unit(10, "miles")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(5 + 5 / 12, "feet"),
  7866. weight: math.unit(150, "lb"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/joshii/front.svg"
  7870. }
  7871. },
  7872. foot: {
  7873. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7874. name: "Foot",
  7875. image: {
  7876. source: "./media/characters/joshii/foot.svg"
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(2, "inches")
  7884. },
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(5 + 5 / 12, "feet"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(785, "feet")
  7893. },
  7894. {
  7895. name: "Megamacro",
  7896. height: math.unit(24.5, "miles")
  7897. },
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(150, "lb"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/goddess-elizabeth/front.svg",
  7909. extra: 1800 / 1525,
  7910. bottom: 0.005
  7911. }
  7912. },
  7913. foot: {
  7914. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7915. name: "Foot",
  7916. image: {
  7917. source: "./media/characters/goddess-elizabeth/foot.svg"
  7918. }
  7919. },
  7920. mouth: {
  7921. height: math.unit(6, "feet"),
  7922. name: "Mouth",
  7923. image: {
  7924. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7925. }
  7926. },
  7927. },
  7928. [
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(12, "feet")
  7932. },
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(80, "miles"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(15000, "parsecs")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(5 + 9 / 12, "feet"),
  7949. weight: math.unit(144, "lb"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/kara/front.svg"
  7953. }
  7954. },
  7955. feet: {
  7956. height: math.unit(6 / 6.765, "feet"),
  7957. name: "Kara's Feet",
  7958. rename: true,
  7959. image: {
  7960. source: "./media/characters/kara/feet.svg"
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Normal",
  7967. height: math.unit(5 + 9 / 12, "feet")
  7968. },
  7969. {
  7970. name: "Macro",
  7971. height: math.unit(174, "feet"),
  7972. default: true
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(18, "feet"),
  7981. weight: math.unit(4050, "lb"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/tyrone/front.svg",
  7985. extra: 2520 / 2402,
  7986. bottom: 0.025
  7987. }
  7988. },
  7989. },
  7990. [
  7991. {
  7992. name: "Normal",
  7993. height: math.unit(18, "feet"),
  7994. default: true
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(300, "feet")
  7999. },
  8000. ]
  8001. ))
  8002. characterMakers.push(() => makeCharacter(
  8003. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8004. {
  8005. front: {
  8006. height: math.unit(7 + 8 / 12, "feet"),
  8007. weight: math.unit(120, "lb"),
  8008. name: "Front",
  8009. image: {
  8010. source: "./media/characters/danny/front.svg",
  8011. extra: 1490 / 1350
  8012. }
  8013. },
  8014. back: {
  8015. height: math.unit(7 + 8 / 12, "feet"),
  8016. weight: math.unit(120, "lb"),
  8017. name: "Back",
  8018. image: {
  8019. source: "./media/characters/danny/back.svg",
  8020. extra: 1490 / 1350
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(7 + 8 / 12, "feet"),
  8028. default: true
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(3.5, "inches"),
  8037. weight: math.unit(19, "grams"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/mallow/front.svg",
  8041. extra: 471 / 431
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(3.5, "inches"),
  8046. weight: math.unit(19, "grams"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/mallow/back.svg",
  8050. extra: 471 / 431
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Normal",
  8057. height: math.unit(3.5, "inches"),
  8058. default: true
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(9, "feet"),
  8067. weight: math.unit(230, "kg"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/starry-aqua/front.svg"
  8071. }
  8072. },
  8073. back: {
  8074. height: math.unit(9, "feet"),
  8075. weight: math.unit(230, "kg"),
  8076. name: "Back",
  8077. image: {
  8078. source: "./media/characters/starry-aqua/back.svg"
  8079. }
  8080. },
  8081. hand: {
  8082. height: math.unit(9 * 0.1168, "feet"),
  8083. name: "Hand",
  8084. image: {
  8085. source: "./media/characters/starry-aqua/hand.svg"
  8086. }
  8087. },
  8088. foot: {
  8089. height: math.unit(9 * 0.18, "feet"),
  8090. name: "Foot",
  8091. image: {
  8092. source: "./media/characters/starry-aqua/foot.svg"
  8093. }
  8094. }
  8095. },
  8096. [
  8097. {
  8098. name: "Micro",
  8099. height: math.unit(3, "inches")
  8100. },
  8101. {
  8102. name: "Normal",
  8103. height: math.unit(9, "feet")
  8104. },
  8105. {
  8106. name: "Macro",
  8107. height: math.unit(300, "feet"),
  8108. default: true
  8109. },
  8110. {
  8111. name: "Megamacro",
  8112. height: math.unit(3200, "feet")
  8113. }
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(230, "lb"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/luka/front.svg",
  8125. extra: 1,
  8126. bottom: 0.025
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Normal",
  8133. height: math.unit(12 + 8 / 12, "feet"),
  8134. default: true
  8135. },
  8136. {
  8137. name: "Minimacro",
  8138. height: math.unit(20, "feet")
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(250, "feet")
  8143. },
  8144. {
  8145. name: "Megamacro",
  8146. height: math.unit(5, "miles")
  8147. },
  8148. {
  8149. name: "Gigamacro",
  8150. height: math.unit(8000, "miles")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(6, "feet"),
  8159. weight: math.unit(150, "lb"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/natalie-nightring/front.svg",
  8163. extra: 1,
  8164. bottom: 0.06
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Uh Oh",
  8171. height: math.unit(0.1, "mm")
  8172. },
  8173. {
  8174. name: "Small",
  8175. height: math.unit(3, "inches")
  8176. },
  8177. {
  8178. name: "Human Scale",
  8179. height: math.unit(6, "feet")
  8180. },
  8181. {
  8182. name: "Librarian",
  8183. height: math.unit(50, "feet"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Immense",
  8188. height: math.unit(200, "miles")
  8189. },
  8190. ]
  8191. ))
  8192. characterMakers.push(() => makeCharacter(
  8193. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8194. {
  8195. front: {
  8196. height: math.unit(6, "feet"),
  8197. weight: math.unit(180, "lbs"),
  8198. name: "Front",
  8199. image: {
  8200. source: "./media/characters/danni-rosie/front.svg",
  8201. extra: 1260 / 1128,
  8202. bottom: 0.022
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Micro",
  8209. height: math.unit(2, "inches"),
  8210. default: true
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(5 + 9 / 12, "feet"),
  8219. weight: math.unit(220, "lb"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/samantha-kruse/front.svg",
  8223. extra: (985 / 935),
  8224. bottom: 0.03
  8225. }
  8226. },
  8227. frontUndressed: {
  8228. height: math.unit(5 + 9 / 12, "feet"),
  8229. weight: math.unit(220, "lb"),
  8230. name: "Front (Undressed)",
  8231. image: {
  8232. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8233. extra: (973 / 923),
  8234. bottom: 0.025
  8235. }
  8236. },
  8237. fat: {
  8238. height: math.unit(5 + 9 / 12, "feet"),
  8239. weight: math.unit(900, "lb"),
  8240. name: "Front (Fat)",
  8241. image: {
  8242. source: "./media/characters/samantha-kruse/fat.svg",
  8243. extra: 2688 / 2561
  8244. }
  8245. },
  8246. },
  8247. [
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(5 + 9 / 12, "feet"),
  8251. default: true
  8252. }
  8253. ]
  8254. ))
  8255. characterMakers.push(() => makeCharacter(
  8256. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8257. {
  8258. back: {
  8259. height: math.unit(5 + 4 / 12, "feet"),
  8260. weight: math.unit(4963, "lb"),
  8261. name: "Back",
  8262. image: {
  8263. source: "./media/characters/amelia-rosie/back.svg",
  8264. extra: 1113 / 963,
  8265. bottom: 0.01
  8266. }
  8267. },
  8268. },
  8269. [
  8270. {
  8271. name: "Level 0",
  8272. height: math.unit(5 + 4 / 12, "feet")
  8273. },
  8274. {
  8275. name: "Level 1",
  8276. height: math.unit(164597, "feet"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Level 2",
  8281. height: math.unit(956243, "miles")
  8282. },
  8283. {
  8284. name: "Level 3",
  8285. height: math.unit(29421709423, "miles")
  8286. },
  8287. {
  8288. name: "Level 4",
  8289. height: math.unit(154, "lightyears")
  8290. },
  8291. {
  8292. name: "Level 5",
  8293. height: math.unit(4738272, "lightyears")
  8294. },
  8295. {
  8296. name: "Level 6",
  8297. height: math.unit(145787152896, "lightyears")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(5 + 11 / 12, "feet"),
  8306. weight: math.unit(65, "kg"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/rook-kitara/front.svg",
  8310. extra: 1347 / 1274,
  8311. bottom: 0.005
  8312. }
  8313. },
  8314. },
  8315. [
  8316. {
  8317. name: "Totally Unfair",
  8318. height: math.unit(1.8, "mm")
  8319. },
  8320. {
  8321. name: "Lap Rookie",
  8322. height: math.unit(1.4, "feet")
  8323. },
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(5 + 11 / 12, "feet"),
  8327. default: true
  8328. },
  8329. {
  8330. name: "How Did This Happen",
  8331. height: math.unit(80, "miles")
  8332. }
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(7, "feet"),
  8340. weight: math.unit(300, "lb"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/pisces/front.svg",
  8344. extra: 2255 / 2115,
  8345. bottom: 0.03
  8346. }
  8347. },
  8348. back: {
  8349. height: math.unit(7, "feet"),
  8350. weight: math.unit(300, "lb"),
  8351. name: "Back",
  8352. image: {
  8353. source: "./media/characters/pisces/back.svg",
  8354. extra: 2146 / 2055,
  8355. bottom: 0.04
  8356. }
  8357. },
  8358. },
  8359. [
  8360. {
  8361. name: "Normal",
  8362. height: math.unit(7, "feet"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Swimming Pool",
  8367. height: math.unit(12.2, "meters")
  8368. },
  8369. {
  8370. name: "Olympic Swimming Pool",
  8371. height: math.unit(56.3, "meters")
  8372. },
  8373. {
  8374. name: "Lake Superior",
  8375. height: math.unit(93900, "meters")
  8376. },
  8377. {
  8378. name: "Mediterranean Sea",
  8379. height: math.unit(644457, "meters")
  8380. },
  8381. {
  8382. name: "World's Oceans",
  8383. height: math.unit(4567491, "meters")
  8384. },
  8385. ]
  8386. ))
  8387. characterMakers.push(() => makeCharacter(
  8388. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8389. {
  8390. front: {
  8391. height: math.unit(2.3, "meters"),
  8392. weight: math.unit(120, "kg"),
  8393. name: "Front",
  8394. image: {
  8395. source: "./media/characters/zelas/front.svg"
  8396. }
  8397. },
  8398. side: {
  8399. height: math.unit(2.3, "meters"),
  8400. weight: math.unit(120, "kg"),
  8401. name: "Side",
  8402. image: {
  8403. source: "./media/characters/zelas/side.svg"
  8404. }
  8405. },
  8406. back: {
  8407. height: math.unit(2.3, "meters"),
  8408. weight: math.unit(120, "kg"),
  8409. name: "Back",
  8410. image: {
  8411. source: "./media/characters/zelas/back.svg"
  8412. }
  8413. },
  8414. foot: {
  8415. height: math.unit(1.116, "feet"),
  8416. name: "Foot",
  8417. image: {
  8418. source: "./media/characters/zelas/foot.svg"
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(2.3, "meters")
  8426. },
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(30, "meters"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(1, "inch"),
  8439. weight: math.unit(0.21, "grams"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/talbot/front.svg",
  8443. extra: 594 / 544
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Micro",
  8450. height: math.unit(1, "inch"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8457. {
  8458. front: {
  8459. height: math.unit(3 + 3 / 12, "feet"),
  8460. weight: math.unit(51.8, "lb"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/fliss/front.svg",
  8464. extra: 840 / 640
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Teeny Tiny",
  8471. height: math.unit(1, "mm")
  8472. },
  8473. {
  8474. name: "Small",
  8475. height: math.unit(1, "inch"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Standard Sylveon",
  8480. height: math.unit(3 + 3 / 12, "feet")
  8481. },
  8482. {
  8483. name: "Large Nuisance",
  8484. height: math.unit(33, "feet")
  8485. },
  8486. {
  8487. name: "City Filler",
  8488. height: math.unit(3000, "feet")
  8489. },
  8490. {
  8491. name: "New Horizon",
  8492. height: math.unit(6000, "miles")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(5, "cm"),
  8501. weight: math.unit(1.94, "g"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/fleta/front.svg",
  8505. extra: 835 / 803
  8506. }
  8507. },
  8508. back: {
  8509. height: math.unit(5, "cm"),
  8510. weight: math.unit(1.94, "g"),
  8511. name: "Back",
  8512. image: {
  8513. source: "./media/characters/fleta/back.svg",
  8514. extra: 835 / 803
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Micro",
  8521. height: math.unit(5, "cm"),
  8522. default: true
  8523. },
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(225, "lb"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/dominic/front.svg",
  8535. extra: 1770 / 1620,
  8536. bottom: 0.025
  8537. }
  8538. },
  8539. back: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(225, "lb"),
  8542. name: "Back",
  8543. image: {
  8544. source: "./media/characters/dominic/back.svg",
  8545. extra: 1745 / 1620,
  8546. bottom: 0.065
  8547. }
  8548. },
  8549. },
  8550. [
  8551. {
  8552. name: "Nano",
  8553. height: math.unit(0.1, "mm")
  8554. },
  8555. {
  8556. name: "Micro-",
  8557. height: math.unit(1, "mm")
  8558. },
  8559. {
  8560. name: "Micro",
  8561. height: math.unit(4, "inches")
  8562. },
  8563. {
  8564. name: "Normal",
  8565. height: math.unit(6 + 4 / 12, "feet"),
  8566. default: true
  8567. },
  8568. {
  8569. name: "Macro",
  8570. height: math.unit(115, "feet")
  8571. },
  8572. {
  8573. name: "Macro+",
  8574. height: math.unit(955, "feet")
  8575. },
  8576. {
  8577. name: "Megamacro",
  8578. height: math.unit(8990, "feet")
  8579. },
  8580. {
  8581. name: "Gigmacro",
  8582. height: math.unit(9310, "miles")
  8583. },
  8584. {
  8585. name: "Teramacro",
  8586. height: math.unit(1567005010, "miles")
  8587. },
  8588. {
  8589. name: "Examacro",
  8590. height: math.unit(1425, "parsecs")
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(400, "feet"),
  8599. weight: math.unit(44444444, "lb"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/major-colonel/front.svg"
  8603. }
  8604. },
  8605. back: {
  8606. height: math.unit(400, "feet"),
  8607. weight: math.unit(44444444, "lb"),
  8608. name: "Back",
  8609. image: {
  8610. source: "./media/characters/major-colonel/back.svg"
  8611. }
  8612. },
  8613. },
  8614. [
  8615. {
  8616. name: "Macro",
  8617. height: math.unit(400, "feet"),
  8618. default: true
  8619. },
  8620. ]
  8621. ))
  8622. characterMakers.push(() => makeCharacter(
  8623. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8624. {
  8625. catFront: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(120, "lb"),
  8628. name: "Front (Cat Side)",
  8629. image: {
  8630. source: "./media/characters/axel-lycan/cat-front.svg",
  8631. extra: 430 / 402,
  8632. bottom: 43 / 472.35
  8633. }
  8634. },
  8635. catBack: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(120, "lb"),
  8638. name: "Back (Cat Side)",
  8639. image: {
  8640. source: "./media/characters/axel-lycan/cat-back.svg",
  8641. extra: 447 / 419,
  8642. bottom: 23.3 / 469
  8643. }
  8644. },
  8645. wolfFront: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(120, "lb"),
  8648. name: "Front (Wolf Side)",
  8649. image: {
  8650. source: "./media/characters/axel-lycan/wolf-front.svg",
  8651. extra: 485 / 456,
  8652. bottom: 19 / 504
  8653. }
  8654. },
  8655. wolfBack: {
  8656. height: math.unit(6, "feet"),
  8657. weight: math.unit(120, "lb"),
  8658. name: "Back (Wolf Side)",
  8659. image: {
  8660. source: "./media/characters/axel-lycan/wolf-back.svg",
  8661. extra: 475 / 438,
  8662. bottom: 39.2 / 514
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Macro",
  8669. height: math.unit(1, "km"),
  8670. default: true
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(5 + 9 / 12, "feet"),
  8679. weight: math.unit(175, "lb"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/vanrel-hyena/front.svg",
  8683. extra: 1086 / 1010,
  8684. bottom: 0.04
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(5 + 9 / 12, "feet"),
  8692. default: true
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(103, "lb"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/abbott-absol/front.svg",
  8705. extra: 2010 / 1842
  8706. }
  8707. },
  8708. },
  8709. [
  8710. {
  8711. name: "Megamicro",
  8712. height: math.unit(0.1, "mm")
  8713. },
  8714. {
  8715. name: "Micro",
  8716. height: math.unit(1, "inch")
  8717. },
  8718. {
  8719. name: "Normal",
  8720. height: math.unit(6, "feet"),
  8721. default: true
  8722. },
  8723. ]
  8724. ))
  8725. characterMakers.push(() => makeCharacter(
  8726. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8727. {
  8728. front: {
  8729. height: math.unit(6, "feet"),
  8730. weight: math.unit(264, "lb"),
  8731. name: "Front",
  8732. image: {
  8733. source: "./media/characters/hector/front.svg",
  8734. extra: 2280 / 2130,
  8735. bottom: 0.07
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(12.25, "foot"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(160, "feet")
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(150, "lb"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/sal/front.svg",
  8760. extra: 1846 / 1699,
  8761. bottom: 0.04
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Megamacro",
  8768. height: math.unit(10, "miles"),
  8769. default: true
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8775. {
  8776. front: {
  8777. height: math.unit(3, "meters"),
  8778. weight: math.unit(450, "kg"),
  8779. name: "front",
  8780. image: {
  8781. source: "./media/characters/ranger/front.svg",
  8782. extra: 2401 / 2243,
  8783. bottom: 0.05
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(3, "meters"),
  8791. default: true
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(14, "feet"),
  8800. weight: math.unit(800, "kg"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/theresa/front.svg",
  8804. extra: 3575 / 3346,
  8805. bottom: 0.03
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(14, "feet"),
  8813. default: true
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8819. {
  8820. front: {
  8821. height: math.unit(6, "feet"),
  8822. weight: math.unit(3, "kg"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/ine/front.svg",
  8826. extra: 678 / 539,
  8827. bottom: 0.023
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(2.265, "feet"),
  8835. default: true
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(5, "feet"),
  8844. weight: math.unit(30, "kg"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/vial/front.svg",
  8848. extra: 1365 / 1277,
  8849. bottom: 0.04
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(5, "feet"),
  8857. default: true
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8863. {
  8864. side: {
  8865. height: math.unit(3.4, "meters"),
  8866. weight: math.unit(1000, "lb"),
  8867. name: "Side",
  8868. image: {
  8869. source: "./media/characters/rovoska/side.svg",
  8870. extra: 4403 / 1515
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(3.4, "meters"),
  8878. default: true
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8884. {
  8885. front: {
  8886. height: math.unit(8, "feet"),
  8887. weight: math.unit(315, "lb"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/gunner-rotthbauer/front.svg"
  8891. }
  8892. },
  8893. back: {
  8894. height: math.unit(8, "feet"),
  8895. weight: math.unit(315, "lb"),
  8896. name: "Back",
  8897. image: {
  8898. source: "./media/characters/gunner-rotthbauer/back.svg"
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Micro",
  8905. height: math.unit(3.5, "inches")
  8906. },
  8907. {
  8908. name: "Normal",
  8909. height: math.unit(8, "feet"),
  8910. default: true
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(250, "feet")
  8915. },
  8916. {
  8917. name: "Megamacro",
  8918. height: math.unit(1, "AU")
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8924. {
  8925. front: {
  8926. height: math.unit(5 + 5 / 12, "feet"),
  8927. weight: math.unit(140, "lb"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/allatia/front.svg",
  8931. extra: 1227 / 1180,
  8932. bottom: 0.027
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(5 + 5 / 12, "feet")
  8940. },
  8941. {
  8942. name: "Macro",
  8943. height: math.unit(250, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Megamacro",
  8948. height: math.unit(8, "miles")
  8949. }
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(120, "lb"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/tene/front.svg",
  8961. extra: 1728 / 1578,
  8962. bottom: 0.022
  8963. }
  8964. },
  8965. stomping: {
  8966. height: math.unit(2.025, "meters"),
  8967. weight: math.unit(120, "lb"),
  8968. name: "Stomping",
  8969. image: {
  8970. source: "./media/characters/tene/stomping.svg",
  8971. extra: 938 / 873,
  8972. bottom: 0.01
  8973. }
  8974. },
  8975. sitting: {
  8976. height: math.unit(1, "meter"),
  8977. weight: math.unit(120, "lb"),
  8978. name: "Sitting",
  8979. image: {
  8980. source: "./media/characters/tene/sitting.svg",
  8981. extra: 437 / 415,
  8982. bottom: 0.1
  8983. }
  8984. },
  8985. feral: {
  8986. height: math.unit(3.9, "feet"),
  8987. weight: math.unit(250, "lb"),
  8988. name: "Feral",
  8989. image: {
  8990. source: "./media/characters/tene/feral.svg",
  8991. extra: 717 / 458,
  8992. bottom: 0.179
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(6, "feet")
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(300, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(5, "miles")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9014. {
  9015. side: {
  9016. height: math.unit(6, "feet"),
  9017. name: "Side",
  9018. image: {
  9019. source: "./media/characters/evander/side.svg",
  9020. extra: 877 / 477
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Normal",
  9027. height: math.unit(0.83, "meters"),
  9028. default: true
  9029. },
  9030. ]
  9031. ))
  9032. characterMakers.push(() => makeCharacter(
  9033. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9034. {
  9035. front: {
  9036. height: math.unit(12, "feet"),
  9037. weight: math.unit(1000, "lb"),
  9038. name: "Front",
  9039. image: {
  9040. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9041. extra: 1762 / 1611
  9042. }
  9043. },
  9044. back: {
  9045. height: math.unit(12, "feet"),
  9046. weight: math.unit(1000, "lb"),
  9047. name: "Back",
  9048. image: {
  9049. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9050. extra: 1762 / 1611
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Normal",
  9057. height: math.unit(12, "feet"),
  9058. default: true
  9059. },
  9060. {
  9061. name: "Kaiju",
  9062. height: math.unit(150, "feet")
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(6, "feet"),
  9071. weight: math.unit(150, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/zero-alurus/front.svg"
  9075. }
  9076. },
  9077. back: {
  9078. height: math.unit(6, "feet"),
  9079. weight: math.unit(150, "lb"),
  9080. name: "Back",
  9081. image: {
  9082. source: "./media/characters/zero-alurus/back.svg"
  9083. }
  9084. },
  9085. },
  9086. [
  9087. {
  9088. name: "Normal",
  9089. height: math.unit(5 + 10 / 12, "feet")
  9090. },
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(60, "feet"),
  9094. default: true
  9095. },
  9096. {
  9097. name: "Macro+",
  9098. height: math.unit(450, "feet")
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9104. {
  9105. front: {
  9106. height: math.unit(6, "feet"),
  9107. weight: math.unit(200, "lb"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/mega-shi/front.svg",
  9111. extra: 1279 / 1250,
  9112. bottom: 0.02
  9113. }
  9114. },
  9115. back: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(200, "lb"),
  9118. name: "Back",
  9119. image: {
  9120. source: "./media/characters/mega-shi/back.svg",
  9121. extra: 1279 / 1250,
  9122. bottom: 0.02
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Micro",
  9129. height: math.unit(16 + 6 / 12, "feet")
  9130. },
  9131. {
  9132. name: "Third Dimension",
  9133. height: math.unit(40, "meters")
  9134. },
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(660, "feet"),
  9138. default: true
  9139. },
  9140. {
  9141. name: "Megamacro",
  9142. height: math.unit(10, "miles")
  9143. },
  9144. {
  9145. name: "Planetary Launch",
  9146. height: math.unit(500, "miles")
  9147. },
  9148. {
  9149. name: "Interstellar",
  9150. height: math.unit(1e9, "miles")
  9151. },
  9152. {
  9153. name: "Leaving the Universe",
  9154. height: math.unit(1, "gigaparsec")
  9155. },
  9156. {
  9157. name: "Travelling Universes",
  9158. height: math.unit(30e15, "parsecs")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9164. {
  9165. front: {
  9166. height: math.unit(6, "feet"),
  9167. weight: math.unit(150, "lb"),
  9168. name: "Front",
  9169. image: {
  9170. source: "./media/characters/odyssey/front.svg",
  9171. extra: 1782 / 1582,
  9172. bottom: 0.01
  9173. }
  9174. },
  9175. side: {
  9176. height: math.unit(5.7, "feet"),
  9177. weight: math.unit(140, "lb"),
  9178. name: "Side",
  9179. image: {
  9180. source: "./media/characters/odyssey/side.svg",
  9181. extra: 6462 / 5700
  9182. }
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Normal",
  9188. height: math.unit(5 + 4 / 12, "feet")
  9189. },
  9190. {
  9191. name: "Macro",
  9192. height: math.unit(1, "km")
  9193. },
  9194. {
  9195. name: "Megamacro",
  9196. height: math.unit(3000, "km")
  9197. },
  9198. {
  9199. name: "Gigamacro",
  9200. height: math.unit(1, "AU"),
  9201. default: true
  9202. },
  9203. {
  9204. name: "Omniversal",
  9205. height: math.unit(100e14, "lightyears")
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(6, "feet"),
  9214. weight: math.unit(300, "lb"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/mekuto/front.svg",
  9218. extra: 921 / 832,
  9219. bottom: 0.03
  9220. }
  9221. },
  9222. hand: {
  9223. height: math.unit(6 / 10.24, "feet"),
  9224. name: "Hand",
  9225. image: {
  9226. source: "./media/characters/mekuto/hand.svg"
  9227. }
  9228. },
  9229. foot: {
  9230. height: math.unit(6 / 5.05, "feet"),
  9231. name: "Foot",
  9232. image: {
  9233. source: "./media/characters/mekuto/foot.svg"
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Minimicro",
  9240. height: math.unit(0.2, "inches")
  9241. },
  9242. {
  9243. name: "Micro",
  9244. height: math.unit(1.5, "inches")
  9245. },
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(5 + 11 / 12, "feet"),
  9249. default: true
  9250. },
  9251. {
  9252. name: "Minimacro",
  9253. height: math.unit(17 + 9 / 12, "feet")
  9254. },
  9255. {
  9256. name: "Macro",
  9257. height: math.unit(177.5, "feet")
  9258. },
  9259. {
  9260. name: "Megamacro",
  9261. height: math.unit(152, "miles")
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9267. {
  9268. front: {
  9269. height: math.unit(6.5, "inches"),
  9270. weight: math.unit(13, "oz"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/dafydd-tomos/front.svg",
  9274. extra: 2990 / 2603,
  9275. bottom: 0.03
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Micro",
  9282. height: math.unit(6.5, "inches"),
  9283. default: true
  9284. },
  9285. ]
  9286. ))
  9287. characterMakers.push(() => makeCharacter(
  9288. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9289. {
  9290. front: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(150, "lb"),
  9293. name: "Front",
  9294. image: {
  9295. source: "./media/characters/splinter/front.svg",
  9296. extra: 2990 / 2882,
  9297. bottom: 0.04
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(150, "lb"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/splinter/back.svg",
  9306. extra: 2990 / 2882,
  9307. bottom: 0.04
  9308. }
  9309. },
  9310. },
  9311. [
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(6, "feet")
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(230, "meters"),
  9319. default: true
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(4 + 10 / 12, "feet"),
  9328. weight: math.unit(480, "lb"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/snow-gabumon/front.svg",
  9332. extra: 1140 / 963,
  9333. bottom: 0.058
  9334. }
  9335. },
  9336. back: {
  9337. height: math.unit(4 + 10 / 12, "feet"),
  9338. weight: math.unit(480, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/snow-gabumon/back.svg",
  9342. extra: 1115 / 962,
  9343. bottom: 0.041
  9344. }
  9345. },
  9346. frontUndresed: {
  9347. height: math.unit(4 + 10 / 12, "feet"),
  9348. weight: math.unit(480, "lb"),
  9349. name: "Front (Undressed)",
  9350. image: {
  9351. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9352. extra: 1061 / 960,
  9353. bottom: 0.045
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(1, "inch")
  9361. },
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(4 + 10 / 12, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(200, "feet")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(120, "miles")
  9374. },
  9375. {
  9376. name: "Gigamacro",
  9377. height: math.unit(9800, "miles")
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(1.7, "meters"),
  9386. weight: math.unit(140, "lb"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/moody/front.svg",
  9390. extra: 3226 / 3007,
  9391. bottom: 0.087
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Micro",
  9398. height: math.unit(1, "mm")
  9399. },
  9400. {
  9401. name: "Normal",
  9402. height: math.unit(1.7, "meters"),
  9403. default: true
  9404. },
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(80, "meters")
  9408. },
  9409. {
  9410. name: "Macro+",
  9411. height: math.unit(500, "meters")
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(6, "feet"),
  9420. weight: math.unit(150, "lb"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/zyas/front.svg",
  9424. extra: 1180 / 1120,
  9425. bottom: 0.045
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Normal",
  9432. height: math.unit(10, "feet"),
  9433. default: true
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(500, "feet")
  9438. },
  9439. {
  9440. name: "Megamacro",
  9441. height: math.unit(5, "miles")
  9442. },
  9443. {
  9444. name: "Teramacro",
  9445. height: math.unit(150000, "miles")
  9446. },
  9447. ]
  9448. ))
  9449. characterMakers.push(() => makeCharacter(
  9450. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9451. {
  9452. front: {
  9453. height: math.unit(6, "feet"),
  9454. weight: math.unit(150, "lb"),
  9455. name: "Front",
  9456. image: {
  9457. source: "./media/characters/cuon/front.svg",
  9458. extra: 1390 / 1320,
  9459. bottom: 0.008
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Micro",
  9466. height: math.unit(3, "inches")
  9467. },
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(18 + 9 / 12, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Macro",
  9475. height: math.unit(360, "feet")
  9476. },
  9477. {
  9478. name: "Megamacro",
  9479. height: math.unit(360, "miles")
  9480. },
  9481. ]
  9482. ))
  9483. characterMakers.push(() => makeCharacter(
  9484. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9485. {
  9486. front: {
  9487. height: math.unit(2.4, "meters"),
  9488. weight: math.unit(70, "kg"),
  9489. name: "Front",
  9490. image: {
  9491. source: "./media/characters/nyanuxk/front.svg",
  9492. extra: 1172 / 1084,
  9493. bottom: 0.065
  9494. }
  9495. },
  9496. side: {
  9497. height: math.unit(2.4, "meters"),
  9498. weight: math.unit(70, "kg"),
  9499. name: "Side",
  9500. image: {
  9501. source: "./media/characters/nyanuxk/side.svg",
  9502. extra: 1190 / 1132,
  9503. bottom: 0.007
  9504. }
  9505. },
  9506. back: {
  9507. height: math.unit(2.4, "meters"),
  9508. weight: math.unit(70, "kg"),
  9509. name: "Back",
  9510. image: {
  9511. source: "./media/characters/nyanuxk/back.svg",
  9512. extra: 1200 / 1141,
  9513. bottom: 0.015
  9514. }
  9515. },
  9516. foot: {
  9517. height: math.unit(0.52, "meters"),
  9518. name: "Foot",
  9519. image: {
  9520. source: "./media/characters/nyanuxk/foot.svg"
  9521. }
  9522. },
  9523. },
  9524. [
  9525. {
  9526. name: "Micro",
  9527. height: math.unit(2, "cm")
  9528. },
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(2.4, "meters"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Smaller Macro",
  9536. height: math.unit(120, "meters")
  9537. },
  9538. {
  9539. name: "Bigger Macro",
  9540. height: math.unit(1.2, "km")
  9541. },
  9542. {
  9543. name: "Megamacro",
  9544. height: math.unit(15, "kilometers")
  9545. },
  9546. {
  9547. name: "Gigamacro",
  9548. height: math.unit(2000, "km")
  9549. },
  9550. {
  9551. name: "Teramacro",
  9552. height: math.unit(500000, "km")
  9553. },
  9554. ]
  9555. ))
  9556. characterMakers.push(() => makeCharacter(
  9557. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9558. {
  9559. side: {
  9560. height: math.unit(6, "feet"),
  9561. name: "Side",
  9562. image: {
  9563. source: "./media/characters/ailbhe/side.svg",
  9564. extra: 757 / 464,
  9565. bottom: 0.041
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(1.07, "meters"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9579. {
  9580. front: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(120, "kg"),
  9583. name: "Front",
  9584. image: {
  9585. source: "./media/characters/zevulfius/front.svg",
  9586. extra: 965 / 903
  9587. }
  9588. },
  9589. side: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(120, "kg"),
  9592. name: "Side",
  9593. image: {
  9594. source: "./media/characters/zevulfius/side.svg",
  9595. extra: 939 / 900
  9596. }
  9597. },
  9598. back: {
  9599. height: math.unit(6, "feet"),
  9600. weight: math.unit(120, "kg"),
  9601. name: "Back",
  9602. image: {
  9603. source: "./media/characters/zevulfius/back.svg",
  9604. extra: 918 / 854,
  9605. bottom: 0.005
  9606. }
  9607. },
  9608. foot: {
  9609. height: math.unit(6 / 3.72, "feet"),
  9610. name: "Foot",
  9611. image: {
  9612. source: "./media/characters/zevulfius/foot.svg"
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Macro",
  9619. height: math.unit(750, "meters")
  9620. },
  9621. {
  9622. name: "Megamacro",
  9623. height: math.unit(20, "km"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Gigamacro",
  9628. height: math.unit(2000, "km")
  9629. },
  9630. {
  9631. name: "Teramacro",
  9632. height: math.unit(250000, "km")
  9633. },
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(100, "feet"),
  9641. weight: math.unit(350, "kg"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/rikes/front.svg",
  9645. extra: 1565 / 1483,
  9646. bottom: 0.017
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Macro",
  9653. height: math.unit(100, "feet"),
  9654. default: true
  9655. },
  9656. ]
  9657. ))
  9658. characterMakers.push(() => makeCharacter(
  9659. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9660. {
  9661. anthro: {
  9662. height: math.unit(8, "feet"),
  9663. weight: math.unit(120, "kg"),
  9664. name: "Anthro",
  9665. image: {
  9666. source: "./media/characters/adam-silver-mane/anthro.svg",
  9667. extra: 5743 / 5339,
  9668. bottom: 0.07
  9669. }
  9670. },
  9671. taur: {
  9672. height: math.unit(16, "feet"),
  9673. weight: math.unit(1500, "kg"),
  9674. name: "Taur",
  9675. image: {
  9676. source: "./media/characters/adam-silver-mane/taur.svg",
  9677. extra: 1713 / 1571,
  9678. bottom: 0.01
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(8, "feet")
  9686. },
  9687. {
  9688. name: "Minimacro",
  9689. height: math.unit(80, "feet")
  9690. },
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(800, "feet"),
  9694. default: true
  9695. },
  9696. {
  9697. name: "Megamacro",
  9698. height: math.unit(8000, "feet")
  9699. },
  9700. {
  9701. name: "Gigamacro",
  9702. height: math.unit(800, "miles")
  9703. },
  9704. {
  9705. name: "Teramacro",
  9706. height: math.unit(80000, "miles")
  9707. },
  9708. {
  9709. name: "Celestial",
  9710. height: math.unit(8e6, "miles")
  9711. },
  9712. {
  9713. name: "Star Dragon",
  9714. height: math.unit(800000, "parsecs")
  9715. },
  9716. {
  9717. name: "Godly",
  9718. height: math.unit(800, "teraparsecs")
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(6, "feet"),
  9727. weight: math.unit(150, "lb"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/ky'owin/front.svg",
  9731. extra: 3888 / 3068,
  9732. bottom: 0.015
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(6 + 8 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Large",
  9743. height: math.unit(68, "feet")
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(132, "feet")
  9748. },
  9749. {
  9750. name: "Macro+",
  9751. height: math.unit(340, "feet")
  9752. },
  9753. {
  9754. name: "Macro++",
  9755. height: math.unit(680, "feet"),
  9756. default: true
  9757. },
  9758. {
  9759. name: "Megamacro",
  9760. height: math.unit(1, "mile")
  9761. },
  9762. {
  9763. name: "Megamacro+",
  9764. height: math.unit(10, "miles")
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(4, "feet"),
  9773. weight: math.unit(50, "lb"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/mal/front.svg",
  9777. extra: 785 / 724,
  9778. bottom: 0.07
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Micro",
  9785. height: math.unit(4, "inches")
  9786. },
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(4, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(200, "feet")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(150, "lb"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/jordan-deware/front.svg",
  9807. extra: 1191 / 1012
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Nano",
  9814. height: math.unit(0.01, "mm")
  9815. },
  9816. {
  9817. name: "Minimicro",
  9818. height: math.unit(1, "mm")
  9819. },
  9820. {
  9821. name: "Micro",
  9822. height: math.unit(0.5, "inches")
  9823. },
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(4, "feet"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Minimacro",
  9831. height: math.unit(40, "meters")
  9832. },
  9833. {
  9834. name: "Small Macro",
  9835. height: math.unit(400, "meters")
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(4, "miles")
  9840. },
  9841. {
  9842. name: "Megamacro",
  9843. height: math.unit(40, "miles")
  9844. },
  9845. {
  9846. name: "Megamacro+",
  9847. height: math.unit(400, "miles")
  9848. },
  9849. {
  9850. name: "Gigamacro",
  9851. height: math.unit(400000, "miles")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9857. {
  9858. side: {
  9859. height: math.unit(6, "feet"),
  9860. weight: math.unit(150, "lb"),
  9861. name: "Side",
  9862. image: {
  9863. source: "./media/characters/kimiko/side.svg",
  9864. extra: 600 / 358
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(15, "feet"),
  9872. default: true
  9873. },
  9874. {
  9875. name: "Macro",
  9876. height: math.unit(220, "feet")
  9877. },
  9878. {
  9879. name: "Macro+",
  9880. height: math.unit(1450, "feet")
  9881. },
  9882. {
  9883. name: "Megamacro",
  9884. height: math.unit(11500, "feet")
  9885. },
  9886. {
  9887. name: "Gigamacro",
  9888. height: math.unit(9500, "miles")
  9889. },
  9890. {
  9891. name: "Teramacro",
  9892. height: math.unit(2208005005, "miles")
  9893. },
  9894. {
  9895. name: "Examacro",
  9896. height: math.unit(2750, "parsecs")
  9897. },
  9898. {
  9899. name: "Zettamacro",
  9900. height: math.unit(101500, "parsecs")
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9906. {
  9907. front: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(70, "kg"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/andrew-sleepy/front.svg"
  9913. }
  9914. },
  9915. side: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(70, "kg"),
  9918. name: "Side",
  9919. image: {
  9920. source: "./media/characters/andrew-sleepy/side.svg"
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Micro",
  9927. height: math.unit(1, "mm"),
  9928. default: true
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9934. {
  9935. front: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(150, "lb"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/judio/front.svg",
  9941. extra: 1258 / 1110
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(5 + 6 / 12, "feet")
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(1000, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Megamacro",
  9957. height: math.unit(10, "miles")
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(68, "kg"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/nomaxice/front.svg",
  9970. extra: 1498 / 1073,
  9971. bottom: 0.075
  9972. }
  9973. },
  9974. foot: {
  9975. height: math.unit(1.1, "feet"),
  9976. name: "Foot",
  9977. image: {
  9978. source: "./media/characters/nomaxice/foot.svg"
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Micro",
  9985. height: math.unit(8, "cm")
  9986. },
  9987. {
  9988. name: "Norm",
  9989. height: math.unit(1.82, "m")
  9990. },
  9991. {
  9992. name: "Norm+",
  9993. height: math.unit(8.8, "feet")
  9994. },
  9995. {
  9996. name: "Big",
  9997. height: math.unit(8, "meters"),
  9998. default: true
  9999. },
  10000. {
  10001. name: "Macro",
  10002. height: math.unit(18, "meters")
  10003. },
  10004. {
  10005. name: "Macro+",
  10006. height: math.unit(88, "meters")
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10012. {
  10013. front: {
  10014. height: math.unit(12, "feet"),
  10015. weight: math.unit(1.5, "tons"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/dydros/front.svg",
  10019. extra: 863 / 800,
  10020. bottom: 0.015
  10021. }
  10022. },
  10023. back: {
  10024. height: math.unit(12, "feet"),
  10025. weight: math.unit(1.5, "tons"),
  10026. name: "Back",
  10027. image: {
  10028. source: "./media/characters/dydros/back.svg",
  10029. extra: 900 / 843,
  10030. bottom: 0.005
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(12, "feet"),
  10038. default: true
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10044. {
  10045. front: {
  10046. height: math.unit(6, "feet"),
  10047. weight: math.unit(100, "kg"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/riggi/front.svg",
  10051. extra: 5787 / 5303
  10052. }
  10053. },
  10054. hyper: {
  10055. height: math.unit(6 * 5 / 3, "feet"),
  10056. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10057. name: "Hyper",
  10058. image: {
  10059. source: "./media/characters/riggi/hyper.svg",
  10060. extra: 3595 / 3485
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Small Macro",
  10067. height: math.unit(50, "feet")
  10068. },
  10069. {
  10070. name: "Default",
  10071. height: math.unit(200, "feet"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Loom",
  10076. height: math.unit(10000, "feet")
  10077. },
  10078. {
  10079. name: "Cruising Altitude",
  10080. height: math.unit(30000, "feet")
  10081. },
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(100, "miles")
  10085. },
  10086. {
  10087. name: "Continent Sized",
  10088. height: math.unit(2800, "miles")
  10089. },
  10090. {
  10091. name: "Earth Sized",
  10092. height: math.unit(8000, "miles")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(6, "feet"),
  10101. weight: math.unit(250, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/alexi/front.svg",
  10105. extra: 3483 / 3291,
  10106. bottom: 0.04
  10107. }
  10108. },
  10109. back: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(250, "lb"),
  10112. name: "Back",
  10113. image: {
  10114. source: "./media/characters/alexi/back.svg",
  10115. extra: 3533 / 3356,
  10116. bottom: 0.021
  10117. }
  10118. },
  10119. frontTransforming: {
  10120. height: math.unit(8.58, "feet"),
  10121. weight: math.unit(1300, "lb"),
  10122. name: "Transforming",
  10123. image: {
  10124. source: "./media/characters/alexi/front-transforming.svg",
  10125. extra: 437 / 409,
  10126. bottom: 19 / 458.66
  10127. }
  10128. },
  10129. frontTransformed: {
  10130. height: math.unit(12.5, "feet"),
  10131. weight: math.unit(4000, "lb"),
  10132. name: "Transformed",
  10133. image: {
  10134. source: "./media/characters/alexi/front-transformed.svg",
  10135. extra: 639 / 614,
  10136. bottom: 30.55 / 671
  10137. }
  10138. },
  10139. },
  10140. [
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(14, "feet"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Minimacro",
  10148. height: math.unit(30, "meters")
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(500, "meters")
  10153. },
  10154. {
  10155. name: "Megamacro",
  10156. height: math.unit(9000, "km")
  10157. },
  10158. {
  10159. name: "Teramacro",
  10160. height: math.unit(384000, "km")
  10161. },
  10162. ]
  10163. ))
  10164. characterMakers.push(() => makeCharacter(
  10165. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10166. {
  10167. front: {
  10168. height: math.unit(6, "feet"),
  10169. weight: math.unit(150, "lb"),
  10170. name: "Front",
  10171. image: {
  10172. source: "./media/characters/kayroo/front.svg",
  10173. extra: 1153 / 1038,
  10174. bottom: 0.06
  10175. }
  10176. },
  10177. foot: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Foot",
  10181. image: {
  10182. source: "./media/characters/kayroo/foot.svg"
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(8, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Minimacro",
  10194. height: math.unit(250, "feet")
  10195. },
  10196. {
  10197. name: "Macro",
  10198. height: math.unit(2800, "feet")
  10199. },
  10200. {
  10201. name: "Megamacro",
  10202. height: math.unit(5200, "feet")
  10203. },
  10204. {
  10205. name: "Gigamacro",
  10206. height: math.unit(27000, "feet")
  10207. },
  10208. {
  10209. name: "Omega",
  10210. height: math.unit(45000, "feet")
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(18, "feet"),
  10219. weight: math.unit(5800, "lb"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/rhys/front.svg",
  10223. extra: 3386 / 3090,
  10224. bottom: 0.07
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(18, "feet"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Working Size",
  10236. height: math.unit(200, "feet")
  10237. },
  10238. {
  10239. name: "Demolition Size",
  10240. height: math.unit(2000, "feet")
  10241. },
  10242. {
  10243. name: "Maximum Licensed Size",
  10244. height: math.unit(5, "miles")
  10245. },
  10246. {
  10247. name: "Maximum Observed Size",
  10248. height: math.unit(10, "yottameters")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(250, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/toto/front.svg",
  10261. extra: 527 / 479,
  10262. bottom: 0.05
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Micro",
  10269. height: math.unit(3, "feet")
  10270. },
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(10, "feet")
  10274. },
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(150, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Megamacro",
  10282. height: math.unit(1200, "feet")
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "King", species: ["lion"], tags: ["anthro"] },
  10288. {
  10289. back: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(150, "lb"),
  10292. name: "Back",
  10293. image: {
  10294. source: "./media/characters/king/back.svg"
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(2, "inches")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(8, "feet")
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(200, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Megamacro",
  10314. height: math.unit(50, "miles")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10320. {
  10321. anthro: {
  10322. height: math.unit(6 + 5 / 12, "feet"),
  10323. weight: math.unit(280, "lb"),
  10324. name: "Anthro",
  10325. image: {
  10326. source: "./media/characters/cordite/anthro.svg",
  10327. extra: 1986 / 1905,
  10328. bottom: 0.025
  10329. }
  10330. },
  10331. feral: {
  10332. height: math.unit(2, "feet"),
  10333. weight: math.unit(90, "lb"),
  10334. name: "Feral",
  10335. image: {
  10336. source: "./media/characters/cordite/feral.svg",
  10337. extra: 1260 / 755,
  10338. bottom: 0.05
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(6 + 5 / 12, "feet"),
  10346. default: true
  10347. },
  10348. ]
  10349. ))
  10350. characterMakers.push(() => makeCharacter(
  10351. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10352. {
  10353. front: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(150, "lb"),
  10356. name: "Front",
  10357. image: {
  10358. source: "./media/characters/pianostrong/front.svg",
  10359. extra: 6577 / 6254,
  10360. bottom: 0.02
  10361. }
  10362. },
  10363. side: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Side",
  10367. image: {
  10368. source: "./media/characters/pianostrong/side.svg",
  10369. extra: 6106 / 5730
  10370. }
  10371. },
  10372. back: {
  10373. height: math.unit(6, "feet"),
  10374. weight: math.unit(150, "lb"),
  10375. name: "Back",
  10376. image: {
  10377. source: "./media/characters/pianostrong/back.svg",
  10378. extra: 6085 / 5733,
  10379. bottom: 0.01
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Macro",
  10386. height: math.unit(100, "feet")
  10387. },
  10388. {
  10389. name: "Macro+",
  10390. height: math.unit(300, "feet"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "Macro++",
  10395. height: math.unit(1000, "feet")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(150, "lb"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/kona/front.svg",
  10408. extra: 2960 / 2629,
  10409. bottom: 0.005
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(11 + 8 / 12, "feet")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(850, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Macro+",
  10425. height: math.unit(1.5, "km"),
  10426. default: true
  10427. },
  10428. {
  10429. name: "Megamacro",
  10430. height: math.unit(80, "miles")
  10431. },
  10432. {
  10433. name: "Gigamacro",
  10434. height: math.unit(3500, "miles")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10440. {
  10441. side: {
  10442. height: math.unit(1.9, "meters"),
  10443. weight: math.unit(326, "kg"),
  10444. name: "Side",
  10445. image: {
  10446. source: "./media/characters/levi/side.svg",
  10447. extra: 1704 / 1334,
  10448. bottom: 0.02
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(1.9, "meters"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Macro",
  10460. height: math.unit(20, "meters")
  10461. },
  10462. {
  10463. name: "Macro+",
  10464. height: math.unit(200, "meters")
  10465. },
  10466. {
  10467. name: "Megamacro",
  10468. height: math.unit(2, "km")
  10469. },
  10470. {
  10471. name: "Megamacro+",
  10472. height: math.unit(20, "km")
  10473. },
  10474. {
  10475. name: "Gigamacro",
  10476. height: math.unit(2500, "km")
  10477. },
  10478. {
  10479. name: "Gigamacro+",
  10480. height: math.unit(120000, "km")
  10481. },
  10482. {
  10483. name: "Teramacro",
  10484. height: math.unit(7.77e6, "km")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(6 + 4 / 12, "feet"),
  10493. weight: math.unit(188, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/bmc/front.svg",
  10497. extra: 1067 / 1022,
  10498. bottom: 0.047
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Human-sized",
  10505. height: math.unit(6 + 4 / 12, "feet")
  10506. },
  10507. {
  10508. name: "Small",
  10509. height: math.unit(250, "feet")
  10510. },
  10511. {
  10512. name: "Normal",
  10513. height: math.unit(1250, "feet"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Good Day",
  10518. height: math.unit(88, "miles")
  10519. },
  10520. {
  10521. name: "Largest Measured Size",
  10522. height: math.unit(11.2e6, "lightyears")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10528. {
  10529. front: {
  10530. height: math.unit(20, "feet"),
  10531. weight: math.unit(2016, "kg"),
  10532. name: "Front",
  10533. image: {
  10534. source: "./media/characters/sven-the-kaiju/front.svg",
  10535. extra: 1479 / 1449,
  10536. bottom: 0.05
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Fairy",
  10543. height: math.unit(6, "inches")
  10544. },
  10545. {
  10546. name: "Normal",
  10547. height: math.unit(20, "feet"),
  10548. default: true
  10549. },
  10550. {
  10551. name: "Rampage",
  10552. height: math.unit(200, "feet")
  10553. },
  10554. {
  10555. name: "Archfey Forest Guardian",
  10556. height: math.unit(1, "mile")
  10557. },
  10558. ]
  10559. ))
  10560. characterMakers.push(() => makeCharacter(
  10561. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10562. {
  10563. front: {
  10564. height: math.unit(4, "meters"),
  10565. weight: math.unit(2, "tons"),
  10566. name: "Front",
  10567. image: {
  10568. source: "./media/characters/marik/front.svg",
  10569. extra: 1057 / 1003,
  10570. bottom: 0.08
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(4, "meters"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(20, "meters")
  10583. },
  10584. {
  10585. name: "Megamacro",
  10586. height: math.unit(50, "km")
  10587. },
  10588. {
  10589. name: "Gigamacro",
  10590. height: math.unit(100, "km")
  10591. },
  10592. {
  10593. name: "Alpha Macro",
  10594. height: math.unit(7.88e7, "yottameters")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(6, "feet"),
  10603. weight: math.unit(110, "lb"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/mel/front.svg",
  10607. extra: 736 / 617,
  10608. bottom: 0.017
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Pico",
  10615. height: math.unit(3, "pm")
  10616. },
  10617. {
  10618. name: "Nano",
  10619. height: math.unit(3, "nm")
  10620. },
  10621. {
  10622. name: "Micro",
  10623. height: math.unit(0.3, "mm"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Micro+",
  10628. height: math.unit(3, "mm")
  10629. },
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(5 + 10.5 / 12, "feet")
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10638. {
  10639. kaiju: {
  10640. height: math.unit(1.75, "meters"),
  10641. weight: math.unit(55, "kg"),
  10642. name: "Kaiju",
  10643. image: {
  10644. source: "./media/characters/lykonous/kaiju.svg",
  10645. extra: 1055 / 946,
  10646. bottom: 0.135
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(2.5, "meters"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Kaiju Dragon",
  10658. height: math.unit(60, "meters")
  10659. },
  10660. {
  10661. name: "Mega Kaiju",
  10662. height: math.unit(120, "km")
  10663. },
  10664. {
  10665. name: "Giga Kaiju",
  10666. height: math.unit(200, "megameters")
  10667. },
  10668. {
  10669. name: "Terra Kaiju",
  10670. height: math.unit(400, "gigameters")
  10671. },
  10672. {
  10673. name: "Kaiju Dragon God",
  10674. height: math.unit(13000, "exaparsecs")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(150, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/blü/front.svg",
  10687. extra: 1883 / 1564,
  10688. bottom: 0.031
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(13, "feet"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Big Boi",
  10700. height: math.unit(150, "meters")
  10701. },
  10702. {
  10703. name: "Mini Stomper",
  10704. height: math.unit(300, "meters")
  10705. },
  10706. {
  10707. name: "Macro",
  10708. height: math.unit(1000, "meters")
  10709. },
  10710. {
  10711. name: "Megamacro",
  10712. height: math.unit(11000, "meters")
  10713. },
  10714. {
  10715. name: "Gigamacro",
  10716. height: math.unit(11000, "km")
  10717. },
  10718. {
  10719. name: "Teramacro",
  10720. height: math.unit(420000, "km")
  10721. },
  10722. {
  10723. name: "Examacro",
  10724. height: math.unit(120, "parsecs")
  10725. },
  10726. {
  10727. name: "God Tho",
  10728. height: math.unit(98000000000, "parsecs")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10734. {
  10735. taurFront: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(200, "lb"),
  10738. name: "Taur (Front)",
  10739. image: {
  10740. source: "./media/characters/scales/taur-front.svg",
  10741. extra: 1,
  10742. bottom: 0.05
  10743. }
  10744. },
  10745. taurBack: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(200, "lb"),
  10748. name: "Taur (Back)",
  10749. image: {
  10750. source: "./media/characters/scales/taur-back.svg",
  10751. extra: 1,
  10752. bottom: 0.08
  10753. }
  10754. },
  10755. anthro: {
  10756. height: math.unit(6 * 7 / 12, "feet"),
  10757. weight: math.unit(100, "lb"),
  10758. name: "Anthro",
  10759. image: {
  10760. source: "./media/characters/scales/anthro.svg",
  10761. extra: 1,
  10762. bottom: 0.06
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(12, "feet"),
  10770. default: true
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(150, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/koragos/front.svg",
  10783. extra: 841 / 794,
  10784. bottom: 0.035
  10785. }
  10786. },
  10787. back: {
  10788. height: math.unit(6, "feet"),
  10789. weight: math.unit(150, "lb"),
  10790. name: "Back",
  10791. image: {
  10792. source: "./media/characters/koragos/back.svg",
  10793. extra: 841 / 810,
  10794. bottom: 0.022
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(6 + 11 / 12, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(490, "feet")
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(10, "miles")
  10811. },
  10812. {
  10813. name: "Gigamacro",
  10814. height: math.unit(50, "miles")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(250, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/xylrem/front.svg",
  10827. extra: 3323 / 3050,
  10828. bottom: 0.065
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Micro",
  10835. height: math.unit(4, "feet")
  10836. },
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(16, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(2720, "feet")
  10845. },
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(25000, "miles")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(8, "feet"),
  10857. weight: math.unit(250, "kg"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/ikideru/front.svg",
  10861. extra: 930 / 870,
  10862. bottom: 0.087
  10863. }
  10864. },
  10865. back: {
  10866. height: math.unit(8, "feet"),
  10867. weight: math.unit(250, "kg"),
  10868. name: "Back",
  10869. image: {
  10870. source: "./media/characters/ikideru/back.svg",
  10871. extra: 919 / 852,
  10872. bottom: 0.055
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Rare",
  10879. height: math.unit(8, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Playful Loom",
  10884. height: math.unit(80, "feet")
  10885. },
  10886. {
  10887. name: "City Leaner",
  10888. height: math.unit(230, "feet")
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(2500, "feet")
  10893. },
  10894. {
  10895. name: "Gigamacro",
  10896. height: math.unit(26400, "feet")
  10897. },
  10898. {
  10899. name: "Tectonic Shifter",
  10900. height: math.unit(1.7, "megameters")
  10901. },
  10902. {
  10903. name: "Planet Carer",
  10904. height: math.unit(21, "megameters")
  10905. },
  10906. {
  10907. name: "God",
  10908. height: math.unit(11157.22, "parsecs")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(6, "feet"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/neo/front.svg"
  10921. }
  10922. },
  10923. },
  10924. [
  10925. {
  10926. name: "Micro",
  10927. height: math.unit(2, "inches"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Human Size",
  10932. height: math.unit(5 + 8 / 12, "feet")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10938. {
  10939. front: {
  10940. height: math.unit(13 + 10 / 12, "feet"),
  10941. weight: math.unit(5320, "lb"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/chauncey-chantz/front.svg",
  10945. extra: 1587 / 1435,
  10946. bottom: 0.02
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(13 + 10 / 12, "feet"),
  10954. default: true
  10955. },
  10956. {
  10957. name: "Macro",
  10958. height: math.unit(45, "feet")
  10959. },
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(250, "miles")
  10963. },
  10964. {
  10965. name: "Planetary",
  10966. height: math.unit(10000, "miles")
  10967. },
  10968. {
  10969. name: "Galactic",
  10970. height: math.unit(40000, "parsecs")
  10971. },
  10972. {
  10973. name: "Universal",
  10974. height: math.unit(1, "yottameter")
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10980. {
  10981. front: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/epifox/front.svg",
  10987. extra: 1,
  10988. bottom: 0.075
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Micro",
  10995. height: math.unit(6, "inches")
  10996. },
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(12, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(3810, "feet")
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(500, "miles")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(1.8796, "m"),
  11017. weight: math.unit(230, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/colin-t/front.svg",
  11021. extra: 1272 / 1193,
  11022. bottom: 0.07
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Micro",
  11029. height: math.unit(0.571, "meters")
  11030. },
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(1.8796, "meters"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Tall",
  11038. height: math.unit(4, "meters")
  11039. },
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(67.241, "meters")
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(371.856, "meters")
  11047. },
  11048. {
  11049. name: "Planetary",
  11050. height: math.unit(12631.5689, "km")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(1.85, "meters"),
  11059. weight: math.unit(80, "kg"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/matvei/front.svg",
  11063. extra: 614 / 594,
  11064. bottom: 0.01
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(1.85, "meters"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(5 + 9 / 12, "feet"),
  11081. weight: math.unit(70, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/quincy/front.svg",
  11085. extra: 3041 / 2751
  11086. }
  11087. },
  11088. back: {
  11089. height: math.unit(5 + 9 / 12, "feet"),
  11090. weight: math.unit(70, "lb"),
  11091. name: "Back",
  11092. image: {
  11093. source: "./media/characters/quincy/back.svg",
  11094. extra: 3041 / 2751
  11095. }
  11096. },
  11097. flying: {
  11098. height: math.unit(5 + 4 / 12, "feet"),
  11099. weight: math.unit(70, "lb"),
  11100. name: "Flying",
  11101. image: {
  11102. source: "./media/characters/quincy/flying.svg",
  11103. extra: 1044 / 930
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Micro",
  11110. height: math.unit(3, "cm")
  11111. },
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(5 + 9 / 12, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(200, "meters"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(1000, "meters")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11129. {
  11130. front: {
  11131. height: math.unit(4 + 7 / 12, "feet"),
  11132. weight: math.unit(150, "lb"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/vanrel/front.svg",
  11136. extra: 1,
  11137. bottom: 0.02
  11138. }
  11139. },
  11140. elemental: {
  11141. height: math.unit(3, "feet"),
  11142. weight: math.unit(150, "lb"),
  11143. name: "Elemental",
  11144. image: {
  11145. source: "./media/characters/vanrel/elemental.svg",
  11146. extra: 192.3 / 162.8,
  11147. bottom: 1.79 / 194.17
  11148. }
  11149. },
  11150. side: {
  11151. height: math.unit(4 + 7 / 12, "feet"),
  11152. weight: math.unit(150, "lb"),
  11153. name: "Side",
  11154. image: {
  11155. source: "./media/characters/vanrel/side.svg",
  11156. extra: 1,
  11157. bottom: 0.025
  11158. }
  11159. },
  11160. tome: {
  11161. height: math.unit(1.35, "feet"),
  11162. weight: math.unit(10, "lb"),
  11163. name: "Vanrel's Tome",
  11164. rename: true,
  11165. image: {
  11166. source: "./media/characters/vanrel/tome.svg"
  11167. }
  11168. },
  11169. beans: {
  11170. height: math.unit(0.89, "feet"),
  11171. name: "Beans",
  11172. image: {
  11173. source: "./media/characters/vanrel/beans.svg"
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(4 + 7 / 12, "feet"),
  11181. default: true
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(7 + 5 / 12, "feet"),
  11190. weight: math.unit(150, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/kuiper-vanrel/front.svg",
  11194. extra: 1118 / 1068,
  11195. bottom: 0.09
  11196. }
  11197. },
  11198. foot: {
  11199. height: math.unit(0.55, "meters"),
  11200. name: "Foot",
  11201. image: {
  11202. source: "./media/characters/kuiper-vanrel/foot.svg",
  11203. }
  11204. },
  11205. battle: {
  11206. height: math.unit(6.824, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Battle",
  11209. image: {
  11210. source: "./media/characters/kuiper-vanrel/battle.svg",
  11211. extra: 1466 / 1327,
  11212. bottom: 29 / 1492.5
  11213. }
  11214. },
  11215. battleAlt: {
  11216. height: math.unit(6.824, "feet"),
  11217. weight: math.unit(150, "lb"),
  11218. name: "Battle (Alt)",
  11219. image: {
  11220. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11221. extra: 2081 / 1965,
  11222. bottom: 40 / 2121
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(7 + 5 / 12, "feet"),
  11230. default: true
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(8 + 5 / 12, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/keset-vanrel/front.svg",
  11243. extra: 1150 / 1084,
  11244. bottom: 0.05
  11245. }
  11246. },
  11247. hand: {
  11248. height: math.unit(0.6, "meters"),
  11249. name: "Hand",
  11250. image: {
  11251. source: "./media/characters/keset-vanrel/hand.svg"
  11252. }
  11253. },
  11254. foot: {
  11255. height: math.unit(0.94978, "meters"),
  11256. name: "Foot",
  11257. image: {
  11258. source: "./media/characters/keset-vanrel/foot.svg"
  11259. }
  11260. },
  11261. battle: {
  11262. height: math.unit(7.408, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Battle",
  11265. image: {
  11266. source: "./media/characters/keset-vanrel/battle.svg",
  11267. extra: 1890 / 1386,
  11268. bottom: 73.28 / 1970
  11269. }
  11270. },
  11271. },
  11272. [
  11273. {
  11274. name: "Normal",
  11275. height: math.unit(8 + 5 / 12, "feet"),
  11276. default: true
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11282. {
  11283. front: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(150, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/neos/front.svg",
  11289. extra: 1696 / 992,
  11290. bottom: 0.14
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(54, "cm"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(100, "m")
  11303. },
  11304. {
  11305. name: "Megamacro",
  11306. height: math.unit(10, "km")
  11307. },
  11308. {
  11309. name: "Megamacro+",
  11310. height: math.unit(100, "km")
  11311. },
  11312. {
  11313. name: "Gigamacro",
  11314. height: math.unit(100, "Mm")
  11315. },
  11316. {
  11317. name: "Teramacro",
  11318. height: math.unit(100, "Gm")
  11319. },
  11320. {
  11321. name: "Examacro",
  11322. height: math.unit(100, "Em")
  11323. },
  11324. {
  11325. name: "Godly",
  11326. height: math.unit(10000, "Ym")
  11327. },
  11328. {
  11329. name: "Beyond Godly",
  11330. height: math.unit(25, "multiverses")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11336. {
  11337. feminine: {
  11338. height: math.unit(5, "feet"),
  11339. weight: math.unit(100, "lb"),
  11340. name: "Feminine",
  11341. image: {
  11342. source: "./media/characters/sammy-mouse/feminine.svg",
  11343. extra: 2526 / 2425,
  11344. bottom: 0.123
  11345. }
  11346. },
  11347. masculine: {
  11348. height: math.unit(5, "feet"),
  11349. weight: math.unit(100, "lb"),
  11350. name: "Masculine",
  11351. image: {
  11352. source: "./media/characters/sammy-mouse/masculine.svg",
  11353. extra: 2526 / 2425,
  11354. bottom: 0.123
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(5, "inches")
  11362. },
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(5, "feet"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(60, "feet")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(4, "feet"),
  11379. weight: math.unit(50, "lb"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/kole/front.svg",
  11383. extra: 1423 / 1303,
  11384. bottom: 0.025
  11385. }
  11386. },
  11387. back: {
  11388. height: math.unit(4, "feet"),
  11389. weight: math.unit(50, "lb"),
  11390. name: "Back",
  11391. image: {
  11392. source: "./media/characters/kole/back.svg",
  11393. extra: 1426 / 1280,
  11394. bottom: 0.02
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(4, "feet"),
  11402. default: true
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11408. {
  11409. front: {
  11410. height: math.unit(2 + 6 / 12, "feet"),
  11411. weight: math.unit(20, "lb"),
  11412. name: "Front",
  11413. image: {
  11414. source: "./media/characters/rufran/front.svg",
  11415. extra: 2041 / 1839,
  11416. bottom: 0.055
  11417. }
  11418. },
  11419. back: {
  11420. height: math.unit(2 + 6 / 12, "feet"),
  11421. weight: math.unit(20, "lb"),
  11422. name: "Back",
  11423. image: {
  11424. source: "./media/characters/rufran/back.svg",
  11425. extra: 2054 / 1839,
  11426. bottom: 0.01
  11427. }
  11428. },
  11429. hand: {
  11430. height: math.unit(0.2166, "meters"),
  11431. name: "Hand",
  11432. image: {
  11433. source: "./media/characters/rufran/hand.svg"
  11434. }
  11435. },
  11436. foot: {
  11437. height: math.unit(0.185, "meters"),
  11438. name: "Foot",
  11439. image: {
  11440. source: "./media/characters/rufran/foot.svg"
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Micro",
  11447. height: math.unit(1, "inch")
  11448. },
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(2 + 6 / 12, "feet"),
  11452. default: true
  11453. },
  11454. {
  11455. name: "Big",
  11456. height: math.unit(60, "feet")
  11457. },
  11458. {
  11459. name: "Macro",
  11460. height: math.unit(325, "feet")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(0.3, "meters"),
  11469. weight: math.unit(3.5, "kg"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/chip/front.svg",
  11473. extra: 748 / 674
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Micro",
  11480. height: math.unit(1, "inch"),
  11481. default: true
  11482. },
  11483. ]
  11484. ))
  11485. characterMakers.push(() => makeCharacter(
  11486. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11487. {
  11488. side: {
  11489. height: math.unit(2.3, "meters"),
  11490. weight: math.unit(3500, "lb"),
  11491. name: "Side",
  11492. image: {
  11493. source: "./media/characters/torvid/side.svg",
  11494. extra: 1972 / 722,
  11495. bottom: 0.035
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Normal",
  11502. height: math.unit(2.3, "meters"),
  11503. default: true
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11509. {
  11510. front: {
  11511. height: math.unit(2, "meters"),
  11512. weight: math.unit(150.5, "kg"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/susan/front.svg",
  11516. extra: 693 / 635,
  11517. bottom: 0.05
  11518. }
  11519. },
  11520. },
  11521. [
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(505, "miles"),
  11525. default: true
  11526. },
  11527. ]
  11528. ))
  11529. characterMakers.push(() => makeCharacter(
  11530. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11531. {
  11532. front: {
  11533. height: math.unit(6, "feet"),
  11534. weight: math.unit(150, "lb"),
  11535. name: "Front",
  11536. image: {
  11537. source: "./media/characters/raindrops/front.svg",
  11538. extra: 2655 / 2461,
  11539. bottom: 49 / 2705
  11540. }
  11541. },
  11542. back: {
  11543. height: math.unit(6, "feet"),
  11544. weight: math.unit(150, "lb"),
  11545. name: "Back",
  11546. image: {
  11547. source: "./media/characters/raindrops/back.svg",
  11548. extra: 2574 / 2400,
  11549. bottom: 65 / 2634
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Micro",
  11556. height: math.unit(6, "inches")
  11557. },
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(6 + 2 / 12, "feet")
  11561. },
  11562. {
  11563. name: "Macro",
  11564. height: math.unit(131, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(15, "miles")
  11570. },
  11571. {
  11572. name: "Gigamacro",
  11573. height: math.unit(4000, "miles")
  11574. },
  11575. {
  11576. name: "Teramacro",
  11577. height: math.unit(315000, "miles")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11583. {
  11584. front: {
  11585. height: math.unit(2.794, "meters"),
  11586. weight: math.unit(325, "kg"),
  11587. name: "Front",
  11588. image: {
  11589. source: "./media/characters/tezwa/front.svg",
  11590. extra: 2083 / 1906,
  11591. bottom: 0.031
  11592. }
  11593. },
  11594. foot: {
  11595. height: math.unit(0.687, "meters"),
  11596. name: "Foot",
  11597. image: {
  11598. source: "./media/characters/tezwa/foot.svg"
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(9 + 2 / 12, "feet"),
  11606. default: true
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(58, "feet"),
  11615. weight: math.unit(89000, "lb"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/typhus/front.svg",
  11619. extra: 816 / 800,
  11620. bottom: 0.065
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Macro",
  11627. height: math.unit(58, "feet"),
  11628. default: true
  11629. },
  11630. ]
  11631. ))
  11632. characterMakers.push(() => makeCharacter(
  11633. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11634. {
  11635. front: {
  11636. height: math.unit(12, "feet"),
  11637. weight: math.unit(6, "tonnes"),
  11638. name: "Front",
  11639. image: {
  11640. source: "./media/characters/lyra-von-wulf/front.svg",
  11641. extra: 1,
  11642. bottom: 0.10
  11643. }
  11644. },
  11645. frontMecha: {
  11646. height: math.unit(12, "feet"),
  11647. weight: math.unit(12, "tonnes"),
  11648. name: "Front (Mecha)",
  11649. image: {
  11650. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11651. extra: 1,
  11652. bottom: 0.042
  11653. }
  11654. },
  11655. maw: {
  11656. height: math.unit(2.2, "feet"),
  11657. name: "Maw",
  11658. image: {
  11659. source: "./media/characters/lyra-von-wulf/maw.svg"
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Normal",
  11666. height: math.unit(12, "feet"),
  11667. default: true
  11668. },
  11669. {
  11670. name: "Classic",
  11671. height: math.unit(50, "feet")
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(500, "feet")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(1, "mile")
  11680. },
  11681. {
  11682. name: "Gigamacro",
  11683. height: math.unit(400, "miles")
  11684. },
  11685. {
  11686. name: "Teramacro",
  11687. height: math.unit(22000, "miles")
  11688. },
  11689. {
  11690. name: "Solarmacro",
  11691. height: math.unit(8600000, "miles")
  11692. },
  11693. {
  11694. name: "Galactic",
  11695. height: math.unit(1057000, "lightyears")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11701. {
  11702. front: {
  11703. height: math.unit(6 + 10 / 12, "feet"),
  11704. weight: math.unit(150, "lb"),
  11705. name: "Front",
  11706. image: {
  11707. source: "./media/characters/dixon/front.svg",
  11708. extra: 3361 / 3209,
  11709. bottom: 0.01
  11710. }
  11711. },
  11712. },
  11713. [
  11714. {
  11715. name: "Normal",
  11716. height: math.unit(6 + 10 / 12, "feet"),
  11717. default: true
  11718. },
  11719. {
  11720. name: "Big",
  11721. height: math.unit(12, "meters")
  11722. },
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(500, "meters")
  11726. },
  11727. {
  11728. name: "Megamacro",
  11729. height: math.unit(2, "km")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(185, "cm"),
  11738. weight: math.unit(68, "kg"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/kauko/front.svg",
  11742. extra: 1455 / 1421,
  11743. bottom: 0.03
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(185, "cm"),
  11748. weight: math.unit(68, "kg"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/kauko/back.svg",
  11752. extra: 1455 / 1421,
  11753. bottom: 0.004
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Normal",
  11760. height: math.unit(185, "cm"),
  11761. default: true
  11762. },
  11763. ]
  11764. ))
  11765. characterMakers.push(() => makeCharacter(
  11766. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11767. {
  11768. front: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(150, "kg"),
  11771. name: "Front",
  11772. image: {
  11773. source: "./media/characters/varg/front.svg",
  11774. extra: 1108 / 1018,
  11775. bottom: 0.0375
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(5, "meters")
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(200, "meters")
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(20, "kilometers")
  11791. },
  11792. {
  11793. name: "True Size",
  11794. height: math.unit(211, "km"),
  11795. default: true
  11796. },
  11797. {
  11798. name: "Gigamacro",
  11799. height: math.unit(1000, "km")
  11800. },
  11801. {
  11802. name: "Gigamacro+",
  11803. height: math.unit(8000, "km")
  11804. },
  11805. {
  11806. name: "Teramacro",
  11807. height: math.unit(1000000, "km")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(7 + 7 / 12, "feet"),
  11816. weight: math.unit(267, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/dayza/front.svg",
  11820. extra: 1262 / 1200,
  11821. bottom: 0.035
  11822. }
  11823. },
  11824. side: {
  11825. height: math.unit(7 + 7 / 12, "feet"),
  11826. weight: math.unit(267, "lb"),
  11827. name: "Side",
  11828. image: {
  11829. source: "./media/characters/dayza/side.svg",
  11830. extra: 1295 / 1245,
  11831. bottom: 0.05
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(7 + 7 / 12, "feet"),
  11836. weight: math.unit(267, "lb"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/dayza/back.svg",
  11840. extra: 1241 / 1170
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Normal",
  11847. height: math.unit(7 + 7 / 12, "feet"),
  11848. default: true
  11849. },
  11850. {
  11851. name: "Macro",
  11852. height: math.unit(155, "feet")
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(6 + 5 / 12, "feet"),
  11861. weight: math.unit(160, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/xanthos/front.svg",
  11865. extra: 1,
  11866. bottom: 0.04
  11867. }
  11868. },
  11869. back: {
  11870. height: math.unit(6 + 5 / 12, "feet"),
  11871. weight: math.unit(160, "lb"),
  11872. name: "Back",
  11873. image: {
  11874. source: "./media/characters/xanthos/back.svg",
  11875. extra: 1,
  11876. bottom: 0.03
  11877. }
  11878. },
  11879. hand: {
  11880. height: math.unit(0.928, "feet"),
  11881. name: "Hand",
  11882. image: {
  11883. source: "./media/characters/xanthos/hand.svg"
  11884. }
  11885. },
  11886. foot: {
  11887. height: math.unit(1.286, "feet"),
  11888. name: "Foot",
  11889. image: {
  11890. source: "./media/characters/xanthos/foot.svg"
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(6 + 5 / 12, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Normal+",
  11902. height: math.unit(6, "meters")
  11903. },
  11904. {
  11905. name: "Macro",
  11906. height: math.unit(40, "feet")
  11907. },
  11908. {
  11909. name: "Macro+",
  11910. height: math.unit(200, "meters")
  11911. },
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(20, "km")
  11915. },
  11916. {
  11917. name: "Megamacro+",
  11918. height: math.unit(100, "km")
  11919. },
  11920. ]
  11921. ))
  11922. characterMakers.push(() => makeCharacter(
  11923. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11924. {
  11925. front: {
  11926. height: math.unit(6 + 3 / 12, "feet"),
  11927. weight: math.unit(215, "lb"),
  11928. name: "Front",
  11929. image: {
  11930. source: "./media/characters/grynn/front.svg",
  11931. extra: 4627 / 4209,
  11932. bottom: 0.047
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Micro",
  11939. height: math.unit(6, "inches")
  11940. },
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(6 + 3 / 12, "feet"),
  11944. default: true
  11945. },
  11946. {
  11947. name: "Big",
  11948. height: math.unit(104, "feet")
  11949. },
  11950. {
  11951. name: "Macro",
  11952. height: math.unit(944, "feet")
  11953. },
  11954. {
  11955. name: "Macro+",
  11956. height: math.unit(9480, "feet")
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(78752, "feet")
  11961. },
  11962. {
  11963. name: "Megamacro+",
  11964. height: math.unit(630128, "feet")
  11965. },
  11966. {
  11967. name: "Megamacro++",
  11968. height: math.unit(3150695, "feet")
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(7 + 5 / 12, "feet"),
  11977. weight: math.unit(450, "lb"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/mocha-aura/front.svg",
  11981. extra: 1907 / 1817,
  11982. bottom: 0.04
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(7 + 5 / 12, "feet"),
  11987. weight: math.unit(450, "lb"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/mocha-aura/back.svg",
  11991. extra: 1900 / 1825,
  11992. bottom: 0.045
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Nano",
  11999. height: math.unit(1, "nm")
  12000. },
  12001. {
  12002. name: "Megamicro",
  12003. height: math.unit(1, "mm")
  12004. },
  12005. {
  12006. name: "Micro",
  12007. height: math.unit(3, "inches")
  12008. },
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(7 + 5 / 12, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(30, "feet")
  12017. },
  12018. {
  12019. name: "Megamacro",
  12020. height: math.unit(3500, "feet")
  12021. },
  12022. {
  12023. name: "Teramacro",
  12024. height: math.unit(500000, "miles")
  12025. },
  12026. {
  12027. name: "Petamacro",
  12028. height: math.unit(50000000000000000, "parsecs")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/ilisha-devya/front.svg",
  12041. extra: 1,
  12042. bottom: 0.175
  12043. }
  12044. },
  12045. back: {
  12046. height: math.unit(6, "feet"),
  12047. weight: math.unit(150, "lb"),
  12048. name: "Back",
  12049. image: {
  12050. source: "./media/characters/ilisha-devya/back.svg",
  12051. extra: 1,
  12052. bottom: 0.015
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(500, "feet"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Megamacro",
  12064. height: math.unit(10, "miles")
  12065. },
  12066. {
  12067. name: "Gigamacro",
  12068. height: math.unit(100000, "miles")
  12069. },
  12070. {
  12071. name: "Examacro",
  12072. height: math.unit(1e9, "lightyears")
  12073. },
  12074. {
  12075. name: "Omniversal",
  12076. height: math.unit(1e33, "lightyears")
  12077. },
  12078. {
  12079. name: "Beyond Infinite",
  12080. height: math.unit(1e100, "lightyears")
  12081. },
  12082. ]
  12083. ))
  12084. characterMakers.push(() => makeCharacter(
  12085. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12086. {
  12087. Side: {
  12088. height: math.unit(6, "feet"),
  12089. weight: math.unit(150, "lb"),
  12090. name: "Side",
  12091. image: {
  12092. source: "./media/characters/mira/side.svg",
  12093. extra: 900 / 799,
  12094. bottom: 0.02
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Human Size",
  12101. height: math.unit(6, "feet")
  12102. },
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(100, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Megamacro",
  12110. height: math.unit(10, "miles")
  12111. },
  12112. {
  12113. name: "Gigamacro",
  12114. height: math.unit(25000, "miles")
  12115. },
  12116. {
  12117. name: "Teramacro",
  12118. height: math.unit(300, "AU")
  12119. },
  12120. {
  12121. name: "Full Size",
  12122. height: math.unit(4.5e10, "lightyears")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/holly/front.svg",
  12135. extra: 639 / 606
  12136. }
  12137. },
  12138. back: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Back",
  12142. image: {
  12143. source: "./media/characters/holly/back.svg",
  12144. extra: 623 / 598
  12145. }
  12146. },
  12147. frontWorking: {
  12148. height: math.unit(6, "feet"),
  12149. weight: math.unit(150, "lb"),
  12150. name: "Front (Working)",
  12151. image: {
  12152. source: "./media/characters/holly/front-working.svg",
  12153. extra: 607 / 577,
  12154. bottom: 0.048
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(12 + 3 / 12, "feet"),
  12162. default: true
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/porter/front.svg",
  12175. extra: 1,
  12176. bottom: 0.01
  12177. }
  12178. },
  12179. frontRobes: {
  12180. height: math.unit(6, "feet"),
  12181. weight: math.unit(150, "lb"),
  12182. name: "Front (Robes)",
  12183. image: {
  12184. source: "./media/characters/porter/front-robes.svg",
  12185. extra: 1.01,
  12186. bottom: 0.01
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(11 + 9 / 12, "feet"),
  12194. default: true
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12200. {
  12201. legendary: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(150, "lb"),
  12204. name: "Legendary",
  12205. image: {
  12206. source: "./media/characters/lucy/legendary.svg",
  12207. extra: 1355 / 1100,
  12208. bottom: 0.045
  12209. }
  12210. },
  12211. },
  12212. [
  12213. {
  12214. name: "Legendary",
  12215. height: math.unit(86882 * 2, "miles"),
  12216. default: true
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12222. {
  12223. front: {
  12224. height: math.unit(6, "feet"),
  12225. weight: math.unit(150, "lb"),
  12226. name: "Front",
  12227. image: {
  12228. source: "./media/characters/drusilla/front.svg",
  12229. extra: 678 / 635,
  12230. bottom: 0.03
  12231. }
  12232. },
  12233. back: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(150, "lb"),
  12236. name: "Back",
  12237. image: {
  12238. source: "./media/characters/drusilla/back.svg",
  12239. extra: 678 / 635,
  12240. bottom: 0.005
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Macro",
  12247. height: math.unit(100, "feet")
  12248. },
  12249. {
  12250. name: "Canon Height",
  12251. height: math.unit(2000, "feet"),
  12252. default: true
  12253. },
  12254. ]
  12255. ))
  12256. characterMakers.push(() => makeCharacter(
  12257. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12258. {
  12259. front: {
  12260. height: math.unit(6, "feet"),
  12261. weight: math.unit(180, "lb"),
  12262. name: "Front",
  12263. image: {
  12264. source: "./media/characters/renard-thatch/front.svg",
  12265. extra: 2411 / 2275,
  12266. bottom: 0.01
  12267. }
  12268. },
  12269. frontPosing: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(180, "lb"),
  12272. name: "Front (Posing)",
  12273. image: {
  12274. source: "./media/characters/renard-thatch/front-posing.svg",
  12275. extra: 2381 / 2261,
  12276. bottom: 0.01
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(6, "feet"),
  12281. weight: math.unit(180, "lb"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/renard-thatch/back.svg",
  12285. extra: 2428 / 2288
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Micro",
  12292. height: math.unit(3, "inches")
  12293. },
  12294. {
  12295. name: "Default",
  12296. height: math.unit(6, "feet"),
  12297. default: true
  12298. },
  12299. {
  12300. name: "Macro",
  12301. height: math.unit(75, "feet")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(1450, "feet"),
  12310. weight: math.unit(1.21e6, "tons"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/sekvra/front.svg",
  12314. extra: 1,
  12315. bottom: 0.03
  12316. }
  12317. },
  12318. frontClothed: {
  12319. height: math.unit(1450, "feet"),
  12320. weight: math.unit(1.21e6, "tons"),
  12321. name: "Front (Clothed)",
  12322. image: {
  12323. source: "./media/characters/sekvra/front-clothed.svg",
  12324. extra: 1,
  12325. bottom: 0.03
  12326. }
  12327. },
  12328. side: {
  12329. height: math.unit(1450, "feet"),
  12330. weight: math.unit(1.21e6, "tons"),
  12331. name: "Side",
  12332. image: {
  12333. source: "./media/characters/sekvra/side.svg",
  12334. extra: 1,
  12335. bottom: 0.025
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(1450, "feet"),
  12340. weight: math.unit(1.21e6, "tons"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/sekvra/back.svg",
  12344. extra: 1,
  12345. bottom: 0.005
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Macro",
  12352. height: math.unit(1450, "feet"),
  12353. default: true
  12354. },
  12355. {
  12356. name: "Megamacro",
  12357. height: math.unit(15000, "feet")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(6, "feet"),
  12366. weight: math.unit(150, "lb"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/carmine/front.svg",
  12370. extra: 1,
  12371. bottom: 0.035
  12372. }
  12373. },
  12374. frontArmor: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "lb"),
  12377. name: "Front (Armor)",
  12378. image: {
  12379. source: "./media/characters/carmine/front-armor.svg",
  12380. extra: 1,
  12381. bottom: 0.035
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Large",
  12388. height: math.unit(1, "mile")
  12389. },
  12390. {
  12391. name: "Huge",
  12392. height: math.unit(40, "miles"),
  12393. default: true
  12394. },
  12395. {
  12396. name: "Colossal",
  12397. height: math.unit(2500, "miles")
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(6, "feet"),
  12406. weight: math.unit(150, "lb"),
  12407. name: "Front",
  12408. image: {
  12409. source: "./media/characters/elyssia/front.svg",
  12410. extra: 2201 / 2035,
  12411. bottom: 0.05
  12412. }
  12413. },
  12414. frontClothed: {
  12415. height: math.unit(6, "feet"),
  12416. weight: math.unit(150, "lb"),
  12417. name: "Front (Clothed)",
  12418. image: {
  12419. source: "./media/characters/elyssia/front-clothed.svg",
  12420. extra: 2201 / 2035,
  12421. bottom: 0.05
  12422. }
  12423. },
  12424. back: {
  12425. height: math.unit(6, "feet"),
  12426. weight: math.unit(150, "lb"),
  12427. name: "Back",
  12428. image: {
  12429. source: "./media/characters/elyssia/back.svg",
  12430. extra: 2201 / 2035,
  12431. bottom: 0.013
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Smaller",
  12438. height: math.unit(150, "feet")
  12439. },
  12440. {
  12441. name: "Standard",
  12442. height: math.unit(1400, "feet"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Distracted",
  12447. height: math.unit(15000, "feet")
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(7 + 4 / 12, "feet"),
  12456. weight: math.unit(500, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/geno-maxwell/front.svg",
  12460. extra: 2207 / 2040,
  12461. bottom: 0.015
  12462. }
  12463. },
  12464. },
  12465. [
  12466. {
  12467. name: "Micro",
  12468. height: math.unit(3, "inches")
  12469. },
  12470. {
  12471. name: "Normal",
  12472. height: math.unit(7 + 4 / 12, "feet"),
  12473. default: true
  12474. },
  12475. {
  12476. name: "Macro",
  12477. height: math.unit(220, "feet")
  12478. },
  12479. {
  12480. name: "Megamacro",
  12481. height: math.unit(11, "miles")
  12482. },
  12483. ]
  12484. ))
  12485. characterMakers.push(() => makeCharacter(
  12486. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12487. {
  12488. front: {
  12489. height: math.unit(7 + 4 / 12, "feet"),
  12490. weight: math.unit(500, "lb"),
  12491. name: "Front",
  12492. image: {
  12493. source: "./media/characters/regena-maxwell/front.svg",
  12494. extra: 3115 / 2770,
  12495. bottom: 0.02
  12496. }
  12497. },
  12498. },
  12499. [
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(7 + 4 / 12, "feet"),
  12503. default: true
  12504. },
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(220, "feet")
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(11, "miles")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(6, "feet"),
  12520. weight: math.unit(150, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12524. extra: 860 / 690,
  12525. bottom: 0.03
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(1.7, "meters"),
  12533. default: true
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(150, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/quilly/front.svg",
  12546. extra: 890 / 776
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Gigamacro",
  12553. height: math.unit(404090, "miles"),
  12554. default: true
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(7 + 8 / 12, "feet"),
  12563. weight: math.unit(350, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/tempest/front.svg",
  12567. extra: 1175 / 1086,
  12568. bottom: 0.02
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(7 + 8 / 12, "feet"),
  12576. default: true
  12577. },
  12578. ]
  12579. ))
  12580. characterMakers.push(() => makeCharacter(
  12581. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12582. {
  12583. side: {
  12584. height: math.unit(4 + 5 / 12, "feet"),
  12585. weight: math.unit(80, "lb"),
  12586. name: "Side",
  12587. image: {
  12588. source: "./media/characters/rodger/side.svg",
  12589. extra: 1235 / 1118
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Micro",
  12596. height: math.unit(1, "inch")
  12597. },
  12598. {
  12599. name: "Normal",
  12600. height: math.unit(4 + 5 / 12, "feet"),
  12601. default: true
  12602. },
  12603. {
  12604. name: "Macro",
  12605. height: math.unit(120, "feet")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/danyel/front.svg",
  12618. extra: 1185 / 1123,
  12619. bottom: 0.05
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Shrunken",
  12626. height: math.unit(0.5, "mm")
  12627. },
  12628. {
  12629. name: "Micro",
  12630. height: math.unit(1, "mm"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Upsized",
  12635. height: math.unit(5 + 5 / 12, "feet")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(5 + 6 / 12, "feet"),
  12644. weight: math.unit(200, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/vivian-bijoux/front.svg",
  12648. extra: 1,
  12649. bottom: 0.072
  12650. }
  12651. },
  12652. },
  12653. [
  12654. {
  12655. name: "Normal",
  12656. height: math.unit(5 + 6 / 12, "feet"),
  12657. default: true
  12658. },
  12659. {
  12660. name: "Bad Dream",
  12661. height: math.unit(500, "feet")
  12662. },
  12663. {
  12664. name: "Nightmare",
  12665. height: math.unit(500, "miles")
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(6 + 1 / 12, "feet"),
  12674. weight: math.unit(260, "lb"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/zeta/front.svg",
  12678. extra: 1968 / 1889,
  12679. bottom: 0.06
  12680. }
  12681. },
  12682. back: {
  12683. height: math.unit(6 + 1 / 12, "feet"),
  12684. weight: math.unit(260, "lb"),
  12685. name: "Back",
  12686. image: {
  12687. source: "./media/characters/zeta/back.svg",
  12688. extra: 1944 / 1858,
  12689. bottom: 0.03
  12690. }
  12691. },
  12692. hand: {
  12693. height: math.unit(1.112, "feet"),
  12694. name: "Hand",
  12695. image: {
  12696. source: "./media/characters/zeta/hand.svg"
  12697. }
  12698. },
  12699. foot: {
  12700. height: math.unit(1.48, "feet"),
  12701. name: "Foot",
  12702. image: {
  12703. source: "./media/characters/zeta/foot.svg"
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Micro",
  12710. height: math.unit(6, "inches")
  12711. },
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(6 + 1 / 12, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Macro",
  12719. height: math.unit(20, "feet")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(150, "lb"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/jamie-larsen/front.svg",
  12732. extra: 962 / 933,
  12733. bottom: 0.02
  12734. }
  12735. },
  12736. back: {
  12737. height: math.unit(6, "feet"),
  12738. weight: math.unit(150, "lb"),
  12739. name: "Back",
  12740. image: {
  12741. source: "./media/characters/jamie-larsen/back.svg",
  12742. extra: 997 / 946
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(28 + 7 / 12, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Macro+",
  12754. height: math.unit(180, "feet")
  12755. },
  12756. {
  12757. name: "Megamacro",
  12758. height: math.unit(10, "miles")
  12759. },
  12760. {
  12761. name: "Gigamacro",
  12762. height: math.unit(200000, "miles")
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12768. {
  12769. front: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(120, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/vance/front.svg",
  12775. extra: 1980 / 1890,
  12776. bottom: 0.09
  12777. }
  12778. },
  12779. back: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(120, "lb"),
  12782. name: "Back",
  12783. image: {
  12784. source: "./media/characters/vance/back.svg",
  12785. extra: 2081 / 1994,
  12786. bottom: 0.014
  12787. }
  12788. },
  12789. hand: {
  12790. height: math.unit(0.88, "feet"),
  12791. name: "Hand",
  12792. image: {
  12793. source: "./media/characters/vance/hand.svg"
  12794. }
  12795. },
  12796. foot: {
  12797. height: math.unit(0.64, "feet"),
  12798. name: "Foot",
  12799. image: {
  12800. source: "./media/characters/vance/foot.svg"
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Small",
  12807. height: math.unit(90, "feet"),
  12808. default: true
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(100, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(15, "miles")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(180, "lb"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/xochitl/front.svg",
  12829. extra: 2297 / 2261,
  12830. bottom: 0.065
  12831. }
  12832. },
  12833. back: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(180, "lb"),
  12836. name: "Back",
  12837. image: {
  12838. source: "./media/characters/xochitl/back.svg",
  12839. extra: 2386 / 2354,
  12840. bottom: 0.01
  12841. }
  12842. },
  12843. foot: {
  12844. height: math.unit(6 / 5 * 1.15, "feet"),
  12845. weight: math.unit(150, "lb"),
  12846. name: "Foot",
  12847. image: {
  12848. source: "./media/characters/xochitl/foot.svg"
  12849. }
  12850. },
  12851. },
  12852. [
  12853. {
  12854. name: "Macro",
  12855. height: math.unit(80, "feet")
  12856. },
  12857. {
  12858. name: "Macro+",
  12859. height: math.unit(400, "feet"),
  12860. default: true
  12861. },
  12862. {
  12863. name: "Gigamacro",
  12864. height: math.unit(80000, "miles")
  12865. },
  12866. {
  12867. name: "Gigamacro+",
  12868. height: math.unit(400000, "miles")
  12869. },
  12870. {
  12871. name: "Teramacro",
  12872. height: math.unit(300, "AU")
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12878. {
  12879. front: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/vincent/front.svg",
  12885. extra: 1130 / 1080,
  12886. bottom: 0.055
  12887. }
  12888. },
  12889. beak: {
  12890. height: math.unit(6 * 0.1, "feet"),
  12891. name: "Beak",
  12892. image: {
  12893. source: "./media/characters/vincent/beak.svg"
  12894. }
  12895. },
  12896. hand: {
  12897. height: math.unit(6 * 0.85, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Hand",
  12900. image: {
  12901. source: "./media/characters/vincent/hand.svg"
  12902. }
  12903. },
  12904. foot: {
  12905. height: math.unit(6 * 0.19, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Foot",
  12908. image: {
  12909. source: "./media/characters/vincent/foot.svg"
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Base",
  12916. height: math.unit(6 + 5 / 12, "feet"),
  12917. default: true
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(300, "feet")
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(2, "miles")
  12926. },
  12927. {
  12928. name: "Gigamacro",
  12929. height: math.unit(1000, "miles")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(6 + 2 / 12, "feet"),
  12938. weight: math.unit(265, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/jay/front.svg",
  12942. extra: 1510 / 1430,
  12943. bottom: 0.042
  12944. }
  12945. },
  12946. back: {
  12947. height: math.unit(6 + 2 / 12, "feet"),
  12948. weight: math.unit(265, "lb"),
  12949. name: "Back",
  12950. image: {
  12951. source: "./media/characters/jay/back.svg",
  12952. extra: 1510 / 1430,
  12953. bottom: 0.025
  12954. }
  12955. },
  12956. clothed: {
  12957. height: math.unit(6 + 2 / 12, "feet"),
  12958. weight: math.unit(265, "lb"),
  12959. name: "Front (Clothed)",
  12960. image: {
  12961. source: "./media/characters/jay/clothed.svg",
  12962. extra: 744 / 699,
  12963. bottom: 0.043
  12964. }
  12965. },
  12966. head: {
  12967. height: math.unit(1.772, "feet"),
  12968. name: "Head",
  12969. image: {
  12970. source: "./media/characters/jay/head.svg"
  12971. }
  12972. },
  12973. sizeRay: {
  12974. height: math.unit(1.331, "feet"),
  12975. name: "Size Ray",
  12976. image: {
  12977. source: "./media/characters/jay/size-ray.svg"
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Micro",
  12984. height: math.unit(1, "inch")
  12985. },
  12986. {
  12987. name: "Normal",
  12988. height: math.unit(6 + 2 / 12, "feet"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Macro",
  12993. height: math.unit(1, "mile")
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(100, "miles")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(2, "meters"),
  13006. weight: math.unit(500, "kg"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/coatl/front.svg",
  13010. extra: 3948 / 3500,
  13011. bottom: 0.082
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(4, "meters")
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(100, "meters"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Macro+",
  13027. height: math.unit(300, "meters")
  13028. },
  13029. {
  13030. name: "Megamacro",
  13031. height: math.unit(3, "gigameters")
  13032. },
  13033. {
  13034. name: "Megamacro+",
  13035. height: math.unit(300, "terameters")
  13036. },
  13037. {
  13038. name: "Megamacro++",
  13039. height: math.unit(3, "lightyears")
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(50, "kg"),
  13049. name: "front",
  13050. image: {
  13051. source: "./media/characters/shiroryu/front.svg",
  13052. extra: 1990 / 1935
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Mortal Mingling",
  13059. height: math.unit(3, "meters")
  13060. },
  13061. {
  13062. name: "Kaiju-ish",
  13063. height: math.unit(250, "meters")
  13064. },
  13065. {
  13066. name: "Somewhat Godly",
  13067. height: math.unit(400, "km"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Planetary",
  13072. height: math.unit(300, "megameters")
  13073. },
  13074. {
  13075. name: "Galaxy-dwarfing",
  13076. height: math.unit(450, "kiloparsecs")
  13077. },
  13078. {
  13079. name: "Universe Eater",
  13080. height: math.unit(150, "gigaparsecs")
  13081. },
  13082. {
  13083. name: "Almost Immeasurable",
  13084. height: math.unit(1.3e266, "yottaparsecs")
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(150, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/umeko/front.svg",
  13097. extra: 1,
  13098. bottom: 0.019
  13099. }
  13100. },
  13101. frontArmored: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Front (Armored)",
  13105. image: {
  13106. source: "./media/characters/umeko/front-armored.svg",
  13107. extra: 1,
  13108. bottom: 0.021
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(220, "feet"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Guardian Dragon",
  13120. height: math.unit(50, "miles")
  13121. },
  13122. {
  13123. name: "Cosmic",
  13124. height: math.unit(800000, "miles")
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(150, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/cassidy/front.svg",
  13137. extra: 1,
  13138. bottom: 0.043
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Canon Height",
  13145. height: math.unit(120, "feet"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Macro+",
  13150. height: math.unit(400, "feet")
  13151. },
  13152. {
  13153. name: "Macro++",
  13154. height: math.unit(4000, "feet")
  13155. },
  13156. {
  13157. name: "Megamacro",
  13158. height: math.unit(3, "miles")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/isaac/front.svg",
  13171. extra: 896 / 815,
  13172. bottom: 0.11
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Human Size",
  13179. height: math.unit(8, "feet"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Macro",
  13184. height: math.unit(400, "feet")
  13185. },
  13186. {
  13187. name: "Megamacro",
  13188. height: math.unit(50, "miles")
  13189. },
  13190. {
  13191. name: "Canon Height",
  13192. height: math.unit(200, "AU")
  13193. },
  13194. ]
  13195. ))
  13196. characterMakers.push(() => makeCharacter(
  13197. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13198. {
  13199. front: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(72, "kg"),
  13202. name: "Front",
  13203. image: {
  13204. source: "./media/characters/sleekit/front.svg",
  13205. extra: 4693 / 4487,
  13206. bottom: 0.012
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Minimum Height",
  13213. height: math.unit(10, "meters")
  13214. },
  13215. {
  13216. name: "Smaller",
  13217. height: math.unit(25, "meters")
  13218. },
  13219. {
  13220. name: "Larger",
  13221. height: math.unit(38, "meters"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Maximum height",
  13226. height: math.unit(100, "meters")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/nillia/front.svg",
  13239. extra: 2195 / 2037,
  13240. bottom: 0.005
  13241. }
  13242. },
  13243. back: {
  13244. height: math.unit(6, "feet"),
  13245. weight: math.unit(150, "lb"),
  13246. name: "Back",
  13247. image: {
  13248. source: "./media/characters/nillia/back.svg",
  13249. extra: 2195 / 2037,
  13250. bottom: 0.005
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Canon Height",
  13257. height: math.unit(489, "feet"),
  13258. default: true
  13259. }
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Front",
  13269. image: {
  13270. source: "./media/characters/mesmyriza/front.svg",
  13271. extra: 2067 / 1784,
  13272. bottom: 0.035
  13273. }
  13274. },
  13275. foot: {
  13276. height: math.unit(6 / (250 / 35), "feet"),
  13277. name: "Foot",
  13278. image: {
  13279. source: "./media/characters/mesmyriza/foot.svg"
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Macro",
  13286. height: math.unit(457, "meters"),
  13287. default: true
  13288. },
  13289. {
  13290. name: "Megamacro",
  13291. height: math.unit(8, "megameters")
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13297. {
  13298. front: {
  13299. height: math.unit(6, "feet"),
  13300. weight: math.unit(250, "lb"),
  13301. name: "Front",
  13302. image: {
  13303. source: "./media/characters/saudade/front.svg",
  13304. extra: 1172 / 1139,
  13305. bottom: 0.035
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Micro",
  13312. height: math.unit(3, "inches")
  13313. },
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(6, "feet"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(50, "feet")
  13322. },
  13323. {
  13324. name: "Megamacro",
  13325. height: math.unit(2800, "feet")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(5 + 4 / 12, "feet"),
  13334. weight: math.unit(100, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/keireer/front.svg",
  13338. extra: 716 / 666,
  13339. bottom: 0.05
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(5 + 4 / 12, "feet"),
  13347. default: true
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(6, "feet"),
  13356. weight: math.unit(90, "kg"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/mirja/front.svg",
  13360. extra: 1789 / 1683,
  13361. bottom: 0.05
  13362. }
  13363. },
  13364. frontDressed: {
  13365. height: math.unit(6, "feet"),
  13366. weight: math.unit(90, "lb"),
  13367. name: "Front (Dressed)",
  13368. image: {
  13369. source: "./media/characters/mirja/front-dressed.svg",
  13370. extra: 1789 / 1683,
  13371. bottom: 0.05
  13372. }
  13373. },
  13374. back: {
  13375. height: math.unit(6, "feet"),
  13376. weight: math.unit(90, "lb"),
  13377. name: "Back",
  13378. image: {
  13379. source: "./media/characters/mirja/back.svg",
  13380. extra: 953 / 917,
  13381. bottom: 0.017
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "\"Incognito\"",
  13388. height: math.unit(3, "meters")
  13389. },
  13390. {
  13391. name: "Strolling Size",
  13392. height: math.unit(15, "km")
  13393. },
  13394. {
  13395. name: "Larger Strolling Size",
  13396. height: math.unit(400, "km")
  13397. },
  13398. {
  13399. name: "Preferred Size",
  13400. height: math.unit(5000, "km")
  13401. },
  13402. {
  13403. name: "True Size",
  13404. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13405. default: true
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(15, "feet"),
  13414. weight: math.unit(880, "kg"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/nightraver/front.svg",
  13418. extra: 2444 / 2160,
  13419. bottom: 0.027
  13420. }
  13421. },
  13422. back: {
  13423. height: math.unit(15, "feet"),
  13424. weight: math.unit(880, "kg"),
  13425. name: "Back",
  13426. image: {
  13427. source: "./media/characters/nightraver/back.svg",
  13428. extra: 2309 / 2180,
  13429. bottom: 0.005
  13430. }
  13431. },
  13432. sole: {
  13433. height: math.unit(2.878, "feet"),
  13434. name: "Sole",
  13435. image: {
  13436. source: "./media/characters/nightraver/sole.svg"
  13437. }
  13438. },
  13439. foot: {
  13440. height: math.unit(2.285, "feet"),
  13441. name: "Foot",
  13442. image: {
  13443. source: "./media/characters/nightraver/foot.svg"
  13444. }
  13445. },
  13446. maw: {
  13447. height: math.unit(2.67, "feet"),
  13448. name: "Maw",
  13449. image: {
  13450. source: "./media/characters/nightraver/maw.svg"
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Micro",
  13457. height: math.unit(1, "cm")
  13458. },
  13459. {
  13460. name: "Normal",
  13461. height: math.unit(15, "feet"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(300, "feet")
  13467. },
  13468. {
  13469. name: "Megamacro",
  13470. height: math.unit(300, "miles")
  13471. },
  13472. {
  13473. name: "Gigamacro",
  13474. height: math.unit(10000, "miles")
  13475. },
  13476. ]
  13477. ))
  13478. characterMakers.push(() => makeCharacter(
  13479. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13480. {
  13481. side: {
  13482. height: math.unit(2, "inches"),
  13483. weight: math.unit(5, "grams"),
  13484. name: "Side",
  13485. image: {
  13486. source: "./media/characters/arc/side.svg"
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Micro",
  13493. height: math.unit(2, "inches"),
  13494. default: true
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(1.1938, "meters"),
  13503. weight: math.unit(54, "kg"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/nebula-shahar/front.svg",
  13507. extra: 1642 / 1436,
  13508. bottom: 0.06
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Megamicro",
  13515. height: math.unit(0.3, "mm")
  13516. },
  13517. {
  13518. name: "Micro",
  13519. height: math.unit(3, "cm")
  13520. },
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(138, "cm"),
  13524. default: true
  13525. },
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(30, "m")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(5.24, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/shayla/front.svg",
  13541. extra: 1512 / 1414,
  13542. bottom: 0.01
  13543. }
  13544. },
  13545. back: {
  13546. height: math.unit(5.24, "feet"),
  13547. weight: math.unit(150, "lb"),
  13548. name: "Back",
  13549. image: {
  13550. source: "./media/characters/shayla/back.svg",
  13551. extra: 1512 / 1414
  13552. }
  13553. },
  13554. hand: {
  13555. height: math.unit(0.7781496062992126, "feet"),
  13556. name: "Hand",
  13557. image: {
  13558. source: "./media/characters/shayla/hand.svg"
  13559. }
  13560. },
  13561. foot: {
  13562. height: math.unit(1.4206036745406823, "feet"),
  13563. name: "Foot",
  13564. image: {
  13565. source: "./media/characters/shayla/foot.svg"
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Micro",
  13572. height: math.unit(0.32, "feet")
  13573. },
  13574. {
  13575. name: "Normal",
  13576. height: math.unit(5.24, "feet"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Macro",
  13581. height: math.unit(492.12, "feet")
  13582. },
  13583. {
  13584. name: "Megamacro",
  13585. height: math.unit(186.41, "miles")
  13586. },
  13587. ]
  13588. ))
  13589. characterMakers.push(() => makeCharacter(
  13590. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13591. {
  13592. front: {
  13593. height: math.unit(2.2, "m"),
  13594. weight: math.unit(120, "kg"),
  13595. name: "Front",
  13596. image: {
  13597. source: "./media/characters/pia-jr/front.svg",
  13598. extra: 1000 / 970,
  13599. bottom: 0.035
  13600. }
  13601. },
  13602. hand: {
  13603. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13604. name: "Hand",
  13605. image: {
  13606. source: "./media/characters/pia-jr/hand.svg"
  13607. }
  13608. },
  13609. paw: {
  13610. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13611. name: "Paw",
  13612. image: {
  13613. source: "./media/characters/pia-jr/paw.svg"
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Micro",
  13620. height: math.unit(1.2, "cm")
  13621. },
  13622. {
  13623. name: "Normal",
  13624. height: math.unit(2.2, "m"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Macro",
  13629. height: math.unit(180, "m")
  13630. },
  13631. {
  13632. name: "Megamacro",
  13633. height: math.unit(420, "km")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(2, "m"),
  13642. weight: math.unit(115, "kg"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/pia-sr/front.svg",
  13646. extra: 760 / 730,
  13647. bottom: 0.015
  13648. }
  13649. },
  13650. back: {
  13651. height: math.unit(2, "m"),
  13652. weight: math.unit(115, "kg"),
  13653. name: "Back",
  13654. image: {
  13655. source: "./media/characters/pia-sr/back.svg",
  13656. extra: 760 / 730,
  13657. bottom: 0.01
  13658. }
  13659. },
  13660. hand: {
  13661. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13662. name: "Hand",
  13663. image: {
  13664. source: "./media/characters/pia-sr/hand.svg"
  13665. }
  13666. },
  13667. foot: {
  13668. height: math.unit(1.83, "feet"),
  13669. name: "Foot",
  13670. image: {
  13671. source: "./media/characters/pia-sr/foot.svg"
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(88, "mm")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(2, "m"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(200, "m")
  13688. },
  13689. {
  13690. name: "Megamacro",
  13691. height: math.unit(420, "km")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(8 + 2 / 12, "feet"),
  13700. weight: math.unit(300, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/kibibyte/front.svg",
  13704. extra: 2221 / 2098,
  13705. bottom: 0.04
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(8 + 2 / 12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Socialable Macro",
  13717. height: math.unit(50, "feet")
  13718. },
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(300, "feet")
  13722. },
  13723. {
  13724. name: "Megamacro",
  13725. height: math.unit(500, "miles")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/felix/front.svg",
  13738. extra: 762 / 722,
  13739. bottom: 0.02
  13740. }
  13741. },
  13742. frontClothed: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(150, "lb"),
  13745. name: "Front (Clothed)",
  13746. image: {
  13747. source: "./media/characters/felix/front-clothed.svg",
  13748. extra: 762 / 722,
  13749. bottom: 0.02
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(6 + 8 / 12, "feet"),
  13757. default: true
  13758. },
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(2600, "feet")
  13762. },
  13763. {
  13764. name: "Megamacro",
  13765. height: math.unit(450, "miles")
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(6 + 1 / 12, "feet"),
  13774. weight: math.unit(250, "lb"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/tobo/front.svg",
  13778. extra: 608 / 586,
  13779. bottom: 0.023
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(6 + 1 / 12, "feet"),
  13784. weight: math.unit(250, "lb"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/tobo/back.svg",
  13788. extra: 608 / 586
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Nano",
  13795. height: math.unit(2, "nm")
  13796. },
  13797. {
  13798. name: "Megamicro",
  13799. height: math.unit(0.1, "mm")
  13800. },
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(1, "inch"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Human-sized",
  13808. height: math.unit(6 + 1 / 12, "feet")
  13809. },
  13810. {
  13811. name: "Macro",
  13812. height: math.unit(250, "feet")
  13813. },
  13814. {
  13815. name: "Megamacro",
  13816. height: math.unit(75, "miles")
  13817. },
  13818. {
  13819. name: "Texas-sized",
  13820. height: math.unit(750, "miles")
  13821. },
  13822. {
  13823. name: "Teramacro",
  13824. height: math.unit(50000, "miles")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(269, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/danny-kapowsky/front.svg",
  13837. extra: 766 / 736,
  13838. bottom: 0.044
  13839. }
  13840. },
  13841. back: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(269, "lb"),
  13844. name: "Back",
  13845. image: {
  13846. source: "./media/characters/danny-kapowsky/back.svg",
  13847. extra: 797 / 760,
  13848. bottom: 0.025
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(150, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro+",
  13860. height: math.unit(200, "feet")
  13861. },
  13862. {
  13863. name: "Macro++",
  13864. height: math.unit(300, "feet")
  13865. },
  13866. {
  13867. name: "Macro+++",
  13868. height: math.unit(400, "feet")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13874. {
  13875. side: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(170, "lb"),
  13878. name: "Side",
  13879. image: {
  13880. source: "./media/characters/finn/side.svg",
  13881. extra: 1953 / 1807,
  13882. bottom: 0.057
  13883. }
  13884. },
  13885. },
  13886. [
  13887. {
  13888. name: "Megamacro",
  13889. height: math.unit(14445, "feet"),
  13890. default: true
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(5 + 6 / 12, "feet"),
  13899. weight: math.unit(125, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/roy/front.svg",
  13903. extra: 1,
  13904. bottom: 0.11
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Micro",
  13911. height: math.unit(3, "inches"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(5 + 6 / 12, "feet")
  13917. },
  13918. {
  13919. name: "Lesser Macro",
  13920. height: math.unit(60, "feet")
  13921. },
  13922. {
  13923. name: "Greater Macro",
  13924. height: math.unit(120, "feet")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(100, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/aevsivs/front.svg",
  13937. extra: 1,
  13938. bottom: 0.03
  13939. }
  13940. },
  13941. back: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(100, "lb"),
  13944. name: "Back",
  13945. image: {
  13946. source: "./media/characters/aevsivs/back.svg"
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Micro",
  13953. height: math.unit(2, "inches"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(5, "feet")
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13964. {
  13965. front: {
  13966. height: math.unit(5 + 7 / 12, "feet"),
  13967. weight: math.unit(159, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/hildegard/front.svg",
  13971. extra: 289 / 269,
  13972. bottom: 7.63 / 297.8
  13973. }
  13974. },
  13975. back: {
  13976. height: math.unit(5 + 7 / 12, "feet"),
  13977. weight: math.unit(159, "lb"),
  13978. name: "Back",
  13979. image: {
  13980. source: "./media/characters/hildegard/back.svg",
  13981. extra: 280 / 260,
  13982. bottom: 2.3 / 282
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Normal",
  13989. height: math.unit(5 + 7 / 12, "feet"),
  13990. default: true
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13996. {
  13997. bernard: {
  13998. height: math.unit(2 + 7 / 12, "feet"),
  13999. weight: math.unit(66, "lb"),
  14000. name: "Bernard",
  14001. rename: true,
  14002. image: {
  14003. source: "./media/characters/bernard-wilder/bernard.svg",
  14004. extra: 192 / 128,
  14005. bottom: 0.05
  14006. }
  14007. },
  14008. wilder: {
  14009. height: math.unit(5 + 8 / 12, "feet"),
  14010. weight: math.unit(143, "lb"),
  14011. name: "Wilder",
  14012. rename: true,
  14013. image: {
  14014. source: "./media/characters/bernard-wilder/wilder.svg",
  14015. extra: 361 / 312,
  14016. bottom: 0.02
  14017. }
  14018. },
  14019. },
  14020. [
  14021. {
  14022. name: "Normal",
  14023. height: math.unit(2 + 7 / 12, "feet"),
  14024. default: true
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14030. {
  14031. anthro: {
  14032. height: math.unit(6 + 1 / 12, "feet"),
  14033. weight: math.unit(155, "lb"),
  14034. name: "Anthro",
  14035. image: {
  14036. source: "./media/characters/hearth/anthro.svg",
  14037. extra: 260 / 250,
  14038. bottom: 0.02
  14039. }
  14040. },
  14041. feral: {
  14042. height: math.unit(3.78, "feet"),
  14043. weight: math.unit(35, "kg"),
  14044. name: "Feral",
  14045. image: {
  14046. source: "./media/characters/hearth/feral.svg",
  14047. extra: 153 / 135,
  14048. bottom: 0.03
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Normal",
  14055. height: math.unit(6 + 1 / 12, "feet"),
  14056. default: true
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14062. {
  14063. front: {
  14064. height: math.unit(6, "feet"),
  14065. weight: math.unit(182, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/ingrid/front.svg",
  14069. extra: 294 / 268,
  14070. bottom: 0.027
  14071. }
  14072. },
  14073. },
  14074. [
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(6, "feet"),
  14078. default: true
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14084. {
  14085. eevee: {
  14086. height: math.unit(2 + 10 / 12, "feet"),
  14087. weight: math.unit(86, "lb"),
  14088. name: "Malgam",
  14089. image: {
  14090. source: "./media/characters/malgam/eevee.svg",
  14091. extra: 218 / 180,
  14092. bottom: 0.2
  14093. }
  14094. },
  14095. sylveon: {
  14096. height: math.unit(4, "feet"),
  14097. weight: math.unit(101, "lb"),
  14098. name: "Future Malgam",
  14099. rename: true,
  14100. image: {
  14101. source: "./media/characters/malgam/sylveon.svg",
  14102. extra: 371 / 325,
  14103. bottom: 0.015
  14104. }
  14105. },
  14106. gigantamax: {
  14107. height: math.unit(50, "feet"),
  14108. name: "Gigantamax Malgam",
  14109. rename: true,
  14110. image: {
  14111. source: "./media/characters/malgam/gigantamax.svg"
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Normal",
  14118. height: math.unit(2 + 10 / 12, "feet"),
  14119. default: true
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(5 + 11 / 12, "feet"),
  14128. weight: math.unit(188, "lb"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/fleur/front.svg",
  14132. extra: 309 / 283,
  14133. bottom: 0.007
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Normal",
  14140. height: math.unit(5 + 11 / 12, "feet"),
  14141. default: true
  14142. },
  14143. ]
  14144. ))
  14145. characterMakers.push(() => makeCharacter(
  14146. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14147. {
  14148. front: {
  14149. height: math.unit(5 + 4 / 12, "feet"),
  14150. weight: math.unit(122, "lb"),
  14151. name: "Front",
  14152. image: {
  14153. source: "./media/characters/jude/front.svg",
  14154. extra: 288 / 273,
  14155. bottom: 0.03
  14156. }
  14157. },
  14158. },
  14159. [
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(5 + 4 / 12, "feet"),
  14163. default: true
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(5 + 11 / 12, "feet"),
  14172. weight: math.unit(190, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/seara/front.svg",
  14176. extra: 1,
  14177. bottom: 0.05
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Normal",
  14184. height: math.unit(5 + 11 / 12, "feet"),
  14185. default: true
  14186. },
  14187. ]
  14188. ))
  14189. characterMakers.push(() => makeCharacter(
  14190. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14191. {
  14192. front: {
  14193. height: math.unit(16 + 5 / 12, "feet"),
  14194. weight: math.unit(524, "lb"),
  14195. name: "Front",
  14196. image: {
  14197. source: "./media/characters/caspian/front.svg",
  14198. extra: 1,
  14199. bottom: 0.04
  14200. }
  14201. },
  14202. },
  14203. [
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(16 + 5 / 12, "feet"),
  14207. default: true
  14208. },
  14209. ]
  14210. ))
  14211. characterMakers.push(() => makeCharacter(
  14212. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14213. {
  14214. front: {
  14215. height: math.unit(5 + 7 / 12, "feet"),
  14216. weight: math.unit(170, "lb"),
  14217. name: "Front",
  14218. image: {
  14219. source: "./media/characters/mika/front.svg",
  14220. extra: 1,
  14221. bottom: 0.016
  14222. }
  14223. },
  14224. },
  14225. [
  14226. {
  14227. name: "Normal",
  14228. height: math.unit(5 + 7 / 12, "feet"),
  14229. default: true
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6 + 2 / 12, "feet"),
  14238. weight: math.unit(268, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/sol/front.svg",
  14242. extra: 247 / 231,
  14243. bottom: 0.05
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(6 + 2 / 12, "feet"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14257. {
  14258. buizel: {
  14259. height: math.unit(2 + 5 / 12, "feet"),
  14260. weight: math.unit(87, "lb"),
  14261. name: "Buizel",
  14262. image: {
  14263. source: "./media/characters/umiko/buizel.svg",
  14264. extra: 172 / 157,
  14265. bottom: 0.01
  14266. }
  14267. },
  14268. floatzel: {
  14269. height: math.unit(5 + 9 / 12, "feet"),
  14270. weight: math.unit(250, "lb"),
  14271. name: "Floatzel",
  14272. image: {
  14273. source: "./media/characters/umiko/floatzel.svg",
  14274. extra: 262 / 248
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(2 + 5 / 12, "feet"),
  14282. default: true
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6 + 2 / 12, "feet"),
  14291. weight: math.unit(146, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/iliac/front.svg",
  14295. extra: 389 / 365,
  14296. bottom: 0.035
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Normal",
  14303. height: math.unit(6 + 2 / 12, "feet"),
  14304. default: true
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(170, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/topaz/front.svg",
  14317. extra: 317 / 303,
  14318. bottom: 0.055
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(6, "feet"),
  14326. default: true
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14332. {
  14333. front: {
  14334. height: math.unit(5 + 11 / 12, "feet"),
  14335. weight: math.unit(144, "lb"),
  14336. name: "Front",
  14337. image: {
  14338. source: "./media/characters/gabriel/front.svg",
  14339. extra: 285 / 262,
  14340. bottom: 0.004
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Normal",
  14347. height: math.unit(5 + 11 / 12, "feet"),
  14348. default: true
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14354. {
  14355. side: {
  14356. height: math.unit(6 + 5 / 12, "feet"),
  14357. weight: math.unit(300, "lb"),
  14358. name: "Side",
  14359. image: {
  14360. source: "./media/characters/tempest-suicune/side.svg",
  14361. extra: 195 / 154,
  14362. bottom: 0.04
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Normal",
  14369. height: math.unit(6 + 5 / 12, "feet"),
  14370. default: true
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(7 + 2 / 12, "feet"),
  14379. weight: math.unit(322, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/vulcan/front.svg",
  14383. extra: 154 / 147,
  14384. bottom: 0.04
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Normal",
  14391. height: math.unit(7 + 2 / 12, "feet"),
  14392. default: true
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14398. {
  14399. front: {
  14400. height: math.unit(5 + 10 / 12, "feet"),
  14401. weight: math.unit(264, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/gault/front.svg",
  14405. extra: 161 / 140,
  14406. bottom: 0.028
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(5 + 10 / 12, "feet"),
  14414. default: true
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14420. {
  14421. front: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(150, "lb"),
  14424. name: "Front",
  14425. image: {
  14426. source: "./media/characters/shard/front.svg",
  14427. extra: 273 / 238,
  14428. bottom: 0.02
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Normal",
  14435. height: math.unit(3 + 6 / 12, "feet"),
  14436. default: true
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(5 + 11 / 12, "feet"),
  14445. weight: math.unit(146, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/ashe/front.svg",
  14449. extra: 400 / 373,
  14450. bottom: 0.01
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(5 + 11 / 12, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(5 + 5 / 12, "feet"),
  14467. weight: math.unit(135, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/beatrix/front.svg",
  14471. extra: 392 / 379,
  14472. bottom: 0.01
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Normal",
  14479. height: math.unit(6, "feet"),
  14480. default: true
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/ignatius/front.svg",
  14493. extra: 245 / 222,
  14494. bottom: 0.01
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(5 + 5 / 12, "feet"),
  14502. default: true
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14508. {
  14509. front: {
  14510. height: math.unit(6 + 2 / 12, "feet"),
  14511. weight: math.unit(138, "lb"),
  14512. name: "Front",
  14513. image: {
  14514. source: "./media/characters/mei-li/front.svg",
  14515. extra: 237 / 229,
  14516. bottom: 0.03
  14517. }
  14518. },
  14519. },
  14520. [
  14521. {
  14522. name: "Normal",
  14523. height: math.unit(6 + 2 / 12, "feet"),
  14524. default: true
  14525. },
  14526. ]
  14527. ))
  14528. characterMakers.push(() => makeCharacter(
  14529. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14530. {
  14531. front: {
  14532. height: math.unit(2 + 4 / 12, "feet"),
  14533. weight: math.unit(62, "lb"),
  14534. name: "Front",
  14535. image: {
  14536. source: "./media/characters/puru/front.svg",
  14537. extra: 206 / 149,
  14538. bottom: 0.06
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Normal",
  14545. height: math.unit(2 + 4 / 12, "feet"),
  14546. default: true
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14552. {
  14553. taur: {
  14554. height: math.unit(11, "feet"),
  14555. weight: math.unit(500, "lb"),
  14556. name: "Taur",
  14557. image: {
  14558. source: "./media/characters/kee/taur.svg",
  14559. extra: 1,
  14560. bottom: 0.04
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Normal",
  14567. height: math.unit(11, "feet"),
  14568. default: true
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14574. {
  14575. anthro: {
  14576. height: math.unit(7, "feet"),
  14577. weight: math.unit(190, "lb"),
  14578. name: "Anthro",
  14579. image: {
  14580. source: "./media/characters/cobalt-dracha/anthro.svg",
  14581. extra: 231 / 225,
  14582. bottom: 0.04
  14583. }
  14584. },
  14585. feral: {
  14586. height: math.unit(9 + 7 / 12, "feet"),
  14587. weight: math.unit(294, "lb"),
  14588. name: "Feral",
  14589. image: {
  14590. source: "./media/characters/cobalt-dracha/feral.svg",
  14591. extra: 692 / 633,
  14592. bottom: 0.05
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(7, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14606. {
  14607. fallen: {
  14608. height: math.unit(11 + 8 / 12, "feet"),
  14609. weight: math.unit(485, "lb"),
  14610. name: "Java (Fallen)",
  14611. rename: true,
  14612. image: {
  14613. source: "./media/characters/java/fallen.svg",
  14614. extra: 226 / 208,
  14615. bottom: 0.005
  14616. }
  14617. },
  14618. godkin: {
  14619. height: math.unit(10 + 6 / 12, "feet"),
  14620. weight: math.unit(328, "lb"),
  14621. name: "Java (Godkin)",
  14622. rename: true,
  14623. image: {
  14624. source: "./media/characters/java/godkin.svg",
  14625. extra: 270 / 262,
  14626. bottom: 0.02
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(11 + 8 / 12, "feet"),
  14634. default: true
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14640. {
  14641. front: {
  14642. height: math.unit(7 + 8 / 12, "feet"),
  14643. weight: math.unit(320, "lb"),
  14644. name: "Front",
  14645. image: {
  14646. source: "./media/characters/skoll/front.svg",
  14647. extra: 232 / 220,
  14648. bottom: 0.02
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Normal",
  14655. height: math.unit(7 + 8 / 12, "feet"),
  14656. default: true
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(5 + 9 / 12, "feet"),
  14665. weight: math.unit(170, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/purna/front.svg",
  14669. extra: 239 / 229,
  14670. bottom: 0.01
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(5 + 9 / 12, "feet"),
  14678. default: true
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(5 + 9 / 12, "feet"),
  14687. weight: math.unit(142, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/kuva/front.svg",
  14691. extra: 281 / 271,
  14692. bottom: 0.006
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(5 + 9 / 12, "feet"),
  14700. default: true
  14701. },
  14702. ]
  14703. ))
  14704. characterMakers.push(() => makeCharacter(
  14705. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14706. {
  14707. anthro: {
  14708. height: math.unit(9 + 2 / 12, "feet"),
  14709. weight: math.unit(270, "lb"),
  14710. name: "Anthro",
  14711. image: {
  14712. source: "./media/characters/embra/anthro.svg",
  14713. extra: 200 / 187,
  14714. bottom: 0.02
  14715. }
  14716. },
  14717. feral: {
  14718. height: math.unit(18 + 8 / 12, "feet"),
  14719. weight: math.unit(576, "lb"),
  14720. name: "Feral",
  14721. image: {
  14722. source: "./media/characters/embra/feral.svg",
  14723. extra: 152 / 137,
  14724. bottom: 0.037
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(9 + 2 / 12, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14738. {
  14739. anthro: {
  14740. height: math.unit(10 + 9 / 12, "feet"),
  14741. weight: math.unit(224, "lb"),
  14742. name: "Anthro",
  14743. image: {
  14744. source: "./media/characters/grottos/anthro.svg",
  14745. extra: 350 / 332,
  14746. bottom: 0.045
  14747. }
  14748. },
  14749. feral: {
  14750. height: math.unit(20 + 7 / 12, "feet"),
  14751. weight: math.unit(629, "lb"),
  14752. name: "Feral",
  14753. image: {
  14754. source: "./media/characters/grottos/feral.svg",
  14755. extra: 207 / 190,
  14756. bottom: 0.05
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(10 + 9 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14770. {
  14771. anthro: {
  14772. height: math.unit(9 + 6 / 12, "feet"),
  14773. weight: math.unit(298, "lb"),
  14774. name: "Anthro",
  14775. image: {
  14776. source: "./media/characters/frifna/anthro.svg",
  14777. extra: 282 / 269,
  14778. bottom: 0.015
  14779. }
  14780. },
  14781. feral: {
  14782. height: math.unit(16 + 2 / 12, "feet"),
  14783. weight: math.unit(624, "lb"),
  14784. name: "Feral",
  14785. image: {
  14786. source: "./media/characters/frifna/feral.svg"
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(9 + 6 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(6 + 2 / 12, "feet"),
  14803. weight: math.unit(168, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/elise/front.svg",
  14807. extra: 276 / 271
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(6 + 2 / 12, "feet"),
  14815. default: true
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(5 + 10 / 12, "feet"),
  14824. weight: math.unit(210, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/glade/front.svg",
  14828. extra: 258 / 247,
  14829. bottom: 0.008
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(5 + 10 / 12, "feet"),
  14837. default: true
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(5 + 10 / 12, "feet"),
  14846. weight: math.unit(129, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/rina/front.svg",
  14850. extra: 266 / 255,
  14851. bottom: 0.005
  14852. }
  14853. },
  14854. },
  14855. [
  14856. {
  14857. name: "Normal",
  14858. height: math.unit(5 + 10 / 12, "feet"),
  14859. default: true
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14865. {
  14866. front: {
  14867. height: math.unit(6 + 1 / 12, "feet"),
  14868. weight: math.unit(192, "lb"),
  14869. name: "Front",
  14870. image: {
  14871. source: "./media/characters/veronica/front.svg",
  14872. extra: 319 / 309,
  14873. bottom: 0.005
  14874. }
  14875. },
  14876. },
  14877. [
  14878. {
  14879. name: "Normal",
  14880. height: math.unit(6 + 1 / 12, "feet"),
  14881. default: true
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(9 + 3 / 12, "feet"),
  14890. weight: math.unit(1100, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/braxton/front.svg",
  14894. extra: 1057 / 984,
  14895. bottom: 0.05
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(9 + 3 / 12, "feet")
  14903. },
  14904. {
  14905. name: "Giant",
  14906. height: math.unit(300, "feet"),
  14907. default: true
  14908. },
  14909. {
  14910. name: "Macro",
  14911. height: math.unit(700, "feet")
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(6000, "feet")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6 + 7 / 12, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/blue-feyonics/front.svg",
  14928. extra: 1403 / 1306,
  14929. bottom: 0.047
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(6 + 7 / 12, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14943. {
  14944. front: {
  14945. height: math.unit(1.8, "meters"),
  14946. weight: math.unit(60, "kg"),
  14947. name: "Front",
  14948. image: {
  14949. source: "./media/characters/maxwell/front.svg",
  14950. extra: 2060 / 1873
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Micro",
  14957. height: math.unit(1, "mm")
  14958. },
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(1.8, "meter"),
  14962. default: true
  14963. },
  14964. {
  14965. name: "Macro",
  14966. height: math.unit(30, "meters")
  14967. },
  14968. {
  14969. name: "Megamacro",
  14970. height: math.unit(10, "km")
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(150, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/jack/front.svg",
  14983. extra: 1754 / 1640,
  14984. bottom: 0.01
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(80000, "feet"),
  14992. default: true
  14993. },
  14994. {
  14995. name: "Max size",
  14996. height: math.unit(10, "lightyears")
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15002. {
  15003. upright: {
  15004. height: math.unit(7, "feet"),
  15005. weight: math.unit(170, "lb"),
  15006. name: "Upright",
  15007. image: {
  15008. source: "./media/characters/cafat/upright.svg",
  15009. bottom: 0.01
  15010. }
  15011. },
  15012. uprightFull: {
  15013. height: math.unit(7, "feet"),
  15014. weight: math.unit(170, "lb"),
  15015. name: "Upright (Full)",
  15016. image: {
  15017. source: "./media/characters/cafat/upright-full.svg",
  15018. bottom: 0.01
  15019. }
  15020. },
  15021. side: {
  15022. height: math.unit(5, "feet"),
  15023. weight: math.unit(150, "lb"),
  15024. name: "Side",
  15025. image: {
  15026. source: "./media/characters/cafat/side.svg"
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Small",
  15033. height: math.unit(7, "feet"),
  15034. default: true
  15035. },
  15036. {
  15037. name: "Large",
  15038. height: math.unit(15.5, "feet")
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(6, "feet"),
  15047. weight: math.unit(150, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/verin-raharra/front.svg",
  15051. extra: 5019 / 4835,
  15052. bottom: 0.023
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(7 + 5 / 12, "feet"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "Upsized",
  15064. height: math.unit(20, "feet")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(7, "feet"),
  15073. weight: math.unit(230, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/nakata/front.svg",
  15077. extra: 1.005,
  15078. bottom: 0.01
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(7, "feet"),
  15086. default: true
  15087. },
  15088. {
  15089. name: "Big",
  15090. height: math.unit(14, "feet")
  15091. },
  15092. {
  15093. name: "Macro",
  15094. height: math.unit(400, "feet")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(4.91, "feet"),
  15103. weight: math.unit(100, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/lily/front.svg",
  15107. extra: 1585 / 1415,
  15108. bottom: 0.02
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(4.91, "feet"),
  15116. default: true
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15122. {
  15123. laying: {
  15124. height: math.unit(4 + 4 / 12, "feet"),
  15125. weight: math.unit(600, "lb"),
  15126. name: "Laying",
  15127. image: {
  15128. source: "./media/characters/sheila/laying.svg",
  15129. extra: 1333 / 1265,
  15130. bottom: 0.16
  15131. }
  15132. },
  15133. },
  15134. [
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(4 + 4 / 12, "feet"),
  15138. default: true
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15144. {
  15145. front: {
  15146. height: math.unit(6, "feet"),
  15147. weight: math.unit(190, "lb"),
  15148. name: "Front",
  15149. image: {
  15150. source: "./media/characters/sax/front.svg",
  15151. extra: 1187 / 973,
  15152. bottom: 0.042
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Micro",
  15159. height: math.unit(4, "inches"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(150, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/pandora/front.svg",
  15173. extra: 2720 / 2556,
  15174. bottom: 0.015
  15175. }
  15176. },
  15177. back: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Back",
  15181. image: {
  15182. source: "./media/characters/pandora/back.svg",
  15183. extra: 2720 / 2556,
  15184. bottom: 0.01
  15185. }
  15186. },
  15187. beans: {
  15188. height: math.unit(6 / 8, "feet"),
  15189. name: "Beans",
  15190. image: {
  15191. source: "./media/characters/pandora/beans.svg"
  15192. }
  15193. },
  15194. skirt: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(150, "lb"),
  15197. name: "Skirt",
  15198. image: {
  15199. source: "./media/characters/pandora/skirt.svg",
  15200. extra: 1622 / 1525,
  15201. bottom: 0.015
  15202. }
  15203. },
  15204. hoodie: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(150, "lb"),
  15207. name: "Hoodie",
  15208. image: {
  15209. source: "./media/characters/pandora/hoodie.svg",
  15210. extra: 1622 / 1525,
  15211. bottom: 0.015
  15212. }
  15213. },
  15214. casual: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(150, "lb"),
  15217. name: "Casual",
  15218. image: {
  15219. source: "./media/characters/pandora/casual.svg",
  15220. extra: 1622 / 1525,
  15221. bottom: 0.015
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(6, "feet")
  15229. },
  15230. {
  15231. name: "Big Steppy",
  15232. height: math.unit(1, "km"),
  15233. default: true
  15234. },
  15235. ]
  15236. ))
  15237. characterMakers.push(() => makeCharacter(
  15238. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15239. {
  15240. side: {
  15241. height: math.unit(10, "feet"),
  15242. weight: math.unit(800, "kg"),
  15243. name: "Side",
  15244. image: {
  15245. source: "./media/characters/venio-darcony/side.svg",
  15246. extra: 1373 / 1003,
  15247. bottom: 0.037
  15248. }
  15249. },
  15250. front: {
  15251. height: math.unit(19, "feet"),
  15252. weight: math.unit(800, "kg"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/venio-darcony/front.svg"
  15256. }
  15257. },
  15258. back: {
  15259. height: math.unit(19, "feet"),
  15260. weight: math.unit(800, "kg"),
  15261. name: "Back",
  15262. image: {
  15263. source: "./media/characters/venio-darcony/back.svg"
  15264. }
  15265. },
  15266. sideNsfw: {
  15267. height: math.unit(10, "feet"),
  15268. weight: math.unit(800, "kg"),
  15269. name: "Side (NSFW)",
  15270. image: {
  15271. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15272. extra: 1373 / 1003,
  15273. bottom: 0.037
  15274. }
  15275. },
  15276. frontNsfw: {
  15277. height: math.unit(19, "feet"),
  15278. weight: math.unit(800, "kg"),
  15279. name: "Front (NSFW)",
  15280. image: {
  15281. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15282. }
  15283. },
  15284. backNsfw: {
  15285. height: math.unit(19, "feet"),
  15286. weight: math.unit(800, "kg"),
  15287. name: "Back (NSFW)",
  15288. image: {
  15289. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15290. }
  15291. },
  15292. sideArmored: {
  15293. height: math.unit(10, "feet"),
  15294. weight: math.unit(800, "kg"),
  15295. name: "Side (Armored)",
  15296. image: {
  15297. source: "./media/characters/venio-darcony/side-armored.svg",
  15298. extra: 1373 / 1003,
  15299. bottom: 0.037
  15300. }
  15301. },
  15302. frontArmored: {
  15303. height: math.unit(19, "feet"),
  15304. weight: math.unit(900, "kg"),
  15305. name: "Front (Armored)",
  15306. image: {
  15307. source: "./media/characters/venio-darcony/front-armored.svg"
  15308. }
  15309. },
  15310. backArmored: {
  15311. height: math.unit(19, "feet"),
  15312. weight: math.unit(900, "kg"),
  15313. name: "Back (Armored)",
  15314. image: {
  15315. source: "./media/characters/venio-darcony/back-armored.svg"
  15316. }
  15317. },
  15318. sword: {
  15319. height: math.unit(10, "feet"),
  15320. weight: math.unit(50, "lb"),
  15321. name: "Sword",
  15322. image: {
  15323. source: "./media/characters/venio-darcony/sword.svg"
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(10, "feet")
  15331. },
  15332. {
  15333. name: "Macro",
  15334. height: math.unit(130, "feet"),
  15335. default: true
  15336. },
  15337. {
  15338. name: "Macro+",
  15339. height: math.unit(240, "feet")
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(150, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/veski/front.svg",
  15352. extra: 1299 / 1225,
  15353. bottom: 0.04
  15354. }
  15355. },
  15356. back: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Back",
  15360. image: {
  15361. source: "./media/characters/veski/back.svg",
  15362. extra: 1299 / 1225,
  15363. bottom: 0.008
  15364. }
  15365. },
  15366. maw: {
  15367. height: math.unit(1.5 * 1.21, "feet"),
  15368. name: "Maw",
  15369. image: {
  15370. source: "./media/characters/veski/maw.svg"
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(2, "km"),
  15378. default: true
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(5 + 7 / 12, "feet"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/isabelle/front.svg",
  15390. extra: 2130 / 1976,
  15391. bottom: 0.05
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Supermicro",
  15398. height: math.unit(10, "micrometers")
  15399. },
  15400. {
  15401. name: "Micro",
  15402. height: math.unit(1, "inch")
  15403. },
  15404. {
  15405. name: "Tiny",
  15406. height: math.unit(5, "inches")
  15407. },
  15408. {
  15409. name: "Standard",
  15410. height: math.unit(5 + 7 / 12, "inches")
  15411. },
  15412. {
  15413. name: "Macro",
  15414. height: math.unit(80, "meters"),
  15415. default: true
  15416. },
  15417. {
  15418. name: "Megamacro",
  15419. height: math.unit(250, "meters")
  15420. },
  15421. {
  15422. name: "Gigamacro",
  15423. height: math.unit(5, "km")
  15424. },
  15425. {
  15426. name: "Cosmic",
  15427. height: math.unit(2.5e6, "miles")
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15433. {
  15434. front: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/hanzo/front.svg",
  15440. extra: 374 / 344,
  15441. bottom: 0.02
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(8, "feet"),
  15449. default: true
  15450. },
  15451. ]
  15452. ))
  15453. characterMakers.push(() => makeCharacter(
  15454. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15455. {
  15456. front: {
  15457. height: math.unit(7, "feet"),
  15458. weight: math.unit(130, "lb"),
  15459. name: "Front",
  15460. image: {
  15461. source: "./media/characters/anna/front.svg",
  15462. extra: 169 / 145,
  15463. bottom: 0.06
  15464. }
  15465. },
  15466. full: {
  15467. height: math.unit(4.96, "feet"),
  15468. weight: math.unit(220, "lb"),
  15469. name: "Full",
  15470. image: {
  15471. source: "./media/characters/anna/full.svg",
  15472. extra: 138 / 114,
  15473. bottom: 0.15
  15474. }
  15475. },
  15476. tongue: {
  15477. height: math.unit(2.53, "feet"),
  15478. name: "Tongue",
  15479. image: {
  15480. source: "./media/characters/anna/tongue.svg"
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(7, "feet"),
  15488. default: true
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(7, "feet"),
  15497. weight: math.unit(150, "lb"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/ian-corvid/front.svg",
  15501. extra: 150 / 142,
  15502. bottom: 0.02
  15503. }
  15504. },
  15505. back: {
  15506. height: math.unit(7, "feet"),
  15507. weight: math.unit(150, "lb"),
  15508. name: "Back",
  15509. image: {
  15510. source: "./media/characters/ian-corvid/back.svg",
  15511. extra: 150 / 143,
  15512. bottom: 0.01
  15513. }
  15514. },
  15515. stomping: {
  15516. height: math.unit(7, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Stomping",
  15519. image: {
  15520. source: "./media/characters/ian-corvid/stomping.svg",
  15521. extra: 76 / 72
  15522. }
  15523. },
  15524. sitting: {
  15525. height: math.unit(7 / 1.8, "feet"),
  15526. weight: math.unit(150, "lb"),
  15527. name: "Sitting",
  15528. image: {
  15529. source: "./media/characters/ian-corvid/sitting.svg",
  15530. extra: 1400 / 1269,
  15531. bottom: 0.15
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Tiny Microw",
  15538. height: math.unit(1, "inch")
  15539. },
  15540. {
  15541. name: "Microw",
  15542. height: math.unit(6, "inches")
  15543. },
  15544. {
  15545. name: "Crow",
  15546. height: math.unit(7 + 1 / 12, "feet"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Macrow",
  15551. height: math.unit(176, "feet")
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(5 + 7 / 12, "feet"),
  15560. weight: math.unit(147, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/natalie-kellon/front.svg",
  15564. extra: 1214 / 1141,
  15565. bottom: 0.02
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Micro",
  15572. height: math.unit(1 / 16, "inch")
  15573. },
  15574. {
  15575. name: "Tiny",
  15576. height: math.unit(4, "inches")
  15577. },
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(5 + 7 / 12, "feet"),
  15581. default: true
  15582. },
  15583. {
  15584. name: "Amazon",
  15585. height: math.unit(12, "feet")
  15586. },
  15587. {
  15588. name: "Giantess",
  15589. height: math.unit(160, "meters")
  15590. },
  15591. {
  15592. name: "Titaness",
  15593. height: math.unit(800, "meters")
  15594. },
  15595. ]
  15596. ))
  15597. characterMakers.push(() => makeCharacter(
  15598. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15599. {
  15600. front: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(150, "lb"),
  15603. name: "Front",
  15604. image: {
  15605. source: "./media/characters/alluria/front.svg",
  15606. extra: 806 / 738,
  15607. bottom: 0.01
  15608. }
  15609. },
  15610. side: {
  15611. height: math.unit(6, "feet"),
  15612. weight: math.unit(150, "lb"),
  15613. name: "Side",
  15614. image: {
  15615. source: "./media/characters/alluria/side.svg",
  15616. extra: 800 / 750,
  15617. }
  15618. },
  15619. back: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(150, "lb"),
  15622. name: "Back",
  15623. image: {
  15624. source: "./media/characters/alluria/back.svg",
  15625. extra: 806 / 738,
  15626. }
  15627. },
  15628. frontMaid: {
  15629. height: math.unit(6, "feet"),
  15630. weight: math.unit(150, "lb"),
  15631. name: "Front (Maid)",
  15632. image: {
  15633. source: "./media/characters/alluria/front-maid.svg",
  15634. extra: 806 / 738,
  15635. bottom: 0.01
  15636. }
  15637. },
  15638. sideMaid: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(150, "lb"),
  15641. name: "Side (Maid)",
  15642. image: {
  15643. source: "./media/characters/alluria/side-maid.svg",
  15644. extra: 800 / 750,
  15645. bottom: 0.005
  15646. }
  15647. },
  15648. backMaid: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(150, "lb"),
  15651. name: "Back (Maid)",
  15652. image: {
  15653. source: "./media/characters/alluria/back-maid.svg",
  15654. extra: 806 / 738,
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Micro",
  15661. height: math.unit(6, "inches"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(150, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/kyle/front.svg",
  15675. extra: 1069 / 962,
  15676. bottom: 77.228 / 1727.45
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Macro",
  15683. height: math.unit(150, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6, "feet"),
  15693. weight: math.unit(300, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/duncan/front.svg",
  15697. extra: 1650 / 1482,
  15698. bottom: 0.05
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Macro",
  15705. height: math.unit(100, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 4 / 12, "feet"),
  15715. weight: math.unit(220, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/memory/front.svg",
  15719. extra: 3641 / 3545,
  15720. bottom: 0.03
  15721. }
  15722. },
  15723. back: {
  15724. height: math.unit(5 + 4 / 12, "feet"),
  15725. weight: math.unit(220, "lb"),
  15726. name: "Back",
  15727. image: {
  15728. source: "./media/characters/memory/back.svg",
  15729. extra: 3641 / 3545,
  15730. bottom: 0.025
  15731. }
  15732. },
  15733. frontSkirt: {
  15734. height: math.unit(5 + 4 / 12, "feet"),
  15735. weight: math.unit(220, "lb"),
  15736. name: "Front (Skirt)",
  15737. image: {
  15738. source: "./media/characters/memory/front-skirt.svg",
  15739. extra: 3641 / 3545,
  15740. bottom: 0.03
  15741. }
  15742. },
  15743. frontDress: {
  15744. height: math.unit(5 + 4 / 12, "feet"),
  15745. weight: math.unit(220, "lb"),
  15746. name: "Front (Dress)",
  15747. image: {
  15748. source: "./media/characters/memory/front-dress.svg",
  15749. extra: 3641 / 3545,
  15750. bottom: 0.03
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Micro",
  15757. height: math.unit(6, "inches"),
  15758. default: true
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(5 + 4 / 12, "feet")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(4 + 11 / 12, "feet"),
  15771. weight: math.unit(100, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/luno/front.svg",
  15775. extra: 1535 / 1487,
  15776. bottom: 0.03
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Micro",
  15783. height: math.unit(3, "inches")
  15784. },
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(4 + 11 / 12, "feet"),
  15788. default: true
  15789. },
  15790. {
  15791. name: "Macro",
  15792. height: math.unit(300, "feet")
  15793. },
  15794. {
  15795. name: "Megamacro",
  15796. height: math.unit(700, "miles")
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15802. {
  15803. front: {
  15804. height: math.unit(6 + 2 / 12, "feet"),
  15805. weight: math.unit(170, "lb"),
  15806. name: "Front",
  15807. image: {
  15808. source: "./media/characters/jamesy/front.svg",
  15809. extra: 440 / 382,
  15810. bottom: 0.005
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Micro",
  15817. height: math.unit(3, "inches")
  15818. },
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(6 + 2 / 12, "feet"),
  15822. default: true
  15823. },
  15824. {
  15825. name: "Macro",
  15826. height: math.unit(300, "feet")
  15827. },
  15828. {
  15829. name: "Megamacro",
  15830. height: math.unit(700, "miles")
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15836. {
  15837. front: {
  15838. height: math.unit(6, "feet"),
  15839. weight: math.unit(160, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/mark/front.svg",
  15843. extra: 3300 / 3100,
  15844. bottom: 136.42 / 3440.47
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Macro",
  15851. height: math.unit(120, "meters")
  15852. },
  15853. {
  15854. name: "Bigger Macro",
  15855. height: math.unit(350, "meters")
  15856. },
  15857. {
  15858. name: "Megamacro",
  15859. height: math.unit(8, "km"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Continental",
  15864. height: math.unit(4550, "km")
  15865. },
  15866. {
  15867. name: "Planetary",
  15868. height: math.unit(65000, "km")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(6, "feet"),
  15877. weight: math.unit(400, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/mac/front.svg",
  15881. extra: 1048 / 987.7,
  15882. bottom: 60 / 1107.6,
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Macro",
  15889. height: math.unit(500, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(5 + 2 / 12, "feet"),
  15899. weight: math.unit(190, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/bari/front.svg",
  15903. extra: 3156 / 2880,
  15904. bottom: 0.03
  15905. }
  15906. },
  15907. back: {
  15908. height: math.unit(5 + 2 / 12, "feet"),
  15909. weight: math.unit(190, "lb"),
  15910. name: "Back",
  15911. image: {
  15912. source: "./media/characters/bari/back.svg",
  15913. extra: 3260 / 2834,
  15914. bottom: 0.025
  15915. }
  15916. },
  15917. frontPlush: {
  15918. height: math.unit(5 + 2 / 12, "feet"),
  15919. weight: math.unit(190, "lb"),
  15920. name: "Front (Plush)",
  15921. image: {
  15922. source: "./media/characters/bari/front-plush.svg",
  15923. extra: 1112 / 1061,
  15924. bottom: 0.002
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Micro",
  15931. height: math.unit(3, "inches")
  15932. },
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(5 + 2 / 12, "feet"),
  15936. default: true
  15937. },
  15938. {
  15939. name: "Macro",
  15940. height: math.unit(20, "feet")
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(6 + 1 / 12, "feet"),
  15949. weight: math.unit(275, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/hunter-misha-raven/front.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Mortal",
  15959. height: math.unit(6 + 1 / 12, "feet")
  15960. },
  15961. {
  15962. name: "Divine",
  15963. height: math.unit(1.12134e34, "parsecs"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(6 + 3 / 12, "feet"),
  15973. weight: math.unit(220, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/max-calore/front.svg",
  15977. extra: 1700 / 1648,
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. back: {
  15982. height: math.unit(6 + 3 / 12, "feet"),
  15983. weight: math.unit(220, "lb"),
  15984. name: "Back",
  15985. image: {
  15986. source: "./media/characters/max-calore/back.svg",
  15987. extra: 1700 / 1648,
  15988. bottom: 0.01
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(6 + 3 / 12, "feet"),
  15996. default: true
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16002. {
  16003. side: {
  16004. height: math.unit(2 + 8 / 12, "feet"),
  16005. weight: math.unit(99, "lb"),
  16006. name: "Side",
  16007. image: {
  16008. source: "./media/characters/aspen/side.svg",
  16009. extra: 152 / 138,
  16010. bottom: 0.032
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(2 + 8 / 12, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16024. {
  16025. side: {
  16026. height: math.unit(3 + 2 / 12, "feet"),
  16027. weight: math.unit(224, "lb"),
  16028. name: "Side",
  16029. image: {
  16030. source: "./media/characters/sheila-feral-wolf/side.svg",
  16031. extra: 179 / 166,
  16032. bottom: 0.03
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(3 + 2 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16046. {
  16047. side: {
  16048. height: math.unit(1 + 9 / 12, "feet"),
  16049. weight: math.unit(38, "lb"),
  16050. name: "Side",
  16051. image: {
  16052. source: "./media/characters/michelle/side.svg",
  16053. extra: 147 / 136.7,
  16054. bottom: 0.03
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Normal",
  16061. height: math.unit(1 + 9 / 12, "feet"),
  16062. default: true
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(1 + 1 / 12, "feet"),
  16071. weight: math.unit(18, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/nino/front.svg"
  16075. }
  16076. },
  16077. },
  16078. [
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(1 + 1 / 12, "feet"),
  16082. default: true
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(1, "feet"),
  16091. weight: math.unit(16, "lb"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/viola/front.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(1, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6 + 5 / 12, "feet"),
  16111. weight: math.unit(580, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/atlas/front.svg",
  16115. extra: 298.5 / 290,
  16116. bottom: 0.015
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(6 + 5 / 12, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16130. {
  16131. side: {
  16132. height: math.unit(1 + 10 / 12, "feet"),
  16133. weight: math.unit(25, "lb"),
  16134. name: "Side",
  16135. image: {
  16136. source: "./media/characters/davy/side.svg",
  16137. extra: 200 / 170,
  16138. bottom: 0.01
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(1 + 10 / 12, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16152. {
  16153. side: {
  16154. height: math.unit(4 + 8 / 12, "feet"),
  16155. weight: math.unit(166, "lb"),
  16156. name: "Side",
  16157. image: {
  16158. source: "./media/characters/fiona/side.svg",
  16159. extra: 232 / 220,
  16160. bottom: 0.03
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Normal",
  16167. height: math.unit(4 + 8 / 12, "feet"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16174. {
  16175. front: {
  16176. height: math.unit(2, "feet"),
  16177. weight: math.unit(62, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/lyla/front.svg",
  16181. bottom: 0.1
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(2, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16195. {
  16196. side: {
  16197. height: math.unit(1.8, "feet"),
  16198. weight: math.unit(44, "lb"),
  16199. name: "Side",
  16200. image: {
  16201. source: "./media/characters/perseus/side.svg",
  16202. bottom: 0.21
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(1.8, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16216. {
  16217. side: {
  16218. height: math.unit(4 + 2 / 12, "feet"),
  16219. weight: math.unit(20, "lb"),
  16220. name: "Side",
  16221. image: {
  16222. source: "./media/characters/remus/side.svg"
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(4 + 2 / 12, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(4 + 11 / 12, "feet"),
  16239. weight: math.unit(114, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/raf/front.svg",
  16243. bottom: 20.5 / 1863
  16244. }
  16245. },
  16246. side: {
  16247. height: math.unit(4 + 11 / 12, "feet"),
  16248. weight: math.unit(114, "lb"),
  16249. name: "Side",
  16250. image: {
  16251. source: "./media/characters/raf/side.svg",
  16252. bottom: 22 / 1822
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Micro",
  16259. height: math.unit(2, "inches")
  16260. },
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(4 + 11 / 12, "feet"),
  16264. default: true
  16265. },
  16266. {
  16267. name: "Macro",
  16268. height: math.unit(70, "feet")
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(1.5, "meters"),
  16277. weight: math.unit(68, "kg"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/liam-einarr/front.svg",
  16281. extra: 2822 / 2666
  16282. }
  16283. },
  16284. back: {
  16285. height: math.unit(1.5, "meters"),
  16286. weight: math.unit(68, "kg"),
  16287. name: "Back",
  16288. image: {
  16289. source: "./media/characters/liam-einarr/back.svg",
  16290. extra: 2822 / 2666,
  16291. bottom: 0.015
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Normal",
  16298. height: math.unit(1.5, "meters"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(150, "meters")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(35, "km")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(6, "feet"),
  16316. weight: math.unit(75, "kg"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/linda/front.svg",
  16320. extra: 930 / 874,
  16321. bottom: 0.004
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(6, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(6 + 8 / 12, "feet"),
  16338. weight: math.unit(220, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/caylex/front.svg",
  16342. extra: 821 / 772,
  16343. bottom: 0.07
  16344. }
  16345. },
  16346. back: {
  16347. height: math.unit(6 + 8 / 12, "feet"),
  16348. weight: math.unit(220, "lb"),
  16349. name: "Back",
  16350. image: {
  16351. source: "./media/characters/caylex/back.svg",
  16352. extra: 821 / 772,
  16353. bottom: 0.022
  16354. }
  16355. },
  16356. hand: {
  16357. height: math.unit(1.25, "feet"),
  16358. name: "Hand",
  16359. image: {
  16360. source: "./media/characters/caylex/hand.svg"
  16361. }
  16362. },
  16363. foot: {
  16364. height: math.unit(1.6, "feet"),
  16365. name: "Foot",
  16366. image: {
  16367. source: "./media/characters/caylex/foot.svg"
  16368. }
  16369. },
  16370. armored: {
  16371. height: math.unit(6 + 8 / 12, "feet"),
  16372. weight: math.unit(250, "lb"),
  16373. name: "Armored",
  16374. image: {
  16375. source: "./media/characters/caylex/armored.svg",
  16376. extra: 1420 / 1310,
  16377. bottom: 0.045
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(6 + 8 / 12, "feet"),
  16385. default: true
  16386. },
  16387. {
  16388. name: "Normal+",
  16389. height: math.unit(12, "feet")
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(7 + 6 / 12, "feet"),
  16398. weight: math.unit(288, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/alana/front.svg",
  16402. extra: 679 / 653,
  16403. bottom: 22.5 / 701
  16404. }
  16405. },
  16406. },
  16407. [
  16408. {
  16409. name: "Normal",
  16410. height: math.unit(7 + 6 / 12, "feet")
  16411. },
  16412. {
  16413. name: "Large",
  16414. height: math.unit(50, "feet")
  16415. },
  16416. {
  16417. name: "Macro",
  16418. height: math.unit(100, "feet"),
  16419. default: true
  16420. },
  16421. {
  16422. name: "Macro+",
  16423. height: math.unit(200, "feet")
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(6 + 1 / 12, "feet"),
  16432. weight: math.unit(210, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/hasani/front.svg",
  16436. extra: 244 / 232,
  16437. bottom: 0.01
  16438. }
  16439. },
  16440. back: {
  16441. height: math.unit(6 + 1 / 12, "feet"),
  16442. weight: math.unit(210, "lb"),
  16443. name: "Back",
  16444. image: {
  16445. source: "./media/characters/hasani/back.svg",
  16446. extra: 244 / 232,
  16447. bottom: 0.01
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Normal",
  16454. height: math.unit(6 + 1 / 12, "feet")
  16455. },
  16456. {
  16457. name: "Macro",
  16458. height: math.unit(175, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16465. {
  16466. front: {
  16467. height: math.unit(1.82, "meters"),
  16468. weight: math.unit(140, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/nita/front.svg",
  16472. extra: 2473 / 2363,
  16473. bottom: 0.01
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(1.82, "m")
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(300, "m")
  16485. },
  16486. {
  16487. name: "Mistake Canon",
  16488. height: math.unit(0.5, "miles"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Big Mistake",
  16493. height: math.unit(13, "miles")
  16494. },
  16495. {
  16496. name: "Playing God",
  16497. height: math.unit(2450, "miles")
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(4, "feet"),
  16506. weight: math.unit(120, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/shiriko/front.svg",
  16510. extra: 195 / 188
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(4, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(6, "feet"),
  16527. name: "front",
  16528. image: {
  16529. source: "./media/characters/deja/front.svg",
  16530. extra: 926 / 840,
  16531. bottom: 0.07
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Planck Length",
  16538. height: math.unit(1.6e-35, "meters")
  16539. },
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(30.48, "meters"),
  16543. default: true
  16544. },
  16545. {
  16546. name: "Universal",
  16547. height: math.unit(8.8e26, "meters")
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16553. {
  16554. side: {
  16555. height: math.unit(8, "feet"),
  16556. weight: math.unit(6300, "lb"),
  16557. name: "Side",
  16558. image: {
  16559. source: "./media/characters/anima/side.svg",
  16560. bottom: 0.035
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(8, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16574. {
  16575. front: {
  16576. height: math.unit(8, "feet"),
  16577. weight: math.unit(350, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/bianca/front.svg",
  16581. extra: 234 / 225,
  16582. bottom: 0.03
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(8, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(6, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/adinia/front.svg",
  16603. extra: 1845 / 1672,
  16604. bottom: 0.02
  16605. }
  16606. },
  16607. back: {
  16608. height: math.unit(6, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Back",
  16611. image: {
  16612. source: "./media/characters/adinia/back.svg",
  16613. extra: 1845 / 1672,
  16614. bottom: 0.002
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(11 + 5 / 12, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(3, "meters"),
  16631. weight: math.unit(200, "kg"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/lykasa/front.svg",
  16635. extra: 1076 / 976,
  16636. bottom: 0.06
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(3, "meters")
  16644. },
  16645. {
  16646. name: "Kaiju",
  16647. height: math.unit(120, "meters"),
  16648. default: true
  16649. },
  16650. {
  16651. name: "Mega Kaiju",
  16652. height: math.unit(240, "km")
  16653. },
  16654. {
  16655. name: "Giga Kaiju",
  16656. height: math.unit(400, "megameters")
  16657. },
  16658. {
  16659. name: "Tera Kaiju",
  16660. height: math.unit(800, "gigameters")
  16661. },
  16662. {
  16663. name: "Kaiju Dragon Goddess",
  16664. height: math.unit(26, "zettaparsecs")
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16670. {
  16671. side: {
  16672. height: math.unit(283 / 124 * 6, "feet"),
  16673. weight: math.unit(35000, "lb"),
  16674. name: "Side",
  16675. image: {
  16676. source: "./media/characters/malfaren/side.svg",
  16677. extra: 2500 / 1010,
  16678. bottom: 0.01
  16679. }
  16680. },
  16681. front: {
  16682. height: math.unit(22.36, "feet"),
  16683. weight: math.unit(35000, "lb"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/malfaren/front.svg",
  16687. extra: 1631 / 1476,
  16688. bottom: 0.01
  16689. }
  16690. },
  16691. maw: {
  16692. height: math.unit(6.9, "feet"),
  16693. name: "Maw",
  16694. image: {
  16695. source: "./media/characters/malfaren/maw.svg"
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Big",
  16702. height: math.unit(283 / 162 * 6, "feet"),
  16703. },
  16704. {
  16705. name: "Bigger",
  16706. height: math.unit(283 / 124 * 6, "feet")
  16707. },
  16708. {
  16709. name: "Massive",
  16710. height: math.unit(283 / 92 * 6, "feet"),
  16711. default: true
  16712. },
  16713. {
  16714. name: "👀💦",
  16715. height: math.unit(283 / 73 * 6, "feet"),
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(1.7, "m"),
  16724. weight: math.unit(70, "kg"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/kernel/front.svg",
  16728. extra: 222 / 210,
  16729. bottom: 0.007
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Nano",
  16736. height: math.unit(17, "micrometers")
  16737. },
  16738. {
  16739. name: "Micro",
  16740. height: math.unit(1.7, "mm")
  16741. },
  16742. {
  16743. name: "Small",
  16744. height: math.unit(1.7, "cm")
  16745. },
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(1.7, "m"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(1.75, "meters"),
  16758. weight: math.unit(65, "kg"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/jayne-folest/front.svg",
  16762. extra: 2115 / 2007,
  16763. bottom: 0.02
  16764. }
  16765. },
  16766. back: {
  16767. height: math.unit(1.75, "meters"),
  16768. weight: math.unit(65, "kg"),
  16769. name: "Back",
  16770. image: {
  16771. source: "./media/characters/jayne-folest/back.svg",
  16772. extra: 2115 / 2007,
  16773. bottom: 0.005
  16774. }
  16775. },
  16776. frontClothed: {
  16777. height: math.unit(1.75, "meters"),
  16778. weight: math.unit(65, "kg"),
  16779. name: "Front (Clothed)",
  16780. image: {
  16781. source: "./media/characters/jayne-folest/front-clothed.svg",
  16782. extra: 2115 / 2007,
  16783. bottom: 0.035
  16784. }
  16785. },
  16786. hand: {
  16787. height: math.unit(1 / 1.260, "feet"),
  16788. name: "Hand",
  16789. image: {
  16790. source: "./media/characters/jayne-folest/hand.svg"
  16791. }
  16792. },
  16793. foot: {
  16794. height: math.unit(1 / 0.918, "feet"),
  16795. name: "Foot",
  16796. image: {
  16797. source: "./media/characters/jayne-folest/foot.svg"
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Micro",
  16804. height: math.unit(4, "cm")
  16805. },
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(1.75, "meters")
  16809. },
  16810. {
  16811. name: "Macro",
  16812. height: math.unit(47.5, "meters"),
  16813. default: true
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(180, "cm"),
  16822. weight: math.unit(70, "kg"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/algier/front.svg",
  16826. extra: 596 / 572,
  16827. bottom: 0.04
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(180, "cm"),
  16832. weight: math.unit(70, "kg"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/algier/back.svg",
  16836. extra: 596 / 572,
  16837. bottom: 0.025
  16838. }
  16839. },
  16840. frontdressed: {
  16841. height: math.unit(180, "cm"),
  16842. weight: math.unit(150, "kg"),
  16843. name: "Front-dressed",
  16844. image: {
  16845. source: "./media/characters/algier/front-dressed.svg",
  16846. extra: 596 / 572,
  16847. bottom: 0.038
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Micro",
  16854. height: math.unit(5, "cm")
  16855. },
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(180, "cm"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Macro",
  16863. height: math.unit(64, "m")
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16869. {
  16870. upright: {
  16871. height: math.unit(7, "feet"),
  16872. weight: math.unit(300, "lb"),
  16873. name: "Upright",
  16874. image: {
  16875. source: "./media/characters/pretzel/upright.svg",
  16876. extra: 534 / 522,
  16877. bottom: 0.065
  16878. }
  16879. },
  16880. sprawling: {
  16881. height: math.unit(3.75, "feet"),
  16882. weight: math.unit(300, "lb"),
  16883. name: "Sprawling",
  16884. image: {
  16885. source: "./media/characters/pretzel/sprawling.svg",
  16886. extra: 314 / 281,
  16887. bottom: 0.1
  16888. }
  16889. },
  16890. tongue: {
  16891. height: math.unit(2, "feet"),
  16892. name: "Tongue",
  16893. image: {
  16894. source: "./media/characters/pretzel/tongue.svg"
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(7, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Oversized",
  16906. height: math.unit(15, "feet")
  16907. },
  16908. {
  16909. name: "Huge",
  16910. height: math.unit(30, "feet")
  16911. },
  16912. {
  16913. name: "Macro",
  16914. height: math.unit(250, "feet")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16920. {
  16921. sideFront: {
  16922. height: math.unit(5 + 2 / 12, "feet"),
  16923. weight: math.unit(120, "lb"),
  16924. name: "Front Side",
  16925. image: {
  16926. source: "./media/characters/roxi/side-front.svg",
  16927. extra: 2924 / 2717,
  16928. bottom: 0.08
  16929. }
  16930. },
  16931. sideBack: {
  16932. height: math.unit(5 + 2 / 12, "feet"),
  16933. weight: math.unit(120, "lb"),
  16934. name: "Back Side",
  16935. image: {
  16936. source: "./media/characters/roxi/side-back.svg",
  16937. extra: 2904 / 2693,
  16938. bottom: 0.06
  16939. }
  16940. },
  16941. front: {
  16942. height: math.unit(5 + 2 / 12, "feet"),
  16943. weight: math.unit(120, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/roxi/front.svg",
  16947. extra: 2028 / 1907,
  16948. bottom: 0.01
  16949. }
  16950. },
  16951. frontAlt: {
  16952. height: math.unit(5 + 2 / 12, "feet"),
  16953. weight: math.unit(120, "lb"),
  16954. name: "Front (Alt)",
  16955. image: {
  16956. source: "./media/characters/roxi/front-alt.svg",
  16957. extra: 1828 / 1798,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. sitting: {
  16962. height: math.unit(2.8, "feet"),
  16963. weight: math.unit(120, "lb"),
  16964. name: "Sitting",
  16965. image: {
  16966. source: "./media/characters/roxi/sitting.svg",
  16967. extra: 2660 / 2462,
  16968. bottom: 0.1
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(5 + 2 / 12, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16982. {
  16983. side: {
  16984. height: math.unit(55, "feet"),
  16985. weight: math.unit(153, "tons"),
  16986. name: "Side",
  16987. image: {
  16988. source: "./media/characters/shadow/side.svg",
  16989. extra: 701 / 628,
  16990. bottom: 0.02
  16991. }
  16992. },
  16993. flying: {
  16994. height: math.unit(145, "feet"),
  16995. weight: math.unit(153, "tons"),
  16996. name: "Flying",
  16997. image: {
  16998. source: "./media/characters/shadow/flying.svg"
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(55, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17012. {
  17013. front: {
  17014. height: math.unit(6, "feet"),
  17015. weight: math.unit(200, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/marcie/front.svg",
  17019. extra: 960 / 876,
  17020. bottom: 58 / 1017.87
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Macro",
  17027. height: math.unit(1, "mile"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(7, "feet"),
  17037. weight: math.unit(200, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/kachina/front.svg",
  17041. extra: 1290.68 / 1119,
  17042. bottom: 36.5 / 1327.18
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(7, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17056. {
  17057. looking: {
  17058. height: math.unit(2, "meters"),
  17059. weight: math.unit(300, "kg"),
  17060. name: "Looking",
  17061. image: {
  17062. source: "./media/characters/kash/looking.svg",
  17063. extra: 474 / 344,
  17064. bottom: 0.03
  17065. }
  17066. },
  17067. side: {
  17068. height: math.unit(2, "meters"),
  17069. weight: math.unit(300, "kg"),
  17070. name: "Side",
  17071. image: {
  17072. source: "./media/characters/kash/side.svg",
  17073. extra: 302 / 251,
  17074. bottom: 0.03
  17075. }
  17076. },
  17077. front: {
  17078. height: math.unit(2, "meters"),
  17079. weight: math.unit(300, "kg"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/kash/front.svg",
  17083. extra: 495 / 360,
  17084. bottom: 0.015
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(2, "meters"),
  17092. default: true
  17093. },
  17094. {
  17095. name: "Big",
  17096. height: math.unit(3, "meters")
  17097. },
  17098. {
  17099. name: "Large",
  17100. height: math.unit(5, "meters")
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17106. {
  17107. feeding: {
  17108. height: math.unit(6.7, "feet"),
  17109. weight: math.unit(350, "lb"),
  17110. name: "Feeding",
  17111. image: {
  17112. source: "./media/characters/lalim/feeding.svg",
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Normal",
  17119. height: math.unit(6.7, "feet"),
  17120. default: true
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17126. {
  17127. front: {
  17128. height: math.unit(9.5, "feet"),
  17129. weight: math.unit(600, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/de'vout/front.svg",
  17133. extra: 1443 / 1328,
  17134. bottom: 0.025
  17135. }
  17136. },
  17137. back: {
  17138. height: math.unit(9.5, "feet"),
  17139. weight: math.unit(600, "lb"),
  17140. name: "Back",
  17141. image: {
  17142. source: "./media/characters/de'vout/back.svg",
  17143. extra: 1443 / 1328
  17144. }
  17145. },
  17146. frontDressed: {
  17147. height: math.unit(9.5, "feet"),
  17148. weight: math.unit(600, "lb"),
  17149. name: "Front (Dressed",
  17150. image: {
  17151. source: "./media/characters/de'vout/front-dressed.svg",
  17152. extra: 1443 / 1328,
  17153. bottom: 0.025
  17154. }
  17155. },
  17156. backDressed: {
  17157. height: math.unit(9.5, "feet"),
  17158. weight: math.unit(600, "lb"),
  17159. name: "Back (Dressed",
  17160. image: {
  17161. source: "./media/characters/de'vout/back-dressed.svg",
  17162. extra: 1443 / 1328
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(9.5, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(8, "feet"),
  17179. weight: math.unit(225, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/talana/front.svg",
  17183. extra: 1410 / 1300,
  17184. bottom: 0.015
  17185. }
  17186. },
  17187. frontDressed: {
  17188. height: math.unit(8, "feet"),
  17189. weight: math.unit(225, "lb"),
  17190. name: "Front (Dressed",
  17191. image: {
  17192. source: "./media/characters/talana/front-dressed.svg",
  17193. extra: 1410 / 1300,
  17194. bottom: 0.015
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(8, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17208. {
  17209. side: {
  17210. height: math.unit(7.2, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/xeauvok/side.svg",
  17215. extra: 1975 / 1523,
  17216. bottom: 0.07
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(7.2, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17230. {
  17231. side: {
  17232. height: math.unit(10, "feet"),
  17233. weight: math.unit(900, "kg"),
  17234. name: "Side",
  17235. image: {
  17236. source: "./media/characters/zara/side.svg",
  17237. extra: 504 / 498
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(10, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17251. {
  17252. side: {
  17253. height: math.unit(6, "feet"),
  17254. weight: math.unit(150, "lb"),
  17255. name: "Side",
  17256. image: {
  17257. source: "./media/characters/richard-dragon/side.svg",
  17258. extra: 845 / 340,
  17259. bottom: 0.017
  17260. }
  17261. },
  17262. maw: {
  17263. height: math.unit(2.97, "feet"),
  17264. name: "Maw",
  17265. image: {
  17266. source: "./media/characters/richard-dragon/maw.svg"
  17267. }
  17268. },
  17269. },
  17270. [
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17275. {
  17276. front: {
  17277. height: math.unit(4, "feet"),
  17278. weight: math.unit(100, "lb"),
  17279. name: "Front",
  17280. image: {
  17281. source: "./media/characters/richard-smeargle/front.svg",
  17282. extra: 2952 / 2820,
  17283. bottom: 0.028
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(4, "feet"),
  17291. default: true
  17292. },
  17293. {
  17294. name: "Dynamax",
  17295. height: math.unit(20, "meters")
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(6, "feet"),
  17304. weight: math.unit(110, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/klay/front.svg",
  17308. extra: 962 / 883,
  17309. bottom: 0.04
  17310. }
  17311. },
  17312. back: {
  17313. height: math.unit(6, "feet"),
  17314. weight: math.unit(110, "lb"),
  17315. name: "Back",
  17316. image: {
  17317. source: "./media/characters/klay/back.svg",
  17318. extra: 962 / 883
  17319. }
  17320. },
  17321. beans: {
  17322. height: math.unit(1.15, "feet"),
  17323. name: "Beans",
  17324. image: {
  17325. source: "./media/characters/klay/beans.svg"
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Micro",
  17332. height: math.unit(6, "inches")
  17333. },
  17334. {
  17335. name: "Mini",
  17336. height: math.unit(3, "feet")
  17337. },
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(6, "feet"),
  17341. default: true
  17342. },
  17343. {
  17344. name: "Big",
  17345. height: math.unit(25, "feet")
  17346. },
  17347. {
  17348. name: "Macro",
  17349. height: math.unit(100, "feet")
  17350. },
  17351. {
  17352. name: "Megamacro",
  17353. height: math.unit(400, "feet")
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(6, "feet"),
  17362. weight: math.unit(160, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/marcus/front.svg",
  17366. extra: 734 / 676,
  17367. bottom: 0.03
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Little",
  17374. height: math.unit(6, "feet")
  17375. },
  17376. {
  17377. name: "Normal",
  17378. height: math.unit(110, "feet"),
  17379. default: true
  17380. },
  17381. {
  17382. name: "Macro",
  17383. height: math.unit(250, "feet")
  17384. },
  17385. {
  17386. name: "Megamacro",
  17387. height: math.unit(1000, "feet")
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(7, "feet"),
  17396. weight: math.unit(275, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/claude-delroute/front.svg",
  17400. extra: 230 / 214,
  17401. bottom: 0.007
  17402. }
  17403. },
  17404. side: {
  17405. height: math.unit(7, "feet"),
  17406. weight: math.unit(275, "lb"),
  17407. name: "Side",
  17408. image: {
  17409. source: "./media/characters/claude-delroute/side.svg",
  17410. extra: 222 / 214,
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. back: {
  17415. height: math.unit(7, "feet"),
  17416. weight: math.unit(275, "lb"),
  17417. name: "Back",
  17418. image: {
  17419. source: "./media/characters/claude-delroute/back.svg",
  17420. extra: 230 / 214,
  17421. bottom: 0.015
  17422. }
  17423. },
  17424. maw: {
  17425. height: math.unit(0.6407, "meters"),
  17426. name: "Maw",
  17427. image: {
  17428. source: "./media/characters/claude-delroute/maw.svg"
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(7, "feet"),
  17436. default: true
  17437. },
  17438. {
  17439. name: "Lorge",
  17440. height: math.unit(20, "feet")
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17446. {
  17447. front: {
  17448. height: math.unit(8 + 4 / 12, "feet"),
  17449. weight: math.unit(600, "lb"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/dragonien/front.svg",
  17453. extra: 100 / 94,
  17454. bottom: 3.3 / 103.3445
  17455. }
  17456. },
  17457. back: {
  17458. height: math.unit(8 + 4 / 12, "feet"),
  17459. weight: math.unit(600, "lb"),
  17460. name: "Back",
  17461. image: {
  17462. source: "./media/characters/dragonien/back.svg",
  17463. extra: 776 / 746,
  17464. bottom: 6.4 / 782.0616
  17465. }
  17466. },
  17467. foot: {
  17468. height: math.unit(1.54, "feet"),
  17469. name: "Foot",
  17470. image: {
  17471. source: "./media/characters/dragonien/foot.svg",
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(8 + 4 / 12, "feet"),
  17479. default: true
  17480. },
  17481. {
  17482. name: "Macro",
  17483. height: math.unit(200, "feet")
  17484. },
  17485. {
  17486. name: "Megamacro",
  17487. height: math.unit(1, "mile")
  17488. },
  17489. {
  17490. name: "Gigamacro",
  17491. height: math.unit(1000, "miles")
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17497. {
  17498. front: {
  17499. height: math.unit(5 + 2 / 12, "feet"),
  17500. weight: math.unit(110, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/desta/front.svg",
  17504. extra: 767 / 726,
  17505. bottom: 11.7 / 779
  17506. }
  17507. },
  17508. back: {
  17509. height: math.unit(5 + 2 / 12, "feet"),
  17510. weight: math.unit(110, "lb"),
  17511. name: "Back",
  17512. image: {
  17513. source: "./media/characters/desta/back.svg",
  17514. extra: 777 / 728,
  17515. bottom: 6 / 784
  17516. }
  17517. },
  17518. frontAlt: {
  17519. height: math.unit(5 + 2 / 12, "feet"),
  17520. weight: math.unit(110, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/desta/front-alt.svg",
  17524. extra: 1482 / 1417
  17525. }
  17526. },
  17527. side: {
  17528. height: math.unit(5 + 2 / 12, "feet"),
  17529. weight: math.unit(110, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/desta/side.svg",
  17533. extra: 2579 / 2491,
  17534. bottom: 0.053
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Micro",
  17541. height: math.unit(6, "inches")
  17542. },
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(5 + 2 / 12, "feet"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Macro",
  17550. height: math.unit(62, "feet")
  17551. },
  17552. {
  17553. name: "Megamacro",
  17554. height: math.unit(1800, "feet")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(10, "feet"),
  17563. weight: math.unit(700, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/storm-alystar/front.svg",
  17567. extra: 2112 / 1898,
  17568. bottom: 0.034
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Micro",
  17575. height: math.unit(3.5, "inches")
  17576. },
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(10, "feet"),
  17580. default: true
  17581. },
  17582. {
  17583. name: "Macro",
  17584. height: math.unit(400, "feet")
  17585. },
  17586. {
  17587. name: "Deific",
  17588. height: math.unit(60, "miles")
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(2.35, "meters"),
  17597. weight: math.unit(119, "kg"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/ilia/front.svg",
  17601. extra: 1285 / 1255,
  17602. bottom: 0.06
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(2.35, "meters")
  17610. },
  17611. {
  17612. name: "Macro",
  17613. height: math.unit(140, "meters"),
  17614. default: true
  17615. },
  17616. {
  17617. name: "Megamacro",
  17618. height: math.unit(100, "miles")
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(6 + 5 / 12, "feet"),
  17627. weight: math.unit(190, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/kingdead/front.svg",
  17631. extra: 1228 / 1177
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Micro",
  17638. height: math.unit(7, "inches")
  17639. },
  17640. {
  17641. name: "Normal",
  17642. height: math.unit(6 + 5 / 12, "feet")
  17643. },
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(150, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Megamacro",
  17651. height: math.unit(200, "miles")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(8, "feet"),
  17660. weight: math.unit(600, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/kyrehx/front.svg",
  17664. extra: 1195 / 1095,
  17665. bottom: 0.034
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Micro",
  17672. height: math.unit(2, "inches")
  17673. },
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(8, "feet"),
  17677. default: true
  17678. },
  17679. {
  17680. name: "Macro",
  17681. height: math.unit(255, "feet")
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17690. weight: math.unit(184, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/xang/front.svg",
  17694. extra: 845 / 755
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17702. default: true
  17703. },
  17704. {
  17705. name: "Macro",
  17706. height: math.unit(0.935 * 146, "feet")
  17707. },
  17708. {
  17709. name: "Megamacro",
  17710. height: math.unit(0.935 * 3, "miles")
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17716. {
  17717. frontDressed: {
  17718. height: math.unit(5 + 7 / 12, "feet"),
  17719. weight: math.unit(140, "lb"),
  17720. name: "Front (Dressed)",
  17721. image: {
  17722. source: "./media/characters/doc-weardno/front-dressed.svg",
  17723. extra: 263 / 234
  17724. }
  17725. },
  17726. backDressed: {
  17727. height: math.unit(5 + 7 / 12, "feet"),
  17728. weight: math.unit(140, "lb"),
  17729. name: "Back (Dressed)",
  17730. image: {
  17731. source: "./media/characters/doc-weardno/back-dressed.svg",
  17732. extra: 266 / 238
  17733. }
  17734. },
  17735. front: {
  17736. height: math.unit(5 + 7 / 12, "feet"),
  17737. weight: math.unit(140, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/doc-weardno/front.svg",
  17741. extra: 254 / 233
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Micro",
  17748. height: math.unit(3, "inches")
  17749. },
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(5 + 7 / 12, "feet"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Macro",
  17757. height: math.unit(25, "feet")
  17758. },
  17759. {
  17760. name: "Megamacro",
  17761. height: math.unit(2, "miles")
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(6 + 2 / 12, "feet"),
  17770. weight: math.unit(153, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/seth-whilst/front.svg",
  17774. bottom: 0.07
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Micro",
  17781. height: math.unit(5, "inches")
  17782. },
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(6 + 2 / 12, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(3, "inches"),
  17795. weight: math.unit(8, "grams"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/pocket-jabari/front.svg",
  17799. extra: 1024 / 974,
  17800. bottom: 0.039
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Minimicro",
  17807. height: math.unit(8, "mm")
  17808. },
  17809. {
  17810. name: "Micro",
  17811. height: math.unit(3, "inches"),
  17812. default: true
  17813. },
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(3, "feet")
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(15, "feet"),
  17825. weight: math.unit(3280, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/sapphy/front.svg",
  17829. extra: 671 / 577,
  17830. bottom: 0.085
  17831. }
  17832. },
  17833. back: {
  17834. height: math.unit(15, "feet"),
  17835. weight: math.unit(3280, "lb"),
  17836. name: "Back",
  17837. image: {
  17838. source: "./media/characters/sapphy/back.svg",
  17839. extra: 631 / 607,
  17840. bottom: 0.045
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(15, "feet")
  17848. },
  17849. {
  17850. name: "Casual Macro",
  17851. height: math.unit(120, "feet")
  17852. },
  17853. {
  17854. name: "Macro",
  17855. height: math.unit(2150, "feet"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Megamacro",
  17860. height: math.unit(8, "miles")
  17861. },
  17862. {
  17863. name: "Galaxy Mom",
  17864. height: math.unit(6, "megalightyears")
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(6, "feet"),
  17873. weight: math.unit(170, "lb"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/kiro/front.svg",
  17877. extra: 1064 / 1012,
  17878. bottom: 0.052
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Micro",
  17885. height: math.unit(6, "inches")
  17886. },
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(6, "feet"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "Macro",
  17894. height: math.unit(72, "feet")
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(5 + 9 / 12, "feet"),
  17903. weight: math.unit(175, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/irishfox/front.svg",
  17907. extra: 1912 / 1680,
  17908. bottom: 0.02
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Nano",
  17915. height: math.unit(1, "mm")
  17916. },
  17917. {
  17918. name: "Micro",
  17919. height: math.unit(2, "inches")
  17920. },
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(5 + 9 / 12, "feet"),
  17924. default: true
  17925. },
  17926. {
  17927. name: "Macro",
  17928. height: math.unit(45, "feet")
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(6 + 1 / 12, "feet"),
  17937. weight: math.unit(150, "lb"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/aronai-sieyes/front.svg",
  17941. extra: 1556 / 1480,
  17942. bottom: 0.015
  17943. }
  17944. },
  17945. side: {
  17946. height: math.unit(6 + 1 / 12, "feet"),
  17947. weight: math.unit(150, "lb"),
  17948. name: "Side",
  17949. image: {
  17950. source: "./media/characters/aronai-sieyes/side.svg",
  17951. extra: 1433 / 1390,
  17952. bottom: 0.0393
  17953. }
  17954. },
  17955. back: {
  17956. height: math.unit(6 + 1 / 12, "feet"),
  17957. weight: math.unit(150, "lb"),
  17958. name: "Back",
  17959. image: {
  17960. source: "./media/characters/aronai-sieyes/back.svg",
  17961. extra: 1544 / 1494,
  17962. bottom: 0.02
  17963. }
  17964. },
  17965. frontClothed: {
  17966. height: math.unit(6 + 1 / 12, "feet"),
  17967. weight: math.unit(150, "lb"),
  17968. name: "Front (Clothed)",
  17969. image: {
  17970. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17971. extra: 1582 / 1527
  17972. }
  17973. },
  17974. feral: {
  17975. height: math.unit(18, "feet"),
  17976. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17977. name: "Feral",
  17978. image: {
  17979. source: "./media/characters/aronai-sieyes/feral.svg",
  17980. extra: 1530 / 1240,
  17981. bottom: 0.035
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Micro",
  17988. height: math.unit(2, "inches")
  17989. },
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(6 + 1 / 12, "feet"),
  17993. default: true
  17994. }
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17999. {
  18000. front: {
  18001. height: math.unit(12, "feet"),
  18002. weight: math.unit(410, "kg"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/xuna/front.svg",
  18006. extra: 2184 / 1980
  18007. }
  18008. },
  18009. side: {
  18010. height: math.unit(12, "feet"),
  18011. weight: math.unit(410, "kg"),
  18012. name: "Side",
  18013. image: {
  18014. source: "./media/characters/xuna/side.svg",
  18015. extra: 2184 / 1980
  18016. }
  18017. },
  18018. back: {
  18019. height: math.unit(12, "feet"),
  18020. weight: math.unit(410, "kg"),
  18021. name: "Back",
  18022. image: {
  18023. source: "./media/characters/xuna/back.svg",
  18024. extra: 2184 / 1980
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Nano glow",
  18031. height: math.unit(10, "nm")
  18032. },
  18033. {
  18034. name: "Micro floof",
  18035. height: math.unit(0.3, "m")
  18036. },
  18037. {
  18038. name: "Huggable softy boi",
  18039. height: math.unit(3.6576, "m"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Admirable floof",
  18044. height: math.unit(80, "meters")
  18045. },
  18046. {
  18047. name: "Gentle macro",
  18048. height: math.unit(300, "meters")
  18049. },
  18050. {
  18051. name: "Very careful floof",
  18052. height: math.unit(3200, "meters")
  18053. },
  18054. {
  18055. name: "The mega floof",
  18056. height: math.unit(36000, "meters")
  18057. },
  18058. {
  18059. name: "Giga-fur-Wicker",
  18060. height: math.unit(4800000, "meters")
  18061. },
  18062. {
  18063. name: "Licky world",
  18064. height: math.unit(20000000, "meters")
  18065. },
  18066. {
  18067. name: "Floofy cyan sun",
  18068. height: math.unit(1500000000, "meters")
  18069. },
  18070. {
  18071. name: "Milky Wicker",
  18072. height: math.unit(1000000000000000000000, "meters")
  18073. },
  18074. {
  18075. name: "The observing Wicker",
  18076. height: math.unit(999999999999999999999999999, "meters")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(5 + 9 / 12, "feet"),
  18085. weight: math.unit(150, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/arokha-sieyes/front.svg",
  18089. extra: 1425 / 1284,
  18090. bottom: 0.05
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(5 + 9 / 12, "feet")
  18098. },
  18099. {
  18100. name: "Macro",
  18101. height: math.unit(30, "meters"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(180, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/arokh-sieyes/front.svg",
  18115. extra: 1830 / 1769,
  18116. bottom: 0.01
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6, "feet")
  18124. },
  18125. {
  18126. name: "Macro",
  18127. height: math.unit(30, "meters"),
  18128. default: true
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18134. {
  18135. side: {
  18136. height: math.unit(13 + 1 / 12, "feet"),
  18137. weight: math.unit(8.5, "tonnes"),
  18138. name: "Side",
  18139. image: {
  18140. source: "./media/characters/goldeneye/side.svg",
  18141. extra: 1182 / 778,
  18142. bottom: 0.067
  18143. }
  18144. },
  18145. paw: {
  18146. height: math.unit(3.4, "feet"),
  18147. name: "Paw",
  18148. image: {
  18149. source: "./media/characters/goldeneye/paw.svg"
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(13 + 1 / 12, "feet"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18163. {
  18164. front: {
  18165. height: math.unit(6 + 1 / 12, "feet"),
  18166. weight: math.unit(210, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/leonardo-lycheborne/front.svg",
  18170. extra: 390 / 365,
  18171. bottom: 0.032
  18172. }
  18173. },
  18174. side: {
  18175. height: math.unit(6 + 1 / 12, "feet"),
  18176. weight: math.unit(210, "lb"),
  18177. name: "Side",
  18178. image: {
  18179. source: "./media/characters/leonardo-lycheborne/side.svg",
  18180. extra: 390 / 365,
  18181. bottom: 0.005
  18182. }
  18183. },
  18184. back: {
  18185. height: math.unit(6 + 1 / 12, "feet"),
  18186. weight: math.unit(210, "lb"),
  18187. name: "Back",
  18188. image: {
  18189. source: "./media/characters/leonardo-lycheborne/back.svg",
  18190. extra: 392 / 366,
  18191. bottom: 0.01
  18192. }
  18193. },
  18194. hand: {
  18195. height: math.unit(1.08, "feet"),
  18196. name: "Hand",
  18197. image: {
  18198. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18199. }
  18200. },
  18201. foot: {
  18202. height: math.unit(1.32, "feet"),
  18203. name: "Foot",
  18204. image: {
  18205. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18206. }
  18207. },
  18208. were: {
  18209. height: math.unit(20, "feet"),
  18210. weight: math.unit(7800, "lb"),
  18211. name: "Were",
  18212. image: {
  18213. source: "./media/characters/leonardo-lycheborne/were.svg",
  18214. extra: 308 / 294,
  18215. bottom: 0.048
  18216. }
  18217. },
  18218. feral: {
  18219. height: math.unit(7.5, "feet"),
  18220. weight: math.unit(600, "lb"),
  18221. name: "Feral",
  18222. image: {
  18223. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18224. extra: 210 / 186,
  18225. bottom: 0.108
  18226. }
  18227. },
  18228. taur: {
  18229. height: math.unit(11, "feet"),
  18230. weight: math.unit(3300, "lb"),
  18231. name: "Taur",
  18232. image: {
  18233. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18234. extra: 320 / 303,
  18235. bottom: 0.025
  18236. }
  18237. },
  18238. barghest: {
  18239. height: math.unit(11, "feet"),
  18240. weight: math.unit(1300, "lb"),
  18241. name: "Barghest",
  18242. image: {
  18243. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18244. extra: 323 / 302,
  18245. bottom: 0.027
  18246. }
  18247. },
  18248. dick: {
  18249. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18250. name: "Dick",
  18251. image: {
  18252. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18253. }
  18254. },
  18255. dickWere: {
  18256. height: math.unit((20) / 3.8, "feet"),
  18257. name: "Dick (Were)",
  18258. image: {
  18259. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18260. }
  18261. },
  18262. },
  18263. [
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(6 + 1 / 12, "feet"),
  18267. default: true
  18268. },
  18269. ]
  18270. ))
  18271. characterMakers.push(() => makeCharacter(
  18272. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18273. {
  18274. front: {
  18275. height: math.unit(10, "feet"),
  18276. weight: math.unit(350, "lb"),
  18277. name: "Front",
  18278. image: {
  18279. source: "./media/characters/jet/front.svg",
  18280. extra: 2050 / 1980,
  18281. bottom: 0.013
  18282. }
  18283. },
  18284. back: {
  18285. height: math.unit(10, "feet"),
  18286. weight: math.unit(350, "lb"),
  18287. name: "Back",
  18288. image: {
  18289. source: "./media/characters/jet/back.svg",
  18290. extra: 2050 / 1980,
  18291. bottom: 0.013
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Micro",
  18298. height: math.unit(6, "inches")
  18299. },
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(10, "feet"),
  18303. default: true
  18304. },
  18305. {
  18306. name: "Macro",
  18307. height: math.unit(100, "feet")
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(15, "feet"),
  18316. weight: math.unit(2800, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/tanarath/front.svg",
  18320. extra: 2392 / 2220,
  18321. bottom: 0.03
  18322. }
  18323. },
  18324. back: {
  18325. height: math.unit(15, "feet"),
  18326. weight: math.unit(2800, "lb"),
  18327. name: "Back",
  18328. image: {
  18329. source: "./media/characters/tanarath/back.svg",
  18330. extra: 2392 / 2220,
  18331. bottom: 0.03
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(15, "feet"),
  18339. default: true
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(7 + 1 / 12, "feet"),
  18348. weight: math.unit(175, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/patty-cattybatty/front.svg",
  18352. extra: 908 / 874,
  18353. bottom: 0.025
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Micro",
  18360. height: math.unit(1, "inch")
  18361. },
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(7 + 1 / 12, "feet")
  18365. },
  18366. {
  18367. name: "Mini Macro",
  18368. height: math.unit(155, "feet")
  18369. },
  18370. {
  18371. name: "Macro",
  18372. height: math.unit(1077, "feet")
  18373. },
  18374. {
  18375. name: "Mega Macro",
  18376. height: math.unit(47650, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Giga Macro",
  18381. height: math.unit(440, "miles")
  18382. },
  18383. {
  18384. name: "Tera Macro",
  18385. height: math.unit(8700, "miles")
  18386. },
  18387. {
  18388. name: "Planetary Macro",
  18389. height: math.unit(32700, "miles")
  18390. },
  18391. {
  18392. name: "Solar Macro",
  18393. height: math.unit(550000, "miles")
  18394. },
  18395. {
  18396. name: "Celestial Macro",
  18397. height: math.unit(2.5, "AU")
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(4 + 5 / 12, "feet"),
  18406. weight: math.unit(90, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/cappu/front.svg",
  18410. extra: 1247 / 1152,
  18411. bottom: 0.012
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(4 + 5 / 12, "feet"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18425. {
  18426. frontDressed: {
  18427. height: math.unit(70, "cm"),
  18428. weight: math.unit(6, "kg"),
  18429. name: "Front (Dressed)",
  18430. image: {
  18431. source: "./media/characters/sebi/front-dressed.svg",
  18432. extra: 713.5 / 686.5,
  18433. bottom: 0.003
  18434. }
  18435. },
  18436. front: {
  18437. height: math.unit(70, "cm"),
  18438. weight: math.unit(5, "kg"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/sebi/front.svg",
  18442. extra: 713.5 / 686.5,
  18443. bottom: 0.003
  18444. }
  18445. }
  18446. },
  18447. [
  18448. {
  18449. name: "Normal",
  18450. height: math.unit(70, "cm"),
  18451. default: true
  18452. },
  18453. {
  18454. name: "Macro",
  18455. height: math.unit(8, "meters")
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6, "feet"),
  18464. weight: math.unit(150, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/typhek/front.svg",
  18468. extra: 1948 / 1929,
  18469. bottom: 0.025
  18470. }
  18471. },
  18472. side: {
  18473. height: math.unit(6, "feet"),
  18474. weight: math.unit(150, "lb"),
  18475. name: "Side",
  18476. image: {
  18477. source: "./media/characters/typhek/side.svg",
  18478. extra: 2034 / 2010,
  18479. bottom: 0.003
  18480. }
  18481. },
  18482. back: {
  18483. height: math.unit(6, "feet"),
  18484. weight: math.unit(150, "lb"),
  18485. name: "Back",
  18486. image: {
  18487. source: "./media/characters/typhek/back.svg",
  18488. extra: 2005 / 1978,
  18489. bottom: 0.004
  18490. }
  18491. },
  18492. palm: {
  18493. height: math.unit(1.2, "feet"),
  18494. name: "Palm",
  18495. image: {
  18496. source: "./media/characters/typhek/palm.svg"
  18497. }
  18498. },
  18499. fist: {
  18500. height: math.unit(1.1, "feet"),
  18501. name: "Fist",
  18502. image: {
  18503. source: "./media/characters/typhek/fist.svg"
  18504. }
  18505. },
  18506. foot: {
  18507. height: math.unit(1.57, "feet"),
  18508. name: "Foot",
  18509. image: {
  18510. source: "./media/characters/typhek/foot.svg"
  18511. }
  18512. },
  18513. sole: {
  18514. height: math.unit(2.05, "feet"),
  18515. name: "Sole",
  18516. image: {
  18517. source: "./media/characters/typhek/sole.svg"
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(40, "stories"),
  18525. default: true
  18526. },
  18527. {
  18528. name: "Megamacro",
  18529. height: math.unit(1, "mile")
  18530. },
  18531. {
  18532. name: "Gigamacro",
  18533. height: math.unit(4000, "solarradii")
  18534. },
  18535. {
  18536. name: "Universal",
  18537. height: math.unit(1.1, "universes")
  18538. }
  18539. ]
  18540. ))
  18541. characterMakers.push(() => makeCharacter(
  18542. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18543. {
  18544. side: {
  18545. height: math.unit(5 + 7 / 12, "feet"),
  18546. weight: math.unit(150, "lb"),
  18547. name: "Side",
  18548. image: {
  18549. source: "./media/characters/kassy/side.svg",
  18550. extra: 1280 / 1225,
  18551. bottom: 0.002
  18552. }
  18553. },
  18554. front: {
  18555. height: math.unit(5 + 7 / 12, "feet"),
  18556. weight: math.unit(150, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/kassy/front.svg",
  18560. extra: 1280 / 1225,
  18561. bottom: 0.025
  18562. }
  18563. },
  18564. back: {
  18565. height: math.unit(5 + 7 / 12, "feet"),
  18566. weight: math.unit(150, "lb"),
  18567. name: "Back",
  18568. image: {
  18569. source: "./media/characters/kassy/back.svg",
  18570. extra: 1280 / 1225,
  18571. bottom: 0.002
  18572. }
  18573. },
  18574. foot: {
  18575. height: math.unit(1.266, "feet"),
  18576. name: "Foot",
  18577. image: {
  18578. source: "./media/characters/kassy/foot.svg"
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(5 + 7 / 12, "feet")
  18586. },
  18587. {
  18588. name: "Macro",
  18589. height: math.unit(137, "feet"),
  18590. default: true
  18591. },
  18592. {
  18593. name: "Megamacro",
  18594. height: math.unit(1, "mile")
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18600. {
  18601. front: {
  18602. height: math.unit(6 + 1 / 12, "feet"),
  18603. weight: math.unit(200, "lb"),
  18604. name: "Front",
  18605. image: {
  18606. source: "./media/characters/neil/front.svg",
  18607. extra: 1326 / 1250,
  18608. bottom: 0.023
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(6 + 1 / 12, "feet"),
  18616. default: true
  18617. },
  18618. {
  18619. name: "Macro",
  18620. height: math.unit(200, "feet")
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(5 + 9 / 12, "feet"),
  18629. weight: math.unit(190, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/atticus/front.svg",
  18633. extra: 2934 / 2785,
  18634. bottom: 0.025
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(5 + 9 / 12, "feet"),
  18642. default: true
  18643. },
  18644. {
  18645. name: "Macro",
  18646. height: math.unit(180, "feet")
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18652. {
  18653. side: {
  18654. height: math.unit(9, "feet"),
  18655. weight: math.unit(650, "lb"),
  18656. name: "Side",
  18657. image: {
  18658. source: "./media/characters/milo/side.svg",
  18659. extra: 2644 / 2310,
  18660. bottom: 0.032
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(9, "feet"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Macro",
  18672. height: math.unit(300, "feet")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18678. {
  18679. side: {
  18680. height: math.unit(8, "meters"),
  18681. weight: math.unit(90000, "kg"),
  18682. name: "Side",
  18683. image: {
  18684. source: "./media/characters/ijzer/side.svg",
  18685. extra: 2756 / 1600,
  18686. bottom: 0.01
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Small",
  18693. height: math.unit(3, "meters")
  18694. },
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(8, "meters"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Normal+",
  18702. height: math.unit(10, "meters")
  18703. },
  18704. {
  18705. name: "Bigger",
  18706. height: math.unit(24, "meters")
  18707. },
  18708. {
  18709. name: "Huge",
  18710. height: math.unit(80, "meters")
  18711. },
  18712. ]
  18713. ))
  18714. characterMakers.push(() => makeCharacter(
  18715. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18716. {
  18717. front: {
  18718. height: math.unit(6 + 2 / 12, "feet"),
  18719. weight: math.unit(153, "lb"),
  18720. name: "Front",
  18721. image: {
  18722. source: "./media/characters/luca-cervicum/front.svg",
  18723. extra: 370 / 327,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. back: {
  18728. height: math.unit(6 + 2 / 12, "feet"),
  18729. weight: math.unit(153, "lb"),
  18730. name: "Back",
  18731. image: {
  18732. source: "./media/characters/luca-cervicum/back.svg",
  18733. extra: 367 / 333,
  18734. bottom: 0.005
  18735. }
  18736. },
  18737. frontGear: {
  18738. height: math.unit(6 + 2 / 12, "feet"),
  18739. weight: math.unit(173, "lb"),
  18740. name: "Front (Gear)",
  18741. image: {
  18742. source: "./media/characters/luca-cervicum/front-gear.svg",
  18743. extra: 377 / 333,
  18744. bottom: 0.006
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Normal",
  18751. height: math.unit(6 + 2 / 12, "feet"),
  18752. default: true
  18753. },
  18754. ]
  18755. ))
  18756. characterMakers.push(() => makeCharacter(
  18757. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18758. {
  18759. front: {
  18760. height: math.unit(6 + 1 / 12, "feet"),
  18761. weight: math.unit(304, "lb"),
  18762. name: "Front",
  18763. image: {
  18764. source: "./media/characters/oliver/front.svg",
  18765. extra: 157 / 143,
  18766. bottom: 0.08
  18767. }
  18768. },
  18769. },
  18770. [
  18771. {
  18772. name: "Normal",
  18773. height: math.unit(6 + 1 / 12, "feet"),
  18774. default: true
  18775. },
  18776. ]
  18777. ))
  18778. characterMakers.push(() => makeCharacter(
  18779. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18780. {
  18781. front: {
  18782. height: math.unit(5 + 7 / 12, "feet"),
  18783. weight: math.unit(140, "lb"),
  18784. name: "Front",
  18785. image: {
  18786. source: "./media/characters/shane/front.svg",
  18787. extra: 304 / 289,
  18788. bottom: 0.005
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(5 + 7 / 12, "feet"),
  18796. default: true
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(5 + 9 / 12, "feet"),
  18805. weight: math.unit(178, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/shin/front.svg",
  18809. extra: 159 / 151,
  18810. bottom: 0.015
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(5 + 9 / 12, "feet"),
  18818. default: true
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18824. {
  18825. front: {
  18826. height: math.unit(5 + 10 / 12, "feet"),
  18827. weight: math.unit(168, "lb"),
  18828. name: "Front",
  18829. image: {
  18830. source: "./media/characters/xerxes/front.svg",
  18831. extra: 282 / 260,
  18832. bottom: 0.045
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Normal",
  18839. height: math.unit(5 + 10 / 12, "feet"),
  18840. default: true
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18846. {
  18847. front: {
  18848. height: math.unit(6 + 7 / 12, "feet"),
  18849. weight: math.unit(208, "lb"),
  18850. name: "Front",
  18851. image: {
  18852. source: "./media/characters/chaska/front.svg",
  18853. extra: 332 / 319,
  18854. bottom: 0.015
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(6 + 7 / 12, "feet"),
  18862. default: true
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(5 + 8 / 12, "feet"),
  18871. weight: math.unit(208, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/enuk/front.svg",
  18875. extra: 437 / 406,
  18876. bottom: 0.02
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(5 + 8 / 12, "feet"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(5 + 10 / 12, "feet"),
  18893. weight: math.unit(252, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/bruun/front.svg",
  18897. extra: 197 / 187,
  18898. bottom: 0.012
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(5 + 10 / 12, "feet"),
  18906. default: true
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(6 + 10 / 12, "feet"),
  18915. weight: math.unit(255, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/alexeev/front.svg",
  18919. extra: 213 / 200,
  18920. bottom: 0.05
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(6 + 10 / 12, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(2 + 8 / 12, "feet"),
  18937. weight: math.unit(22, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/evelyn/front.svg",
  18941. extra: 208 / 180
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Normal",
  18948. height: math.unit(2 + 8 / 12, "feet"),
  18949. default: true
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(5 + 9 / 12, "feet"),
  18958. weight: math.unit(139, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/inca/front.svg",
  18962. extra: 294 / 291,
  18963. bottom: 0.03
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(5 + 9 / 12, "feet"),
  18971. default: true
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18977. {
  18978. front: {
  18979. height: math.unit(5 + 1 / 12, "feet"),
  18980. weight: math.unit(84, "lb"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/magdalene/front.svg",
  18984. extra: 293 / 273
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(5 + 1 / 12, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(6 + 3 / 12, "feet"),
  19001. weight: math.unit(185, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/mera/front.svg",
  19005. extra: 291 / 277,
  19006. bottom: 0.03
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(6 + 3 / 12, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(6 + 7 / 12, "feet"),
  19023. weight: math.unit(160, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/ceres/front.svg",
  19027. extra: 1023 / 950,
  19028. bottom: 0.027
  19029. }
  19030. },
  19031. back: {
  19032. height: math.unit(6 + 7 / 12, "feet"),
  19033. weight: math.unit(160, "lb"),
  19034. name: "Back",
  19035. image: {
  19036. source: "./media/characters/ceres/back.svg",
  19037. extra: 1023 / 950
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(6 + 7 / 12, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(5 + 10 / 12, "feet"),
  19054. weight: math.unit(150, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/kris/front.svg",
  19058. extra: 885 / 803,
  19059. bottom: 0.03
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(5 + 10 / 12, "feet"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19073. {
  19074. front: {
  19075. height: math.unit(7, "feet"),
  19076. weight: math.unit(120, "kg"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/taluthus/front.svg",
  19080. extra: 903 / 833,
  19081. bottom: 0.015
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(7, "feet"),
  19089. default: true
  19090. },
  19091. {
  19092. name: "Macro",
  19093. height: math.unit(300, "feet")
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(5 + 9 / 12, "feet"),
  19102. weight: math.unit(145, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/dawn/front.svg",
  19106. extra: 2094 / 2016,
  19107. bottom: 0.025
  19108. }
  19109. },
  19110. back: {
  19111. height: math.unit(5 + 9 / 12, "feet"),
  19112. weight: math.unit(160, "lb"),
  19113. name: "Back",
  19114. image: {
  19115. source: "./media/characters/dawn/back.svg",
  19116. extra: 2112 / 2080,
  19117. bottom: 0.005
  19118. }
  19119. },
  19120. },
  19121. [
  19122. {
  19123. name: "Normal",
  19124. height: math.unit(6 + 7 / 12, "feet"),
  19125. default: true
  19126. },
  19127. ]
  19128. ))
  19129. characterMakers.push(() => makeCharacter(
  19130. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19131. {
  19132. anthro: {
  19133. height: math.unit(8 + 3 / 12, "feet"),
  19134. weight: math.unit(450, "lb"),
  19135. name: "Anthro",
  19136. image: {
  19137. source: "./media/characters/arador/anthro.svg",
  19138. extra: 1835 / 1718,
  19139. bottom: 0.025
  19140. }
  19141. },
  19142. feral: {
  19143. height: math.unit(4, "feet"),
  19144. weight: math.unit(200, "lb"),
  19145. name: "Feral",
  19146. image: {
  19147. source: "./media/characters/arador/feral.svg",
  19148. extra: 1683 / 1514,
  19149. bottom: 0.07
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(8 + 3 / 12, "feet")
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(82.5, "feet"),
  19161. default: true
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(5 + 10 / 12, "feet"),
  19170. weight: math.unit(125, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/dharsi/front.svg",
  19174. extra: 716 / 630,
  19175. bottom: 0.035
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Nano",
  19182. height: math.unit(100, "nm")
  19183. },
  19184. {
  19185. name: "Micro",
  19186. height: math.unit(2, "inches")
  19187. },
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(5 + 10 / 12, "feet"),
  19191. default: true
  19192. },
  19193. {
  19194. name: "Macro",
  19195. height: math.unit(1000, "feet")
  19196. },
  19197. {
  19198. name: "Megamacro",
  19199. height: math.unit(10, "miles")
  19200. },
  19201. {
  19202. name: "Gigamacro",
  19203. height: math.unit(3000, "miles")
  19204. },
  19205. {
  19206. name: "Teramacro",
  19207. height: math.unit(500000, "miles")
  19208. },
  19209. {
  19210. name: "Teramacro+",
  19211. height: math.unit(30, "galaxies")
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(6, "feet"),
  19220. weight: math.unit(150, "lb"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/deathy/front.svg",
  19224. extra: 1552 / 1463,
  19225. bottom: 0.025
  19226. }
  19227. },
  19228. side: {
  19229. height: math.unit(6, "feet"),
  19230. weight: math.unit(150, "lb"),
  19231. name: "Side",
  19232. image: {
  19233. source: "./media/characters/deathy/side.svg",
  19234. extra: 1604 / 1455,
  19235. bottom: 0.025
  19236. }
  19237. },
  19238. back: {
  19239. height: math.unit(6, "feet"),
  19240. weight: math.unit(150, "lb"),
  19241. name: "Back",
  19242. image: {
  19243. source: "./media/characters/deathy/back.svg",
  19244. extra: 1580 / 1463,
  19245. bottom: 0.005
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Micro",
  19252. height: math.unit(5, "millimeters")
  19253. },
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(6 + 5 / 12, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19263. {
  19264. front: {
  19265. height: math.unit(16, "feet"),
  19266. weight: math.unit(4000, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/juniper/front.svg",
  19270. bottom: 0.04
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(16, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(6, "feet"),
  19287. weight: math.unit(150, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/hipster/front.svg",
  19291. extra: 1312 / 1209,
  19292. bottom: 0.025
  19293. }
  19294. },
  19295. back: {
  19296. height: math.unit(6, "feet"),
  19297. weight: math.unit(150, "lb"),
  19298. name: "Back",
  19299. image: {
  19300. source: "./media/characters/hipster/back.svg",
  19301. extra: 1281 / 1196,
  19302. bottom: 0.01
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Micro",
  19309. height: math.unit(1, "mm")
  19310. },
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(4, "inches"),
  19314. default: true
  19315. },
  19316. {
  19317. name: "Macro",
  19318. height: math.unit(500, "feet")
  19319. },
  19320. {
  19321. name: "Megamacro",
  19322. height: math.unit(1000, "miles")
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(6, "feet"),
  19331. weight: math.unit(150, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/tendirmuldr/front.svg",
  19335. extra: 1878 / 1772,
  19336. bottom: 0.015
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Megamacro",
  19343. height: math.unit(1500, "miles"),
  19344. default: true
  19345. },
  19346. ]
  19347. ))
  19348. characterMakers.push(() => makeCharacter(
  19349. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19350. {
  19351. front: {
  19352. height: math.unit(14, "feet"),
  19353. weight: math.unit(12000, "lb"),
  19354. name: "Front",
  19355. image: {
  19356. source: "./media/characters/mort/front.svg",
  19357. extra: 365 / 318,
  19358. bottom: 0.01
  19359. }
  19360. },
  19361. side: {
  19362. height: math.unit(14, "feet"),
  19363. weight: math.unit(12000, "lb"),
  19364. name: "Side",
  19365. image: {
  19366. source: "./media/characters/mort/side.svg",
  19367. extra: 365 / 318,
  19368. bottom: 0.052
  19369. },
  19370. default: true
  19371. },
  19372. back: {
  19373. height: math.unit(14, "feet"),
  19374. weight: math.unit(12000, "lb"),
  19375. name: "Back",
  19376. image: {
  19377. source: "./media/characters/mort/back.svg",
  19378. extra: 371 / 332,
  19379. bottom: 0.18
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(14, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19393. {
  19394. front: {
  19395. height: math.unit(8, "feet"),
  19396. weight: math.unit(1, "ton"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/lycoa/front.svg",
  19400. extra: 1875 / 1789,
  19401. bottom: 0.022
  19402. }
  19403. },
  19404. back: {
  19405. height: math.unit(8, "feet"),
  19406. weight: math.unit(1, "ton"),
  19407. name: "Back",
  19408. image: {
  19409. source: "./media/characters/lycoa/back.svg",
  19410. extra: 1835 / 1781,
  19411. bottom: 0.03
  19412. }
  19413. },
  19414. head: {
  19415. height: math.unit(2.1, "feet"),
  19416. name: "Head",
  19417. image: {
  19418. source: "./media/characters/lycoa/head.svg"
  19419. }
  19420. },
  19421. tailmaw: {
  19422. height: math.unit(1.9, "feet"),
  19423. name: "Tailmaw",
  19424. image: {
  19425. source: "./media/characters/lycoa/tailmaw.svg"
  19426. }
  19427. },
  19428. tentacles: {
  19429. height: math.unit(2.1, "feet"),
  19430. name: "Tentacles",
  19431. image: {
  19432. source: "./media/characters/lycoa/tentacles.svg"
  19433. }
  19434. },
  19435. dick: {
  19436. height: math.unit(1.73, "feet"),
  19437. name: "Dick",
  19438. image: {
  19439. source: "./media/characters/lycoa/dick.svg"
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(8, "feet"),
  19447. default: true
  19448. },
  19449. {
  19450. name: "Macro",
  19451. height: math.unit(30, "feet")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19457. {
  19458. front: {
  19459. height: math.unit(4 + 2 / 12, "feet"),
  19460. weight: math.unit(70, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/naldara/front.svg",
  19464. extra: 841 / 720,
  19465. bottom: 0.04
  19466. }
  19467. },
  19468. naga: {
  19469. height: math.unit(23, "feet"),
  19470. weight: math.unit(15000, "kg"),
  19471. name: "Naga",
  19472. image: {
  19473. source: "./media/characters/naldara/naga.svg",
  19474. extra: 3290 / 2959,
  19475. bottom: 124 / 3432
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(4 + 2 / 12, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(13 + 7 / 12, "feet"),
  19492. weight: math.unit(1500, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/briar/front.svg",
  19496. extra: 626 / 596,
  19497. bottom: 0.08
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(13 + 7 / 12, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19511. {
  19512. side: {
  19513. height: math.unit(10, "feet"),
  19514. weight: math.unit(500, "lb"),
  19515. name: "Side",
  19516. image: {
  19517. source: "./media/characters/vanguard/side.svg",
  19518. extra: 502 / 425,
  19519. bottom: 0.087
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(10, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(7.5, "feet"),
  19536. weight: math.unit(2, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/artemis/front.svg",
  19540. extra: 1192 / 1075,
  19541. bottom: 0.07
  19542. }
  19543. },
  19544. frontNsfw: {
  19545. height: math.unit(7.5, "feet"),
  19546. weight: math.unit(2, "lb"),
  19547. name: "Front (NSFW)",
  19548. image: {
  19549. source: "./media/characters/artemis/front-nsfw.svg",
  19550. extra: 1192 / 1075,
  19551. bottom: 0.07
  19552. }
  19553. },
  19554. frontNsfwer: {
  19555. height: math.unit(7.5, "feet"),
  19556. weight: math.unit(2, "lb"),
  19557. name: "Front (NSFW-er)",
  19558. image: {
  19559. source: "./media/characters/artemis/front-nsfwer.svg",
  19560. extra: 1192 / 1075,
  19561. bottom: 0.07
  19562. }
  19563. },
  19564. side: {
  19565. height: math.unit(7.5, "feet"),
  19566. weight: math.unit(2, "lb"),
  19567. name: "Side",
  19568. image: {
  19569. source: "./media/characters/artemis/side.svg",
  19570. extra: 1192 / 1075,
  19571. bottom: 0.07
  19572. }
  19573. },
  19574. sideNsfw: {
  19575. height: math.unit(7.5, "feet"),
  19576. weight: math.unit(2, "lb"),
  19577. name: "Side (NSFW)",
  19578. image: {
  19579. source: "./media/characters/artemis/side-nsfw.svg",
  19580. extra: 1192 / 1075,
  19581. bottom: 0.07
  19582. }
  19583. },
  19584. sideNsfwer: {
  19585. height: math.unit(7.5, "feet"),
  19586. weight: math.unit(2, "lb"),
  19587. name: "Side (NSFW-er)",
  19588. image: {
  19589. source: "./media/characters/artemis/side-nsfwer.svg",
  19590. extra: 1192 / 1075,
  19591. bottom: 0.07
  19592. }
  19593. },
  19594. maw: {
  19595. height: math.unit(1.1, "feet"),
  19596. name: "Maw",
  19597. image: {
  19598. source: "./media/characters/artemis/maw.svg"
  19599. }
  19600. },
  19601. stomach: {
  19602. height: math.unit(0.95, "feet"),
  19603. name: "Stomach",
  19604. image: {
  19605. source: "./media/characters/artemis/stomach.svg"
  19606. }
  19607. },
  19608. dickCanine: {
  19609. height: math.unit(1, "feet"),
  19610. name: "Dick (Canine)",
  19611. image: {
  19612. source: "./media/characters/artemis/dick-canine.svg"
  19613. }
  19614. },
  19615. dickEquine: {
  19616. height: math.unit(0.85, "feet"),
  19617. name: "Dick (Equine)",
  19618. image: {
  19619. source: "./media/characters/artemis/dick-equine.svg"
  19620. }
  19621. },
  19622. dickExotic: {
  19623. height: math.unit(0.85, "feet"),
  19624. name: "Dick (Exotic)",
  19625. image: {
  19626. source: "./media/characters/artemis/dick-exotic.svg"
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(7.5, "feet"),
  19634. default: true
  19635. },
  19636. {
  19637. name: "Enlarged",
  19638. height: math.unit(12, "feet")
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(5 + 3 / 12, "feet"),
  19647. weight: math.unit(160, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/kira/front.svg",
  19651. extra: 906 / 786,
  19652. bottom: 0.01
  19653. }
  19654. },
  19655. back: {
  19656. height: math.unit(5 + 3 / 12, "feet"),
  19657. weight: math.unit(160, "lb"),
  19658. name: "Back",
  19659. image: {
  19660. source: "./media/characters/kira/back.svg",
  19661. extra: 882 / 757,
  19662. bottom: 0.005
  19663. }
  19664. },
  19665. frontDressed: {
  19666. height: math.unit(5 + 3 / 12, "feet"),
  19667. weight: math.unit(160, "lb"),
  19668. name: "Front (Dressed)",
  19669. image: {
  19670. source: "./media/characters/kira/front-dressed.svg",
  19671. extra: 906 / 786,
  19672. bottom: 0.01
  19673. }
  19674. },
  19675. beans: {
  19676. height: math.unit(0.92, "feet"),
  19677. name: "Beans",
  19678. image: {
  19679. source: "./media/characters/kira/beans.svg"
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(5 + 3 / 12, "feet"),
  19687. default: true
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19693. {
  19694. front: {
  19695. height: math.unit(5 + 4 / 12, "feet"),
  19696. weight: math.unit(145, "lb"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/scramble/front.svg",
  19700. extra: 763 / 727,
  19701. bottom: 0.05
  19702. }
  19703. },
  19704. back: {
  19705. height: math.unit(5 + 4 / 12, "feet"),
  19706. weight: math.unit(145, "lb"),
  19707. name: "Back",
  19708. image: {
  19709. source: "./media/characters/scramble/back.svg",
  19710. extra: 826 / 737,
  19711. bottom: 0.002
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(5 + 4 / 12, "feet"),
  19719. default: true
  19720. },
  19721. ]
  19722. ))
  19723. characterMakers.push(() => makeCharacter(
  19724. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19725. {
  19726. side: {
  19727. height: math.unit(6 + 2 / 12, "feet"),
  19728. weight: math.unit(190, "lb"),
  19729. name: "Side",
  19730. image: {
  19731. source: "./media/characters/biscuit/side.svg",
  19732. extra: 858 / 791,
  19733. bottom: 0.044
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(6 + 2 / 12, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19747. {
  19748. front: {
  19749. height: math.unit(5 + 2 / 12, "feet"),
  19750. weight: math.unit(120, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/poffin/front.svg",
  19754. extra: 786 / 680,
  19755. bottom: 0.005
  19756. }
  19757. },
  19758. },
  19759. [
  19760. {
  19761. name: "Normal",
  19762. height: math.unit(5 + 2 / 12, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19769. {
  19770. front: {
  19771. height: math.unit(6 + 3 / 12, "feet"),
  19772. weight: math.unit(519, "lb"),
  19773. name: "Front",
  19774. image: {
  19775. source: "./media/characters/dhari/front.svg",
  19776. extra: 1048 / 946,
  19777. bottom: 0.015
  19778. }
  19779. },
  19780. back: {
  19781. height: math.unit(6 + 3 / 12, "feet"),
  19782. weight: math.unit(519, "lb"),
  19783. name: "Back",
  19784. image: {
  19785. source: "./media/characters/dhari/back.svg",
  19786. extra: 1048 / 931,
  19787. bottom: 0.005
  19788. }
  19789. },
  19790. frontDressed: {
  19791. height: math.unit(6 + 3 / 12, "feet"),
  19792. weight: math.unit(519, "lb"),
  19793. name: "Front (Dressed)",
  19794. image: {
  19795. source: "./media/characters/dhari/front-dressed.svg",
  19796. extra: 1713 / 1546,
  19797. bottom: 0.02
  19798. }
  19799. },
  19800. backDressed: {
  19801. height: math.unit(6 + 3 / 12, "feet"),
  19802. weight: math.unit(519, "lb"),
  19803. name: "Back (Dressed)",
  19804. image: {
  19805. source: "./media/characters/dhari/back-dressed.svg",
  19806. extra: 1699 / 1537,
  19807. bottom: 0.01
  19808. }
  19809. },
  19810. maw: {
  19811. height: math.unit(0.95, "feet"),
  19812. name: "Maw",
  19813. image: {
  19814. source: "./media/characters/dhari/maw.svg"
  19815. }
  19816. },
  19817. wereFront: {
  19818. height: math.unit(12 + 8 / 12, "feet"),
  19819. weight: math.unit(4000, "lb"),
  19820. name: "Front (Were)",
  19821. image: {
  19822. source: "./media/characters/dhari/were-front.svg",
  19823. extra: 1065 / 969,
  19824. bottom: 0.015
  19825. }
  19826. },
  19827. wereBack: {
  19828. height: math.unit(12 + 8 / 12, "feet"),
  19829. weight: math.unit(4000, "lb"),
  19830. name: "Back (Were)",
  19831. image: {
  19832. source: "./media/characters/dhari/were-back.svg",
  19833. extra: 1065 / 969,
  19834. bottom: 0.012
  19835. }
  19836. },
  19837. wereMaw: {
  19838. height: math.unit(0.625, "meters"),
  19839. name: "Maw (Were)",
  19840. image: {
  19841. source: "./media/characters/dhari/were-maw.svg"
  19842. }
  19843. },
  19844. },
  19845. [
  19846. {
  19847. name: "Normal",
  19848. height: math.unit(6 + 3 / 12, "feet"),
  19849. default: true
  19850. },
  19851. ]
  19852. ))
  19853. characterMakers.push(() => makeCharacter(
  19854. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19855. {
  19856. anthro: {
  19857. height: math.unit(5 + 7 / 12, "feet"),
  19858. weight: math.unit(175, "lb"),
  19859. name: "Anthro",
  19860. image: {
  19861. source: "./media/characters/rena-dyne/anthro.svg",
  19862. extra: 1849 / 1785,
  19863. bottom: 0.005
  19864. }
  19865. },
  19866. taur: {
  19867. height: math.unit(15 + 6 / 12, "feet"),
  19868. weight: math.unit(8000, "lb"),
  19869. name: "Taur",
  19870. image: {
  19871. source: "./media/characters/rena-dyne/taur.svg",
  19872. extra: 2315 / 2234,
  19873. bottom: 0.033
  19874. }
  19875. },
  19876. },
  19877. [
  19878. {
  19879. name: "Normal",
  19880. height: math.unit(5 + 7 / 12, "feet"),
  19881. default: true
  19882. },
  19883. ]
  19884. ))
  19885. characterMakers.push(() => makeCharacter(
  19886. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19887. {
  19888. front: {
  19889. height: math.unit(8, "feet"),
  19890. weight: math.unit(600, "lb"),
  19891. name: "Front",
  19892. image: {
  19893. source: "./media/characters/weremeep/front.svg",
  19894. extra: 967 / 862,
  19895. bottom: 0.01
  19896. }
  19897. },
  19898. },
  19899. [
  19900. {
  19901. name: "Normal",
  19902. height: math.unit(8, "feet"),
  19903. default: true
  19904. },
  19905. {
  19906. name: "Lorg",
  19907. height: math.unit(12, "feet")
  19908. },
  19909. {
  19910. name: "Oh Lawd She Comin'",
  19911. height: math.unit(20, "feet")
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19917. {
  19918. front: {
  19919. height: math.unit(4, "feet"),
  19920. weight: math.unit(90, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/reza/front.svg",
  19924. extra: 1183 / 1111,
  19925. bottom: 0.017
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(4, "feet"),
  19930. weight: math.unit(90, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/reza/back.svg",
  19934. extra: 1183 / 1111,
  19935. bottom: 0.01
  19936. }
  19937. },
  19938. drake: {
  19939. height: math.unit(30, "feet"),
  19940. weight: math.unit(246960, "lb"),
  19941. name: "Drake",
  19942. image: {
  19943. source: "./media/characters/reza/drake.svg",
  19944. extra: 2350 / 2024,
  19945. bottom: 60.7 / 2403
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(4, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19959. {
  19960. side: {
  19961. height: math.unit(15, "feet"),
  19962. weight: math.unit(14, "tons"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/athea/side.svg",
  19966. extra: 960 / 540,
  19967. bottom: 0.003
  19968. }
  19969. },
  19970. sitting: {
  19971. height: math.unit(6 * 2.85, "feet"),
  19972. weight: math.unit(14, "tons"),
  19973. name: "Sitting",
  19974. image: {
  19975. source: "./media/characters/athea/sitting.svg",
  19976. extra: 621 / 581,
  19977. bottom: 0.075
  19978. }
  19979. },
  19980. maw: {
  19981. height: math.unit(7.59498031496063, "feet"),
  19982. name: "Maw",
  19983. image: {
  19984. source: "./media/characters/athea/maw.svg"
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Lap Cat",
  19991. height: math.unit(2.5, "feet")
  19992. },
  19993. {
  19994. name: "Minimacro",
  19995. height: math.unit(15, "feet"),
  19996. default: true
  19997. },
  19998. {
  19999. name: "Macro",
  20000. height: math.unit(120, "feet")
  20001. },
  20002. {
  20003. name: "Macro+",
  20004. height: math.unit(640, "feet")
  20005. },
  20006. {
  20007. name: "Colossus",
  20008. height: math.unit(2.2, "miles")
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20014. {
  20015. front: {
  20016. height: math.unit(8 + 8 / 12, "feet"),
  20017. weight: math.unit(130, "kg"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/seroko/front.svg",
  20021. extra: 1385 / 1280,
  20022. bottom: 0.025
  20023. }
  20024. },
  20025. back: {
  20026. height: math.unit(8 + 8 / 12, "feet"),
  20027. weight: math.unit(130, "kg"),
  20028. name: "Back",
  20029. image: {
  20030. source: "./media/characters/seroko/back.svg",
  20031. extra: 1369 / 1238,
  20032. bottom: 0.018
  20033. }
  20034. },
  20035. frontDressed: {
  20036. height: math.unit(8 + 8 / 12, "feet"),
  20037. weight: math.unit(130, "kg"),
  20038. name: "Front (Dressed)",
  20039. image: {
  20040. source: "./media/characters/seroko/front-dressed.svg",
  20041. extra: 1366 / 1275,
  20042. bottom: 0.03
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(8 + 8 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(5.5, "feet"),
  20059. weight: math.unit(160, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/quatzi/front.svg",
  20063. extra: 2346 / 2242,
  20064. bottom: 0.015
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(5.5, "feet"),
  20072. default: true
  20073. },
  20074. {
  20075. name: "Big",
  20076. height: math.unit(7.7, "feet")
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20082. {
  20083. front: {
  20084. height: math.unit(5 + 11 / 12, "feet"),
  20085. weight: math.unit(180, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/sen/front.svg",
  20089. extra: 1321 / 1254,
  20090. bottom: 0.015
  20091. }
  20092. },
  20093. side: {
  20094. height: math.unit(5 + 11 / 12, "feet"),
  20095. weight: math.unit(180, "lb"),
  20096. name: "Side",
  20097. image: {
  20098. source: "./media/characters/sen/side.svg",
  20099. extra: 1321 / 1254,
  20100. bottom: 0.007
  20101. }
  20102. },
  20103. back: {
  20104. height: math.unit(5 + 11 / 12, "feet"),
  20105. weight: math.unit(180, "lb"),
  20106. name: "Back",
  20107. image: {
  20108. source: "./media/characters/sen/back.svg",
  20109. extra: 1321 / 1254
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(5 + 11 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(166.6, "cm"),
  20126. weight: math.unit(66.6, "kg"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/fruity/front.svg",
  20130. extra: 1510 / 1386,
  20131. bottom: 0.04
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(166.6, "cm"),
  20136. weight: math.unit(66.6, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/fruity/back.svg",
  20140. extra: 1563 / 1435,
  20141. bottom: 0.005
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Normal",
  20148. height: math.unit(166.6, "cm"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Demonic",
  20153. height: math.unit(166.6, "feet")
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20159. {
  20160. side: {
  20161. height: math.unit(10, "feet"),
  20162. weight: math.unit(500, "lb"),
  20163. name: "Side",
  20164. image: {
  20165. source: "./media/characters/zost/side.svg",
  20166. extra: 966 / 880,
  20167. bottom: 0.075
  20168. }
  20169. },
  20170. mawFront: {
  20171. height: math.unit(1.08, "meters"),
  20172. name: "Maw (Front)",
  20173. image: {
  20174. source: "./media/characters/zost/maw-front.svg"
  20175. }
  20176. },
  20177. mawSide: {
  20178. height: math.unit(2.66, "feet"),
  20179. name: "Maw (Side)",
  20180. image: {
  20181. source: "./media/characters/zost/maw-side.svg"
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(10, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(5 + 4 / 12, "feet"),
  20198. weight: math.unit(120, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/luci/front.svg",
  20202. extra: 1985 / 1884,
  20203. bottom: 0.04
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(5 + 4 / 12, "feet"),
  20208. weight: math.unit(120, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/luci/back.svg",
  20212. extra: 1892 / 1791,
  20213. bottom: 0.002
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(5 + 4 / 12, "feet"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(1500, "feet"),
  20230. weight: math.unit(3.8e6, "tons"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/2th/front.svg",
  20234. extra: 3489 / 3350,
  20235. bottom: 0.1
  20236. }
  20237. },
  20238. foot: {
  20239. height: math.unit(461, "feet"),
  20240. name: "Foot",
  20241. image: {
  20242. source: "./media/characters/2th/foot.svg"
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "\"Micro\"",
  20249. height: math.unit(15 + 7 / 12, "feet")
  20250. },
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(1500, "feet"),
  20254. default: true
  20255. },
  20256. {
  20257. name: "Macro",
  20258. height: math.unit(5000, "feet")
  20259. },
  20260. {
  20261. name: "Megamacro",
  20262. height: math.unit(15, "miles")
  20263. },
  20264. {
  20265. name: "Gigamacro",
  20266. height: math.unit(4000, "miles")
  20267. },
  20268. {
  20269. name: "Galactic",
  20270. height: math.unit(50, "AU")
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(5 + 6 / 12, "feet"),
  20279. weight: math.unit(220, "lb"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/amethyst/front.svg",
  20283. extra: 2078 / 2040,
  20284. bottom: 0.045
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(5 + 6 / 12, "feet"),
  20289. weight: math.unit(220, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/amethyst/back.svg",
  20293. extra: 2021 / 1989,
  20294. bottom: 0.02
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(5 + 6 / 12, "feet"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(4 + 11 / 12, "feet"),
  20311. weight: math.unit(120, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/yumi-akiyama/front.svg",
  20315. extra: 1327 / 1235,
  20316. bottom: 0.02
  20317. }
  20318. },
  20319. back: {
  20320. height: math.unit(4 + 11 / 12, "feet"),
  20321. weight: math.unit(120, "lb"),
  20322. name: "Back",
  20323. image: {
  20324. source: "./media/characters/yumi-akiyama/back.svg",
  20325. extra: 1287 / 1245,
  20326. bottom: 0.002
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Galactic",
  20333. height: math.unit(50, "galaxies"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Universal",
  20338. height: math.unit(100, "universes")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(8, "feet"),
  20347. weight: math.unit(500, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/rifter-yrmori/front.svg",
  20351. extra: 1180 / 1125,
  20352. bottom: 0.02
  20353. }
  20354. },
  20355. back: {
  20356. height: math.unit(8, "feet"),
  20357. weight: math.unit(500, "lb"),
  20358. name: "Back",
  20359. image: {
  20360. source: "./media/characters/rifter-yrmori/back.svg",
  20361. extra: 1190 / 1145,
  20362. bottom: 0.001
  20363. }
  20364. },
  20365. wings: {
  20366. height: math.unit(7.75, "feet"),
  20367. weight: math.unit(500, "lb"),
  20368. name: "Wings",
  20369. image: {
  20370. source: "./media/characters/rifter-yrmori/wings.svg",
  20371. extra: 1357 / 1285
  20372. }
  20373. },
  20374. maw: {
  20375. height: math.unit(0.8, "feet"),
  20376. name: "Maw",
  20377. image: {
  20378. source: "./media/characters/rifter-yrmori/maw.svg"
  20379. }
  20380. },
  20381. mawfront: {
  20382. height: math.unit(1.45, "feet"),
  20383. name: "Maw (Front)",
  20384. image: {
  20385. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(8, "feet"),
  20393. default: true
  20394. },
  20395. {
  20396. name: "Macro",
  20397. height: math.unit(42, "meters")
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20403. {
  20404. were: {
  20405. height: math.unit(25 + 6 / 12, "feet"),
  20406. weight: math.unit(10000, "lb"),
  20407. name: "Were",
  20408. image: {
  20409. source: "./media/characters/tahajin/were.svg",
  20410. extra: 801 / 770,
  20411. bottom: 0.042
  20412. }
  20413. },
  20414. aquatic: {
  20415. height: math.unit(6 + 4 / 12, "feet"),
  20416. weight: math.unit(160, "lb"),
  20417. name: "Aquatic",
  20418. image: {
  20419. source: "./media/characters/tahajin/aquatic.svg",
  20420. extra: 572 / 542,
  20421. bottom: 0.04
  20422. }
  20423. },
  20424. chow: {
  20425. height: math.unit(8 + 11 / 12, "feet"),
  20426. weight: math.unit(450, "lb"),
  20427. name: "Chow",
  20428. image: {
  20429. source: "./media/characters/tahajin/chow.svg",
  20430. extra: 660 / 640,
  20431. bottom: 0.015
  20432. }
  20433. },
  20434. demiNaga: {
  20435. height: math.unit(6 + 8 / 12, "feet"),
  20436. weight: math.unit(300, "lb"),
  20437. name: "Demi Naga",
  20438. image: {
  20439. source: "./media/characters/tahajin/demi-naga.svg",
  20440. extra: 643 / 615,
  20441. bottom: 0.1
  20442. }
  20443. },
  20444. data: {
  20445. height: math.unit(5, "inches"),
  20446. weight: math.unit(0.1, "lb"),
  20447. name: "Data",
  20448. image: {
  20449. source: "./media/characters/tahajin/data.svg"
  20450. }
  20451. },
  20452. fluu: {
  20453. height: math.unit(5 + 7 / 12, "feet"),
  20454. weight: math.unit(140, "lb"),
  20455. name: "Fluu",
  20456. image: {
  20457. source: "./media/characters/tahajin/fluu.svg",
  20458. extra: 628 / 592,
  20459. bottom: 0.02
  20460. }
  20461. },
  20462. starWarrior: {
  20463. height: math.unit(4 + 5 / 12, "feet"),
  20464. weight: math.unit(50, "lb"),
  20465. name: "Star Warrior",
  20466. image: {
  20467. source: "./media/characters/tahajin/star-warrior.svg"
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(25 + 6 / 12, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20481. {
  20482. front: {
  20483. height: math.unit(8, "feet"),
  20484. weight: math.unit(350, "lb"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/gabira/front.svg",
  20488. extra: 608 / 580,
  20489. bottom: 0.03
  20490. }
  20491. },
  20492. back: {
  20493. height: math.unit(8, "feet"),
  20494. weight: math.unit(350, "lb"),
  20495. name: "Back",
  20496. image: {
  20497. source: "./media/characters/gabira/back.svg",
  20498. extra: 608 / 580,
  20499. bottom: 0.03
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(8, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(5 + 3 / 12, "feet"),
  20516. weight: math.unit(137, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/sasha-katraine/front.svg",
  20520. bottom: 0.045
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Micro",
  20527. height: math.unit(5, "inches")
  20528. },
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(5 + 3 / 12, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20538. {
  20539. side: {
  20540. height: math.unit(4, "inches"),
  20541. weight: math.unit(200, "grams"),
  20542. name: "Side",
  20543. image: {
  20544. source: "./media/characters/der/side.svg",
  20545. extra: 719 / 400,
  20546. bottom: 30.6 / 749.9187
  20547. }
  20548. },
  20549. },
  20550. [
  20551. {
  20552. name: "Micro",
  20553. height: math.unit(4, "inches"),
  20554. default: true
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20560. {
  20561. side: {
  20562. height: math.unit(30, "meters"),
  20563. weight: math.unit(700, "tonnes"),
  20564. name: "Side",
  20565. image: {
  20566. source: "./media/characters/fixerdragon/side.svg",
  20567. extra: (1293.0514 - 116.03) / 1106.86,
  20568. bottom: 116.03 / 1293.0514
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "Planck",
  20575. height: math.unit(1.6e-35, "meters")
  20576. },
  20577. {
  20578. name: "Micro",
  20579. height: math.unit(0.4, "meters")
  20580. },
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(30, "meters"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Megamacro",
  20588. height: math.unit(1.2, "megameters")
  20589. },
  20590. {
  20591. name: "Teramacro",
  20592. height: math.unit(130, "terameters")
  20593. },
  20594. {
  20595. name: "Yottamacro",
  20596. height: math.unit(6200, "yottameters")
  20597. },
  20598. ]
  20599. ));
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(8, "feet"),
  20605. weight: math.unit(250, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/kite/front.svg",
  20609. extra: 2796 / 2659,
  20610. bottom: 0.002
  20611. }
  20612. },
  20613. },
  20614. [
  20615. {
  20616. name: "Normal",
  20617. height: math.unit(8, "feet"),
  20618. default: true
  20619. },
  20620. {
  20621. name: "Macro",
  20622. height: math.unit(360, "feet")
  20623. },
  20624. {
  20625. name: "Megamacro",
  20626. height: math.unit(1500, "feet")
  20627. },
  20628. ]
  20629. ))
  20630. characterMakers.push(() => makeCharacter(
  20631. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20632. {
  20633. front: {
  20634. height: math.unit(5 + 10 / 12, "feet"),
  20635. weight: math.unit(150, "lb"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/poojawa-vynar/front.svg",
  20639. extra: (1506.1547 - 55) / 1356.6,
  20640. bottom: 55 / 1506.1547
  20641. }
  20642. },
  20643. frontTailless: {
  20644. height: math.unit(5 + 10 / 12, "feet"),
  20645. weight: math.unit(150, "lb"),
  20646. name: "Front (Tailless)",
  20647. image: {
  20648. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20649. extra: (1506.1547 - 55) / 1356.6,
  20650. bottom: 55 / 1506.1547
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(5 + 10 / 12, "feet"),
  20658. default: true
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20664. {
  20665. front: {
  20666. height: math.unit(293, "meters"),
  20667. weight: math.unit(70400, "tons"),
  20668. name: "Front",
  20669. image: {
  20670. source: "./media/characters/violette/front.svg",
  20671. extra: 1227 / 1180,
  20672. bottom: 0.005
  20673. }
  20674. },
  20675. back: {
  20676. height: math.unit(293, "meters"),
  20677. weight: math.unit(70400, "tons"),
  20678. name: "Back",
  20679. image: {
  20680. source: "./media/characters/violette/back.svg",
  20681. extra: 1227 / 1180,
  20682. bottom: 0.005
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Macro",
  20689. height: math.unit(293, "meters"),
  20690. default: true
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(1050, "feet"),
  20699. weight: math.unit(200000, "tons"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/alessandra/front.svg",
  20703. extra: 960 / 912,
  20704. bottom: 0.06
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Macro",
  20711. height: math.unit(1050, "feet")
  20712. },
  20713. {
  20714. name: "Macro+",
  20715. height: math.unit(900, "meters"),
  20716. default: true
  20717. },
  20718. ]
  20719. ))
  20720. characterMakers.push(() => makeCharacter(
  20721. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20722. {
  20723. front: {
  20724. height: math.unit(5, "feet"),
  20725. weight: math.unit(187, "lb"),
  20726. name: "Front",
  20727. image: {
  20728. source: "./media/characters/person/front.svg",
  20729. extra: 3087 / 2945,
  20730. bottom: 91 / 3181
  20731. }
  20732. },
  20733. },
  20734. [
  20735. {
  20736. name: "Micro",
  20737. height: math.unit(3, "inches")
  20738. },
  20739. {
  20740. name: "Normal",
  20741. height: math.unit(5, "feet"),
  20742. default: true
  20743. },
  20744. {
  20745. name: "Macro",
  20746. height: math.unit(90, "feet")
  20747. },
  20748. {
  20749. name: "Max Size",
  20750. height: math.unit(280, "feet")
  20751. },
  20752. ]
  20753. ))
  20754. characterMakers.push(() => makeCharacter(
  20755. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20756. {
  20757. front: {
  20758. height: math.unit(4.5, "meters"),
  20759. weight: math.unit(3200, "lb"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/ty/front.svg",
  20763. extra: 1038 / 960,
  20764. bottom: 31.156 / 1068
  20765. }
  20766. },
  20767. back: {
  20768. height: math.unit(4.5, "meters"),
  20769. weight: math.unit(3200, "lb"),
  20770. name: "Back",
  20771. image: {
  20772. source: "./media/characters/ty/back.svg",
  20773. extra: 1044 / 966,
  20774. bottom: 7.48 / 1049
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Normal",
  20781. height: math.unit(4.5, "meters"),
  20782. default: true
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(5 + 4 / 12, "feet"),
  20791. weight: math.unit(115, "lb"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/rocky/front.svg",
  20795. extra: 1012 / 975,
  20796. bottom: 54 / 1066
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(5 + 4 / 12, "feet"),
  20804. default: true
  20805. },
  20806. ]
  20807. ))
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20810. {
  20811. upright: {
  20812. height: math.unit(6, "meters"),
  20813. weight: math.unit(4000, "kg"),
  20814. name: "Upright",
  20815. image: {
  20816. source: "./media/characters/ruin/upright.svg",
  20817. extra: 668 / 661,
  20818. bottom: 42 / 799.8396
  20819. }
  20820. },
  20821. },
  20822. [
  20823. {
  20824. name: "Normal",
  20825. height: math.unit(6, "meters"),
  20826. default: true
  20827. },
  20828. ]
  20829. ))
  20830. characterMakers.push(() => makeCharacter(
  20831. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20832. {
  20833. front: {
  20834. height: math.unit(5, "feet"),
  20835. weight: math.unit(106, "lb"),
  20836. name: "Front",
  20837. image: {
  20838. source: "./media/characters/robin/front.svg",
  20839. extra: 862 / 799,
  20840. bottom: 42.4 / 914.8856
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(5, "feet"),
  20848. default: true
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20854. {
  20855. side: {
  20856. height: math.unit(3, "feet"),
  20857. weight: math.unit(225, "lb"),
  20858. name: "Side",
  20859. image: {
  20860. source: "./media/characters/saian/side.svg",
  20861. extra: 566 / 356,
  20862. bottom: 79.7 / 643
  20863. }
  20864. },
  20865. maw: {
  20866. height: math.unit(2.85, "feet"),
  20867. name: "Maw",
  20868. image: {
  20869. source: "./media/characters/saian/maw.svg"
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(3, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20883. {
  20884. side: {
  20885. height: math.unit(8, "feet"),
  20886. weight: math.unit(300, "lb"),
  20887. name: "Side",
  20888. image: {
  20889. source: "./media/characters/equus-silvermane/side.svg",
  20890. extra: 2176 / 2050,
  20891. bottom: 65.7 / 2245
  20892. }
  20893. },
  20894. front: {
  20895. height: math.unit(8, "feet"),
  20896. weight: math.unit(300, "lb"),
  20897. name: "Front",
  20898. image: {
  20899. source: "./media/characters/equus-silvermane/front.svg",
  20900. extra: 4633 / 4400,
  20901. bottom: 71.3 / 4706.915
  20902. }
  20903. },
  20904. sideStepping: {
  20905. height: math.unit(8, "feet"),
  20906. weight: math.unit(300, "lb"),
  20907. name: "Side (Stepping)",
  20908. image: {
  20909. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20910. extra: 1968 / 1860,
  20911. bottom: 16.4 / 1989
  20912. }
  20913. },
  20914. },
  20915. [
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(8, "feet")
  20919. },
  20920. {
  20921. name: "Minimacro",
  20922. height: math.unit(75, "feet"),
  20923. default: true
  20924. },
  20925. {
  20926. name: "Macro",
  20927. height: math.unit(150, "feet")
  20928. },
  20929. {
  20930. name: "Macro+",
  20931. height: math.unit(1000, "feet")
  20932. },
  20933. {
  20934. name: "Megamacro",
  20935. height: math.unit(1, "mile")
  20936. },
  20937. ]
  20938. ))
  20939. characterMakers.push(() => makeCharacter(
  20940. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20941. {
  20942. side: {
  20943. height: math.unit(20, "feet"),
  20944. weight: math.unit(30000, "kg"),
  20945. name: "Side",
  20946. image: {
  20947. source: "./media/characters/windar/side.svg",
  20948. extra: 1491 / 1248,
  20949. bottom: 82.56 / 1568
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(20, "feet"),
  20957. default: true
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20963. {
  20964. side: {
  20965. height: math.unit(15.66, "feet"),
  20966. weight: math.unit(150, "lb"),
  20967. name: "Side",
  20968. image: {
  20969. source: "./media/characters/melody/side.svg",
  20970. extra: 1097 / 944,
  20971. bottom: 11.8 / 1109
  20972. }
  20973. },
  20974. sideOutfit: {
  20975. height: math.unit(15.66, "feet"),
  20976. weight: math.unit(150, "lb"),
  20977. name: "Side (Outfit)",
  20978. image: {
  20979. source: "./media/characters/melody/side-outfit.svg",
  20980. extra: 1097 / 944,
  20981. bottom: 11.8 / 1109
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(15.66, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(8, "feet"),
  20998. weight: math.unit(325, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/windera/front.svg",
  21002. extra: 3180 / 2845,
  21003. bottom: 178 / 3365
  21004. }
  21005. },
  21006. },
  21007. [
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(8, "feet"),
  21011. default: true
  21012. },
  21013. ]
  21014. ))
  21015. characterMakers.push(() => makeCharacter(
  21016. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21017. {
  21018. front: {
  21019. height: math.unit(28.75, "feet"),
  21020. weight: math.unit(2000, "kg"),
  21021. name: "Front",
  21022. image: {
  21023. source: "./media/characters/sonear/front.svg",
  21024. extra: 1041.1 / 964.9,
  21025. bottom: 53.7 / 1096.6
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(28.75, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21039. {
  21040. side: {
  21041. height: math.unit(25.5, "feet"),
  21042. weight: math.unit(23000, "kg"),
  21043. name: "Side",
  21044. image: {
  21045. source: "./media/characters/kanara/side.svg"
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(25.5, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21059. {
  21060. side: {
  21061. height: math.unit(10, "feet"),
  21062. weight: math.unit(1000, "kg"),
  21063. name: "Side",
  21064. image: {
  21065. source: "./media/characters/ereus/side.svg",
  21066. extra: 1157 / 959,
  21067. bottom: 153 / 1312.5
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(10, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21081. {
  21082. side: {
  21083. height: math.unit(4.5, "feet"),
  21084. weight: math.unit(500, "lb"),
  21085. name: "Side",
  21086. image: {
  21087. source: "./media/characters/e-ter/side.svg",
  21088. extra: 1550 / 1248,
  21089. bottom: 146 / 1694
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(4.5, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21103. {
  21104. side: {
  21105. height: math.unit(9.7, "feet"),
  21106. weight: math.unit(4000, "kg"),
  21107. name: "Side",
  21108. image: {
  21109. source: "./media/characters/yamie/side.svg"
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(9.7, "feet"),
  21117. default: true
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21123. {
  21124. front: {
  21125. height: math.unit(50, "feet"),
  21126. weight: math.unit(50000, "kg"),
  21127. name: "Front",
  21128. image: {
  21129. source: "./media/characters/anders/front.svg",
  21130. extra: 570 / 539,
  21131. bottom: 14.7 / 586.7
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Large",
  21138. height: math.unit(50, "feet")
  21139. },
  21140. {
  21141. name: "Macro",
  21142. height: math.unit(2000, "feet"),
  21143. default: true
  21144. },
  21145. {
  21146. name: "Megamacro",
  21147. height: math.unit(12, "miles")
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21153. {
  21154. front: {
  21155. height: math.unit(7 + 2 / 12, "feet"),
  21156. weight: math.unit(300, "lb"),
  21157. name: "Front",
  21158. image: {
  21159. source: "./media/characters/reban/front.svg",
  21160. extra: 516 / 487,
  21161. bottom: 42.82 / 558.356
  21162. }
  21163. },
  21164. dick: {
  21165. height: math.unit(7 / 5, "feet"),
  21166. name: "Dick",
  21167. image: {
  21168. source: "./media/characters/reban/dick.svg"
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Natural Height",
  21175. height: math.unit(7 + 2 / 12, "feet")
  21176. },
  21177. {
  21178. name: "Macro",
  21179. height: math.unit(500, "feet"),
  21180. default: true
  21181. },
  21182. {
  21183. name: "Canon Height",
  21184. height: math.unit(50, "AU")
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(6, "feet"),
  21193. weight: math.unit(150, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/terrance-keayes/front.svg",
  21197. extra: 1.005,
  21198. bottom: 151 / 1615
  21199. }
  21200. },
  21201. side: {
  21202. height: math.unit(6, "feet"),
  21203. weight: math.unit(150, "lb"),
  21204. name: "Side",
  21205. image: {
  21206. source: "./media/characters/terrance-keayes/side.svg",
  21207. extra: 1.005,
  21208. bottom: 129.4 / 1544
  21209. }
  21210. },
  21211. back: {
  21212. height: math.unit(6, "feet"),
  21213. weight: math.unit(150, "lb"),
  21214. name: "Back",
  21215. image: {
  21216. source: "./media/characters/terrance-keayes/back.svg",
  21217. extra: 1.005,
  21218. bottom: 58.4 / 1557.3
  21219. }
  21220. },
  21221. dick: {
  21222. height: math.unit(6 * 0.208, "feet"),
  21223. name: "Dick",
  21224. image: {
  21225. source: "./media/characters/terrance-keayes/dick.svg"
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Canon Height",
  21232. height: math.unit(35, "miles"),
  21233. default: true
  21234. },
  21235. ]
  21236. ))
  21237. characterMakers.push(() => makeCharacter(
  21238. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21239. {
  21240. front: {
  21241. height: math.unit(6, "feet"),
  21242. weight: math.unit(150, "lb"),
  21243. name: "Front",
  21244. image: {
  21245. source: "./media/characters/ofelia/front.svg",
  21246. extra: 546 / 541,
  21247. bottom: 39 / 583
  21248. }
  21249. },
  21250. back: {
  21251. height: math.unit(6, "feet"),
  21252. weight: math.unit(150, "lb"),
  21253. name: "Back",
  21254. image: {
  21255. source: "./media/characters/ofelia/back.svg",
  21256. extra: 564 / 559.5,
  21257. bottom: 8.69 / 573.02
  21258. }
  21259. },
  21260. maw: {
  21261. height: math.unit(1, "feet"),
  21262. name: "Maw",
  21263. image: {
  21264. source: "./media/characters/ofelia/maw.svg"
  21265. }
  21266. },
  21267. foot: {
  21268. height: math.unit(1.949, "feet"),
  21269. name: "Foot",
  21270. image: {
  21271. source: "./media/characters/ofelia/foot.svg"
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Canon Height",
  21278. height: math.unit(2000, "miles"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(6, "feet"),
  21288. weight: math.unit(150, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/samuel/front.svg",
  21292. extra: 265 / 258,
  21293. bottom: 2 / 266.1566
  21294. }
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Macro",
  21300. height: math.unit(100, "feet"),
  21301. default: true
  21302. },
  21303. {
  21304. name: "Full Size",
  21305. height: math.unit(1000, "miles")
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(6, "feet"),
  21314. weight: math.unit(300, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/beishir-kiel/front.svg",
  21318. extra: 569 / 547,
  21319. bottom: 41.9 / 609
  21320. }
  21321. },
  21322. maw: {
  21323. height: math.unit(6 * 0.202, "feet"),
  21324. name: "Maw",
  21325. image: {
  21326. source: "./media/characters/beishir-kiel/maw.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(300, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21340. {
  21341. front: {
  21342. height: math.unit(5 + 8 / 12, "feet"),
  21343. weight: math.unit(120, "lb"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/logan-grey/front.svg",
  21347. extra: 2539 / 2393,
  21348. bottom: 97.6 / 2636.37
  21349. }
  21350. },
  21351. frontAlt: {
  21352. height: math.unit(5 + 8 / 12, "feet"),
  21353. weight: math.unit(120, "lb"),
  21354. name: "Front (Alt)",
  21355. image: {
  21356. source: "./media/characters/logan-grey/front-alt.svg",
  21357. extra: 958 / 893,
  21358. bottom: 15 / 970.768
  21359. }
  21360. },
  21361. back: {
  21362. height: math.unit(5 + 8 / 12, "feet"),
  21363. weight: math.unit(120, "lb"),
  21364. name: "Back",
  21365. image: {
  21366. source: "./media/characters/logan-grey/back.svg",
  21367. extra: 958 / 893,
  21368. bottom: 2.1881 / 970.9788
  21369. }
  21370. },
  21371. dick: {
  21372. height: math.unit(1.437, "feet"),
  21373. name: "Dick",
  21374. image: {
  21375. source: "./media/characters/logan-grey/dick.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(5 + 8 / 12, "feet")
  21383. },
  21384. {
  21385. name: "The 500 Foot Femboy",
  21386. height: math.unit(500, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Megmacro",
  21391. height: math.unit(20, "miles")
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(8 + 2 / 12, "feet"),
  21400. weight: math.unit(275, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/draganta/front.svg",
  21404. extra: 1177 / 1135,
  21405. bottom: 33.46 / 1212.1
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(8 + 6 / 12, "feet"),
  21413. default: true
  21414. },
  21415. {
  21416. name: "Macro",
  21417. height: math.unit(150, "feet")
  21418. },
  21419. {
  21420. name: "Megamacro",
  21421. height: math.unit(1000, "miles")
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(1.72, "m"),
  21430. weight: math.unit(80, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/voski/front.svg",
  21434. extra: 2076.22 / 2022.4,
  21435. bottom: 102.7 / 2177.3866
  21436. }
  21437. },
  21438. frontNsfw: {
  21439. height: math.unit(1.72, "m"),
  21440. weight: math.unit(80, "lb"),
  21441. name: "Front (NSFW)",
  21442. image: {
  21443. source: "./media/characters/voski/front-nsfw.svg",
  21444. extra: 2076.22 / 2022.4,
  21445. bottom: 102.7 / 2177.3866
  21446. }
  21447. },
  21448. back: {
  21449. height: math.unit(1.72, "m"),
  21450. weight: math.unit(80, "lb"),
  21451. name: "Back",
  21452. image: {
  21453. source: "./media/characters/voski/back.svg",
  21454. extra: 2104 / 2051,
  21455. bottom: 10.45 / 2113.63
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Normal",
  21462. height: math.unit(1.72, "m")
  21463. },
  21464. {
  21465. name: "Macro",
  21466. height: math.unit(55, "m"),
  21467. default: true
  21468. },
  21469. {
  21470. name: "Macro+",
  21471. height: math.unit(300, "m")
  21472. },
  21473. {
  21474. name: "Macro++",
  21475. height: math.unit(700, "m")
  21476. },
  21477. {
  21478. name: "Macro+++",
  21479. height: math.unit(4500, "m")
  21480. },
  21481. {
  21482. name: "Macro++++",
  21483. height: math.unit(45, "km")
  21484. },
  21485. {
  21486. name: "Macro+++++",
  21487. height: math.unit(1220, "km")
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(2.3, "m"),
  21496. weight: math.unit(304, "kg"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/icowom-lee/front.svg",
  21500. extra: 985 / 955,
  21501. bottom: 25.4 / 1012
  21502. }
  21503. },
  21504. fronttentacles: {
  21505. height: math.unit(2.3, "m"),
  21506. weight: math.unit(304, "kg"),
  21507. name: "Front-tentacles",
  21508. image: {
  21509. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21510. extra: 985 / 955,
  21511. bottom: 25.4 / 1012
  21512. }
  21513. },
  21514. back: {
  21515. height: math.unit(2.3, "m"),
  21516. weight: math.unit(304, "kg"),
  21517. name: "Back",
  21518. image: {
  21519. source: "./media/characters/icowom-lee/back.svg",
  21520. extra: 975 / 954,
  21521. bottom: 9.5 / 985
  21522. }
  21523. },
  21524. backtentacles: {
  21525. height: math.unit(2.3, "m"),
  21526. weight: math.unit(304, "kg"),
  21527. name: "Back-tentacles",
  21528. image: {
  21529. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21530. extra: 975 / 954,
  21531. bottom: 9.5 / 985
  21532. }
  21533. },
  21534. frontDressed: {
  21535. height: math.unit(2.3, "m"),
  21536. weight: math.unit(304, "kg"),
  21537. name: "Front (Dressed)",
  21538. image: {
  21539. source: "./media/characters/icowom-lee/front-dressed.svg",
  21540. extra: 3076 / 2933,
  21541. bottom: 51.4 / 3125.1889
  21542. }
  21543. },
  21544. rump: {
  21545. height: math.unit(0.776, "meters"),
  21546. name: "Rump",
  21547. image: {
  21548. source: "./media/characters/icowom-lee/rump.svg"
  21549. }
  21550. },
  21551. genitals: {
  21552. height: math.unit(0.78, "meters"),
  21553. name: "Genitals",
  21554. image: {
  21555. source: "./media/characters/icowom-lee/genitals.svg"
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(2.3, "meters"),
  21563. default: true
  21564. },
  21565. {
  21566. name: "Macro",
  21567. height: math.unit(94, "meters"),
  21568. default: true
  21569. },
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(22, "meters"),
  21577. weight: math.unit(21000, "kg"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/shock-diamond/front.svg",
  21581. extra: 2204 / 2053,
  21582. bottom: 65 / 2239.47
  21583. }
  21584. },
  21585. frontNude: {
  21586. height: math.unit(22, "meters"),
  21587. weight: math.unit(21000, "kg"),
  21588. name: "Front (Nude)",
  21589. image: {
  21590. source: "./media/characters/shock-diamond/front-nude.svg",
  21591. extra: 2514 / 2285,
  21592. bottom: 13 / 2527.56
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Normal",
  21599. height: math.unit(3, "meters")
  21600. },
  21601. {
  21602. name: "Macro",
  21603. height: math.unit(22, "meters"),
  21604. default: true
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(5 + 4 / 12, "feet"),
  21613. weight: math.unit(120, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/rory/front.svg",
  21617. extra: 589 / 556,
  21618. bottom: 45.7 / 635.76
  21619. }
  21620. },
  21621. frontNude: {
  21622. height: math.unit(5 + 4 / 12, "feet"),
  21623. weight: math.unit(120, "lb"),
  21624. name: "Front (Nude)",
  21625. image: {
  21626. source: "./media/characters/rory/front-nude.svg",
  21627. extra: 589 / 556,
  21628. bottom: 45.7 / 635.76
  21629. }
  21630. },
  21631. side: {
  21632. height: math.unit(5 + 4 / 12, "feet"),
  21633. weight: math.unit(120, "lb"),
  21634. name: "Side",
  21635. image: {
  21636. source: "./media/characters/rory/side.svg",
  21637. extra: 597 / 564,
  21638. bottom: 55 / 653
  21639. }
  21640. },
  21641. back: {
  21642. height: math.unit(5 + 4 / 12, "feet"),
  21643. weight: math.unit(120, "lb"),
  21644. name: "Back",
  21645. image: {
  21646. source: "./media/characters/rory/back.svg",
  21647. extra: 620 / 585,
  21648. bottom: 8.86 / 630.43
  21649. }
  21650. },
  21651. dick: {
  21652. height: math.unit(0.86, "feet"),
  21653. name: "Dick",
  21654. image: {
  21655. source: "./media/characters/rory/dick.svg"
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(5 + 4 / 12, "feet"),
  21663. default: true
  21664. },
  21665. {
  21666. name: "Macro",
  21667. height: math.unit(100, "feet")
  21668. },
  21669. {
  21670. name: "Macro+",
  21671. height: math.unit(140, "feet")
  21672. },
  21673. {
  21674. name: "Macro++",
  21675. height: math.unit(300, "feet")
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(5 + 9 / 12, "feet"),
  21684. weight: math.unit(190, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/sprisk/front.svg",
  21688. extra: 1225 / 1180,
  21689. bottom: 42.7 / 1266.4
  21690. }
  21691. },
  21692. frontNsfw: {
  21693. height: math.unit(5 + 9 / 12, "feet"),
  21694. weight: math.unit(190, "lb"),
  21695. name: "Front (NSFW)",
  21696. image: {
  21697. source: "./media/characters/sprisk/front-nsfw.svg",
  21698. extra: 1225 / 1180,
  21699. bottom: 42.7 / 1266.4
  21700. }
  21701. },
  21702. back: {
  21703. height: math.unit(5 + 9 / 12, "feet"),
  21704. weight: math.unit(190, "lb"),
  21705. name: "Back",
  21706. image: {
  21707. source: "./media/characters/sprisk/back.svg",
  21708. extra: 1247 / 1200,
  21709. bottom: 5.6 / 1253.04
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Tiny",
  21716. height: math.unit(2, "inches")
  21717. },
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(5 + 9 / 12, "feet"),
  21721. default: true
  21722. },
  21723. {
  21724. name: "Mini Macro",
  21725. height: math.unit(18, "feet")
  21726. },
  21727. {
  21728. name: "Macro",
  21729. height: math.unit(100, "feet")
  21730. },
  21731. {
  21732. name: "MACRO",
  21733. height: math.unit(50, "miles")
  21734. },
  21735. {
  21736. name: "M A C R O",
  21737. height: math.unit(300, "miles")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21743. {
  21744. side: {
  21745. height: math.unit(15.6, "meters"),
  21746. weight: math.unit(700000, "kg"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/bunsen/side.svg",
  21750. extra: 1644 / 358
  21751. }
  21752. },
  21753. foot: {
  21754. height: math.unit(1.611 * 1644 / 358, "meter"),
  21755. name: "Foot",
  21756. image: {
  21757. source: "./media/characters/bunsen/foot.svg"
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Small",
  21764. height: math.unit(10, "feet")
  21765. },
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(15.6, "meters"),
  21769. default: true
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(4 + 11 / 12, "feet"),
  21778. weight: math.unit(140, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/sesh/front.svg",
  21782. extra: 3420 / 3231,
  21783. bottom: 72 / 3949.5
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(4 + 11 / 12, "feet")
  21791. },
  21792. {
  21793. name: "Grown",
  21794. height: math.unit(15, "feet"),
  21795. default: true
  21796. },
  21797. {
  21798. name: "Macro",
  21799. height: math.unit(1500, "feet")
  21800. },
  21801. {
  21802. name: "Megamacro",
  21803. height: math.unit(30, "miles")
  21804. },
  21805. {
  21806. name: "Continental",
  21807. height: math.unit(3000, "miles")
  21808. },
  21809. {
  21810. name: "Gravity Mass",
  21811. height: math.unit(300000, "miles")
  21812. },
  21813. {
  21814. name: "Planet Buster",
  21815. height: math.unit(30000000, "miles")
  21816. },
  21817. {
  21818. name: "Big",
  21819. height: math.unit(3000000000, "miles")
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(9, "feet"),
  21828. weight: math.unit(350, "lb"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/pepper/front.svg",
  21832. extra: 1448 / 1312,
  21833. bottom: 9.4 / 1457.88
  21834. }
  21835. },
  21836. back: {
  21837. height: math.unit(9, "feet"),
  21838. weight: math.unit(350, "lb"),
  21839. name: "Back",
  21840. image: {
  21841. source: "./media/characters/pepper/back.svg",
  21842. extra: 1423 / 1300,
  21843. bottom: 4.6 / 1429
  21844. }
  21845. },
  21846. maw: {
  21847. height: math.unit(0.932, "feet"),
  21848. name: "Maw",
  21849. image: {
  21850. source: "./media/characters/pepper/maw.svg"
  21851. }
  21852. },
  21853. },
  21854. [
  21855. {
  21856. name: "Normal",
  21857. height: math.unit(9, "feet"),
  21858. default: true
  21859. },
  21860. ]
  21861. ))
  21862. characterMakers.push(() => makeCharacter(
  21863. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21864. {
  21865. front: {
  21866. height: math.unit(6, "feet"),
  21867. weight: math.unit(150, "lb"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/maelstrom/front.svg",
  21871. extra: 2100 / 1883,
  21872. bottom: 94 / 2196.7
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Less Kaiju",
  21879. height: math.unit(200, "feet")
  21880. },
  21881. {
  21882. name: "Kaiju",
  21883. height: math.unit(400, "feet"),
  21884. default: true
  21885. },
  21886. {
  21887. name: "Kaiju-er",
  21888. height: math.unit(600, "feet")
  21889. },
  21890. ]
  21891. ))
  21892. characterMakers.push(() => makeCharacter(
  21893. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21894. {
  21895. front: {
  21896. height: math.unit(6 + 5 / 12, "feet"),
  21897. weight: math.unit(180, "lb"),
  21898. name: "Front",
  21899. image: {
  21900. source: "./media/characters/lexir/front.svg",
  21901. extra: 180 / 172,
  21902. bottom: 12 / 192
  21903. }
  21904. },
  21905. back: {
  21906. height: math.unit(6 + 5 / 12, "feet"),
  21907. weight: math.unit(180, "lb"),
  21908. name: "Back",
  21909. image: {
  21910. source: "./media/characters/lexir/back.svg",
  21911. extra: 183.84 / 175.5,
  21912. bottom: 3.1 / 187
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Very Smal",
  21919. height: math.unit(1, "nm")
  21920. },
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(6 + 5 / 12, "feet"),
  21924. default: true
  21925. },
  21926. {
  21927. name: "Macro",
  21928. height: math.unit(1, "mile")
  21929. },
  21930. {
  21931. name: "Megamacro",
  21932. height: math.unit(50, "miles")
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21938. {
  21939. front: {
  21940. height: math.unit(1.5, "meters"),
  21941. weight: math.unit(100, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/maksio/front.svg",
  21945. extra: 1549 / 1531,
  21946. bottom: 123.7 / 1674.5429
  21947. }
  21948. },
  21949. back: {
  21950. height: math.unit(1.5, "meters"),
  21951. weight: math.unit(100, "lb"),
  21952. name: "Back",
  21953. image: {
  21954. source: "./media/characters/maksio/back.svg",
  21955. extra: 1541 / 1509,
  21956. bottom: 97 / 1639
  21957. }
  21958. },
  21959. hand: {
  21960. height: math.unit(0.621, "feet"),
  21961. name: "Hand",
  21962. image: {
  21963. source: "./media/characters/maksio/hand.svg"
  21964. }
  21965. },
  21966. foot: {
  21967. height: math.unit(1.611, "feet"),
  21968. name: "Foot",
  21969. image: {
  21970. source: "./media/characters/maksio/foot.svg"
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Shrunken",
  21977. height: math.unit(10, "cm")
  21978. },
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(150, "cm"),
  21982. default: true
  21983. },
  21984. ]
  21985. ))
  21986. characterMakers.push(() => makeCharacter(
  21987. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21988. {
  21989. front: {
  21990. height: math.unit(100, "feet"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/erza-bear/front.svg",
  21994. extra: 2449 / 2390,
  21995. bottom: 46 / 2494
  21996. }
  21997. },
  21998. back: {
  21999. height: math.unit(100, "feet"),
  22000. name: "Back",
  22001. image: {
  22002. source: "./media/characters/erza-bear/back.svg",
  22003. extra: 2489 / 2430,
  22004. bottom: 85.4 / 2480
  22005. }
  22006. },
  22007. tail: {
  22008. height: math.unit(42, "feet"),
  22009. name: "Tail",
  22010. image: {
  22011. source: "./media/characters/erza-bear/tail.svg"
  22012. }
  22013. },
  22014. tongue: {
  22015. height: math.unit(8, "feet"),
  22016. name: "Tongue",
  22017. image: {
  22018. source: "./media/characters/erza-bear/tongue.svg"
  22019. }
  22020. },
  22021. dick: {
  22022. height: math.unit(10.5, "feet"),
  22023. name: "Dick",
  22024. image: {
  22025. source: "./media/characters/erza-bear/dick.svg"
  22026. }
  22027. },
  22028. dickVertical: {
  22029. height: math.unit(16.9, "feet"),
  22030. name: "Dick (Vertical)",
  22031. image: {
  22032. source: "./media/characters/erza-bear/dick-vertical.svg"
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(100, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(172, "cm"),
  22049. weight: math.unit(73, "kg"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/violet-flor/front.svg",
  22053. extra: 1530 / 1442,
  22054. bottom: 61.9 / 1588.8
  22055. }
  22056. },
  22057. back: {
  22058. height: math.unit(180, "cm"),
  22059. weight: math.unit(73, "kg"),
  22060. name: "Back",
  22061. image: {
  22062. source: "./media/characters/violet-flor/back.svg",
  22063. extra: 1692 / 1630,
  22064. bottom: 20 / 1712
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Normal",
  22071. height: math.unit(172, "cm"),
  22072. default: true
  22073. },
  22074. ]
  22075. ))
  22076. characterMakers.push(() => makeCharacter(
  22077. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22078. {
  22079. front: {
  22080. height: math.unit(6, "feet"),
  22081. weight: math.unit(220, "lb"),
  22082. name: "Front",
  22083. image: {
  22084. source: "./media/characters/lynn-rhea/front.svg",
  22085. extra: 310 / 273
  22086. }
  22087. },
  22088. back: {
  22089. height: math.unit(6, "feet"),
  22090. weight: math.unit(220, "lb"),
  22091. name: "Back",
  22092. image: {
  22093. source: "./media/characters/lynn-rhea/back.svg",
  22094. extra: 310 / 273
  22095. }
  22096. },
  22097. dicks: {
  22098. height: math.unit(0.9, "feet"),
  22099. name: "Dicks",
  22100. image: {
  22101. source: "./media/characters/lynn-rhea/dicks.svg"
  22102. }
  22103. },
  22104. slit: {
  22105. height: math.unit(0.4, "feet"),
  22106. name: "Slit",
  22107. image: {
  22108. source: "./media/characters/lynn-rhea/slit.svg"
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Micro",
  22115. height: math.unit(1, "inch")
  22116. },
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(60, "feet"),
  22120. default: true
  22121. },
  22122. {
  22123. name: "Megamacro",
  22124. height: math.unit(2, "miles")
  22125. },
  22126. {
  22127. name: "Gigamacro",
  22128. height: math.unit(3, "earths")
  22129. },
  22130. {
  22131. name: "Galactic",
  22132. height: math.unit(0.8, "galaxies")
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22138. {
  22139. front: {
  22140. height: math.unit(1600, "feet"),
  22141. weight: math.unit(85758785169, "kg"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/valathos/front.svg",
  22145. extra: 1451 / 1339
  22146. }
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Macro",
  22152. height: math.unit(1600, "feet"),
  22153. default: true
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22159. {
  22160. front: {
  22161. height: math.unit(7 + 5 / 12, "feet"),
  22162. weight: math.unit(300, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/azula/front.svg",
  22166. extra: 3208 / 2880,
  22167. bottom: 80.2 / 3277
  22168. }
  22169. },
  22170. back: {
  22171. height: math.unit(7 + 5 / 12, "feet"),
  22172. weight: math.unit(300, "lb"),
  22173. name: "Back",
  22174. image: {
  22175. source: "./media/characters/azula/back.svg",
  22176. extra: 3169 / 2822,
  22177. bottom: 150.6 / 3321
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(7 + 5 / 12, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Big",
  22189. height: math.unit(20, "feet")
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(5 + 1 / 12, "feet"),
  22198. weight: math.unit(110, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/rupert/front.svg",
  22202. extra: 1549 / 1495,
  22203. bottom: 54.2 / 1604.4
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(5 + 1 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(8 + 4 / 12, "feet"),
  22220. weight: math.unit(350, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/sheera-castellar/front.svg",
  22224. extra: 1957 / 1894,
  22225. bottom: 26.97 / 1975.017
  22226. }
  22227. },
  22228. side: {
  22229. height: math.unit(8 + 4 / 12, "feet"),
  22230. weight: math.unit(350, "lb"),
  22231. name: "Side",
  22232. image: {
  22233. source: "./media/characters/sheera-castellar/side.svg",
  22234. extra: 1957 / 1894
  22235. }
  22236. },
  22237. back: {
  22238. height: math.unit(8 + 4 / 12, "feet"),
  22239. weight: math.unit(350, "lb"),
  22240. name: "Back",
  22241. image: {
  22242. source: "./media/characters/sheera-castellar/back.svg",
  22243. extra: 1957 / 1894
  22244. }
  22245. },
  22246. angled: {
  22247. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22248. weight: math.unit(350, "lb"),
  22249. name: "Angled",
  22250. image: {
  22251. source: "./media/characters/sheera-castellar/angled.svg",
  22252. extra: 1807 / 1707,
  22253. bottom: 68 / 1875
  22254. }
  22255. },
  22256. genitals: {
  22257. height: math.unit(2.2, "feet"),
  22258. name: "Genitals",
  22259. image: {
  22260. source: "./media/characters/sheera-castellar/genitals.svg"
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(8 + 4 / 12, "feet")
  22268. },
  22269. {
  22270. name: "Macro",
  22271. height: math.unit(150, "feet"),
  22272. default: true
  22273. },
  22274. {
  22275. name: "Macro+",
  22276. height: math.unit(800, "feet")
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(6, "feet"),
  22285. weight: math.unit(150, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/jaipur/front.svg",
  22289. extra: 3860 / 3731,
  22290. bottom: 287 / 4140
  22291. }
  22292. },
  22293. back: {
  22294. height: math.unit(6, "feet"),
  22295. weight: math.unit(150, "lb"),
  22296. name: "Back",
  22297. image: {
  22298. source: "./media/characters/jaipur/back.svg",
  22299. extra: 4060 / 3930,
  22300. bottom: 151 / 4200
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(1.85, "meters"),
  22308. default: true
  22309. },
  22310. {
  22311. name: "Macro",
  22312. height: math.unit(150, "meters")
  22313. },
  22314. {
  22315. name: "Macro+",
  22316. height: math.unit(0.5, "miles")
  22317. },
  22318. {
  22319. name: "Macro++",
  22320. height: math.unit(2.5, "miles")
  22321. },
  22322. {
  22323. name: "Macro+++",
  22324. height: math.unit(12, "miles")
  22325. },
  22326. {
  22327. name: "Macro++++",
  22328. height: math.unit(120, "miles")
  22329. },
  22330. {
  22331. name: "Macro+++++",
  22332. height: math.unit(1200, "miles")
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(6, "feet"),
  22341. weight: math.unit(150, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/sheila-wolf/front.svg",
  22345. extra: 1931 / 1808,
  22346. bottom: 29.5 / 1960
  22347. }
  22348. },
  22349. dick: {
  22350. height: math.unit(1.464, "feet"),
  22351. name: "Dick",
  22352. image: {
  22353. source: "./media/characters/sheila-wolf/dick.svg"
  22354. }
  22355. },
  22356. muzzle: {
  22357. height: math.unit(0.513, "feet"),
  22358. name: "Muzzle",
  22359. image: {
  22360. source: "./media/characters/sheila-wolf/muzzle.svg"
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Macro",
  22367. height: math.unit(70, "feet"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(32, "meters"),
  22377. weight: math.unit(300000, "kg"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/almor/front.svg",
  22381. extra: 1408 / 1322,
  22382. bottom: 94.6 / 1506.5
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Macro",
  22389. height: math.unit(32, "meters"),
  22390. default: true
  22391. },
  22392. ]
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(7, "feet"),
  22399. weight: math.unit(200, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/silver/front.svg",
  22403. extra: 472.1 / 450.5,
  22404. bottom: 26.5 / 499.424
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Normal",
  22411. height: math.unit(7, "feet"),
  22412. default: true
  22413. },
  22414. {
  22415. name: "Macro",
  22416. height: math.unit(800, "feet")
  22417. },
  22418. {
  22419. name: "Megamacro",
  22420. height: math.unit(250, "miles")
  22421. },
  22422. ]
  22423. ))
  22424. characterMakers.push(() => makeCharacter(
  22425. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22426. {
  22427. front: {
  22428. height: math.unit(6, "feet"),
  22429. weight: math.unit(150, "lb"),
  22430. name: "Front",
  22431. image: {
  22432. source: "./media/characters/pliskin/front.svg",
  22433. extra: 1469 / 1359,
  22434. bottom: 70 / 1540
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Micro",
  22441. height: math.unit(3, "inches")
  22442. },
  22443. {
  22444. name: "Normal",
  22445. height: math.unit(5 + 11 / 12, "feet"),
  22446. default: true
  22447. },
  22448. {
  22449. name: "Macro",
  22450. height: math.unit(120, "feet")
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(6, "feet"),
  22459. weight: math.unit(150, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/sammy/front.svg",
  22463. extra: 1193 / 1089,
  22464. bottom: 30.5 / 1226
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Macro",
  22471. height: math.unit(1700, "feet"),
  22472. default: true
  22473. },
  22474. {
  22475. name: "Examacro",
  22476. height: math.unit(2.5e9, "lightyears")
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(21, "meters"),
  22485. weight: math.unit(12, "tonnes"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/kuru/front.svg",
  22489. extra: 4301 / 3785,
  22490. bottom: 371.3 / 4691
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Macro",
  22497. height: math.unit(21, "meters"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(23, "meters"),
  22507. weight: math.unit(12.2, "tonnes"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/rakka/front.svg",
  22511. extra: 4670 / 4169,
  22512. bottom: 301 / 4968.7
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Macro",
  22519. height: math.unit(23, "meters"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(6, "feet"),
  22529. weight: math.unit(150, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/rhys-feline/front.svg",
  22533. extra: 2488 / 2308,
  22534. bottom: 35.67 / 2519.19
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Really Small",
  22541. height: math.unit(1, "nm")
  22542. },
  22543. {
  22544. name: "Micro",
  22545. height: math.unit(4, "inches")
  22546. },
  22547. {
  22548. name: "Normal",
  22549. height: math.unit(4 + 10 / 12, "feet"),
  22550. default: true
  22551. },
  22552. {
  22553. name: "Macro",
  22554. height: math.unit(100, "feet")
  22555. },
  22556. {
  22557. name: "Megamacto",
  22558. height: math.unit(50, "miles")
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22564. {
  22565. side: {
  22566. height: math.unit(30, "feet"),
  22567. weight: math.unit(35000, "kg"),
  22568. name: "Side",
  22569. image: {
  22570. source: "./media/characters/alydar/side.svg",
  22571. extra: 234 / 222,
  22572. bottom: 6.5 / 241
  22573. }
  22574. },
  22575. front: {
  22576. height: math.unit(30, "feet"),
  22577. weight: math.unit(35000, "kg"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/alydar/front.svg",
  22581. extra: 223.37 / 210.2,
  22582. bottom: 22.3 / 246.76
  22583. }
  22584. },
  22585. top: {
  22586. height: math.unit(64.54, "feet"),
  22587. weight: math.unit(35000, "kg"),
  22588. name: "Top",
  22589. image: {
  22590. source: "./media/characters/alydar/top.svg"
  22591. }
  22592. },
  22593. anthro: {
  22594. height: math.unit(30, "feet"),
  22595. weight: math.unit(9000, "kg"),
  22596. name: "Anthro",
  22597. image: {
  22598. source: "./media/characters/alydar/anthro.svg",
  22599. extra: 432 / 421,
  22600. bottom: 7.18 / 440
  22601. }
  22602. },
  22603. maw: {
  22604. height: math.unit(11.693, "feet"),
  22605. name: "Maw",
  22606. image: {
  22607. source: "./media/characters/alydar/maw.svg"
  22608. }
  22609. },
  22610. head: {
  22611. height: math.unit(11.693, "feet"),
  22612. name: "Head",
  22613. image: {
  22614. source: "./media/characters/alydar/head.svg"
  22615. }
  22616. },
  22617. headAlt: {
  22618. height: math.unit(12.861, "feet"),
  22619. name: "Head (Alt)",
  22620. image: {
  22621. source: "./media/characters/alydar/head-alt.svg"
  22622. }
  22623. },
  22624. wing: {
  22625. height: math.unit(20.712, "feet"),
  22626. name: "Wing",
  22627. image: {
  22628. source: "./media/characters/alydar/wing.svg"
  22629. }
  22630. },
  22631. wingFeather: {
  22632. height: math.unit(9.662, "feet"),
  22633. name: "Wing Feather",
  22634. image: {
  22635. source: "./media/characters/alydar/wing-feather.svg"
  22636. }
  22637. },
  22638. countourFeather: {
  22639. height: math.unit(4.154, "feet"),
  22640. name: "Contour Feather",
  22641. image: {
  22642. source: "./media/characters/alydar/contour-feather.svg"
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Diplomatic",
  22649. height: math.unit(13, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Small",
  22654. height: math.unit(30, "feet")
  22655. },
  22656. {
  22657. name: "Normal",
  22658. height: math.unit(95, "feet"),
  22659. default: true
  22660. },
  22661. {
  22662. name: "Large",
  22663. height: math.unit(285, "feet")
  22664. },
  22665. {
  22666. name: "Incomprehensible",
  22667. height: math.unit(450, "megameters")
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22673. {
  22674. side: {
  22675. height: math.unit(11, "feet"),
  22676. weight: math.unit(1750, "kg"),
  22677. name: "Side",
  22678. image: {
  22679. source: "./media/characters/selicia/side.svg",
  22680. extra: 440 / 396,
  22681. bottom: 24.8 / 465.979
  22682. }
  22683. },
  22684. maw: {
  22685. height: math.unit(4.665, "feet"),
  22686. name: "Maw",
  22687. image: {
  22688. source: "./media/characters/selicia/maw.svg"
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(11, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22702. {
  22703. side: {
  22704. height: math.unit(2 + 6 / 12, "feet"),
  22705. weight: math.unit(30, "lb"),
  22706. name: "Side",
  22707. image: {
  22708. source: "./media/characters/layla/side.svg",
  22709. extra: 244 / 188,
  22710. bottom: 18.2 / 262.1
  22711. }
  22712. },
  22713. back: {
  22714. height: math.unit(2 + 6 / 12, "feet"),
  22715. weight: math.unit(30, "lb"),
  22716. name: "Back",
  22717. image: {
  22718. source: "./media/characters/layla/back.svg",
  22719. extra: 308 / 241.5,
  22720. bottom: 8.9 / 316.8
  22721. }
  22722. },
  22723. cumming: {
  22724. height: math.unit(2 + 6 / 12, "feet"),
  22725. weight: math.unit(30, "lb"),
  22726. name: "Cumming",
  22727. image: {
  22728. source: "./media/characters/layla/cumming.svg",
  22729. extra: 342 / 279,
  22730. bottom: 595 / 938
  22731. }
  22732. },
  22733. dickFlaccid: {
  22734. height: math.unit(2.595, "feet"),
  22735. name: "Flaccid Genitals",
  22736. image: {
  22737. source: "./media/characters/layla/dick-flaccid.svg"
  22738. }
  22739. },
  22740. dickErect: {
  22741. height: math.unit(2.359, "feet"),
  22742. name: "Erect Genitals",
  22743. image: {
  22744. source: "./media/characters/layla/dick-erect.svg"
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Micro",
  22751. height: math.unit(1, "inch")
  22752. },
  22753. {
  22754. name: "Small",
  22755. height: math.unit(1, "foot")
  22756. },
  22757. {
  22758. name: "Normal",
  22759. height: math.unit(2 + 6 / 12, "feet"),
  22760. default: true
  22761. },
  22762. {
  22763. name: "Macro",
  22764. height: math.unit(200, "feet")
  22765. },
  22766. {
  22767. name: "Megamacro",
  22768. height: math.unit(1000, "miles")
  22769. },
  22770. {
  22771. name: "Planetary",
  22772. height: math.unit(8000, "miles")
  22773. },
  22774. {
  22775. name: "True Layla",
  22776. height: math.unit(200000 * 7, "multiverses")
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22782. {
  22783. back: {
  22784. height: math.unit(10.5, "feet"),
  22785. weight: math.unit(800, "lb"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/knox/back.svg",
  22789. extra: 1486 / 1089,
  22790. bottom: 107 / 1601.4
  22791. }
  22792. },
  22793. side: {
  22794. height: math.unit(10.5, "feet"),
  22795. weight: math.unit(800, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/knox/side.svg",
  22799. extra: 244 / 218,
  22800. bottom: 14 / 260
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Compact",
  22807. height: math.unit(10.5, "feet"),
  22808. default: true
  22809. },
  22810. {
  22811. name: "Dynamax",
  22812. height: math.unit(210, "feet")
  22813. },
  22814. {
  22815. name: "Full Macro",
  22816. height: math.unit(850, "feet")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(6, "feet"),
  22825. weight: math.unit(152, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/shin-pikachu/front.svg",
  22829. extra: 1574 / 1480,
  22830. bottom: 53.3 / 1626
  22831. }
  22832. },
  22833. hand: {
  22834. height: math.unit(1.055, "feet"),
  22835. name: "Hand",
  22836. image: {
  22837. source: "./media/characters/shin-pikachu/hand.svg"
  22838. }
  22839. },
  22840. foot: {
  22841. height: math.unit(1.1, "feet"),
  22842. name: "Foot",
  22843. image: {
  22844. source: "./media/characters/shin-pikachu/foot.svg"
  22845. }
  22846. },
  22847. collar: {
  22848. height: math.unit(0.386, "feet"),
  22849. name: "Collar",
  22850. image: {
  22851. source: "./media/characters/shin-pikachu/collar.svg"
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Smallest",
  22858. height: math.unit(0.5, "inches")
  22859. },
  22860. {
  22861. name: "Micro",
  22862. height: math.unit(6, "inches")
  22863. },
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(6, "feet"),
  22867. default: true
  22868. },
  22869. {
  22870. name: "Macro",
  22871. height: math.unit(150, "feet")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(28, "feet"),
  22880. weight: math.unit(10500, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/kayda/front.svg",
  22884. extra: 1536 / 1428,
  22885. bottom: 68.7 / 1603
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(28, "feet"),
  22890. weight: math.unit(10500, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/kayda/back.svg",
  22894. extra: 1557 / 1464,
  22895. bottom: 39.5 / 1597.49
  22896. }
  22897. },
  22898. dick: {
  22899. height: math.unit(3.858, "feet"),
  22900. name: "Dick",
  22901. image: {
  22902. source: "./media/characters/kayda/dick.svg"
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Macro",
  22909. height: math.unit(28, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(10 + 11 / 12, "feet"),
  22919. weight: math.unit(1400, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/brian/front.svg",
  22923. extra: 737 / 692,
  22924. bottom: 55.4 / 785
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(10 + 11 / 12, "feet"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(5 + 8 / 12, "feet"),
  22941. weight: math.unit(140, "lb"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/khemri/front.svg",
  22945. extra: 4780 / 4059,
  22946. bottom: 80.1 / 4859.25
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Micro",
  22953. height: math.unit(6, "inches")
  22954. },
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(5 + 8 / 12, "feet"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22964. {
  22965. front: {
  22966. height: math.unit(13, "feet"),
  22967. weight: math.unit(1700, "lb"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/felix-braveheart/front.svg",
  22971. extra: 1222 / 1157,
  22972. bottom: 53.2 / 1280
  22973. }
  22974. },
  22975. back: {
  22976. height: math.unit(13, "feet"),
  22977. weight: math.unit(1700, "lb"),
  22978. name: "Back",
  22979. image: {
  22980. source: "./media/characters/felix-braveheart/back.svg",
  22981. extra: 1277 / 1203,
  22982. bottom: 50.2 / 1327
  22983. }
  22984. },
  22985. feral: {
  22986. height: math.unit(6, "feet"),
  22987. weight: math.unit(400, "lb"),
  22988. name: "Feral",
  22989. image: {
  22990. source: "./media/characters/felix-braveheart/feral.svg",
  22991. extra: 682 / 625,
  22992. bottom: 6.9 / 688
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(13, "feet"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23006. {
  23007. side: {
  23008. height: math.unit(5 + 11 / 12, "feet"),
  23009. weight: math.unit(1400, "lb"),
  23010. name: "Side",
  23011. image: {
  23012. source: "./media/characters/shadow-blade/side.svg",
  23013. extra: 1726 / 1267,
  23014. bottom: 58.4 / 1785
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(5 + 11 / 12, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23028. {
  23029. front: {
  23030. height: math.unit(1 + 6 / 12, "feet"),
  23031. weight: math.unit(25, "lb"),
  23032. name: "Front",
  23033. image: {
  23034. source: "./media/characters/karla-halldor/front.svg",
  23035. extra: 1459 / 1383,
  23036. bottom: 12 / 1472
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(1 + 6 / 12, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(6 + 2 / 12, "feet"),
  23053. weight: math.unit(160, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/ariam/front.svg",
  23057. extra: 714 / 617,
  23058. bottom: 23.4 / 737,
  23059. }
  23060. },
  23061. squatting: {
  23062. height: math.unit(4.1, "feet"),
  23063. weight: math.unit(160, "lb"),
  23064. name: "Squatting",
  23065. image: {
  23066. source: "./media/characters/ariam/squatting.svg",
  23067. extra: 2617 / 2112,
  23068. bottom: 61.2 / 2681,
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Normal",
  23075. height: math.unit(6 + 2 / 12, "feet"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Normal+",
  23080. height: math.unit(4, "meters")
  23081. },
  23082. {
  23083. name: "Macro",
  23084. height: math.unit(50, "meters")
  23085. },
  23086. {
  23087. name: "Macro+",
  23088. height: math.unit(100, "meters")
  23089. },
  23090. {
  23091. name: "Megamacro",
  23092. height: math.unit(20, "km")
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23098. {
  23099. front: {
  23100. height: math.unit(1.67, "meters"),
  23101. weight: math.unit(140, "lb"),
  23102. name: "Front",
  23103. image: {
  23104. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23105. extra: 438 / 410,
  23106. bottom: 0.75 / 439
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Shrunken",
  23113. height: math.unit(7.6, "cm")
  23114. },
  23115. {
  23116. name: "Human Scale",
  23117. height: math.unit(1.67, "meters")
  23118. },
  23119. {
  23120. name: "Wolxi Scale",
  23121. height: math.unit(36.7, "meters"),
  23122. default: true
  23123. },
  23124. ]
  23125. ))
  23126. characterMakers.push(() => makeCharacter(
  23127. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23128. {
  23129. front: {
  23130. height: math.unit(1.73, "meters"),
  23131. weight: math.unit(240, "lb"),
  23132. name: "Front",
  23133. image: {
  23134. source: "./media/characters/izue-two-mothers/front.svg",
  23135. extra: 469 / 437,
  23136. bottom: 1.24 / 470.6
  23137. }
  23138. },
  23139. },
  23140. [
  23141. {
  23142. name: "Shrunken",
  23143. height: math.unit(7.86, "cm")
  23144. },
  23145. {
  23146. name: "Human Scale",
  23147. height: math.unit(1.73, "meters")
  23148. },
  23149. {
  23150. name: "Wolxi Scale",
  23151. height: math.unit(38, "meters"),
  23152. default: true
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(1.55, "meters"),
  23161. weight: math.unit(120, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/teeku-love-shack/front.svg",
  23165. extra: 387 / 362,
  23166. bottom: 1.51 / 388
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Shrunken",
  23173. height: math.unit(7, "cm")
  23174. },
  23175. {
  23176. name: "Human Scale",
  23177. height: math.unit(1.55, "meters")
  23178. },
  23179. {
  23180. name: "Wolxi Scale",
  23181. height: math.unit(34.1, "meters"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(1.83, "meters"),
  23191. weight: math.unit(135, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/dejma-the-red/front.svg",
  23195. extra: 480 / 458,
  23196. bottom: 1.8 / 482
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Shrunken",
  23203. height: math.unit(8.3, "cm")
  23204. },
  23205. {
  23206. name: "Human Scale",
  23207. height: math.unit(1.83, "meters")
  23208. },
  23209. {
  23210. name: "Wolxi Scale",
  23211. height: math.unit(40, "meters"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23218. {
  23219. front: {
  23220. height: math.unit(1.78, "meters"),
  23221. weight: math.unit(65, "kg"),
  23222. name: "Front",
  23223. image: {
  23224. source: "./media/characters/aki/front.svg",
  23225. extra: 452 / 415
  23226. }
  23227. },
  23228. frontNsfw: {
  23229. height: math.unit(1.78, "meters"),
  23230. weight: math.unit(65, "kg"),
  23231. name: "Front (NSFW)",
  23232. image: {
  23233. source: "./media/characters/aki/front-nsfw.svg",
  23234. extra: 452 / 415
  23235. }
  23236. },
  23237. back: {
  23238. height: math.unit(1.78, "meters"),
  23239. weight: math.unit(65, "kg"),
  23240. name: "Back",
  23241. image: {
  23242. source: "./media/characters/aki/back.svg",
  23243. extra: 452 / 415
  23244. }
  23245. },
  23246. rump: {
  23247. height: math.unit(2.05, "feet"),
  23248. name: "Rump",
  23249. image: {
  23250. source: "./media/characters/aki/rump.svg"
  23251. }
  23252. },
  23253. dick: {
  23254. height: math.unit(0.95, "feet"),
  23255. name: "Dick",
  23256. image: {
  23257. source: "./media/characters/aki/dick.svg"
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Micro",
  23264. height: math.unit(15, "cm")
  23265. },
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(178, "cm"),
  23269. default: true
  23270. },
  23271. {
  23272. name: "Macro",
  23273. height: math.unit(214, "m")
  23274. },
  23275. {
  23276. name: "Macro+",
  23277. height: math.unit(534, "m")
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(5 + 5 / 12, "feet"),
  23286. weight: math.unit(120, "lb"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/ari/front.svg",
  23290. extra: 714.5 / 682,
  23291. bottom: 8 / 722.5
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(5 + 5 / 12, "feet")
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(100, "feet"),
  23303. default: true
  23304. },
  23305. {
  23306. name: "Megamacro",
  23307. height: math.unit(100, "miles")
  23308. },
  23309. {
  23310. name: "Gigamacro",
  23311. height: math.unit(80000, "miles")
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23317. {
  23318. side: {
  23319. height: math.unit(9, "feet"),
  23320. weight: math.unit(400, "kg"),
  23321. name: "Side",
  23322. image: {
  23323. source: "./media/characters/bolt/side.svg",
  23324. extra: 1126 / 896,
  23325. bottom: 60 / 1187.3,
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Micro",
  23332. height: math.unit(5, "inches")
  23333. },
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(9, "feet"),
  23337. default: true
  23338. },
  23339. {
  23340. name: "Macro",
  23341. height: math.unit(700, "feet")
  23342. },
  23343. {
  23344. name: "Max Size",
  23345. height: math.unit(1.52e22, "yottameters")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(4.53, "meters"),
  23354. weight: math.unit(3, "tons"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/draekon-sylviar/front.svg",
  23358. extra: 1228 / 1068,
  23359. bottom: 41 / 1270
  23360. }
  23361. },
  23362. tail: {
  23363. height: math.unit(1.772, "meter"),
  23364. name: "Tail",
  23365. image: {
  23366. source: "./media/characters/draekon-sylviar/tail.svg"
  23367. }
  23368. },
  23369. head: {
  23370. height: math.unit(1.331, "meter"),
  23371. name: "Head",
  23372. image: {
  23373. source: "./media/characters/draekon-sylviar/head.svg"
  23374. }
  23375. },
  23376. hand: {
  23377. height: math.unit(0.564, "meter"),
  23378. name: "Hand",
  23379. image: {
  23380. source: "./media/characters/draekon-sylviar/hand.svg"
  23381. }
  23382. },
  23383. foot: {
  23384. height: math.unit(0.621, "meter"),
  23385. name: "Foot",
  23386. image: {
  23387. source: "./media/characters/draekon-sylviar/foot.svg",
  23388. bottom: 32 / 324
  23389. }
  23390. },
  23391. dick: {
  23392. height: math.unit(61, "cm"),
  23393. name: "Dick",
  23394. image: {
  23395. source: "./media/characters/draekon-sylviar/dick.svg"
  23396. }
  23397. },
  23398. dickseparated: {
  23399. height: math.unit(61, "cm"),
  23400. name: "Dick-separated",
  23401. image: {
  23402. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Small",
  23409. height: math.unit(4.53 / 2, "meters"),
  23410. default: true
  23411. },
  23412. {
  23413. name: "Normal",
  23414. height: math.unit(4.53, "meters"),
  23415. default: true
  23416. },
  23417. {
  23418. name: "Large",
  23419. height: math.unit(4.53 * 2, "meters"),
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(6 + 2 / 12, "feet"),
  23428. weight: math.unit(180, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/brawler/front.svg",
  23432. extra: 3301 / 3027,
  23433. bottom: 138 / 3439
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(6 + 2 / 12, "feet"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(11, "feet"),
  23450. weight: math.unit(1000, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/alex/front.svg",
  23454. bottom: 44.5 / 620
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Micro",
  23461. height: math.unit(5, "inches")
  23462. },
  23463. {
  23464. name: "Normal",
  23465. height: math.unit(11, "feet"),
  23466. default: true
  23467. },
  23468. {
  23469. name: "Macro",
  23470. height: math.unit(9.5e9, "feet")
  23471. },
  23472. {
  23473. name: "Max Size",
  23474. height: math.unit(1.4e283, "yottameters")
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23480. {
  23481. female: {
  23482. height: math.unit(29.9, "m"),
  23483. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23484. name: "Female",
  23485. image: {
  23486. source: "./media/characters/zenari/female.svg",
  23487. extra: 3281.6 / 3217,
  23488. bottom: 72.2 / 3353
  23489. }
  23490. },
  23491. male: {
  23492. height: math.unit(27.7, "m"),
  23493. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23494. name: "Male",
  23495. image: {
  23496. source: "./media/characters/zenari/male.svg",
  23497. extra: 3008 / 2991,
  23498. bottom: 54.6 / 3069
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Macro",
  23505. height: math.unit(29.7, "meters"),
  23506. default: true
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23512. {
  23513. female: {
  23514. height: math.unit(23.8, "m"),
  23515. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23516. name: "Female",
  23517. image: {
  23518. source: "./media/characters/mactarian/female.svg",
  23519. extra: 2662 / 2569,
  23520. bottom: 73 / 2736
  23521. }
  23522. },
  23523. male: {
  23524. height: math.unit(23.8, "m"),
  23525. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23526. name: "Male",
  23527. image: {
  23528. source: "./media/characters/mactarian/male.svg",
  23529. extra: 2673 / 2600,
  23530. bottom: 76 / 2750
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(23.8, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23544. {
  23545. female: {
  23546. height: math.unit(19.3, "m"),
  23547. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23548. name: "Female",
  23549. image: {
  23550. source: "./media/characters/umok/female.svg",
  23551. extra: 2186 / 2078,
  23552. bottom: 87 / 2277
  23553. }
  23554. },
  23555. male: {
  23556. height: math.unit(19.5, "m"),
  23557. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23558. name: "Male",
  23559. image: {
  23560. source: "./media/characters/umok/male.svg",
  23561. extra: 2233 / 2140,
  23562. bottom: 24.4 / 2258
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(19.3, "meters"),
  23570. default: true
  23571. },
  23572. ]
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23576. {
  23577. female: {
  23578. height: math.unit(26.15, "m"),
  23579. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23580. name: "Female",
  23581. image: {
  23582. source: "./media/characters/joraxian/female.svg",
  23583. extra: 2912 / 2824,
  23584. bottom: 36 / 2956
  23585. }
  23586. },
  23587. male: {
  23588. height: math.unit(25.4, "m"),
  23589. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23590. name: "Male",
  23591. image: {
  23592. source: "./media/characters/joraxian/male.svg",
  23593. extra: 2877 / 2721,
  23594. bottom: 82 / 2967
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Macro",
  23601. height: math.unit(26.15, "meters"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23608. {
  23609. female: {
  23610. height: math.unit(21.6, "m"),
  23611. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23612. name: "Female",
  23613. image: {
  23614. source: "./media/characters/sthara/female.svg",
  23615. extra: 2516 / 2347,
  23616. bottom: 21.5 / 2537
  23617. }
  23618. },
  23619. male: {
  23620. height: math.unit(24, "m"),
  23621. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23622. name: "Male",
  23623. image: {
  23624. source: "./media/characters/sthara/male.svg",
  23625. extra: 2732 / 2607,
  23626. bottom: 23 / 2732
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(21.6, "meters"),
  23634. default: true
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(6 + 4 / 12, "feet"),
  23643. weight: math.unit(175, "lb"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/luka-bryzant/front.svg",
  23647. extra: 311 / 289,
  23648. bottom: 4 / 315
  23649. }
  23650. },
  23651. back: {
  23652. height: math.unit(6 + 4 / 12, "feet"),
  23653. weight: math.unit(175, "lb"),
  23654. name: "Back",
  23655. image: {
  23656. source: "./media/characters/luka-bryzant/back.svg",
  23657. extra: 311 / 289,
  23658. bottom: 3.8 / 313.7
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Micro",
  23665. height: math.unit(10, "inches")
  23666. },
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(6 + 4 / 12, "feet"),
  23670. default: true
  23671. },
  23672. {
  23673. name: "Large",
  23674. height: math.unit(12, "feet")
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(5 + 7 / 12, "feet"),
  23683. weight: math.unit(185, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/aman-aquila/front.svg",
  23687. extra: 1013 / 976,
  23688. bottom: 45.6 / 1057
  23689. }
  23690. },
  23691. side: {
  23692. height: math.unit(5 + 7 / 12, "feet"),
  23693. weight: math.unit(185, "lb"),
  23694. name: "Side",
  23695. image: {
  23696. source: "./media/characters/aman-aquila/side.svg",
  23697. extra: 1054 / 1011,
  23698. bottom: 15 / 1070
  23699. }
  23700. },
  23701. back: {
  23702. height: math.unit(5 + 7 / 12, "feet"),
  23703. weight: math.unit(185, "lb"),
  23704. name: "Back",
  23705. image: {
  23706. source: "./media/characters/aman-aquila/back.svg",
  23707. extra: 1026 / 970,
  23708. bottom: 12 / 1039
  23709. }
  23710. },
  23711. head: {
  23712. height: math.unit(1.211, "feet"),
  23713. name: "Head",
  23714. image: {
  23715. source: "./media/characters/aman-aquila/head.svg",
  23716. }
  23717. },
  23718. },
  23719. [
  23720. {
  23721. name: "Minimicro",
  23722. height: math.unit(0.057, "inches")
  23723. },
  23724. {
  23725. name: "Micro",
  23726. height: math.unit(7, "inches")
  23727. },
  23728. {
  23729. name: "Mini",
  23730. height: math.unit(3 + 7 / 12, "feet")
  23731. },
  23732. {
  23733. name: "Normal",
  23734. height: math.unit(5 + 7 / 12, "feet"),
  23735. default: true
  23736. },
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(157 + 7 / 12, "feet")
  23740. },
  23741. {
  23742. name: "Megamacro",
  23743. height: math.unit(1557 + 7 / 12, "feet")
  23744. },
  23745. {
  23746. name: "Gigamacro",
  23747. height: math.unit(15557 + 7 / 12, "feet")
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(3 + 2 / 12, "inches"),
  23756. weight: math.unit(0.3, "ounces"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/hiphae/front.svg",
  23760. extra: 1931 / 1683,
  23761. bottom: 24 / 1955
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Normal",
  23768. height: math.unit(3 + 1 / 2, "inches"),
  23769. default: true
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23775. {
  23776. front: {
  23777. height: math.unit(5 + 10 / 12, "feet"),
  23778. weight: math.unit(165, "lb"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/nicky/front.svg",
  23782. extra: 3144 / 2886,
  23783. bottom: 45.6 / 3192
  23784. }
  23785. },
  23786. back: {
  23787. height: math.unit(5 + 10 / 12, "feet"),
  23788. weight: math.unit(165, "lb"),
  23789. name: "Back",
  23790. image: {
  23791. source: "./media/characters/nicky/back.svg",
  23792. extra: 3055 / 2804,
  23793. bottom: 28.4 / 3087
  23794. }
  23795. },
  23796. frontclothed: {
  23797. height: math.unit(5 + 10 / 12, "feet"),
  23798. weight: math.unit(165, "lb"),
  23799. name: "Front-clothed",
  23800. image: {
  23801. source: "./media/characters/nicky/front-clothed.svg",
  23802. extra: 3184.9 / 2926.9,
  23803. bottom: 86.5 / 3239.9
  23804. }
  23805. },
  23806. foot: {
  23807. height: math.unit(1.16, "feet"),
  23808. name: "Foot",
  23809. image: {
  23810. source: "./media/characters/nicky/foot.svg"
  23811. }
  23812. },
  23813. feet: {
  23814. height: math.unit(1.34, "feet"),
  23815. name: "Feet",
  23816. image: {
  23817. source: "./media/characters/nicky/feet.svg"
  23818. }
  23819. },
  23820. maw: {
  23821. height: math.unit(0.9, "feet"),
  23822. name: "Maw",
  23823. image: {
  23824. source: "./media/characters/nicky/maw.svg"
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(5 + 10 / 12, "feet"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(60, "feet")
  23837. },
  23838. {
  23839. name: "Megamacro",
  23840. height: math.unit(1, "mile")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23846. {
  23847. side: {
  23848. height: math.unit(10, "feet"),
  23849. weight: math.unit(600, "lb"),
  23850. name: "Side",
  23851. image: {
  23852. source: "./media/characters/blair/side.svg",
  23853. bottom: 16.6 / 475,
  23854. extra: 458 / 431
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Micro",
  23861. height: math.unit(8, "inches")
  23862. },
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(10, "feet"),
  23866. default: true
  23867. },
  23868. {
  23869. name: "Macro",
  23870. height: math.unit(180, "feet")
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23876. {
  23877. front: {
  23878. height: math.unit(5 + 4 / 12, "feet"),
  23879. weight: math.unit(125, "lb"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/fisher/front.svg",
  23883. extra: 444 / 390,
  23884. bottom: 2 / 444.8
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Micro",
  23891. height: math.unit(4, "inches")
  23892. },
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(5 + 4 / 12, "feet"),
  23896. default: true
  23897. },
  23898. {
  23899. name: "Macro",
  23900. height: math.unit(100, "feet")
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(6.71, "feet"),
  23909. weight: math.unit(200, "lb"),
  23910. capacity: math.unit(1000000, "people"),
  23911. name: "Front",
  23912. image: {
  23913. source: "./media/characters/gliss/front.svg",
  23914. extra: 2347 / 2231,
  23915. bottom: 113 / 2462
  23916. }
  23917. },
  23918. hammerspaceSize: {
  23919. height: math.unit(6.71 * 717, "feet"),
  23920. weight: math.unit(200, "lb"),
  23921. capacity: math.unit(1000000, "people"),
  23922. name: "Hammerspace Size",
  23923. image: {
  23924. source: "./media/characters/gliss/front.svg",
  23925. extra: 2347 / 2231,
  23926. bottom: 113 / 2462
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Normal",
  23933. height: math.unit(6.71, "feet"),
  23934. default: true
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23940. {
  23941. side: {
  23942. height: math.unit(1.44, "m"),
  23943. weight: math.unit(80, "kg"),
  23944. name: "Side",
  23945. image: {
  23946. source: "./media/characters/dune-anderson/side.svg",
  23947. bottom: 49 / 1426
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Wolf-sized",
  23954. height: math.unit(1.44, "meters")
  23955. },
  23956. {
  23957. name: "Normal",
  23958. height: math.unit(5.05, "meters"),
  23959. default: true
  23960. },
  23961. {
  23962. name: "Big",
  23963. height: math.unit(14.4, "meters")
  23964. },
  23965. {
  23966. name: "Huge",
  23967. height: math.unit(144, "meters")
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23973. {
  23974. front: {
  23975. height: math.unit(7, "feet"),
  23976. weight: math.unit(425, "lb"),
  23977. name: "Front",
  23978. image: {
  23979. source: "./media/characters/hind/front.svg",
  23980. extra: 2091 / 1860,
  23981. bottom: 129 / 2220
  23982. }
  23983. },
  23984. back: {
  23985. height: math.unit(7, "feet"),
  23986. weight: math.unit(425, "lb"),
  23987. name: "Back",
  23988. image: {
  23989. source: "./media/characters/hind/back.svg",
  23990. extra: 2091 / 1860,
  23991. bottom: 24.6 / 2309
  23992. }
  23993. },
  23994. tail: {
  23995. height: math.unit(2.8, "feet"),
  23996. name: "Tail",
  23997. image: {
  23998. source: "./media/characters/hind/tail.svg"
  23999. }
  24000. },
  24001. head: {
  24002. height: math.unit(2.55, "feet"),
  24003. name: "Head",
  24004. image: {
  24005. source: "./media/characters/hind/head.svg"
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "XS",
  24012. height: math.unit(0.7, "feet")
  24013. },
  24014. {
  24015. name: "Normal",
  24016. height: math.unit(7, "feet"),
  24017. default: true
  24018. },
  24019. {
  24020. name: "XL",
  24021. height: math.unit(70, "feet")
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24027. {
  24028. front: {
  24029. height: math.unit(6, "feet"),
  24030. weight: math.unit(150, "lb"),
  24031. name: "Front",
  24032. image: {
  24033. source: "./media/characters/dylan-skaven/front.svg",
  24034. extra: 2318 / 2063,
  24035. bottom: 93.4 / 2410
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Nano",
  24042. height: math.unit(1, "mm")
  24043. },
  24044. {
  24045. name: "Micro",
  24046. height: math.unit(1, "cm")
  24047. },
  24048. {
  24049. name: "Normal",
  24050. height: math.unit(2.1, "meters"),
  24051. default: true
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24057. {
  24058. front: {
  24059. height: math.unit(7 + 5 / 12, "feet"),
  24060. weight: math.unit(357, "lb"),
  24061. name: "Front",
  24062. image: {
  24063. source: "./media/characters/solex-draconov/front.svg",
  24064. extra: 1993 / 1865,
  24065. bottom: 117 / 2111
  24066. }
  24067. },
  24068. },
  24069. [
  24070. {
  24071. name: "Natural Height",
  24072. height: math.unit(7 + 5 / 12, "feet"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "Macro",
  24077. height: math.unit(350, "feet")
  24078. },
  24079. {
  24080. name: "Macro+",
  24081. height: math.unit(1000, "feet")
  24082. },
  24083. {
  24084. name: "Megamacro",
  24085. height: math.unit(20, "km")
  24086. },
  24087. {
  24088. name: "Megamacro+",
  24089. height: math.unit(1000, "km")
  24090. },
  24091. {
  24092. name: "Gigamacro",
  24093. height: math.unit(2.5, "Gm")
  24094. },
  24095. {
  24096. name: "Teramacro",
  24097. height: math.unit(15, "Tm")
  24098. },
  24099. {
  24100. name: "Galactic",
  24101. height: math.unit(30, "Zm")
  24102. },
  24103. {
  24104. name: "Universal",
  24105. height: math.unit(21000, "Ym")
  24106. },
  24107. {
  24108. name: "Omniversal",
  24109. height: math.unit(9.861e50, "Ym")
  24110. },
  24111. {
  24112. name: "Existential",
  24113. height: math.unit(1e300, "meters")
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24119. {
  24120. side: {
  24121. height: math.unit(25, "feet"),
  24122. weight: math.unit(90000, "lb"),
  24123. name: "Side",
  24124. image: {
  24125. source: "./media/characters/mandarax/side.svg",
  24126. extra: 614 / 332,
  24127. bottom: 55 / 630
  24128. }
  24129. },
  24130. head: {
  24131. height: math.unit(11.4, "feet"),
  24132. name: "Head",
  24133. image: {
  24134. source: "./media/characters/mandarax/head.svg"
  24135. }
  24136. },
  24137. belly: {
  24138. height: math.unit(33, "feet"),
  24139. name: "Belly",
  24140. capacity: math.unit(500, "people"),
  24141. image: {
  24142. source: "./media/characters/mandarax/belly.svg"
  24143. }
  24144. },
  24145. dick: {
  24146. height: math.unit(8.46, "feet"),
  24147. name: "Dick",
  24148. image: {
  24149. source: "./media/characters/mandarax/dick.svg"
  24150. }
  24151. },
  24152. top: {
  24153. height: math.unit(28, "meters"),
  24154. name: "Top",
  24155. image: {
  24156. source: "./media/characters/mandarax/top.svg"
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(25, "feet"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(5, "feet"),
  24173. weight: math.unit(90, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/pixil/front.svg",
  24177. extra: 2000 / 1618,
  24178. bottom: 12.3 / 2011
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(5, "feet"),
  24186. default: true
  24187. },
  24188. {
  24189. name: "Megamacro",
  24190. height: math.unit(10, "miles"),
  24191. },
  24192. ]
  24193. ))
  24194. characterMakers.push(() => makeCharacter(
  24195. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24196. {
  24197. front: {
  24198. height: math.unit(7 + 2 / 12, "feet"),
  24199. weight: math.unit(200, "lb"),
  24200. name: "Front",
  24201. image: {
  24202. source: "./media/characters/angel/front.svg",
  24203. extra: 1830 / 1737,
  24204. bottom: 22.6 / 1854,
  24205. }
  24206. },
  24207. },
  24208. [
  24209. {
  24210. name: "Normal",
  24211. height: math.unit(7 + 2 / 12, "feet"),
  24212. default: true
  24213. },
  24214. {
  24215. name: "Macro",
  24216. height: math.unit(1000, "feet")
  24217. },
  24218. {
  24219. name: "Megamacro",
  24220. height: math.unit(2, "miles")
  24221. },
  24222. {
  24223. name: "Gigamacro",
  24224. height: math.unit(20, "earths")
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(5, "feet"),
  24233. weight: math.unit(180, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/mekana/front.svg",
  24237. extra: 1671 / 1605,
  24238. bottom: 3.5 / 1691
  24239. }
  24240. },
  24241. side: {
  24242. height: math.unit(5, "feet"),
  24243. weight: math.unit(180, "lb"),
  24244. name: "Side",
  24245. image: {
  24246. source: "./media/characters/mekana/side.svg",
  24247. extra: 1671 / 1605,
  24248. bottom: 3.5 / 1691
  24249. }
  24250. },
  24251. back: {
  24252. height: math.unit(5, "feet"),
  24253. weight: math.unit(180, "lb"),
  24254. name: "Back",
  24255. image: {
  24256. source: "./media/characters/mekana/back.svg",
  24257. extra: 1671 / 1605,
  24258. bottom: 3.5 / 1691
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(5, "feet"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(4 + 6 / 12, "feet"),
  24275. weight: math.unit(80, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/pixie/front.svg",
  24279. extra: 1924 / 1825,
  24280. bottom: 22.4 / 1946
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Normal",
  24287. height: math.unit(4 + 6 / 12, "feet"),
  24288. default: true
  24289. },
  24290. {
  24291. name: "Macro",
  24292. height: math.unit(40, "feet")
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24298. {
  24299. front: {
  24300. height: math.unit(2.1, "meters"),
  24301. weight: math.unit(200, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/the-lascivious/front.svg",
  24305. extra: 1 / 0.893,
  24306. bottom: 3.5 / 573.7
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Human Scale",
  24313. height: math.unit(2.1, "meters")
  24314. },
  24315. {
  24316. name: "Wolxi Scale",
  24317. height: math.unit(46.2, "m"),
  24318. default: true
  24319. },
  24320. {
  24321. name: "Boinker of Buildings",
  24322. height: math.unit(10, "km")
  24323. },
  24324. {
  24325. name: "Shagger of Skyscrapers",
  24326. height: math.unit(40, "km")
  24327. },
  24328. {
  24329. name: "Banger of Boroughs",
  24330. height: math.unit(4000, "km")
  24331. },
  24332. {
  24333. name: "Screwer of States",
  24334. height: math.unit(100000, "km")
  24335. },
  24336. {
  24337. name: "Pounder of Planets",
  24338. height: math.unit(2000000, "km")
  24339. },
  24340. ]
  24341. ))
  24342. characterMakers.push(() => makeCharacter(
  24343. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24344. {
  24345. front: {
  24346. height: math.unit(6, "feet"),
  24347. weight: math.unit(150, "lb"),
  24348. name: "Front",
  24349. image: {
  24350. source: "./media/characters/aj/front.svg",
  24351. extra: 2039 / 1562,
  24352. bottom: 40 / 2079
  24353. }
  24354. },
  24355. },
  24356. [
  24357. {
  24358. name: "Normal",
  24359. height: math.unit(11 + 6 / 12, "feet"),
  24360. default: true
  24361. },
  24362. {
  24363. name: "Megamacro",
  24364. height: math.unit(60, "megameters")
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24370. {
  24371. side: {
  24372. height: math.unit(31 + 8 / 12, "feet"),
  24373. weight: math.unit(75000, "kg"),
  24374. name: "Side",
  24375. image: {
  24376. source: "./media/characters/koros/side.svg",
  24377. extra: 1442 / 1297,
  24378. bottom: 122.7 / 1562
  24379. }
  24380. },
  24381. dicksKingsCrown: {
  24382. height: math.unit(6, "feet"),
  24383. name: "Dicks (King's Crown)",
  24384. image: {
  24385. source: "./media/characters/koros/dicks-kings-crown.svg"
  24386. }
  24387. },
  24388. dicksTailSet: {
  24389. height: math.unit(3, "feet"),
  24390. name: "Dicks (Tail Set)",
  24391. image: {
  24392. source: "./media/characters/koros/dicks-tail-set.svg"
  24393. }
  24394. },
  24395. dickCumming: {
  24396. height: math.unit(7.98, "feet"),
  24397. name: "Dick (Cumming)",
  24398. image: {
  24399. source: "./media/characters/koros/dick-cumming.svg"
  24400. }
  24401. },
  24402. dicksBack: {
  24403. height: math.unit(5.9, "feet"),
  24404. name: "Dicks (Back)",
  24405. image: {
  24406. source: "./media/characters/koros/dicks-back.svg"
  24407. }
  24408. },
  24409. dicksFront: {
  24410. height: math.unit(3.72, "feet"),
  24411. name: "Dicks (Front)",
  24412. image: {
  24413. source: "./media/characters/koros/dicks-front.svg"
  24414. }
  24415. },
  24416. dicksPeeking: {
  24417. height: math.unit(3.0, "feet"),
  24418. name: "Dicks (Peeking)",
  24419. image: {
  24420. source: "./media/characters/koros/dicks-peeking.svg"
  24421. }
  24422. },
  24423. eye: {
  24424. height: math.unit(1.7, "feet"),
  24425. name: "Eye",
  24426. image: {
  24427. source: "./media/characters/koros/eye.svg"
  24428. }
  24429. },
  24430. headFront: {
  24431. height: math.unit(11.69, "feet"),
  24432. name: "Head (Front)",
  24433. image: {
  24434. source: "./media/characters/koros/head-front.svg"
  24435. }
  24436. },
  24437. headSide: {
  24438. height: math.unit(14, "feet"),
  24439. name: "Head (Side)",
  24440. image: {
  24441. source: "./media/characters/koros/head-side.svg"
  24442. }
  24443. },
  24444. leg: {
  24445. height: math.unit(17, "feet"),
  24446. name: "Leg",
  24447. image: {
  24448. source: "./media/characters/koros/leg.svg"
  24449. }
  24450. },
  24451. mawSide: {
  24452. height: math.unit(12.8, "feet"),
  24453. name: "Maw (Side)",
  24454. image: {
  24455. source: "./media/characters/koros/maw-side.svg"
  24456. }
  24457. },
  24458. mawSpitting: {
  24459. height: math.unit(17, "feet"),
  24460. name: "Maw (Spitting)",
  24461. image: {
  24462. source: "./media/characters/koros/maw-spitting.svg"
  24463. }
  24464. },
  24465. slit: {
  24466. height: math.unit(2.8, "feet"),
  24467. name: "Slit",
  24468. image: {
  24469. source: "./media/characters/koros/slit.svg"
  24470. }
  24471. },
  24472. stomach: {
  24473. height: math.unit(6.8, "feet"),
  24474. capacity: math.unit(20, "people"),
  24475. name: "Stomach",
  24476. image: {
  24477. source: "./media/characters/koros/stomach.svg"
  24478. }
  24479. },
  24480. wingspanBottom: {
  24481. height: math.unit(114, "feet"),
  24482. name: "Wingspan (Bottom)",
  24483. image: {
  24484. source: "./media/characters/koros/wingspan-bottom.svg"
  24485. }
  24486. },
  24487. wingspanTop: {
  24488. height: math.unit(104, "feet"),
  24489. name: "Wingspan (Top)",
  24490. image: {
  24491. source: "./media/characters/koros/wingspan-top.svg"
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(31 + 8 / 12, "feet"),
  24499. default: true
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(18 + 5 / 12, "feet"),
  24508. weight: math.unit(3750, "kg"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/vexx/front.svg",
  24512. extra: 426 / 396,
  24513. bottom: 31.5 / 458
  24514. }
  24515. },
  24516. maw: {
  24517. height: math.unit(6, "feet"),
  24518. name: "Maw",
  24519. image: {
  24520. source: "./media/characters/vexx/maw.svg"
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Normal",
  24527. height: math.unit(18 + 5 / 12, "feet"),
  24528. default: true
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24534. {
  24535. front: {
  24536. height: math.unit(17 + 6 / 12, "feet"),
  24537. weight: math.unit(150, "lb"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/baadra/front.svg",
  24541. extra: 3137 / 2890,
  24542. bottom: 168.4 / 3305
  24543. }
  24544. },
  24545. back: {
  24546. height: math.unit(17 + 6 / 12, "feet"),
  24547. weight: math.unit(150, "lb"),
  24548. name: "Back",
  24549. image: {
  24550. source: "./media/characters/baadra/back.svg",
  24551. extra: 3142 / 2890,
  24552. bottom: 220 / 3371
  24553. }
  24554. },
  24555. head: {
  24556. height: math.unit(5.45, "feet"),
  24557. name: "Head",
  24558. image: {
  24559. source: "./media/characters/baadra/head.svg"
  24560. }
  24561. },
  24562. headAngry: {
  24563. height: math.unit(4.95, "feet"),
  24564. name: "Head (Angry)",
  24565. image: {
  24566. source: "./media/characters/baadra/head-angry.svg"
  24567. }
  24568. },
  24569. headOpen: {
  24570. height: math.unit(6, "feet"),
  24571. name: "Head (Open)",
  24572. image: {
  24573. source: "./media/characters/baadra/head-open.svg"
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(17 + 6 / 12, "feet"),
  24581. default: true
  24582. },
  24583. ]
  24584. ))
  24585. characterMakers.push(() => makeCharacter(
  24586. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24587. {
  24588. front: {
  24589. height: math.unit(7 + 3 / 12, "feet"),
  24590. weight: math.unit(180, "lb"),
  24591. name: "Front",
  24592. image: {
  24593. source: "./media/characters/juri/front.svg",
  24594. extra: 1401 / 1237,
  24595. bottom: 18.5 / 1418
  24596. }
  24597. },
  24598. side: {
  24599. height: math.unit(7 + 3 / 12, "feet"),
  24600. weight: math.unit(180, "lb"),
  24601. name: "Side",
  24602. image: {
  24603. source: "./media/characters/juri/side.svg",
  24604. extra: 1424 / 1242,
  24605. bottom: 18.5 / 1447
  24606. }
  24607. },
  24608. sitting: {
  24609. height: math.unit(6, "feet"),
  24610. weight: math.unit(180, "lb"),
  24611. name: "Sitting",
  24612. image: {
  24613. source: "./media/characters/juri/sitting.svg",
  24614. extra: 1270 / 1143,
  24615. bottom: 100 / 1343
  24616. }
  24617. },
  24618. back: {
  24619. height: math.unit(7 + 3 / 12, "feet"),
  24620. weight: math.unit(180, "lb"),
  24621. name: "Back",
  24622. image: {
  24623. source: "./media/characters/juri/back.svg",
  24624. extra: 1377 / 1240,
  24625. bottom: 23.7 / 1405
  24626. }
  24627. },
  24628. maw: {
  24629. height: math.unit(2.8, "feet"),
  24630. name: "Maw",
  24631. image: {
  24632. source: "./media/characters/juri/maw.svg"
  24633. }
  24634. },
  24635. stomach: {
  24636. height: math.unit(0.89, "feet"),
  24637. capacity: math.unit(4, "liters"),
  24638. name: "Stomach",
  24639. image: {
  24640. source: "./media/characters/juri/stomach.svg"
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(7 + 3 / 12, "feet"),
  24648. default: true
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24654. {
  24655. fox: {
  24656. height: math.unit(5 + 6 / 12, "feet"),
  24657. weight: math.unit(140, "lb"),
  24658. name: "Fox",
  24659. image: {
  24660. source: "./media/characters/maxene-sita/fox.svg",
  24661. extra: 146 / 138,
  24662. bottom: 2.1 / 148.19
  24663. }
  24664. },
  24665. kitsune: {
  24666. height: math.unit(10, "feet"),
  24667. weight: math.unit(800, "lb"),
  24668. name: "Kitsune",
  24669. image: {
  24670. source: "./media/characters/maxene-sita/kitsune.svg",
  24671. extra: 185 / 176,
  24672. bottom: 4.7 / 189.9
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(5 + 6 / 12, "feet"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24686. {
  24687. front: {
  24688. height: math.unit(3 + 4 / 12, "feet"),
  24689. weight: math.unit(70, "lb"),
  24690. name: "Front",
  24691. image: {
  24692. source: "./media/characters/maia/front.svg",
  24693. extra: 227 / 219.5,
  24694. bottom: 40 / 267
  24695. }
  24696. },
  24697. back: {
  24698. height: math.unit(3 + 4 / 12, "feet"),
  24699. weight: math.unit(70, "lb"),
  24700. name: "Back",
  24701. image: {
  24702. source: "./media/characters/maia/back.svg",
  24703. extra: 237 / 225
  24704. }
  24705. },
  24706. },
  24707. [
  24708. {
  24709. name: "Normal",
  24710. height: math.unit(3 + 4 / 12, "feet"),
  24711. default: true
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(5 + 10 / 12, "feet"),
  24720. weight: math.unit(197, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/jabaro/front.svg",
  24724. extra: 225 / 216,
  24725. bottom: 5.06 / 230
  24726. }
  24727. },
  24728. back: {
  24729. height: math.unit(5 + 10 / 12, "feet"),
  24730. weight: math.unit(197, "lb"),
  24731. name: "Back",
  24732. image: {
  24733. source: "./media/characters/jabaro/back.svg",
  24734. extra: 225 / 219,
  24735. bottom: 1.9 / 227
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(5 + 10 / 12, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(5 + 8 / 12, "feet"),
  24752. weight: math.unit(139, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/risa/front.svg",
  24756. extra: 270 / 260,
  24757. bottom: 11.2 / 282
  24758. }
  24759. },
  24760. back: {
  24761. height: math.unit(5 + 8 / 12, "feet"),
  24762. weight: math.unit(139, "lb"),
  24763. name: "Back",
  24764. image: {
  24765. source: "./media/characters/risa/back.svg",
  24766. extra: 264 / 255,
  24767. bottom: 4 / 268
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(5 + 8 / 12, "feet"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(2 + 11 / 12, "feet"),
  24784. weight: math.unit(30, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/weatley/front.svg",
  24788. bottom: 10.7 / 414,
  24789. extra: 403.5 / 362
  24790. }
  24791. },
  24792. back: {
  24793. height: math.unit(2 + 11 / 12, "feet"),
  24794. weight: math.unit(30, "lb"),
  24795. name: "Back",
  24796. image: {
  24797. source: "./media/characters/weatley/back.svg",
  24798. bottom: 10.7 / 414,
  24799. extra: 403.5 / 362
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Normal",
  24806. height: math.unit(2 + 11 / 12, "feet"),
  24807. default: true
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(5 + 2 / 12, "feet"),
  24816. weight: math.unit(50, "kg"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/mercury-crescent/front.svg",
  24820. extra: 1088 / 1033,
  24821. bottom: 18.9 / 1109
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(5 + 2 / 12, "feet"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(2, "feet"),
  24838. weight: math.unit(15, "kg"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/diamond-jones/front.svg",
  24842. bottom: 16 / 568
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Normal",
  24849. height: math.unit(2, "feet"),
  24850. default: true
  24851. },
  24852. ]
  24853. ))
  24854. characterMakers.push(() => makeCharacter(
  24855. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24856. {
  24857. front: {
  24858. height: math.unit(3, "feet"),
  24859. weight: math.unit(30, "kg"),
  24860. name: "Front",
  24861. image: {
  24862. source: "./media/characters/sweet-bit/front.svg",
  24863. extra: 675 / 567,
  24864. bottom: 27.7 / 703
  24865. }
  24866. },
  24867. },
  24868. [
  24869. {
  24870. name: "Normal",
  24871. height: math.unit(3, "feet"),
  24872. default: true
  24873. },
  24874. ]
  24875. ))
  24876. characterMakers.push(() => makeCharacter(
  24877. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24878. {
  24879. side: {
  24880. height: math.unit(9.178, "feet"),
  24881. weight: math.unit(500, "lb"),
  24882. name: "Side",
  24883. image: {
  24884. source: "./media/characters/umbrazen/side.svg",
  24885. extra: 1730 / 1473,
  24886. bottom: 34.6 / 1765
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(9.178, "feet"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(10, "feet"),
  24903. weight: math.unit(750, "lb"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/arlist/front.svg",
  24907. extra: 961 / 778,
  24908. bottom: 6.2 / 986
  24909. }
  24910. },
  24911. },
  24912. [
  24913. {
  24914. name: "Normal",
  24915. height: math.unit(10, "feet"),
  24916. default: true
  24917. },
  24918. ]
  24919. ))
  24920. characterMakers.push(() => makeCharacter(
  24921. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24922. {
  24923. front: {
  24924. height: math.unit(5 + 1 / 12, "feet"),
  24925. weight: math.unit(110, "lb"),
  24926. name: "Front",
  24927. image: {
  24928. source: "./media/characters/aradel/front.svg",
  24929. extra: 324 / 303,
  24930. bottom: 3.6 / 329.4
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(5 + 1 / 12, "feet"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(3 + 8 / 12, "feet"),
  24947. weight: math.unit(50, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/serryn/front.svg",
  24951. extra: 1792 / 1656,
  24952. bottom: 43.5 / 1840
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(3 + 8 / 12, "feet"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Xavier Thyme" },
  24966. {
  24967. front: {
  24968. height: math.unit(7 + 10 / 12, "feet"),
  24969. weight: math.unit(255, "lb"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/xavier-thyme/front.svg",
  24973. extra: 3733 / 3642,
  24974. bottom: 131 / 3869
  24975. }
  24976. },
  24977. frontRaven: {
  24978. height: math.unit(7 + 10 / 12, "feet"),
  24979. weight: math.unit(255, "lb"),
  24980. name: "Front (Raven)",
  24981. image: {
  24982. source: "./media/characters/xavier-thyme/front-raven.svg",
  24983. extra: 4385 / 3642,
  24984. bottom: 131 / 4517
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(7 + 10 / 12, "feet"),
  24992. default: true
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24998. {
  24999. front: {
  25000. height: math.unit(1.6, "m"),
  25001. weight: math.unit(50, "kg"),
  25002. name: "Front",
  25003. image: {
  25004. source: "./media/characters/kiki/front.svg",
  25005. extra: 4682 / 3610,
  25006. bottom: 115 / 4777
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(1.6, "meters"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25020. {
  25021. front: {
  25022. height: math.unit(50, "m"),
  25023. weight: math.unit(500, "tonnes"),
  25024. name: "Front",
  25025. image: {
  25026. source: "./media/characters/ryoko/front.svg",
  25027. extra: 4632 / 3926,
  25028. bottom: 193 / 4823
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(50, "meters"),
  25036. default: true
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25042. {
  25043. front: {
  25044. height: math.unit(30, "m"),
  25045. weight: math.unit(22, "tonnes"),
  25046. name: "Front",
  25047. image: {
  25048. source: "./media/characters/elio/front.svg",
  25049. extra: 4582 / 3720,
  25050. bottom: 236 / 4828
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(30, "meters"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(6 + 3 / 12, "feet"),
  25067. weight: math.unit(120, "lb"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/azura/front.svg",
  25071. extra: 1149 / 1135,
  25072. bottom: 45 / 1194
  25073. }
  25074. },
  25075. frontClothed: {
  25076. height: math.unit(6 + 3 / 12, "feet"),
  25077. weight: math.unit(120, "lb"),
  25078. name: "Front (Clothed)",
  25079. image: {
  25080. source: "./media/characters/azura/front-clothed.svg",
  25081. extra: 1149 / 1135,
  25082. bottom: 45 / 1194
  25083. }
  25084. },
  25085. },
  25086. [
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(6 + 3 / 12, "feet"),
  25090. default: true
  25091. },
  25092. {
  25093. name: "Macro",
  25094. height: math.unit(20 + 6 / 12, "feet")
  25095. },
  25096. {
  25097. name: "Megamacro",
  25098. height: math.unit(12, "miles")
  25099. },
  25100. {
  25101. name: "Gigamacro",
  25102. height: math.unit(10000, "miles")
  25103. },
  25104. {
  25105. name: "Teramacro",
  25106. height: math.unit(900000, "miles")
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(12, "feet"),
  25115. weight: math.unit(1, "ton"),
  25116. capacity: math.unit(660000, "gallons"),
  25117. name: "Front",
  25118. image: {
  25119. source: "./media/characters/zeus/front.svg",
  25120. extra: 5005 / 4717,
  25121. bottom: 363 / 5388
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(12, "feet")
  25129. },
  25130. {
  25131. name: "Preferred Size",
  25132. height: math.unit(0.5, "miles"),
  25133. default: true
  25134. },
  25135. {
  25136. name: "Giga Horse",
  25137. height: math.unit(300, "miles")
  25138. },
  25139. {
  25140. name: "Riding Planets",
  25141. height: math.unit(30, "megameters")
  25142. },
  25143. {
  25144. name: "Cosmic Giant",
  25145. height: math.unit(3, "zettameters")
  25146. },
  25147. {
  25148. name: "Breeding God",
  25149. height: math.unit(9.92e22, "yottameters")
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25155. {
  25156. side: {
  25157. height: math.unit(9, "feet"),
  25158. weight: math.unit(1500, "kg"),
  25159. name: "Side",
  25160. image: {
  25161. source: "./media/characters/fang/side.svg",
  25162. extra: 924 / 866,
  25163. bottom: 47.5 / 972.3
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(9, "feet"),
  25171. default: true
  25172. },
  25173. {
  25174. name: "Macro",
  25175. height: math.unit(75 + 6 / 12, "feet")
  25176. },
  25177. {
  25178. name: "Teramacro",
  25179. height: math.unit(50000, "miles")
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(10, "feet"),
  25188. weight: math.unit(2, "tons"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/rekhit/front.svg",
  25192. extra: 2796 / 2590,
  25193. bottom: 225 / 3022
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(10, "feet"),
  25201. default: true
  25202. },
  25203. {
  25204. name: "Macro",
  25205. height: math.unit(500, "feet")
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Dahlia Verrick" },
  25211. {
  25212. front: {
  25213. height: math.unit(7 + 6.451 / 12, "feet"),
  25214. weight: math.unit(310, "lb"),
  25215. name: "Front",
  25216. image: {
  25217. source: "./media/characters/dahlia-verrick/front.svg",
  25218. extra: 1488 / 1365,
  25219. bottom: 6.2 / 1495
  25220. }
  25221. },
  25222. back: {
  25223. height: math.unit(7 + 6.451 / 12, "feet"),
  25224. weight: math.unit(310, "lb"),
  25225. name: "Back",
  25226. image: {
  25227. source: "./media/characters/dahlia-verrick/back.svg",
  25228. extra: 1472 / 1351,
  25229. bottom: 5.28 / 1477
  25230. }
  25231. },
  25232. frontBusiness: {
  25233. height: math.unit(7 + 6.451 / 12, "feet"),
  25234. weight: math.unit(200, "lb"),
  25235. name: "Front (Business)",
  25236. image: {
  25237. source: "./media/characters/dahlia-verrick/front-business.svg",
  25238. extra: 1478 / 1381,
  25239. bottom: 5.5 / 1484
  25240. }
  25241. },
  25242. frontCasual: {
  25243. height: math.unit(7 + 6.451 / 12, "feet"),
  25244. weight: math.unit(200, "lb"),
  25245. name: "Front (Casual)",
  25246. image: {
  25247. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25248. extra: 1478 / 1381,
  25249. bottom: 5.5 / 1484
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Travel-Sized",
  25256. height: math.unit(7.45, "inches")
  25257. },
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(7 + 6.451 / 12, "feet"),
  25261. default: true
  25262. },
  25263. {
  25264. name: "Hitting the Town",
  25265. height: math.unit(37 + 8 / 12, "feet")
  25266. },
  25267. {
  25268. name: "Stomp in the Suburbs",
  25269. height: math.unit(964 + 9.728 / 12, "feet")
  25270. },
  25271. {
  25272. name: "Sit on the City",
  25273. height: math.unit(61747 + 10.592 / 12, "feet")
  25274. },
  25275. {
  25276. name: "Glomp the Globe",
  25277. height: math.unit(252919327 + 4.832 / 12, "feet")
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25283. {
  25284. front: {
  25285. height: math.unit(6 + 4 / 12, "feet"),
  25286. weight: math.unit(320, "lb"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/balina-mahigan/front.svg",
  25290. extra: 447 / 428,
  25291. bottom: 18 / 466
  25292. }
  25293. },
  25294. back: {
  25295. height: math.unit(6 + 4 / 12, "feet"),
  25296. weight: math.unit(320, "lb"),
  25297. name: "Back",
  25298. image: {
  25299. source: "./media/characters/balina-mahigan/back.svg",
  25300. extra: 445 / 428,
  25301. bottom: 4.07 / 448
  25302. }
  25303. },
  25304. arm: {
  25305. height: math.unit(1.88, "feet"),
  25306. name: "Arm",
  25307. image: {
  25308. source: "./media/characters/balina-mahigan/arm.svg"
  25309. }
  25310. },
  25311. backPort: {
  25312. height: math.unit(0.685, "feet"),
  25313. name: "Back Port",
  25314. image: {
  25315. source: "./media/characters/balina-mahigan/back-port.svg"
  25316. }
  25317. },
  25318. hoofpaw: {
  25319. height: math.unit(1.41, "feet"),
  25320. name: "Hoofpaw",
  25321. image: {
  25322. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25323. }
  25324. },
  25325. leftHandBack: {
  25326. height: math.unit(0.938, "feet"),
  25327. name: "Left Hand (Back)",
  25328. image: {
  25329. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25330. }
  25331. },
  25332. leftHandFront: {
  25333. height: math.unit(0.938, "feet"),
  25334. name: "Left Hand (Front)",
  25335. image: {
  25336. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25337. }
  25338. },
  25339. rightHandBack: {
  25340. height: math.unit(0.95, "feet"),
  25341. name: "Right Hand (Back)",
  25342. image: {
  25343. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25344. }
  25345. },
  25346. rightHandFront: {
  25347. height: math.unit(0.95, "feet"),
  25348. name: "Right Hand (Front)",
  25349. image: {
  25350. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(6 + 4 / 12, "feet"),
  25358. default: true
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(6, "feet"),
  25367. weight: math.unit(320, "lb"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/balina-mejeri/front.svg",
  25371. extra: 517 / 488,
  25372. bottom: 44.2 / 561
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(6 + 4 / 12, "feet")
  25380. },
  25381. {
  25382. name: "Business",
  25383. height: math.unit(155, "feet"),
  25384. default: true
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25390. {
  25391. kneeling: {
  25392. height: math.unit(6 + 4 / 12, "feet"),
  25393. weight: math.unit(300 * 20, "lb"),
  25394. name: "Kneeling",
  25395. image: {
  25396. source: "./media/characters/balbarian/kneeling.svg",
  25397. extra: 922 / 862,
  25398. bottom: 42.4 / 965
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Normal",
  25405. height: math.unit(6 + 4 / 12, "feet")
  25406. },
  25407. {
  25408. name: "Treasured",
  25409. height: math.unit(18 + 9 / 12, "feet"),
  25410. default: true
  25411. },
  25412. {
  25413. name: "Macro",
  25414. height: math.unit(900, "feet")
  25415. },
  25416. ]
  25417. ))
  25418. characterMakers.push(() => makeCharacter(
  25419. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25420. {
  25421. front: {
  25422. height: math.unit(6 + 4 / 12, "feet"),
  25423. weight: math.unit(325, "lb"),
  25424. name: "Front",
  25425. image: {
  25426. source: "./media/characters/balina-amarini/front.svg",
  25427. extra: 415 / 403,
  25428. bottom: 19 / 433.4
  25429. }
  25430. },
  25431. back: {
  25432. height: math.unit(6 + 4 / 12, "feet"),
  25433. weight: math.unit(325, "lb"),
  25434. name: "Back",
  25435. image: {
  25436. source: "./media/characters/balina-amarini/back.svg",
  25437. extra: 415 / 403,
  25438. bottom: 13.5 / 432
  25439. }
  25440. },
  25441. overdrive: {
  25442. height: math.unit(6 + 4 / 12, "feet"),
  25443. weight: math.unit(400, "lb"),
  25444. name: "Overdrive",
  25445. image: {
  25446. source: "./media/characters/balina-amarini/overdrive.svg",
  25447. extra: 269 / 259,
  25448. bottom: 12 / 282
  25449. }
  25450. },
  25451. },
  25452. [
  25453. {
  25454. name: "Boom",
  25455. height: math.unit(9 + 10 / 12, "feet"),
  25456. default: true
  25457. },
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(280, "feet")
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25466. {
  25467. goddess: {
  25468. height: math.unit(600, "feet"),
  25469. weight: math.unit(2000000, "tons"),
  25470. name: "Goddess",
  25471. image: {
  25472. source: "./media/characters/lady-kubwa/goddess.svg",
  25473. extra: 1240.5 / 1223,
  25474. bottom: 22 / 1263
  25475. }
  25476. },
  25477. goddesser: {
  25478. height: math.unit(900, "feet"),
  25479. weight: math.unit(20000000, "lb"),
  25480. name: "Goddess-er",
  25481. image: {
  25482. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25483. extra: 899 / 888,
  25484. bottom: 12.6 / 912
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Macro",
  25491. height: math.unit(600, "feet"),
  25492. default: true
  25493. },
  25494. {
  25495. name: "Megamacro",
  25496. height: math.unit(250, "miles")
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25502. {
  25503. front: {
  25504. height: math.unit(7 + 7 / 12, "feet"),
  25505. weight: math.unit(250, "lb"),
  25506. name: "Front",
  25507. image: {
  25508. source: "./media/characters/tala-grovehorn/front.svg",
  25509. extra: 2636 / 2525,
  25510. bottom: 147 / 2781
  25511. }
  25512. },
  25513. back: {
  25514. height: math.unit(7 + 7 / 12, "feet"),
  25515. weight: math.unit(250, "lb"),
  25516. name: "Back",
  25517. image: {
  25518. source: "./media/characters/tala-grovehorn/back.svg",
  25519. extra: 2635 / 2539,
  25520. bottom: 100 / 2732.8
  25521. }
  25522. },
  25523. mouth: {
  25524. height: math.unit(1.15, "feet"),
  25525. name: "Mouth",
  25526. image: {
  25527. source: "./media/characters/tala-grovehorn/mouth.svg"
  25528. }
  25529. },
  25530. dick: {
  25531. height: math.unit(2.36, "feet"),
  25532. name: "Dick",
  25533. image: {
  25534. source: "./media/characters/tala-grovehorn/dick.svg"
  25535. }
  25536. },
  25537. slit: {
  25538. height: math.unit(0.61, "feet"),
  25539. name: "Slit",
  25540. image: {
  25541. source: "./media/characters/tala-grovehorn/slit.svg"
  25542. }
  25543. },
  25544. },
  25545. [
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(7 + 7 / 12, "feet"),
  25553. weight: math.unit(225, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/epona/front.svg",
  25557. extra: 2445 / 2290,
  25558. bottom: 251 / 2696
  25559. }
  25560. },
  25561. back: {
  25562. height: math.unit(7 + 7 / 12, "feet"),
  25563. weight: math.unit(225, "lb"),
  25564. name: "Back",
  25565. image: {
  25566. source: "./media/characters/epona/back.svg",
  25567. extra: 2546 / 2408,
  25568. bottom: 44 / 2589
  25569. }
  25570. },
  25571. genitals: {
  25572. height: math.unit(1.5, "feet"),
  25573. name: "Genitals",
  25574. image: {
  25575. source: "./media/characters/epona/genitals.svg"
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Normal",
  25582. height: math.unit(7 + 7 / 12, "feet")
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(7, "feet"),
  25591. weight: math.unit(518, "lb"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/avia-bloodbourn/front.svg",
  25595. extra: 1466 / 1350,
  25596. bottom: 65 / 1527
  25597. }
  25598. },
  25599. },
  25600. [
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(9.35, "feet"),
  25608. weight: math.unit(600, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/amera/front.svg",
  25612. extra: 891 / 818,
  25613. bottom: 30 / 922.7
  25614. }
  25615. },
  25616. back: {
  25617. height: math.unit(9.35, "feet"),
  25618. weight: math.unit(600, "lb"),
  25619. name: "Back",
  25620. image: {
  25621. source: "./media/characters/amera/back.svg",
  25622. extra: 876 / 824,
  25623. bottom: 6.8 / 884
  25624. }
  25625. },
  25626. dick: {
  25627. height: math.unit(2.14, "feet"),
  25628. name: "Dick",
  25629. image: {
  25630. source: "./media/characters/amera/dick.svg"
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(9.35, "feet"),
  25638. default: true
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25644. {
  25645. kneeling: {
  25646. height: math.unit(3 + 4 / 12, "feet"),
  25647. weight: math.unit(90, "lb"),
  25648. name: "Kneeling",
  25649. image: {
  25650. source: "./media/characters/rosewen/kneeling.svg",
  25651. extra: 1835 / 1571,
  25652. bottom: 27.7 / 1862
  25653. }
  25654. },
  25655. },
  25656. [
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(3 + 4 / 12, "feet"),
  25660. default: true
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25666. {
  25667. front: {
  25668. height: math.unit(5 + 10 / 12, "feet"),
  25669. weight: math.unit(200, "lb"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/sabah/front.svg",
  25673. extra: 849 / 763,
  25674. bottom: 33.9 / 881
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(5 + 10 / 12, "feet"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25688. {
  25689. front: {
  25690. height: math.unit(3 + 5 / 12, "feet"),
  25691. weight: math.unit(40, "kg"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/purple-flame/front.svg",
  25695. extra: 1577 / 1412,
  25696. bottom: 97 / 1694
  25697. }
  25698. },
  25699. frontDressed: {
  25700. height: math.unit(3 + 5 / 12, "feet"),
  25701. weight: math.unit(40, "kg"),
  25702. name: "Front (Dressed)",
  25703. image: {
  25704. source: "./media/characters/purple-flame/front-dressed.svg",
  25705. extra: 1577 / 1412,
  25706. bottom: 97 / 1694
  25707. }
  25708. },
  25709. headphones: {
  25710. height: math.unit(0.85, "feet"),
  25711. name: "Headphones",
  25712. image: {
  25713. source: "./media/characters/purple-flame/headphones.svg"
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Really Small",
  25720. height: math.unit(5, "cm")
  25721. },
  25722. {
  25723. name: "Micro",
  25724. height: math.unit(1 + 5 / 12, "feet")
  25725. },
  25726. {
  25727. name: "Normal",
  25728. height: math.unit(3 + 5 / 12, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Minimacro",
  25733. height: math.unit(125, "feet")
  25734. },
  25735. {
  25736. name: "Macro",
  25737. height: math.unit(0.5, "miles")
  25738. },
  25739. {
  25740. name: "Megamacro",
  25741. height: math.unit(50, "miles")
  25742. },
  25743. {
  25744. name: "Gigantic",
  25745. height: math.unit(750, "miles")
  25746. },
  25747. {
  25748. name: "Planetary",
  25749. height: math.unit(15000, "miles")
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(14, "feet"),
  25758. weight: math.unit(959, "lb"),
  25759. name: "Front",
  25760. image: {
  25761. source: "./media/characters/arsenal/front.svg",
  25762. extra: 2357 / 2157,
  25763. bottom: 93 / 2458
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(14, "feet"),
  25771. default: true
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(6, "feet"),
  25780. weight: math.unit(150, "lb"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/adira/front.svg",
  25784. extra: 1078 / 1029,
  25785. bottom: 87 / 1166
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Micro",
  25792. height: math.unit(4, "inches"),
  25793. default: true
  25794. },
  25795. {
  25796. name: "Macro",
  25797. height: math.unit(50, "feet")
  25798. },
  25799. ]
  25800. ))
  25801. characterMakers.push(() => makeCharacter(
  25802. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25803. {
  25804. front: {
  25805. height: math.unit(16, "feet"),
  25806. weight: math.unit(1000, "lb"),
  25807. name: "Front",
  25808. image: {
  25809. source: "./media/characters/grim/front.svg",
  25810. extra: 622 / 614,
  25811. bottom: 18.1 / 642
  25812. }
  25813. },
  25814. back: {
  25815. height: math.unit(16, "feet"),
  25816. weight: math.unit(1000, "lb"),
  25817. name: "Back",
  25818. image: {
  25819. source: "./media/characters/grim/back.svg",
  25820. extra: 610.6 / 602,
  25821. bottom: 40.8 / 652
  25822. }
  25823. },
  25824. hunched: {
  25825. height: math.unit(9.75, "feet"),
  25826. weight: math.unit(1000, "lb"),
  25827. name: "Hunched",
  25828. image: {
  25829. source: "./media/characters/grim/hunched.svg",
  25830. extra: 304 / 297,
  25831. bottom: 35.4 / 394
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Normal",
  25838. height: math.unit(16, "feet"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(2.3, "meters"),
  25848. weight: math.unit(300, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/sinja/front-sfw.svg",
  25852. extra: 1393 / 1294,
  25853. bottom: 70 / 1463
  25854. }
  25855. },
  25856. frontNsfw: {
  25857. height: math.unit(2.3, "meters"),
  25858. weight: math.unit(300, "lb"),
  25859. name: "Front (NSFW)",
  25860. image: {
  25861. source: "./media/characters/sinja/front-nsfw.svg",
  25862. extra: 1393 / 1294,
  25863. bottom: 70 / 1463
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(2.3, "meters"),
  25868. weight: math.unit(300, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/sinja/back.svg",
  25872. extra: 1393 / 1294,
  25873. bottom: 70 / 1463
  25874. }
  25875. },
  25876. head: {
  25877. height: math.unit(1.771, "feet"),
  25878. name: "Head",
  25879. image: {
  25880. source: "./media/characters/sinja/head.svg"
  25881. }
  25882. },
  25883. slit: {
  25884. height: math.unit(0.8, "feet"),
  25885. name: "Slit",
  25886. image: {
  25887. source: "./media/characters/sinja/slit.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(2.3, "meters")
  25895. },
  25896. {
  25897. name: "Macro",
  25898. height: math.unit(91, "meters"),
  25899. default: true
  25900. },
  25901. {
  25902. name: "Megamacro",
  25903. height: math.unit(91440, "meters")
  25904. },
  25905. {
  25906. name: "Gigamacro",
  25907. height: math.unit(60960000, "meters")
  25908. },
  25909. {
  25910. name: "Teramacro",
  25911. height: math.unit(9144000000, "meters")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(1.7, "meters"),
  25920. weight: math.unit(130, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/kyu/front.svg",
  25924. extra: 415 / 395,
  25925. bottom: 5 / 420
  25926. }
  25927. },
  25928. head: {
  25929. height: math.unit(1.75, "feet"),
  25930. name: "Head",
  25931. image: {
  25932. source: "./media/characters/kyu/head.svg"
  25933. }
  25934. },
  25935. foot: {
  25936. height: math.unit(0.81, "feet"),
  25937. name: "Foot",
  25938. image: {
  25939. source: "./media/characters/kyu/foot.svg"
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(1.7, "meters")
  25947. },
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(131, "feet"),
  25951. default: true
  25952. },
  25953. {
  25954. name: "Megamacro",
  25955. height: math.unit(91440, "meters")
  25956. },
  25957. {
  25958. name: "Gigamacro",
  25959. height: math.unit(60960000, "meters")
  25960. },
  25961. {
  25962. name: "Teramacro",
  25963. height: math.unit(9144000000, "meters")
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(7 + 1 / 12, "feet"),
  25972. weight: math.unit(250, "lb"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/joey/front.svg",
  25976. extra: 1791 / 1537,
  25977. bottom: 28 / 1816
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Micro",
  25984. height: math.unit(3, "inches")
  25985. },
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(7 + 1 / 12, "feet"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(165, "cm"),
  25998. weight: math.unit(140, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/sam-evans/front.svg",
  26002. extra: 3417 / 3230,
  26003. bottom: 41.3 / 3417
  26004. }
  26005. },
  26006. frontSixTails: {
  26007. height: math.unit(165, "cm"),
  26008. weight: math.unit(140, "lb"),
  26009. name: "Front-six-tails",
  26010. image: {
  26011. source: "./media/characters/sam-evans/front-six-tails.svg",
  26012. extra: 3417 / 3230,
  26013. bottom: 41.3 / 3417
  26014. }
  26015. },
  26016. back: {
  26017. height: math.unit(165, "cm"),
  26018. weight: math.unit(140, "lb"),
  26019. name: "Back",
  26020. image: {
  26021. source: "./media/characters/sam-evans/back.svg",
  26022. extra: 3227 / 3032,
  26023. bottom: 6.8 / 3234
  26024. }
  26025. },
  26026. face: {
  26027. height: math.unit(0.68, "feet"),
  26028. name: "Face",
  26029. image: {
  26030. source: "./media/characters/sam-evans/face.svg"
  26031. }
  26032. },
  26033. },
  26034. [
  26035. {
  26036. name: "Normal",
  26037. height: math.unit(165, "cm"),
  26038. default: true
  26039. },
  26040. {
  26041. name: "Macro",
  26042. height: math.unit(100, "meters")
  26043. },
  26044. {
  26045. name: "Macro+",
  26046. height: math.unit(800, "meters")
  26047. },
  26048. {
  26049. name: "Macro++",
  26050. height: math.unit(3, "km")
  26051. },
  26052. {
  26053. name: "Macro+++",
  26054. height: math.unit(30, "km")
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26060. {
  26061. front: {
  26062. height: math.unit(10, "feet"),
  26063. weight: math.unit(750, "lb"),
  26064. name: "Front",
  26065. image: {
  26066. source: "./media/characters/juliet-a/front.svg",
  26067. extra: 1766 / 1720,
  26068. bottom: 43 / 1809
  26069. }
  26070. },
  26071. back: {
  26072. height: math.unit(10, "feet"),
  26073. weight: math.unit(750, "lb"),
  26074. name: "Back",
  26075. image: {
  26076. source: "./media/characters/juliet-a/back.svg",
  26077. extra: 1781 / 1734,
  26078. bottom: 35 / 1810,
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Normal",
  26085. height: math.unit(10, "feet"),
  26086. default: true
  26087. },
  26088. {
  26089. name: "Dragon Form",
  26090. height: math.unit(250, "feet")
  26091. },
  26092. {
  26093. name: "Macro",
  26094. height: math.unit(1000, "feet")
  26095. },
  26096. {
  26097. name: "Megamacro",
  26098. height: math.unit(10000, "feet")
  26099. }
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26104. {
  26105. regular: {
  26106. height: math.unit(7 + 3 / 12, "feet"),
  26107. weight: math.unit(260, "lb"),
  26108. name: "Regular",
  26109. image: {
  26110. source: "./media/characters/wild/regular.svg",
  26111. extra: 97.45 / 92,
  26112. bottom: 6.8 / 104.3
  26113. }
  26114. },
  26115. biggums: {
  26116. height: math.unit(8 + 6 / 12, "feet"),
  26117. weight: math.unit(425, "lb"),
  26118. name: "Biggums",
  26119. image: {
  26120. source: "./media/characters/wild/biggums.svg",
  26121. extra: 97.45 / 92,
  26122. bottom: 7.5 / 132.34
  26123. }
  26124. },
  26125. mawRegular: {
  26126. height: math.unit(1.24, "feet"),
  26127. name: "Maw (Regular)",
  26128. image: {
  26129. source: "./media/characters/wild/maw.svg"
  26130. }
  26131. },
  26132. mawBiggums: {
  26133. height: math.unit(1.47, "feet"),
  26134. name: "Maw (Biggums)",
  26135. image: {
  26136. source: "./media/characters/wild/maw.svg"
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(7 + 3 / 12, "feet"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26150. {
  26151. front: {
  26152. height: math.unit(2.5, "meters"),
  26153. weight: math.unit(200, "kg"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/vidar/front.svg",
  26157. extra: 2994 / 2795,
  26158. bottom: 56 / 3061
  26159. }
  26160. },
  26161. back: {
  26162. height: math.unit(2.5, "meters"),
  26163. weight: math.unit(200, "kg"),
  26164. name: "Back",
  26165. image: {
  26166. source: "./media/characters/vidar/back.svg",
  26167. extra: 3131 / 2928,
  26168. bottom: 13.5 / 3141.5
  26169. }
  26170. },
  26171. feral: {
  26172. height: math.unit(2.5, "meters"),
  26173. weight: math.unit(2000, "kg"),
  26174. name: "Feral",
  26175. image: {
  26176. source: "./media/characters/vidar/feral.svg",
  26177. extra: 2790 / 1765,
  26178. bottom: 6 / 2796
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(2.5, "meters"),
  26186. default: true
  26187. },
  26188. {
  26189. name: "Macro",
  26190. height: math.unit(100, "meters")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(5 + 9 / 12, "feet"),
  26199. weight: math.unit(120, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/ash/front.svg",
  26203. extra: 2189 / 1961,
  26204. bottom: 5.2 / 2194
  26205. }
  26206. },
  26207. },
  26208. [
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(5 + 9 / 12, "feet"),
  26212. default: true
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26218. {
  26219. front: {
  26220. height: math.unit(9, "feet"),
  26221. weight: math.unit(10000, "lb"),
  26222. name: "Front",
  26223. image: {
  26224. source: "./media/characters/gygabite/front.svg",
  26225. bottom: 31.7 / 537.8,
  26226. extra: 505 / 370
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(9, "feet"),
  26234. default: true
  26235. },
  26236. ]
  26237. ))
  26238. characterMakers.push(() => makeCharacter(
  26239. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26240. {
  26241. front: {
  26242. height: math.unit(12, "feet"),
  26243. weight: math.unit(35000, "lb"),
  26244. name: "Front",
  26245. image: {
  26246. source: "./media/characters/p0tat0/front.svg",
  26247. extra: 1065 / 921,
  26248. bottom: 55.7 / 1121.25
  26249. }
  26250. },
  26251. },
  26252. [
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(12, "feet"),
  26256. default: true
  26257. },
  26258. ]
  26259. ))
  26260. characterMakers.push(() => makeCharacter(
  26261. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26262. {
  26263. side: {
  26264. height: math.unit(6.5, "feet"),
  26265. weight: math.unit(800, "lb"),
  26266. name: "Side",
  26267. image: {
  26268. source: "./media/characters/dusk/side.svg",
  26269. extra: 615 / 373,
  26270. bottom: 53 / 664
  26271. }
  26272. },
  26273. sitting: {
  26274. height: math.unit(7, "feet"),
  26275. weight: math.unit(800, "lb"),
  26276. name: "Sitting",
  26277. image: {
  26278. source: "./media/characters/dusk/sitting.svg",
  26279. extra: 753 / 425,
  26280. bottom: 33 / 774
  26281. }
  26282. },
  26283. head: {
  26284. height: math.unit(6.1, "feet"),
  26285. name: "Head",
  26286. image: {
  26287. source: "./media/characters/dusk/head.svg"
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Normal",
  26294. height: math.unit(7, "feet"),
  26295. default: true
  26296. },
  26297. ]
  26298. ))
  26299. characterMakers.push(() => makeCharacter(
  26300. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26301. {
  26302. front: {
  26303. height: math.unit(15, "feet"),
  26304. weight: math.unit(7000, "lb"),
  26305. name: "Front",
  26306. image: {
  26307. source: "./media/characters/jay-direwolf/front.svg",
  26308. extra: 1810 / 1732,
  26309. bottom: 66 / 1892
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(15, "feet"),
  26317. default: true
  26318. },
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26323. {
  26324. front: {
  26325. height: math.unit(4 + 9 / 12, "feet"),
  26326. weight: math.unit(130, "lb"),
  26327. name: "Front",
  26328. image: {
  26329. source: "./media/characters/anchovie/front.svg",
  26330. extra: 382 / 350,
  26331. bottom: 25 / 409
  26332. }
  26333. },
  26334. back: {
  26335. height: math.unit(4 + 9 / 12, "feet"),
  26336. weight: math.unit(130, "lb"),
  26337. name: "Back",
  26338. image: {
  26339. source: "./media/characters/anchovie/back.svg",
  26340. extra: 385 / 352,
  26341. bottom: 16.6 / 402
  26342. }
  26343. },
  26344. frontDressed: {
  26345. height: math.unit(4 + 9 / 12, "feet"),
  26346. weight: math.unit(130, "lb"),
  26347. name: "Front (Dressed)",
  26348. image: {
  26349. source: "./media/characters/anchovie/front-dressed.svg",
  26350. extra: 382 / 350,
  26351. bottom: 25 / 409
  26352. }
  26353. },
  26354. backDressed: {
  26355. height: math.unit(4 + 9 / 12, "feet"),
  26356. weight: math.unit(130, "lb"),
  26357. name: "Back (Dressed)",
  26358. image: {
  26359. source: "./media/characters/anchovie/back-dressed.svg",
  26360. extra: 385 / 352,
  26361. bottom: 16.6 / 402
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Micro",
  26368. height: math.unit(6.4, "inches")
  26369. },
  26370. {
  26371. name: "Normal",
  26372. height: math.unit(4 + 9 / 12, "feet"),
  26373. default: true
  26374. },
  26375. ]
  26376. ))
  26377. characterMakers.push(() => makeCharacter(
  26378. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26379. {
  26380. front: {
  26381. height: math.unit(2, "meters"),
  26382. weight: math.unit(180, "lb"),
  26383. name: "Front",
  26384. image: {
  26385. source: "./media/characters/acidrenamon/front.svg",
  26386. extra: 987 / 890,
  26387. bottom: 22.8 / 1009
  26388. }
  26389. },
  26390. back: {
  26391. height: math.unit(2, "meters"),
  26392. weight: math.unit(180, "lb"),
  26393. name: "Back",
  26394. image: {
  26395. source: "./media/characters/acidrenamon/back.svg",
  26396. extra: 983 / 891,
  26397. bottom: 8.4 / 992
  26398. }
  26399. },
  26400. head: {
  26401. height: math.unit(1.92, "feet"),
  26402. name: "Head",
  26403. image: {
  26404. source: "./media/characters/acidrenamon/head.svg"
  26405. }
  26406. },
  26407. rump: {
  26408. height: math.unit(1.72, "feet"),
  26409. name: "Rump",
  26410. image: {
  26411. source: "./media/characters/acidrenamon/rump.svg"
  26412. }
  26413. },
  26414. tail: {
  26415. height: math.unit(4.2, "feet"),
  26416. name: "Tail",
  26417. image: {
  26418. source: "./media/characters/acidrenamon/tail.svg"
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(2, "meters"),
  26426. default: true
  26427. },
  26428. {
  26429. name: "Minimacro",
  26430. height: math.unit(7, "meters")
  26431. },
  26432. {
  26433. name: "Macro",
  26434. height: math.unit(200, "meters")
  26435. },
  26436. {
  26437. name: "Gigamacro",
  26438. height: math.unit(0.2, "earths")
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26444. {
  26445. front: {
  26446. height: math.unit(6, "feet"),
  26447. weight: math.unit(150, "lb"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/kenzie-lee/front.svg",
  26451. extra: 1525 / 1465,
  26452. bottom: 45 / 1570
  26453. }
  26454. },
  26455. side: {
  26456. height: math.unit(6, "feet"),
  26457. weight: math.unit(150, "lb"),
  26458. name: "Side",
  26459. image: {
  26460. source: "./media/characters/kenzie-lee/side.svg",
  26461. extra: 5505 / 5383,
  26462. bottom: 60 / 5573
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(152, "feet"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Megamacro",
  26474. height: math.unit(7, "miles")
  26475. },
  26476. {
  26477. name: "Gigamacro",
  26478. height: math.unit(8000, "miles")
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26484. {
  26485. side: {
  26486. height: math.unit(6, "feet"),
  26487. weight: math.unit(150, "lb"),
  26488. name: "Side",
  26489. image: {
  26490. source: "./media/characters/withers/side.svg",
  26491. extra: 1830 / 1728,
  26492. bottom: 96 / 1927
  26493. }
  26494. },
  26495. front: {
  26496. height: math.unit(6, "feet"),
  26497. weight: math.unit(150, "lb"),
  26498. name: "Front",
  26499. image: {
  26500. source: "./media/characters/withers/front.svg",
  26501. extra: 1514 / 1438,
  26502. bottom: 118 / 1632
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(6, "feet")
  26510. },
  26511. {
  26512. name: "Macro",
  26513. height: math.unit(50, "feet")
  26514. },
  26515. {
  26516. name: "Megamacro",
  26517. height: math.unit(15, "miles"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "Megamacro+",
  26522. height: math.unit(100, "km")
  26523. },
  26524. {
  26525. name: "Gigamacro",
  26526. height: math.unit(4750, "miles")
  26527. },
  26528. {
  26529. name: "Gigamacro+",
  26530. height: math.unit(32000, "miles")
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(6 + 7 / 12, "feet"),
  26539. weight: math.unit(250, "lb"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/nemoskii/front.svg",
  26543. extra: 2270 / 1734,
  26544. bottom: 86 / 2354
  26545. }
  26546. },
  26547. back: {
  26548. height: math.unit(6 + 7 / 12, "feet"),
  26549. weight: math.unit(250, "lb"),
  26550. name: "Back",
  26551. image: {
  26552. source: "./media/characters/nemoskii/back.svg",
  26553. extra: 1845 / 1788,
  26554. bottom: 10.5 / 1852
  26555. }
  26556. },
  26557. head: {
  26558. height: math.unit(1.31, "feet"),
  26559. name: "Head",
  26560. image: {
  26561. source: "./media/characters/nemoskii/head.svg"
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(6 + 7 / 12, "feet"),
  26569. default: true
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(1, "mile"),
  26578. weight: math.unit(265261.9, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/shui/front.svg",
  26582. extra: 1633 / 1564,
  26583. bottom: 91.5 / 1726
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(1, "mile"),
  26591. default: true
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26597. {
  26598. front: {
  26599. height: math.unit(12 + 6 / 12, "feet"),
  26600. weight: math.unit(1342, "lb"),
  26601. name: "Front",
  26602. image: {
  26603. source: "./media/characters/arokh-takakura/front.svg",
  26604. extra: 1089 / 1043,
  26605. bottom: 77.4 / 1176.7
  26606. }
  26607. },
  26608. back: {
  26609. height: math.unit(12 + 6 / 12, "feet"),
  26610. weight: math.unit(1342, "lb"),
  26611. name: "Back",
  26612. image: {
  26613. source: "./media/characters/arokh-takakura/back.svg",
  26614. extra: 1046 / 1019,
  26615. bottom: 102 / 1150
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Big",
  26622. height: math.unit(12 + 6 / 12, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(5 + 6 / 12, "feet"),
  26632. weight: math.unit(150, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/theo/front.svg",
  26636. extra: 1184 / 1131,
  26637. bottom: 7.4 / 1191
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Micro",
  26644. height: math.unit(5, "inches")
  26645. },
  26646. {
  26647. name: "Normal",
  26648. height: math.unit(5 + 6 / 12, "feet"),
  26649. default: true
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(5 + 9 / 12, "feet"),
  26658. weight: math.unit(130, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/cecelia-swift/front.svg",
  26662. extra: 502 / 484,
  26663. bottom: 23 / 523
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(5 + 9 / 12, "feet"),
  26668. weight: math.unit(130, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/cecelia-swift/back.svg",
  26672. extra: 499 / 485,
  26673. bottom: 12 / 511
  26674. }
  26675. },
  26676. head: {
  26677. height: math.unit(0.90, "feet"),
  26678. name: "Head",
  26679. image: {
  26680. source: "./media/characters/cecelia-swift/head.svg"
  26681. }
  26682. },
  26683. rump: {
  26684. height: math.unit(1.75, "feet"),
  26685. name: "Rump",
  26686. image: {
  26687. source: "./media/characters/cecelia-swift/rump.svg"
  26688. }
  26689. },
  26690. },
  26691. [
  26692. {
  26693. name: "Normal",
  26694. height: math.unit(5 + 9 / 12, "feet"),
  26695. default: true
  26696. },
  26697. {
  26698. name: "Big",
  26699. height: math.unit(50, "feet")
  26700. },
  26701. {
  26702. name: "Macro",
  26703. height: math.unit(100, "feet")
  26704. },
  26705. {
  26706. name: "Macro+",
  26707. height: math.unit(500, "feet")
  26708. },
  26709. {
  26710. name: "Macro++",
  26711. height: math.unit(1000, "feet")
  26712. },
  26713. ]
  26714. ))
  26715. characterMakers.push(() => makeCharacter(
  26716. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26717. {
  26718. front: {
  26719. height: math.unit(6, "feet"),
  26720. weight: math.unit(150, "lb"),
  26721. name: "Front",
  26722. image: {
  26723. source: "./media/characters/kaunan/front.svg",
  26724. extra: 2890 / 2523,
  26725. bottom: 49 / 2939
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Macro",
  26732. height: math.unit(150, "feet"),
  26733. default: true
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(175, "cm"),
  26742. weight: math.unit(60, "kg"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/fei/front.svg",
  26746. extra: 2581 / 2400,
  26747. bottom: 82.2 / 2663
  26748. }
  26749. },
  26750. },
  26751. [
  26752. {
  26753. name: "Mortal",
  26754. height: math.unit(175, "cm")
  26755. },
  26756. {
  26757. name: "Normal",
  26758. height: math.unit(3500, "m"),
  26759. default: true
  26760. },
  26761. {
  26762. name: "Stroll",
  26763. height: math.unit(17.5, "km")
  26764. },
  26765. {
  26766. name: "Showoff",
  26767. height: math.unit(175, "km")
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26773. {
  26774. front: {
  26775. height: math.unit(7, "feet"),
  26776. weight: math.unit(1000, "kg"),
  26777. name: "Front",
  26778. image: {
  26779. source: "./media/characters/edrax/front.svg",
  26780. extra: 2838 / 2550,
  26781. bottom: 130 / 2968
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Small",
  26788. height: math.unit(7, "feet")
  26789. },
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(1500, "meters")
  26793. },
  26794. {
  26795. name: "Mega",
  26796. height: math.unit(12000000, "km"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Megamacro",
  26801. height: math.unit(10600000, "lightyears")
  26802. },
  26803. {
  26804. name: "Hypermacro",
  26805. height: math.unit(256, "yottameters")
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(10, "feet"),
  26814. weight: math.unit(750, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/clove/front.svg",
  26818. extra: 2031 / 1860,
  26819. bottom: 47.8 / 2080
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(10, "feet"),
  26824. weight: math.unit(750, "lb"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/clove/back.svg",
  26828. extra: 2025 / 1859,
  26829. bottom: 46 / 2071
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(10, "feet")
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(4, "feet"),
  26845. weight: math.unit(50, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/alex-rabbit/front.svg",
  26849. extra: 507 / 458,
  26850. bottom: 18.5 / 527
  26851. }
  26852. },
  26853. back: {
  26854. height: math.unit(4, "feet"),
  26855. weight: math.unit(50, "lb"),
  26856. name: "Back",
  26857. image: {
  26858. source: "./media/characters/alex-rabbit/back.svg",
  26859. extra: 502 / 460,
  26860. bottom: 18.9 / 521
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(4, "feet"),
  26868. default: true
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26874. {
  26875. front: {
  26876. height: math.unit(1 + 3 / 12, "feet"),
  26877. weight: math.unit(80, "lb"),
  26878. name: "Front",
  26879. image: {
  26880. source: "./media/characters/zander-rose/front.svg",
  26881. extra: 916 / 797,
  26882. bottom: 17 / 933
  26883. }
  26884. },
  26885. back: {
  26886. height: math.unit(1 + 3 / 12, "feet"),
  26887. weight: math.unit(80, "lb"),
  26888. name: "Back",
  26889. image: {
  26890. source: "./media/characters/zander-rose/back.svg",
  26891. extra: 903 / 779,
  26892. bottom: 31 / 934
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(1 + 3 / 12, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26906. {
  26907. anthro: {
  26908. height: math.unit(6, "feet"),
  26909. weight: math.unit(150, "lb"),
  26910. name: "Anthro",
  26911. image: {
  26912. source: "./media/characters/razz/anthro.svg",
  26913. extra: 1437 / 1343,
  26914. bottom: 48 / 1485
  26915. }
  26916. },
  26917. feral: {
  26918. height: math.unit(6, "feet"),
  26919. weight: math.unit(150, "lb"),
  26920. name: "Feral",
  26921. image: {
  26922. source: "./media/characters/razz/feral.svg",
  26923. extra: 2569 / 1385,
  26924. bottom: 95 / 2664
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(6, "feet"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26938. {
  26939. front: {
  26940. height: math.unit(9 + 4 / 12, "feet"),
  26941. weight: math.unit(500, "lb"),
  26942. name: "Front",
  26943. image: {
  26944. source: "./media/characters/morrigan/front.svg",
  26945. extra: 2707 / 2579,
  26946. bottom: 156 / 2863
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(9 + 4 / 12, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(5, "stories"),
  26963. weight: math.unit(4000, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/jenene/front.svg",
  26967. extra: 1780 / 1710,
  26968. bottom: 57 / 1837
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Normal",
  26975. height: math.unit(5, "stories"),
  26976. default: true
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(6, "feet"),
  26985. weight: math.unit(150, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/vix-archaser/front.svg",
  26989. extra: 2767 / 2562,
  26990. bottom: 36 / 2803
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Micro",
  26997. height: math.unit(1, "foot")
  26998. },
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(6 + 5 / 12, "feet")
  27002. },
  27003. {
  27004. name: "Minimacro",
  27005. height: math.unit(500, "feet")
  27006. },
  27007. {
  27008. name: "Macro",
  27009. height: math.unit(4, "miles")
  27010. },
  27011. {
  27012. name: "Megamacro",
  27013. height: math.unit(250, "miles"),
  27014. default: true
  27015. },
  27016. {
  27017. name: "Gigamacro",
  27018. height: math.unit(1, "universe")
  27019. },
  27020. {
  27021. name: "Endgame",
  27022. height: math.unit(100, "multiverses")
  27023. }
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27028. {
  27029. taurSfw: {
  27030. height: math.unit(10, "meters"),
  27031. weight: math.unit(17500, "kg"),
  27032. name: "Taur",
  27033. image: {
  27034. source: "./media/characters/faey/taur-sfw.svg",
  27035. extra: 1200 / 968,
  27036. bottom: 41 / 1241
  27037. }
  27038. },
  27039. chestmaw: {
  27040. height: math.unit(2.01, "meters"),
  27041. name: "Chestmaw",
  27042. image: {
  27043. source: "./media/characters/faey/chestmaw.svg"
  27044. }
  27045. },
  27046. foot: {
  27047. height: math.unit(2.43, "meters"),
  27048. name: "Foot",
  27049. image: {
  27050. source: "./media/characters/faey/foot.svg"
  27051. }
  27052. },
  27053. jaws: {
  27054. height: math.unit(1.66, "meters"),
  27055. name: "Jaws",
  27056. image: {
  27057. source: "./media/characters/faey/jaws.svg"
  27058. }
  27059. },
  27060. tongues: {
  27061. height: math.unit(2.01, "meters"),
  27062. name: "Tongues",
  27063. image: {
  27064. source: "./media/characters/faey/tongues.svg"
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Small",
  27071. height: math.unit(10, "meters"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Big",
  27076. height: math.unit(500000, "km")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(7, "feet"),
  27085. weight: math.unit(275, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/roku/front.svg",
  27089. extra: 903 / 878,
  27090. bottom: 37 / 940
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Normal",
  27097. height: math.unit(7, "feet"),
  27098. default: true
  27099. },
  27100. {
  27101. name: "Macro",
  27102. height: math.unit(500, "feet")
  27103. },
  27104. {
  27105. name: "Megamacro",
  27106. height: math.unit(200, "miles")
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(6 + 2 / 12, "feet"),
  27115. weight: math.unit(150, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/lira/front.svg",
  27119. extra: 1727 / 1605,
  27120. bottom: 26 / 1753
  27121. }
  27122. },
  27123. back: {
  27124. height: math.unit(6 + 2 / 12, "feet"),
  27125. weight: math.unit(150, "lb"),
  27126. name: "Back",
  27127. image: {
  27128. source: "./media/characters/lira/back.svg",
  27129. extra: 1713 / 159,
  27130. bottom: 20 / 1733
  27131. }
  27132. },
  27133. hand: {
  27134. height: math.unit(0.75, "feet"),
  27135. name: "Hand",
  27136. image: {
  27137. source: "./media/characters/lira/hand.svg"
  27138. }
  27139. },
  27140. maw: {
  27141. height: math.unit(0.65, "feet"),
  27142. name: "Maw",
  27143. image: {
  27144. source: "./media/characters/lira/maw.svg"
  27145. }
  27146. },
  27147. pawDigi: {
  27148. height: math.unit(1.6, "feet"),
  27149. name: "Paw Digi",
  27150. image: {
  27151. source: "./media/characters/lira/paw-digi.svg"
  27152. }
  27153. },
  27154. pawPlanti: {
  27155. height: math.unit(1.4, "feet"),
  27156. name: "Paw Planti",
  27157. image: {
  27158. source: "./media/characters/lira/paw-planti.svg"
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(6 + 2 / 12, "feet"),
  27166. default: true
  27167. },
  27168. {
  27169. name: "Macro",
  27170. height: math.unit(100, "feet")
  27171. },
  27172. {
  27173. name: "Macro²",
  27174. height: math.unit(1600, "feet")
  27175. },
  27176. {
  27177. name: "Planetary",
  27178. height: math.unit(20, "earths")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(6, "feet"),
  27187. weight: math.unit(150, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/hadjet/front.svg",
  27191. extra: 1480 / 1346,
  27192. bottom: 26 / 1506
  27193. }
  27194. },
  27195. frontNsfw: {
  27196. height: math.unit(6, "feet"),
  27197. weight: math.unit(150, "lb"),
  27198. name: "Front (NSFW)",
  27199. image: {
  27200. source: "./media/characters/hadjet/front-nsfw.svg",
  27201. extra: 1440 / 1358,
  27202. bottom: 52 / 1492
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Macro",
  27209. height: math.unit(10, "stories"),
  27210. default: true
  27211. },
  27212. {
  27213. name: "Megamacro",
  27214. height: math.unit(1.5, "miles")
  27215. },
  27216. {
  27217. name: "Megamacro+",
  27218. height: math.unit(5, "miles")
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27224. {
  27225. side: {
  27226. height: math.unit(106, "feet"),
  27227. weight: math.unit(500, "tonnes"),
  27228. name: "Side",
  27229. image: {
  27230. source: "./media/characters/kodran/side.svg",
  27231. extra: 553 / 480,
  27232. bottom: 33 / 586
  27233. }
  27234. },
  27235. front: {
  27236. height: math.unit(132, "feet"),
  27237. weight: math.unit(500, "tonnes"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/kodran/front.svg",
  27241. extra: 667 / 643,
  27242. bottom: 42 / 709
  27243. }
  27244. },
  27245. flying: {
  27246. height: math.unit(350, "feet"),
  27247. weight: math.unit(500, "tonnes"),
  27248. name: "Flying",
  27249. image: {
  27250. source: "./media/characters/kodran/flying.svg"
  27251. }
  27252. },
  27253. foot: {
  27254. height: math.unit(33, "feet"),
  27255. name: "Foot",
  27256. image: {
  27257. source: "./media/characters/kodran/foot.svg"
  27258. }
  27259. },
  27260. footFront: {
  27261. height: math.unit(19, "feet"),
  27262. name: "Foot (Front)",
  27263. image: {
  27264. source: "./media/characters/kodran/foot-front.svg",
  27265. extra: 261 / 261,
  27266. bottom: 91 / 352
  27267. }
  27268. },
  27269. headFront: {
  27270. height: math.unit(53, "feet"),
  27271. name: "Head (Front)",
  27272. image: {
  27273. source: "./media/characters/kodran/head-front.svg"
  27274. }
  27275. },
  27276. headSide: {
  27277. height: math.unit(65, "feet"),
  27278. name: "Head (Side)",
  27279. image: {
  27280. source: "./media/characters/kodran/head-side.svg"
  27281. }
  27282. },
  27283. throat: {
  27284. height: math.unit(79, "feet"),
  27285. name: "Throat",
  27286. image: {
  27287. source: "./media/characters/kodran/throat.svg"
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Large",
  27294. height: math.unit(106, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27301. {
  27302. side: {
  27303. height: math.unit(11, "feet"),
  27304. weight: math.unit(150, "lb"),
  27305. name: "Side",
  27306. image: {
  27307. source: "./media/characters/pyxaron/side.svg",
  27308. extra: 305 / 195,
  27309. bottom: 17 / 322
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(11, "feet")
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(6, "feet"),
  27325. weight: math.unit(150, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/meep/front.svg",
  27329. extra: 88 / 80,
  27330. bottom: 6 / 94
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Fun Sized",
  27337. height: math.unit(2, "inches"),
  27338. default: true
  27339. },
  27340. {
  27341. name: "Friend Sized",
  27342. height: math.unit(8, "inches")
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(15, "feet"),
  27351. weight: math.unit(2500, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/holly-rabbit/front.svg",
  27355. extra: 1433 / 1233,
  27356. bottom: 125 / 1558
  27357. }
  27358. },
  27359. dick: {
  27360. height: math.unit(4.6, "feet"),
  27361. name: "Dick",
  27362. image: {
  27363. source: "./media/characters/holly-rabbit/dick.svg"
  27364. }
  27365. },
  27366. },
  27367. [
  27368. {
  27369. name: "Normal",
  27370. height: math.unit(15, "feet"),
  27371. default: true
  27372. },
  27373. {
  27374. name: "Macro",
  27375. height: math.unit(250, "feet")
  27376. },
  27377. {
  27378. name: "Macro+",
  27379. height: math.unit(2500, "feet")
  27380. },
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27385. {
  27386. front: {
  27387. height: math.unit(3.02, "meters"),
  27388. weight: math.unit(500, "kg"),
  27389. name: "Front",
  27390. image: {
  27391. source: "./media/characters/drena/front.svg",
  27392. extra: 282 / 243,
  27393. bottom: 8 / 290
  27394. }
  27395. },
  27396. side: {
  27397. height: math.unit(3.02, "meters"),
  27398. weight: math.unit(500, "kg"),
  27399. name: "Side",
  27400. image: {
  27401. source: "./media/characters/drena/side.svg",
  27402. extra: 280 / 245,
  27403. bottom: 10 / 290
  27404. }
  27405. },
  27406. back: {
  27407. height: math.unit(3.02, "meters"),
  27408. weight: math.unit(500, "kg"),
  27409. name: "Back",
  27410. image: {
  27411. source: "./media/characters/drena/back.svg",
  27412. extra: 278 / 243,
  27413. bottom: 2 / 280
  27414. }
  27415. },
  27416. foot: {
  27417. height: math.unit(0.75, "meters"),
  27418. name: "Foot",
  27419. image: {
  27420. source: "./media/characters/drena/foot.svg"
  27421. }
  27422. },
  27423. maw: {
  27424. height: math.unit(0.82, "meters"),
  27425. name: "Maw",
  27426. image: {
  27427. source: "./media/characters/drena/maw.svg"
  27428. }
  27429. },
  27430. rump: {
  27431. height: math.unit(0.93, "meters"),
  27432. name: "Rump",
  27433. image: {
  27434. source: "./media/characters/drena/rump.svg"
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(3.02, "meters"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(6 + 4 / 12, "feet"),
  27451. weight: math.unit(250, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/remmyzilla/front.svg",
  27455. extra: 4033 / 3588,
  27456. bottom: 123 / 4156
  27457. }
  27458. },
  27459. back: {
  27460. height: math.unit(6 + 4 / 12, "feet"),
  27461. weight: math.unit(250, "lb"),
  27462. name: "Back",
  27463. image: {
  27464. source: "./media/characters/remmyzilla/back.svg",
  27465. extra: 2687 / 2555,
  27466. bottom: 48 / 2735
  27467. }
  27468. },
  27469. frontFancy: {
  27470. height: math.unit(6 + 4 / 12, "feet"),
  27471. weight: math.unit(250, "lb"),
  27472. name: "Front (Fancy)",
  27473. image: {
  27474. source: "./media/characters/remmyzilla/front-fancy.svg",
  27475. extra: 4119 / 3419,
  27476. bottom: 237 / 4356
  27477. }
  27478. },
  27479. paw: {
  27480. height: math.unit(1.73, "feet"),
  27481. name: "Paw",
  27482. image: {
  27483. source: "./media/characters/remmyzilla/paw.svg"
  27484. }
  27485. },
  27486. maw: {
  27487. height: math.unit(1.73, "feet"),
  27488. name: "Maw",
  27489. image: {
  27490. source: "./media/characters/remmyzilla/maw.svg"
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(6 + 4 / 12, "feet")
  27498. },
  27499. {
  27500. name: "Minimacro",
  27501. height: math.unit(12 + 8 / 12, "feet")
  27502. },
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(640, "feet"),
  27506. default: true
  27507. },
  27508. {
  27509. name: "Megamacro",
  27510. height: math.unit(6400, "feet")
  27511. },
  27512. {
  27513. name: "Gigamacro",
  27514. height: math.unit(64000, "miles")
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(2.5, "meters"),
  27523. weight: math.unit(300, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/lawrence/front.svg",
  27527. extra: 357 / 335,
  27528. bottom: 30 / 387
  27529. }
  27530. },
  27531. back: {
  27532. height: math.unit(2.5, "meters"),
  27533. weight: math.unit(300, "lb"),
  27534. name: "Back",
  27535. image: {
  27536. source: "./media/characters/lawrence/back.svg",
  27537. extra: 357 / 338,
  27538. bottom: 16 / 373
  27539. }
  27540. },
  27541. head: {
  27542. height: math.unit(0.9, "meter"),
  27543. name: "Head",
  27544. image: {
  27545. source: "./media/characters/lawrence/head.svg"
  27546. }
  27547. },
  27548. maw: {
  27549. height: math.unit(0.7, "meter"),
  27550. name: "Maw",
  27551. image: {
  27552. source: "./media/characters/lawrence/maw.svg"
  27553. }
  27554. },
  27555. footBottom: {
  27556. height: math.unit(0.5, "meter"),
  27557. name: "Foot (Bottom)",
  27558. image: {
  27559. source: "./media/characters/lawrence/foot-bottom.svg"
  27560. }
  27561. },
  27562. footTop: {
  27563. height: math.unit(0.5, "meter"),
  27564. name: "Foot (Top)",
  27565. image: {
  27566. source: "./media/characters/lawrence/foot-top.svg"
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Normal",
  27573. height: math.unit(2.5, "meters"),
  27574. default: true
  27575. },
  27576. {
  27577. name: "Macro",
  27578. height: math.unit(95, "meters")
  27579. },
  27580. {
  27581. name: "Megamacro",
  27582. height: math.unit(150, "km")
  27583. },
  27584. ]
  27585. ))
  27586. characterMakers.push(() => makeCharacter(
  27587. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27588. {
  27589. front: {
  27590. height: math.unit(4.2, "meters"),
  27591. name: "Front",
  27592. image: {
  27593. source: "./media/characters/sydney/front.svg",
  27594. extra: 1323 / 1277,
  27595. bottom: 111 / 1434
  27596. }
  27597. },
  27598. },
  27599. [
  27600. {
  27601. name: "Normal",
  27602. height: math.unit(4.2, "meters")
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27608. {
  27609. back: {
  27610. height: math.unit(201, "feet"),
  27611. name: "Back",
  27612. image: {
  27613. source: "./media/characters/jessica/back.svg",
  27614. extra: 273 / 259,
  27615. bottom: 7 / 280
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(201, "feet"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Megamacro",
  27627. height: math.unit(8, "miles")
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27633. {
  27634. side: {
  27635. height: math.unit(320, "cm"),
  27636. name: "Side",
  27637. image: {
  27638. source: "./media/characters/victoria/side.svg",
  27639. extra: 778 / 346,
  27640. bottom: 56 / 834
  27641. }
  27642. },
  27643. maw: {
  27644. height: math.unit(5.9, "feet"),
  27645. name: "Maw",
  27646. image: {
  27647. source: "./media/characters/victoria/maw.svg"
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(320, "cm"),
  27655. default: true
  27656. },
  27657. ]
  27658. ))
  27659. characterMakers.push(() => makeCharacter(
  27660. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27661. {
  27662. front: {
  27663. height: math.unit(5 + 6 / 12, "feet"),
  27664. name: "Front",
  27665. image: {
  27666. source: "./media/characters/cat/front.svg",
  27667. extra: 1374 / 1257,
  27668. bottom: 59 / 1433
  27669. }
  27670. },
  27671. back: {
  27672. height: math.unit(5 + 6 / 12, "feet"),
  27673. name: "Back",
  27674. image: {
  27675. source: "./media/characters/cat/back.svg",
  27676. extra: 1337 / 1226,
  27677. bottom: 34 / 1371
  27678. }
  27679. },
  27680. taur: {
  27681. height: math.unit(7, "feet"),
  27682. name: "Taur",
  27683. image: {
  27684. source: "./media/characters/cat/taur.svg",
  27685. extra: 1345 / 1231,
  27686. bottom: 66 / 1411
  27687. }
  27688. },
  27689. lucario: {
  27690. height: math.unit(4, "feet"),
  27691. name: "Lucario",
  27692. image: {
  27693. source: "./media/characters/cat/lucario.svg",
  27694. extra: 1470 / 1318,
  27695. bottom: 65 / 1535
  27696. }
  27697. },
  27698. megaLucario: {
  27699. height: math.unit(4, "feet"),
  27700. name: "Mega Lucario",
  27701. image: {
  27702. source: "./media/characters/cat/mega-lucario.svg",
  27703. extra: 1515 / 1319,
  27704. bottom: 63 / 1578
  27705. }
  27706. },
  27707. nickit: {
  27708. height: math.unit(2, "feet"),
  27709. name: "Nickit",
  27710. image: {
  27711. source: "./media/characters/cat/nickit.svg",
  27712. extra: 1980 / 1585,
  27713. bottom: 102 / 2082
  27714. }
  27715. },
  27716. lopunnyFront: {
  27717. height: math.unit(5, "feet"),
  27718. name: "Lopunny (Front)",
  27719. image: {
  27720. source: "./media/characters/cat/lopunny-front.svg",
  27721. extra: 1782 / 1469,
  27722. bottom: 38 / 1820
  27723. }
  27724. },
  27725. lopunnyBack: {
  27726. height: math.unit(5, "feet"),
  27727. name: "Lopunny (Back)",
  27728. image: {
  27729. source: "./media/characters/cat/lopunny-back.svg",
  27730. extra: 1660 / 1490,
  27731. bottom: 25 / 1685
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Really small",
  27738. height: math.unit(1, "nm")
  27739. },
  27740. {
  27741. name: "Micro",
  27742. height: math.unit(5, "inches")
  27743. },
  27744. {
  27745. name: "Normal",
  27746. height: math.unit(5 + 6 / 12, "feet"),
  27747. default: true
  27748. },
  27749. {
  27750. name: "Macro",
  27751. height: math.unit(50, "feet")
  27752. },
  27753. {
  27754. name: "Macro+",
  27755. height: math.unit(150, "feet")
  27756. },
  27757. {
  27758. name: "Megamacro",
  27759. height: math.unit(100, "miles")
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(63.4, "meters"),
  27768. weight: math.unit(3.28349e+6, "kilograms"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/kirina-violet/front.svg",
  27772. extra: 2812/2725,
  27773. bottom: 0/2812
  27774. }
  27775. },
  27776. back: {
  27777. height: math.unit(63.4, "meters"),
  27778. weight: math.unit(3.28349e+6, "kilograms"),
  27779. name: "Back",
  27780. image: {
  27781. source: "./media/characters/kirina-violet/back.svg",
  27782. extra: 2812/2725,
  27783. bottom: 0/2812
  27784. }
  27785. },
  27786. mouth: {
  27787. height: math.unit(4.35, "meters"),
  27788. name: "Mouth",
  27789. image: {
  27790. source: "./media/characters/kirina-violet/mouth.svg"
  27791. }
  27792. },
  27793. paw: {
  27794. height: math.unit(5.6, "meters"),
  27795. name: "Paw",
  27796. image: {
  27797. source: "./media/characters/kirina-violet/paw.svg"
  27798. }
  27799. },
  27800. tail: {
  27801. height: math.unit(18, "meters"),
  27802. name: "Tail",
  27803. image: {
  27804. source: "./media/characters/kirina-violet/tail.svg"
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Macro",
  27811. height: math.unit(63.4, "meters"),
  27812. default: true
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(60, "feet"),
  27821. name: "Front",
  27822. image: {
  27823. source: "./media/characters/cat-gigachu/front.svg",
  27824. extra: 1024/780,
  27825. bottom: 23/1047
  27826. }
  27827. },
  27828. back: {
  27829. height: math.unit(60, "feet"),
  27830. name: "Back",
  27831. image: {
  27832. source: "./media/characters/cat-gigachu/back.svg",
  27833. extra: 1024/780,
  27834. bottom: 23/1047
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Dynamax",
  27841. height: math.unit(60, "feet"),
  27842. default: true
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(6, "feet"),
  27851. weight: math.unit(150, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/sfaiyan/front.svg",
  27855. extra: 999/978,
  27856. bottom: 5/1004
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Normal",
  27863. height: math.unit(1.82, "meters")
  27864. },
  27865. {
  27866. name: "Giant",
  27867. height: math.unit(2.27, "km"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. //characters
  27873. function makeCharacters() {
  27874. const results = [];
  27875. characterMakers.forEach(character => {
  27876. results.push(character());
  27877. });
  27878. return results;
  27879. }