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

30678 строки
768 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. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. "gryphdelphais": {
  1400. name: "Gryphdelphais",
  1401. parents: ["dolphin", "gryphon"]
  1402. },
  1403. }
  1404. //species
  1405. function getSpeciesInfo(speciesList) {
  1406. let result = new Set();
  1407. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1408. result.add(entry)
  1409. });
  1410. return Array.from(result);
  1411. };
  1412. function getSpeciesInfoHelper(species) {
  1413. if (!speciesData[species]) {
  1414. console.warn(species + " doesn't exist");
  1415. return [];
  1416. }
  1417. if (speciesData[species].parents) {
  1418. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1419. } else {
  1420. return [species];
  1421. }
  1422. }
  1423. characterMakers.push(() => makeCharacter(
  1424. {
  1425. name: "Fen",
  1426. species: ["crux"],
  1427. description: {
  1428. title: "Bio",
  1429. text: "Very furry. Sheds on everything."
  1430. },
  1431. tags: [
  1432. "anthro",
  1433. "goo"
  1434. ]
  1435. },
  1436. {
  1437. back: {
  1438. height: math.unit(2.2428, "meter"),
  1439. weight: math.unit(124.738, "kg"),
  1440. name: "Back",
  1441. image: {
  1442. source: "./media/characters/fen/back.svg",
  1443. extra: 2024 / 1867,
  1444. bottom: 13 / 2037
  1445. },
  1446. info: {
  1447. description: {
  1448. mode: "append",
  1449. text: "\n\nHe is not currently looking at you."
  1450. }
  1451. }
  1452. },
  1453. full: {
  1454. height: math.unit(1.34, "meter"),
  1455. weight: math.unit(225, "kg"),
  1456. name: "Full",
  1457. image: {
  1458. source: "./media/characters/fen/full.svg"
  1459. },
  1460. info: {
  1461. description: {
  1462. mode: "append",
  1463. text: "\n\nMunch."
  1464. }
  1465. }
  1466. },
  1467. kneeling: {
  1468. height: math.unit(5.4, "feet"),
  1469. weight: math.unit(124.738, "kg"),
  1470. name: "Kneeling",
  1471. image: {
  1472. source: "./media/characters/fen/kneeling.svg",
  1473. extra: 563 / 507
  1474. }
  1475. },
  1476. goo: {
  1477. height: math.unit(2.8, "feet"),
  1478. weight: math.unit(125, "kg"),
  1479. capacity: math.unit(1, "people"),
  1480. name: "Goo",
  1481. image: {
  1482. source: "./media/characters/fen/goo.svg",
  1483. bottom: 116 / 613
  1484. }
  1485. },
  1486. lounging: {
  1487. height: math.unit(6.5, "feet"),
  1488. weight: math.unit(125, "kg"),
  1489. name: "Lounging",
  1490. image: {
  1491. source: "./media/characters/fen/lounging.svg"
  1492. }
  1493. },
  1494. },
  1495. [
  1496. {
  1497. name: "Normal",
  1498. height: math.unit(2.2428, "meter")
  1499. },
  1500. {
  1501. name: "Big",
  1502. height: math.unit(12, "feet")
  1503. },
  1504. {
  1505. name: "Minimacro",
  1506. height: math.unit(40, "feet"),
  1507. default: true,
  1508. info: {
  1509. description: {
  1510. mode: "append",
  1511. text: "\n\nTOO DAMN BIG"
  1512. }
  1513. }
  1514. },
  1515. {
  1516. name: "Macro",
  1517. height: math.unit(100, "feet"),
  1518. info: {
  1519. description: {
  1520. mode: "append",
  1521. text: "\n\nTOO DAMN BIG"
  1522. }
  1523. }
  1524. },
  1525. {
  1526. name: "Macro+",
  1527. height: math.unit(300, "feet")
  1528. },
  1529. {
  1530. name: "Megamacro",
  1531. height: math.unit(2, "miles")
  1532. }
  1533. ]
  1534. ))
  1535. characterMakers.push(() => makeCharacter(
  1536. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1537. {
  1538. front: {
  1539. height: math.unit(183, "cm"),
  1540. weight: math.unit(80, "kg"),
  1541. name: "Front",
  1542. image: {
  1543. source: "./media/characters/sofia-fluttertail/front.svg",
  1544. bottom: 0.01,
  1545. extra: 2154 / 2081
  1546. }
  1547. },
  1548. frontAlt: {
  1549. height: math.unit(183, "cm"),
  1550. weight: math.unit(80, "kg"),
  1551. name: "Front (alt)",
  1552. image: {
  1553. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1554. }
  1555. },
  1556. back: {
  1557. height: math.unit(183, "cm"),
  1558. weight: math.unit(80, "kg"),
  1559. name: "Back",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/back.svg"
  1562. }
  1563. },
  1564. kneeling: {
  1565. height: math.unit(125, "cm"),
  1566. weight: math.unit(80, "kg"),
  1567. name: "Kneeling",
  1568. image: {
  1569. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1570. extra: 1033 / 977,
  1571. bottom: 23.7 / 1057
  1572. }
  1573. },
  1574. maw: {
  1575. height: math.unit(183 / 5, "cm"),
  1576. name: "Maw",
  1577. image: {
  1578. source: "./media/characters/sofia-fluttertail/maw.svg"
  1579. }
  1580. },
  1581. mawcloseup: {
  1582. height: math.unit(183 / 5 * 0.41, "cm"),
  1583. name: "Maw (Closeup)",
  1584. image: {
  1585. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1586. }
  1587. },
  1588. paws: {
  1589. height: math.unit(1.17, "feet"),
  1590. name: "Paws",
  1591. image: {
  1592. source: "./media/characters/sofia-fluttertail/paws.svg",
  1593. extra: 851 / 851,
  1594. bottom: 17 / 868
  1595. }
  1596. },
  1597. },
  1598. [
  1599. {
  1600. name: "Normal",
  1601. height: math.unit(1.83, "meter")
  1602. },
  1603. {
  1604. name: "Size Thief",
  1605. height: math.unit(18, "feet")
  1606. },
  1607. {
  1608. name: "50 Foot Collie",
  1609. height: math.unit(50, "feet")
  1610. },
  1611. {
  1612. name: "Macro",
  1613. height: math.unit(96, "feet"),
  1614. default: true
  1615. },
  1616. {
  1617. name: "Megamerger",
  1618. height: math.unit(650, "feet")
  1619. },
  1620. ]
  1621. ))
  1622. characterMakers.push(() => makeCharacter(
  1623. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1624. {
  1625. front: {
  1626. height: math.unit(7, "feet"),
  1627. weight: math.unit(100, "kg"),
  1628. name: "Front",
  1629. image: {
  1630. source: "./media/characters/march/front.svg",
  1631. extra: 1,
  1632. bottom: 0.015
  1633. }
  1634. },
  1635. foot: {
  1636. height: math.unit(0.9, "feet"),
  1637. name: "Foot",
  1638. image: {
  1639. source: "./media/characters/march/foot.svg"
  1640. }
  1641. },
  1642. },
  1643. [
  1644. {
  1645. name: "Normal",
  1646. height: math.unit(7.9, "feet")
  1647. },
  1648. {
  1649. name: "Macro",
  1650. height: math.unit(220, "meters")
  1651. },
  1652. {
  1653. name: "Megamacro",
  1654. height: math.unit(2.98, "km"),
  1655. default: true
  1656. },
  1657. {
  1658. name: "Gigamacro",
  1659. height: math.unit(15963, "km")
  1660. },
  1661. {
  1662. name: "Teramacro",
  1663. height: math.unit(2980000000, "km")
  1664. },
  1665. {
  1666. name: "Examacro",
  1667. height: math.unit(250, "parsecs")
  1668. },
  1669. ]
  1670. ))
  1671. characterMakers.push(() => makeCharacter(
  1672. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1673. {
  1674. front: {
  1675. height: math.unit(6, "feet"),
  1676. weight: math.unit(60, "kg"),
  1677. name: "Front",
  1678. image: {
  1679. source: "./media/characters/noir/front.svg",
  1680. extra: 1,
  1681. bottom: 0.032
  1682. }
  1683. },
  1684. },
  1685. [
  1686. {
  1687. name: "Normal",
  1688. height: math.unit(6.6, "feet")
  1689. },
  1690. {
  1691. name: "Macro",
  1692. height: math.unit(500, "feet")
  1693. },
  1694. {
  1695. name: "Megamacro",
  1696. height: math.unit(2.5, "km"),
  1697. default: true
  1698. },
  1699. {
  1700. name: "Gigamacro",
  1701. height: math.unit(22500, "km")
  1702. },
  1703. {
  1704. name: "Teramacro",
  1705. height: math.unit(2500000000, "km")
  1706. },
  1707. {
  1708. name: "Examacro",
  1709. height: math.unit(200, "parsecs")
  1710. },
  1711. ]
  1712. ))
  1713. characterMakers.push(() => makeCharacter(
  1714. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1715. {
  1716. front: {
  1717. height: math.unit(7, "feet"),
  1718. weight: math.unit(100, "kg"),
  1719. name: "Front",
  1720. image: {
  1721. source: "./media/characters/okuri/front.svg",
  1722. extra: 1,
  1723. bottom: 0.037
  1724. }
  1725. },
  1726. back: {
  1727. height: math.unit(7, "feet"),
  1728. weight: math.unit(100, "kg"),
  1729. name: "Back",
  1730. image: {
  1731. source: "./media/characters/okuri/back.svg",
  1732. extra: 1,
  1733. bottom: 0.007
  1734. }
  1735. },
  1736. },
  1737. [
  1738. {
  1739. name: "Megamacro",
  1740. height: math.unit(100, "miles"),
  1741. default: true
  1742. },
  1743. ]
  1744. ))
  1745. characterMakers.push(() => makeCharacter(
  1746. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1747. {
  1748. front: {
  1749. height: math.unit(7, "feet"),
  1750. weight: math.unit(100, "kg"),
  1751. name: "Front",
  1752. image: {
  1753. source: "./media/characters/manny/front.svg",
  1754. extra: 1,
  1755. bottom: 0.06
  1756. }
  1757. },
  1758. back: {
  1759. height: math.unit(7, "feet"),
  1760. weight: math.unit(100, "kg"),
  1761. name: "Back",
  1762. image: {
  1763. source: "./media/characters/manny/back.svg",
  1764. extra: 1,
  1765. bottom: 0.014
  1766. }
  1767. },
  1768. },
  1769. [
  1770. {
  1771. name: "Normal",
  1772. height: math.unit(7, "feet"),
  1773. },
  1774. {
  1775. name: "Macro",
  1776. height: math.unit(78, "feet"),
  1777. default: true
  1778. },
  1779. {
  1780. name: "Macro+",
  1781. height: math.unit(300, "meters")
  1782. },
  1783. {
  1784. name: "Macro++",
  1785. height: math.unit(2400, "meters")
  1786. },
  1787. {
  1788. name: "Megamacro",
  1789. height: math.unit(5167, "meters")
  1790. },
  1791. {
  1792. name: "Gigamacro",
  1793. height: math.unit(41769, "miles")
  1794. },
  1795. ]
  1796. ))
  1797. characterMakers.push(() => makeCharacter(
  1798. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1799. {
  1800. front: {
  1801. height: math.unit(7, "feet"),
  1802. weight: math.unit(100, "kg"),
  1803. name: "Front",
  1804. image: {
  1805. source: "./media/characters/adake/front-1.svg"
  1806. }
  1807. },
  1808. frontAlt: {
  1809. height: math.unit(7, "feet"),
  1810. weight: math.unit(100, "kg"),
  1811. name: "Front (Alt)",
  1812. image: {
  1813. source: "./media/characters/adake/front-2.svg",
  1814. extra: 1,
  1815. bottom: 0.01
  1816. }
  1817. },
  1818. back: {
  1819. height: math.unit(7, "feet"),
  1820. weight: math.unit(100, "kg"),
  1821. name: "Back",
  1822. image: {
  1823. source: "./media/characters/adake/back.svg",
  1824. }
  1825. },
  1826. kneel: {
  1827. height: math.unit(5.385, "feet"),
  1828. weight: math.unit(100, "kg"),
  1829. name: "Kneeling",
  1830. image: {
  1831. source: "./media/characters/adake/kneel.svg",
  1832. bottom: 0.052
  1833. }
  1834. },
  1835. },
  1836. [
  1837. {
  1838. name: "Normal",
  1839. height: math.unit(7, "feet"),
  1840. },
  1841. {
  1842. name: "Macro",
  1843. height: math.unit(78, "feet"),
  1844. default: true
  1845. },
  1846. {
  1847. name: "Macro+",
  1848. height: math.unit(300, "meters")
  1849. },
  1850. {
  1851. name: "Macro++",
  1852. height: math.unit(2400, "meters")
  1853. },
  1854. {
  1855. name: "Megamacro",
  1856. height: math.unit(5167, "meters")
  1857. },
  1858. {
  1859. name: "Gigamacro",
  1860. height: math.unit(41769, "miles")
  1861. },
  1862. ]
  1863. ))
  1864. characterMakers.push(() => makeCharacter(
  1865. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1866. {
  1867. front: {
  1868. height: math.unit(1.65, "meters"),
  1869. weight: math.unit(50, "kg"),
  1870. name: "Front",
  1871. image: {
  1872. source: "./media/characters/elijah/front.svg",
  1873. extra: 858 / 830,
  1874. bottom: 95.5 / 953.8559
  1875. }
  1876. },
  1877. back: {
  1878. height: math.unit(1.65, "meters"),
  1879. weight: math.unit(50, "kg"),
  1880. name: "Back",
  1881. image: {
  1882. source: "./media/characters/elijah/back.svg",
  1883. extra: 895 / 850,
  1884. bottom: 5.3 / 897.956
  1885. }
  1886. },
  1887. frontNsfw: {
  1888. height: math.unit(1.65, "meters"),
  1889. weight: math.unit(50, "kg"),
  1890. name: "Front (NSFW)",
  1891. image: {
  1892. source: "./media/characters/elijah/front-nsfw.svg",
  1893. extra: 858 / 830,
  1894. bottom: 95.5 / 953.8559
  1895. }
  1896. },
  1897. backNsfw: {
  1898. height: math.unit(1.65, "meters"),
  1899. weight: math.unit(50, "kg"),
  1900. name: "Back (NSFW)",
  1901. image: {
  1902. source: "./media/characters/elijah/back-nsfw.svg",
  1903. extra: 895 / 850,
  1904. bottom: 5.3 / 897.956
  1905. }
  1906. },
  1907. dick: {
  1908. height: math.unit(1, "feet"),
  1909. name: "Dick",
  1910. image: {
  1911. source: "./media/characters/elijah/dick.svg"
  1912. }
  1913. },
  1914. beakOpen: {
  1915. height: math.unit(1.25, "feet"),
  1916. name: "Beak (Open)",
  1917. image: {
  1918. source: "./media/characters/elijah/beak-open.svg"
  1919. }
  1920. },
  1921. beakShut: {
  1922. height: math.unit(1.25, "feet"),
  1923. name: "Beak (Shut)",
  1924. image: {
  1925. source: "./media/characters/elijah/beak-shut.svg"
  1926. }
  1927. },
  1928. footFlexing: {
  1929. height: math.unit(1.61, "feet"),
  1930. name: "Foot (Flexing)",
  1931. image: {
  1932. source: "./media/characters/elijah/foot-flexing.svg"
  1933. }
  1934. },
  1935. footStepping: {
  1936. height: math.unit(1.44, "feet"),
  1937. name: "Foot (Stepping)",
  1938. image: {
  1939. source: "./media/characters/elijah/foot-stepping.svg"
  1940. }
  1941. },
  1942. plantigradeLeg: {
  1943. height: math.unit(2.34, "feet"),
  1944. name: "Plantigrade Leg",
  1945. image: {
  1946. source: "./media/characters/elijah/plantigrade-leg.svg"
  1947. }
  1948. },
  1949. plantigradeFootLeft: {
  1950. height: math.unit(0.9, "feet"),
  1951. name: "Plantigrade Foot (Left)",
  1952. image: {
  1953. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1954. }
  1955. },
  1956. plantigradeFootRight: {
  1957. height: math.unit(0.9, "feet"),
  1958. name: "Plantigrade Foot (Right)",
  1959. image: {
  1960. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1961. }
  1962. },
  1963. },
  1964. [
  1965. {
  1966. name: "Normal",
  1967. height: math.unit(1.65, "meters")
  1968. },
  1969. {
  1970. name: "Macro",
  1971. height: math.unit(55, "meters"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Macro+",
  1976. height: math.unit(105, "meters")
  1977. },
  1978. ]
  1979. ))
  1980. characterMakers.push(() => makeCharacter(
  1981. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1982. {
  1983. front: {
  1984. height: math.unit(11, "feet"),
  1985. weight: math.unit(80, "kg"),
  1986. name: "Front",
  1987. image: {
  1988. source: "./media/characters/rai/front.svg",
  1989. extra: 1,
  1990. bottom: 0.03
  1991. }
  1992. },
  1993. side: {
  1994. height: math.unit(11, "feet"),
  1995. weight: math.unit(80, "kg"),
  1996. name: "Side",
  1997. image: {
  1998. source: "./media/characters/rai/side.svg"
  1999. }
  2000. },
  2001. back: {
  2002. height: math.unit(11, "feet"),
  2003. weight: math.unit(80, "lb"),
  2004. name: "Back",
  2005. image: {
  2006. source: "./media/characters/rai/back.svg",
  2007. extra: 1,
  2008. bottom: 0.01
  2009. }
  2010. },
  2011. feral: {
  2012. height: math.unit(11, "feet"),
  2013. weight: math.unit(800, "lb"),
  2014. name: "Feral",
  2015. image: {
  2016. source: "./media/characters/rai/feral.svg",
  2017. extra: 1050 / 659,
  2018. bottom: 0.07
  2019. }
  2020. },
  2021. dragon: {
  2022. height: math.unit(23, "feet"),
  2023. weight: math.unit(50000, "lb"),
  2024. name: "Dragon",
  2025. image: {
  2026. source: "./media/characters/rai/dragon.svg",
  2027. extra: 2498 / 2030,
  2028. bottom: 85.2 / 2584
  2029. }
  2030. },
  2031. maw: {
  2032. height: math.unit(6 / 3.81416, "feet"),
  2033. name: "Maw",
  2034. image: {
  2035. source: "./media/characters/rai/maw.svg"
  2036. }
  2037. },
  2038. },
  2039. [
  2040. {
  2041. name: "Normal",
  2042. height: math.unit(11, "feet")
  2043. },
  2044. {
  2045. name: "Macro",
  2046. height: math.unit(302, "feet"),
  2047. default: true
  2048. },
  2049. ]
  2050. ))
  2051. characterMakers.push(() => makeCharacter(
  2052. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2053. {
  2054. frontDressed: {
  2055. height: math.unit(216, "feet"),
  2056. weight: math.unit(7000000, "lb"),
  2057. name: "Front (Dressed)",
  2058. image: {
  2059. source: "./media/characters/jazzy/front-dressed.svg",
  2060. extra: 2738 / 2651,
  2061. bottom: 41.8 / 2786
  2062. }
  2063. },
  2064. backDressed: {
  2065. height: math.unit(216, "feet"),
  2066. weight: math.unit(7000000, "lb"),
  2067. name: "Back (Dressed)",
  2068. image: {
  2069. source: "./media/characters/jazzy/back-dressed.svg",
  2070. extra: 2775 / 2673,
  2071. bottom: 36.8 / 2817
  2072. }
  2073. },
  2074. front: {
  2075. height: math.unit(216, "feet"),
  2076. weight: math.unit(7000000, "lb"),
  2077. name: "Front",
  2078. image: {
  2079. source: "./media/characters/jazzy/front.svg",
  2080. extra: 2738 / 2651,
  2081. bottom: 41.8 / 2786
  2082. }
  2083. },
  2084. back: {
  2085. height: math.unit(216, "feet"),
  2086. weight: math.unit(7000000, "lb"),
  2087. name: "Back",
  2088. image: {
  2089. source: "./media/characters/jazzy/back.svg",
  2090. extra: 2775 / 2673,
  2091. bottom: 36.8 / 2817
  2092. }
  2093. },
  2094. maw: {
  2095. height: math.unit(20, "feet"),
  2096. name: "Maw",
  2097. image: {
  2098. source: "./media/characters/jazzy/maw.svg"
  2099. }
  2100. },
  2101. paws: {
  2102. height: math.unit(27.5, "feet"),
  2103. name: "Paws",
  2104. image: {
  2105. source: "./media/characters/jazzy/paws.svg"
  2106. }
  2107. },
  2108. eye: {
  2109. height: math.unit(4.4, "feet"),
  2110. name: "Eye",
  2111. image: {
  2112. source: "./media/characters/jazzy/eye.svg"
  2113. }
  2114. },
  2115. droneOffense: {
  2116. height: math.unit(9.5, "inches"),
  2117. name: "Drone (Offense)",
  2118. image: {
  2119. source: "./media/characters/jazzy/drone-offense.svg"
  2120. }
  2121. },
  2122. droneRecon: {
  2123. height: math.unit(9.5, "inches"),
  2124. name: "Drone (Recon)",
  2125. image: {
  2126. source: "./media/characters/jazzy/drone-recon.svg"
  2127. }
  2128. },
  2129. droneDefense: {
  2130. height: math.unit(9.5, "inches"),
  2131. name: "Drone (Defense)",
  2132. image: {
  2133. source: "./media/characters/jazzy/drone-defense.svg"
  2134. }
  2135. },
  2136. },
  2137. [
  2138. {
  2139. name: "Macro",
  2140. height: math.unit(216, "feet"),
  2141. default: true
  2142. },
  2143. ]
  2144. ))
  2145. characterMakers.push(() => makeCharacter(
  2146. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2147. {
  2148. front: {
  2149. height: math.unit(7, "feet"),
  2150. weight: math.unit(80, "kg"),
  2151. name: "Front",
  2152. image: {
  2153. source: "./media/characters/flamm/front.svg",
  2154. extra: 1794 / 1677,
  2155. bottom: 31.7 / 1828.5
  2156. }
  2157. },
  2158. },
  2159. [
  2160. {
  2161. name: "Normal",
  2162. height: math.unit(9.5, "feet")
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(200, "feet"),
  2167. default: true
  2168. },
  2169. ]
  2170. ))
  2171. characterMakers.push(() => makeCharacter(
  2172. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2173. {
  2174. front: {
  2175. height: math.unit(7, "feet"),
  2176. weight: math.unit(80, "kg"),
  2177. name: "Front",
  2178. image: {
  2179. source: "./media/characters/zephiro/front.svg",
  2180. extra: 2309 / 2162,
  2181. bottom: 0.069
  2182. }
  2183. },
  2184. side: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(80, "kg"),
  2187. name: "Side",
  2188. image: {
  2189. source: "./media/characters/zephiro/side.svg",
  2190. extra: 2403 / 2279,
  2191. bottom: 0.015
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(80, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/zephiro/back.svg",
  2200. extra: 2373 / 2244,
  2201. bottom: 0.013
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Micro",
  2208. height: math.unit(3, "inches")
  2209. },
  2210. {
  2211. name: "Normal",
  2212. height: math.unit(5 + 3 / 12, "feet"),
  2213. default: true
  2214. },
  2215. {
  2216. name: "Macro",
  2217. height: math.unit(118, "feet")
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(5, "feet"),
  2226. weight: math.unit(90, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/fory/front.svg",
  2230. extra: 2862 / 2674,
  2231. bottom: 180 / 3043.8
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(5, "feet"),
  2236. weight: math.unit(90, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/fory/back.svg",
  2240. extra: 2962 / 2791,
  2241. bottom: 106 / 3071.8
  2242. }
  2243. },
  2244. foot: {
  2245. height: math.unit(2.14, "feet"),
  2246. name: "Foot",
  2247. image: {
  2248. source: "./media/characters/fory/foot.svg"
  2249. }
  2250. },
  2251. },
  2252. [
  2253. {
  2254. name: "Normal",
  2255. height: math.unit(5, "feet")
  2256. },
  2257. {
  2258. name: "Macro",
  2259. height: math.unit(50, "feet"),
  2260. default: true
  2261. },
  2262. {
  2263. name: "Megamacro",
  2264. height: math.unit(10, "miles")
  2265. },
  2266. {
  2267. name: "Gigamacro",
  2268. height: math.unit(5, "earths")
  2269. },
  2270. ]
  2271. ))
  2272. characterMakers.push(() => makeCharacter(
  2273. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2274. {
  2275. front: {
  2276. height: math.unit(7, "feet"),
  2277. weight: math.unit(90, "kg"),
  2278. name: "Front",
  2279. image: {
  2280. source: "./media/characters/kurrikage/front.svg",
  2281. extra: 1,
  2282. bottom: 0.035
  2283. }
  2284. },
  2285. back: {
  2286. height: math.unit(7, "feet"),
  2287. weight: math.unit(90, "lb"),
  2288. name: "Back",
  2289. image: {
  2290. source: "./media/characters/kurrikage/back.svg"
  2291. }
  2292. },
  2293. paw: {
  2294. height: math.unit(1.5, "feet"),
  2295. name: "Paw",
  2296. image: {
  2297. source: "./media/characters/kurrikage/paw.svg"
  2298. }
  2299. },
  2300. staff: {
  2301. height: math.unit(6.7, "feet"),
  2302. name: "Staff",
  2303. image: {
  2304. source: "./media/characters/kurrikage/staff.svg"
  2305. }
  2306. },
  2307. peek: {
  2308. height: math.unit(1.05, "feet"),
  2309. name: "Peeking",
  2310. image: {
  2311. source: "./media/characters/kurrikage/peek.svg",
  2312. bottom: 0.08
  2313. }
  2314. },
  2315. },
  2316. [
  2317. {
  2318. name: "Normal",
  2319. height: math.unit(12, "feet"),
  2320. default: true
  2321. },
  2322. {
  2323. name: "Big",
  2324. height: math.unit(20, "feet")
  2325. },
  2326. {
  2327. name: "Macro",
  2328. height: math.unit(500, "feet")
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(20, "miles")
  2333. },
  2334. ]
  2335. ))
  2336. characterMakers.push(() => makeCharacter(
  2337. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2338. {
  2339. front: {
  2340. height: math.unit(6, "feet"),
  2341. weight: math.unit(75, "kg"),
  2342. name: "Front",
  2343. image: {
  2344. source: "./media/characters/shingo/front.svg",
  2345. extra: 3511 / 3338,
  2346. bottom: 0.005
  2347. }
  2348. },
  2349. paw: {
  2350. height: math.unit(1, "feet"),
  2351. name: "Paw",
  2352. image: {
  2353. source: "./media/characters/shingo/paw.svg"
  2354. }
  2355. },
  2356. },
  2357. [
  2358. {
  2359. name: "Micro",
  2360. height: math.unit(4, "inches")
  2361. },
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(6, "feet"),
  2365. default: true
  2366. },
  2367. {
  2368. name: "Macro",
  2369. height: math.unit(108, "feet")
  2370. }
  2371. ]
  2372. ))
  2373. characterMakers.push(() => makeCharacter(
  2374. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2375. {
  2376. side: {
  2377. height: math.unit(6, "feet"),
  2378. weight: math.unit(75, "kg"),
  2379. name: "Side",
  2380. image: {
  2381. source: "./media/characters/aigey/side.svg"
  2382. }
  2383. },
  2384. },
  2385. [
  2386. {
  2387. name: "Macro",
  2388. height: math.unit(200, "feet"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Megamacro",
  2393. height: math.unit(100, "miles")
  2394. },
  2395. ]
  2396. )
  2397. )
  2398. characterMakers.push(() => makeCharacter(
  2399. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2400. {
  2401. front: {
  2402. height: math.unit(5 + 5 / 12, "feet"),
  2403. weight: math.unit(75, "kg"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/natasha/front.svg",
  2407. extra: 859 / 824,
  2408. bottom: 23 / 879.6
  2409. }
  2410. },
  2411. frontNsfw: {
  2412. height: math.unit(5 + 5 / 12, "feet"),
  2413. weight: math.unit(75, "kg"),
  2414. name: "Front (NSFW)",
  2415. image: {
  2416. source: "./media/characters/natasha/front-nsfw.svg",
  2417. extra: 859 / 824,
  2418. bottom: 23 / 879.6
  2419. }
  2420. },
  2421. frontErect: {
  2422. height: math.unit(5 + 5 / 12, "feet"),
  2423. weight: math.unit(75, "kg"),
  2424. name: "Front (Erect)",
  2425. image: {
  2426. source: "./media/characters/natasha/front-erect.svg",
  2427. extra: 859 / 824,
  2428. bottom: 23 / 879.6
  2429. }
  2430. },
  2431. back: {
  2432. height: math.unit(5 + 5 / 12, "feet"),
  2433. weight: math.unit(75, "kg"),
  2434. name: "Back",
  2435. image: {
  2436. source: "./media/characters/natasha/back.svg",
  2437. extra: 887.9 / 852.6,
  2438. bottom: 9.7 / 896.4
  2439. }
  2440. },
  2441. backAlt: {
  2442. height: math.unit(5 + 5 / 12, "feet"),
  2443. weight: math.unit(75, "kg"),
  2444. name: "Back (Alt)",
  2445. image: {
  2446. source: "./media/characters/natasha/back-alt.svg",
  2447. extra: 1236.7 / 1192,
  2448. bottom: 22.3 / 1258.2
  2449. }
  2450. },
  2451. dick: {
  2452. height: math.unit(1.772, "feet"),
  2453. name: "Dick",
  2454. image: {
  2455. source: "./media/characters/natasha/dick.svg"
  2456. }
  2457. },
  2458. paw: {
  2459. height: math.unit(0.250, "meters"),
  2460. name: "Paw",
  2461. image: {
  2462. source: "./media/characters/natasha/paw.svg"
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Normal",
  2469. height: math.unit(5 + 5 / 12, "feet")
  2470. },
  2471. {
  2472. name: "Large",
  2473. height: math.unit(12, "feet")
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(100, "feet"),
  2478. default: true
  2479. },
  2480. {
  2481. name: "Macro+",
  2482. height: math.unit(260, "feet")
  2483. },
  2484. {
  2485. name: "Macro++",
  2486. height: math.unit(1, "mile")
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(6, "feet"),
  2495. weight: math.unit(75, "kg"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/malik/front.svg"
  2499. }
  2500. },
  2501. side: {
  2502. height: math.unit(6, "feet"),
  2503. weight: math.unit(75, "kg"),
  2504. name: "Side",
  2505. image: {
  2506. source: "./media/characters/malik/side.svg",
  2507. extra: 1.1539
  2508. }
  2509. },
  2510. back: {
  2511. height: math.unit(6, "feet"),
  2512. weight: math.unit(75, "kg"),
  2513. name: "Back",
  2514. image: {
  2515. source: "./media/characters/malik/back.svg"
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Macro",
  2522. height: math.unit(156, "feet"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Macro+",
  2527. height: math.unit(1188, "feet")
  2528. },
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(6, "feet"),
  2536. weight: math.unit(75, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/sefer/front.svg",
  2540. extra: 848 / 659,
  2541. bottom: 28.3 / 876.442
  2542. }
  2543. },
  2544. back: {
  2545. height: math.unit(6, "feet"),
  2546. weight: math.unit(75, "kg"),
  2547. name: "Back",
  2548. image: {
  2549. source: "./media/characters/sefer/back.svg",
  2550. extra: 864 / 695,
  2551. bottom: 10 / 871
  2552. }
  2553. },
  2554. frontDressed: {
  2555. height: math.unit(6, "feet"),
  2556. weight: math.unit(75, "kg"),
  2557. name: "Front (Dressed)",
  2558. image: {
  2559. source: "./media/characters/sefer/front-dressed.svg",
  2560. extra: 839 / 653,
  2561. bottom: 37.6 / 878
  2562. }
  2563. },
  2564. },
  2565. [
  2566. {
  2567. name: "Normal",
  2568. height: math.unit(6, "feet"),
  2569. default: true
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2575. {
  2576. body: {
  2577. height: math.unit(2.2428, "meter"),
  2578. weight: math.unit(124.738, "kg"),
  2579. name: "Body",
  2580. image: {
  2581. extra: 1225 / 1050,
  2582. source: "./media/characters/north/front.svg"
  2583. }
  2584. }
  2585. },
  2586. [
  2587. {
  2588. name: "Micro",
  2589. height: math.unit(4, "inches")
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(63, "meters")
  2594. },
  2595. {
  2596. name: "Megamacro",
  2597. height: math.unit(101, "miles"),
  2598. default: true
  2599. }
  2600. ]
  2601. ))
  2602. characterMakers.push(() => makeCharacter(
  2603. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2604. {
  2605. angled: {
  2606. height: math.unit(4, "meter"),
  2607. weight: math.unit(150, "kg"),
  2608. name: "Angled",
  2609. image: {
  2610. source: "./media/characters/talan/angled-sfw.svg",
  2611. bottom: 29 / 3734
  2612. }
  2613. },
  2614. angledNsfw: {
  2615. height: math.unit(4, "meter"),
  2616. weight: math.unit(150, "kg"),
  2617. name: "Angled (NSFW)",
  2618. image: {
  2619. source: "./media/characters/talan/angled-nsfw.svg",
  2620. bottom: 29 / 3734
  2621. }
  2622. },
  2623. frontNsfw: {
  2624. height: math.unit(4, "meter"),
  2625. weight: math.unit(150, "kg"),
  2626. name: "Front (NSFW)",
  2627. image: {
  2628. source: "./media/characters/talan/front-nsfw.svg",
  2629. bottom: 29 / 3734
  2630. }
  2631. },
  2632. sideNsfw: {
  2633. height: math.unit(4, "meter"),
  2634. weight: math.unit(150, "kg"),
  2635. name: "Side (NSFW)",
  2636. image: {
  2637. source: "./media/characters/talan/side-nsfw.svg",
  2638. bottom: 29 / 3734
  2639. }
  2640. },
  2641. back: {
  2642. height: math.unit(4, "meter"),
  2643. weight: math.unit(150, "kg"),
  2644. name: "Back",
  2645. image: {
  2646. source: "./media/characters/talan/back.svg"
  2647. }
  2648. },
  2649. dickBottom: {
  2650. height: math.unit(0.621, "meter"),
  2651. name: "Dick (Bottom)",
  2652. image: {
  2653. source: "./media/characters/talan/dick-bottom.svg"
  2654. }
  2655. },
  2656. dickTop: {
  2657. height: math.unit(0.621, "meter"),
  2658. name: "Dick (Top)",
  2659. image: {
  2660. source: "./media/characters/talan/dick-top.svg"
  2661. }
  2662. },
  2663. dickSide: {
  2664. height: math.unit(0.305, "meter"),
  2665. name: "Dick (Side)",
  2666. image: {
  2667. source: "./media/characters/talan/dick-side.svg"
  2668. }
  2669. },
  2670. dickFront: {
  2671. height: math.unit(0.305, "meter"),
  2672. name: "Dick (Front)",
  2673. image: {
  2674. source: "./media/characters/talan/dick-front.svg"
  2675. }
  2676. },
  2677. },
  2678. [
  2679. {
  2680. name: "Normal",
  2681. height: math.unit(4, "meters")
  2682. },
  2683. {
  2684. name: "Macro",
  2685. height: math.unit(100, "meters")
  2686. },
  2687. {
  2688. name: "Megamacro",
  2689. height: math.unit(2, "miles"),
  2690. default: true
  2691. },
  2692. {
  2693. name: "Gigamacro",
  2694. height: math.unit(5000, "miles")
  2695. },
  2696. {
  2697. name: "Teramacro",
  2698. height: math.unit(100, "parsecs")
  2699. }
  2700. ]
  2701. ))
  2702. characterMakers.push(() => makeCharacter(
  2703. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2704. {
  2705. front: {
  2706. height: math.unit(2, "meter"),
  2707. weight: math.unit(90, "kg"),
  2708. name: "Front",
  2709. image: {
  2710. source: "./media/characters/gael'rathus/front.svg"
  2711. }
  2712. },
  2713. frontAlt: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front (alt)",
  2717. image: {
  2718. source: "./media/characters/gael'rathus/front-alt.svg"
  2719. }
  2720. },
  2721. frontAlt2: {
  2722. height: math.unit(2, "meter"),
  2723. weight: math.unit(90, "kg"),
  2724. name: "Front (alt 2)",
  2725. image: {
  2726. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2727. }
  2728. }
  2729. },
  2730. [
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(9, "feet"),
  2734. default: true
  2735. },
  2736. {
  2737. name: "Large",
  2738. height: math.unit(25, "feet")
  2739. },
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(0.25, "miles")
  2743. },
  2744. {
  2745. name: "Megamacro",
  2746. height: math.unit(10, "miles")
  2747. }
  2748. ]
  2749. ))
  2750. characterMakers.push(() => makeCharacter(
  2751. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2752. {
  2753. side: {
  2754. height: math.unit(2, "meter"),
  2755. weight: math.unit(140, "kg"),
  2756. name: "Side",
  2757. image: {
  2758. source: "./media/characters/sosha/side.svg",
  2759. bottom: 0.042
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Normal",
  2766. height: math.unit(12, "feet"),
  2767. default: true
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2773. {
  2774. side: {
  2775. height: math.unit(5 + 5 / 12, "feet"),
  2776. weight: math.unit(170, "kg"),
  2777. name: "Side",
  2778. image: {
  2779. source: "./media/characters/runnola/side.svg",
  2780. extra: 741 / 448,
  2781. bottom: 0.05
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Small",
  2788. height: math.unit(3, "feet")
  2789. },
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(5 + 5 / 12, "feet"),
  2793. default: true
  2794. },
  2795. {
  2796. name: "Big",
  2797. height: math.unit(10, "feet")
  2798. },
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2803. {
  2804. front: {
  2805. height: math.unit(2, "meter"),
  2806. weight: math.unit(50, "kg"),
  2807. name: "Front",
  2808. image: {
  2809. source: "./media/characters/kurribird/front.svg",
  2810. bottom: 0.015
  2811. }
  2812. },
  2813. frontAlt: {
  2814. height: math.unit(1.5, "meter"),
  2815. weight: math.unit(50, "kg"),
  2816. name: "Front (Alt)",
  2817. image: {
  2818. source: "./media/characters/kurribird/front-alt.svg",
  2819. extra: 1.45
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(7, "feet")
  2827. },
  2828. {
  2829. name: "Big",
  2830. height: math.unit(12, "feet"),
  2831. default: true
  2832. },
  2833. {
  2834. name: "Macro",
  2835. height: math.unit(1500, "feet")
  2836. },
  2837. {
  2838. name: "Megamacro",
  2839. height: math.unit(2, "miles")
  2840. }
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2845. {
  2846. front: {
  2847. height: math.unit(2, "meter"),
  2848. weight: math.unit(80, "kg"),
  2849. name: "Front",
  2850. image: {
  2851. source: "./media/characters/elbial/front.svg",
  2852. extra: 1643 / 1556,
  2853. bottom: 60.2 / 1696
  2854. }
  2855. },
  2856. side: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(80, "kg"),
  2859. name: "Side",
  2860. image: {
  2861. source: "./media/characters/elbial/side.svg",
  2862. extra: 1630 / 1565,
  2863. bottom: 71.5 / 1697
  2864. }
  2865. },
  2866. back: {
  2867. height: math.unit(2, "meter"),
  2868. weight: math.unit(80, "kg"),
  2869. name: "Back",
  2870. image: {
  2871. source: "./media/characters/elbial/back.svg",
  2872. extra: 1668 / 1595,
  2873. bottom: 5.6 / 1672
  2874. }
  2875. },
  2876. frontDressed: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(80, "kg"),
  2879. name: "Front (Dressed)",
  2880. image: {
  2881. source: "./media/characters/elbial/front-dressed.svg",
  2882. extra: 1653 / 1584,
  2883. bottom: 57 / 1708
  2884. }
  2885. },
  2886. genitals: {
  2887. height: math.unit(2 / 3.367, "meter"),
  2888. name: "Genitals",
  2889. image: {
  2890. source: "./media/characters/elbial/genitals.svg"
  2891. }
  2892. },
  2893. },
  2894. [
  2895. {
  2896. name: "Large",
  2897. height: math.unit(100, "feet")
  2898. },
  2899. {
  2900. name: "Macro",
  2901. height: math.unit(500, "feet"),
  2902. default: true
  2903. },
  2904. {
  2905. name: "Megamacro",
  2906. height: math.unit(10, "miles")
  2907. },
  2908. {
  2909. name: "Gigamacro",
  2910. height: math.unit(25000, "miles")
  2911. },
  2912. {
  2913. name: "Full-Size",
  2914. height: math.unit(8000000, "gigaparsecs")
  2915. }
  2916. ]
  2917. ))
  2918. characterMakers.push(() => makeCharacter(
  2919. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2920. {
  2921. front: {
  2922. height: math.unit(2, "meter"),
  2923. weight: math.unit(60, "kg"),
  2924. name: "Front",
  2925. image: {
  2926. source: "./media/characters/noah/front.svg"
  2927. }
  2928. },
  2929. talons: {
  2930. height: math.unit(0.315, "meter"),
  2931. name: "Talons",
  2932. image: {
  2933. source: "./media/characters/noah/talons.svg"
  2934. }
  2935. }
  2936. },
  2937. [
  2938. {
  2939. name: "Large",
  2940. height: math.unit(50, "feet")
  2941. },
  2942. {
  2943. name: "Macro",
  2944. height: math.unit(750, "feet"),
  2945. default: true
  2946. },
  2947. {
  2948. name: "Megamacro",
  2949. height: math.unit(50, "miles")
  2950. },
  2951. {
  2952. name: "Gigamacro",
  2953. height: math.unit(100000, "miles")
  2954. },
  2955. {
  2956. name: "Full-Size",
  2957. height: math.unit(3000000000, "miles")
  2958. }
  2959. ]
  2960. ))
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2963. {
  2964. front: {
  2965. height: math.unit(2, "meter"),
  2966. weight: math.unit(80, "kg"),
  2967. name: "Front",
  2968. image: {
  2969. source: "./media/characters/natalya/front.svg"
  2970. }
  2971. },
  2972. back: {
  2973. height: math.unit(2, "meter"),
  2974. weight: math.unit(80, "kg"),
  2975. name: "Back",
  2976. image: {
  2977. source: "./media/characters/natalya/back.svg"
  2978. }
  2979. }
  2980. },
  2981. [
  2982. {
  2983. name: "Normal",
  2984. height: math.unit(150, "feet"),
  2985. default: true
  2986. },
  2987. {
  2988. name: "Megamacro",
  2989. height: math.unit(5, "miles")
  2990. },
  2991. {
  2992. name: "Full-Size",
  2993. height: math.unit(600, "kiloparsecs")
  2994. }
  2995. ]
  2996. ))
  2997. characterMakers.push(() => makeCharacter(
  2998. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2999. {
  3000. front: {
  3001. height: math.unit(2, "meter"),
  3002. weight: math.unit(50, "kg"),
  3003. name: "Front",
  3004. image: {
  3005. source: "./media/characters/erestrebah/front.svg",
  3006. extra: 208 / 193,
  3007. bottom: 0.055
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(2, "meter"),
  3012. weight: math.unit(50, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/erestrebah/back.svg",
  3016. extra: 1.3
  3017. }
  3018. }
  3019. },
  3020. [
  3021. {
  3022. name: "Normal",
  3023. height: math.unit(10, "feet")
  3024. },
  3025. {
  3026. name: "Large",
  3027. height: math.unit(50, "feet"),
  3028. default: true
  3029. },
  3030. {
  3031. name: "Macro",
  3032. height: math.unit(300, "feet")
  3033. },
  3034. {
  3035. name: "Macro+",
  3036. height: math.unit(750, "feet")
  3037. },
  3038. {
  3039. name: "Megamacro",
  3040. height: math.unit(3, "miles")
  3041. }
  3042. ]
  3043. ))
  3044. characterMakers.push(() => makeCharacter(
  3045. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3046. {
  3047. front: {
  3048. height: math.unit(2, "meter"),
  3049. weight: math.unit(80, "kg"),
  3050. name: "Front",
  3051. image: {
  3052. source: "./media/characters/jennifer/front.svg",
  3053. bottom: 0.11,
  3054. extra: 1.16
  3055. }
  3056. },
  3057. frontAlt: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(80, "kg"),
  3060. name: "Front (Alt)",
  3061. image: {
  3062. source: "./media/characters/jennifer/front-alt.svg"
  3063. }
  3064. }
  3065. },
  3066. [
  3067. {
  3068. name: "Canon Height",
  3069. height: math.unit(120, "feet"),
  3070. default: true
  3071. },
  3072. {
  3073. name: "Macro+",
  3074. height: math.unit(300, "feet")
  3075. },
  3076. {
  3077. name: "Megamacro",
  3078. height: math.unit(20000, "feet")
  3079. }
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3084. {
  3085. front: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(50, "kg"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/kalista/front.svg",
  3091. extra: 1947 / 1700,
  3092. bottom: 76.6 / 1412.98
  3093. }
  3094. },
  3095. back: {
  3096. height: math.unit(2, "meter"),
  3097. weight: math.unit(50, "kg"),
  3098. name: "Back",
  3099. image: {
  3100. source: "./media/characters/kalista/back.svg",
  3101. extra: 1366 / 1156,
  3102. bottom: 33.9 / 1362.78
  3103. }
  3104. }
  3105. },
  3106. [
  3107. {
  3108. name: "Uncomfortably Small",
  3109. height: math.unit(10, "feet")
  3110. },
  3111. {
  3112. name: "Small",
  3113. height: math.unit(30, "feet")
  3114. },
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(100, "feet"),
  3118. default: true
  3119. },
  3120. {
  3121. name: "Macro+",
  3122. height: math.unit(2000, "feet")
  3123. },
  3124. {
  3125. name: "True Form",
  3126. height: math.unit(8924, "miles")
  3127. }
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3132. {
  3133. front: {
  3134. height: math.unit(2, "meter"),
  3135. weight: math.unit(120, "kg"),
  3136. name: "Front",
  3137. image: {
  3138. source: "./media/characters/ggv/front.svg"
  3139. }
  3140. },
  3141. side: {
  3142. height: math.unit(2, "meter"),
  3143. weight: math.unit(120, "kg"),
  3144. name: "Side",
  3145. image: {
  3146. source: "./media/characters/ggv/side.svg"
  3147. }
  3148. }
  3149. },
  3150. [
  3151. {
  3152. name: "Extremely Puny",
  3153. height: math.unit(9 + 5 / 12, "feet")
  3154. },
  3155. {
  3156. name: "Horribly Small",
  3157. height: math.unit(47.7, "miles"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Reasonably Sized",
  3162. height: math.unit(25000, "parsecs")
  3163. },
  3164. {
  3165. name: "Slightly Uncompressed",
  3166. height: math.unit(7.77e31, "parsecs")
  3167. },
  3168. {
  3169. name: "Omniversal",
  3170. height: math.unit(1e300, "meters")
  3171. },
  3172. ]
  3173. ))
  3174. characterMakers.push(() => makeCharacter(
  3175. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3176. {
  3177. front: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(75, "lb"),
  3180. name: "Front",
  3181. image: {
  3182. source: "./media/characters/napalm/front.svg"
  3183. }
  3184. },
  3185. back: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(75, "lb"),
  3188. name: "Back",
  3189. image: {
  3190. source: "./media/characters/napalm/back.svg"
  3191. }
  3192. }
  3193. },
  3194. [
  3195. {
  3196. name: "Standard",
  3197. height: math.unit(55, "feet"),
  3198. default: true
  3199. }
  3200. ]
  3201. ))
  3202. characterMakers.push(() => makeCharacter(
  3203. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3204. {
  3205. front: {
  3206. height: math.unit(7 + 5 / 6, "feet"),
  3207. weight: math.unit(325, "lb"),
  3208. name: "Front",
  3209. image: {
  3210. source: "./media/characters/asana/front.svg",
  3211. extra: 1133 / 1060,
  3212. bottom: 15.2 / 1148.6
  3213. }
  3214. },
  3215. back: {
  3216. height: math.unit(7 + 5 / 6, "feet"),
  3217. weight: math.unit(325, "lb"),
  3218. name: "Back",
  3219. image: {
  3220. source: "./media/characters/asana/back.svg",
  3221. extra: 1114 / 1043,
  3222. bottom: 5 / 1120
  3223. }
  3224. },
  3225. dressedDark: {
  3226. height: math.unit(7 + 5 / 6, "feet"),
  3227. weight: math.unit(325, "lb"),
  3228. name: "Dressed (Dark)",
  3229. image: {
  3230. source: "./media/characters/asana/dressed-dark.svg",
  3231. extra: 1133 / 1060,
  3232. bottom: 15.2 / 1148.6
  3233. }
  3234. },
  3235. dressedLight: {
  3236. height: math.unit(7 + 5 / 6, "feet"),
  3237. weight: math.unit(325, "lb"),
  3238. name: "Dressed (Light)",
  3239. image: {
  3240. source: "./media/characters/asana/dressed-light.svg",
  3241. extra: 1133 / 1060,
  3242. bottom: 15.2 / 1148.6
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Standard",
  3249. height: math.unit(7 + 5 / 6, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Large",
  3254. height: math.unit(10, "meters")
  3255. },
  3256. {
  3257. name: "Macro",
  3258. height: math.unit(2500, "meters")
  3259. },
  3260. {
  3261. name: "Megamacro",
  3262. height: math.unit(5e6, "meters")
  3263. },
  3264. {
  3265. name: "Examacro",
  3266. height: math.unit(5e12, "lightyears")
  3267. },
  3268. {
  3269. name: "Max Size",
  3270. height: math.unit(1e31, "lightyears")
  3271. }
  3272. ]
  3273. ))
  3274. characterMakers.push(() => makeCharacter(
  3275. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3276. {
  3277. front: {
  3278. height: math.unit(2, "meter"),
  3279. weight: math.unit(60, "kg"),
  3280. name: "Front",
  3281. image: {
  3282. source: "./media/characters/ebony/front.svg",
  3283. bottom: 0.03,
  3284. extra: 1045 / 810 + 0.03
  3285. }
  3286. },
  3287. side: {
  3288. height: math.unit(2, "meter"),
  3289. weight: math.unit(60, "kg"),
  3290. name: "Side",
  3291. image: {
  3292. source: "./media/characters/ebony/side.svg",
  3293. bottom: 0.03,
  3294. extra: 1045 / 810 + 0.03
  3295. }
  3296. },
  3297. back: {
  3298. height: math.unit(2, "meter"),
  3299. weight: math.unit(60, "kg"),
  3300. name: "Back",
  3301. image: {
  3302. source: "./media/characters/ebony/back.svg",
  3303. bottom: 0.01,
  3304. extra: 1045 / 810 + 0.01
  3305. }
  3306. },
  3307. },
  3308. [
  3309. // TODO check why I did this lol
  3310. {
  3311. name: "Standard",
  3312. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Macro",
  3317. height: math.unit(200, "feet")
  3318. },
  3319. {
  3320. name: "Gigamacro",
  3321. height: math.unit(13000, "km")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(6, "feet"),
  3330. weight: math.unit(175, "lb"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/mountain/front.svg",
  3334. extra: 972 / 955,
  3335. bottom: 64 / 1036.6
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(6, "feet"),
  3340. weight: math.unit(175, "lb"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/mountain/back.svg",
  3344. extra: 970 / 950,
  3345. bottom: 28.25 / 999
  3346. }
  3347. },
  3348. },
  3349. [
  3350. {
  3351. name: "Large",
  3352. height: math.unit(20, "meters")
  3353. },
  3354. {
  3355. name: "Macro",
  3356. height: math.unit(300, "meters")
  3357. },
  3358. {
  3359. name: "Gigamacro",
  3360. height: math.unit(10000, "km"),
  3361. default: true
  3362. },
  3363. {
  3364. name: "Examacro",
  3365. height: math.unit(10e9, "lightyears")
  3366. }
  3367. ]
  3368. ))
  3369. characterMakers.push(() => makeCharacter(
  3370. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3371. {
  3372. front: {
  3373. height: math.unit(8, "feet"),
  3374. weight: math.unit(500, "lb"),
  3375. name: "Front",
  3376. image: {
  3377. source: "./media/characters/rick/front.svg"
  3378. }
  3379. }
  3380. },
  3381. [
  3382. {
  3383. name: "Normal",
  3384. height: math.unit(8, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(5, "km")
  3390. }
  3391. ]
  3392. ))
  3393. characterMakers.push(() => makeCharacter(
  3394. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3395. {
  3396. front: {
  3397. height: math.unit(8, "feet"),
  3398. weight: math.unit(120, "lb"),
  3399. name: "Front",
  3400. image: {
  3401. source: "./media/characters/ona/front.svg"
  3402. }
  3403. },
  3404. frontAlt: {
  3405. height: math.unit(8, "feet"),
  3406. weight: math.unit(120, "lb"),
  3407. name: "Front (Alt)",
  3408. image: {
  3409. source: "./media/characters/ona/front-alt.svg"
  3410. }
  3411. },
  3412. back: {
  3413. height: math.unit(8, "feet"),
  3414. weight: math.unit(120, "lb"),
  3415. name: "Back",
  3416. image: {
  3417. source: "./media/characters/ona/back.svg"
  3418. }
  3419. },
  3420. foot: {
  3421. height: math.unit(1.1, "feet"),
  3422. name: "Foot",
  3423. image: {
  3424. source: "./media/characters/ona/foot.svg"
  3425. }
  3426. }
  3427. },
  3428. [
  3429. {
  3430. name: "Megamacro",
  3431. height: math.unit(70, "km"),
  3432. default: true
  3433. },
  3434. {
  3435. name: "Gigamacro",
  3436. height: math.unit(681818, "miles")
  3437. },
  3438. {
  3439. name: "Examacro",
  3440. height: math.unit(3800000, "lightyears")
  3441. },
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3446. {
  3447. front: {
  3448. height: math.unit(12, "feet"),
  3449. weight: math.unit(3000, "lb"),
  3450. name: "Front",
  3451. image: {
  3452. source: "./media/characters/mech/front.svg",
  3453. extra: 2900 / 2770,
  3454. bottom: 110 / 3010
  3455. }
  3456. },
  3457. back: {
  3458. height: math.unit(12, "feet"),
  3459. weight: math.unit(3000, "lb"),
  3460. name: "Back",
  3461. image: {
  3462. source: "./media/characters/mech/back.svg",
  3463. extra: 3011 / 2890,
  3464. bottom: 94 / 3105
  3465. }
  3466. },
  3467. maw: {
  3468. height: math.unit(3.07, "feet"),
  3469. name: "Maw",
  3470. image: {
  3471. source: "./media/characters/mech/maw.svg"
  3472. }
  3473. },
  3474. head: {
  3475. height: math.unit(2.82, "feet"),
  3476. name: "Head",
  3477. image: {
  3478. source: "./media/characters/mech/head.svg"
  3479. }
  3480. },
  3481. dick: {
  3482. height: math.unit(1.43, "feet"),
  3483. name: "Dick",
  3484. image: {
  3485. source: "./media/characters/mech/dick.svg"
  3486. }
  3487. },
  3488. },
  3489. [
  3490. {
  3491. name: "Normal",
  3492. height: math.unit(12, "feet")
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(300, "feet"),
  3497. default: true
  3498. },
  3499. {
  3500. name: "Macro+",
  3501. height: math.unit(1500, "feet")
  3502. },
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3507. {
  3508. front: {
  3509. height: math.unit(1.3, "meter"),
  3510. weight: math.unit(30, "kg"),
  3511. name: "Front",
  3512. image: {
  3513. source: "./media/characters/gregory/front.svg",
  3514. }
  3515. }
  3516. },
  3517. [
  3518. {
  3519. name: "Normal",
  3520. height: math.unit(1.3, "meter"),
  3521. default: true
  3522. },
  3523. {
  3524. name: "Macro",
  3525. height: math.unit(20, "meter")
  3526. }
  3527. ]
  3528. ))
  3529. characterMakers.push(() => makeCharacter(
  3530. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3531. {
  3532. front: {
  3533. height: math.unit(2.8, "meter"),
  3534. weight: math.unit(200, "kg"),
  3535. name: "Front",
  3536. image: {
  3537. source: "./media/characters/elory/front.svg",
  3538. }
  3539. }
  3540. },
  3541. [
  3542. {
  3543. name: "Normal",
  3544. height: math.unit(2.8, "meter"),
  3545. default: true
  3546. },
  3547. {
  3548. name: "Macro",
  3549. height: math.unit(38, "meter")
  3550. }
  3551. ]
  3552. ))
  3553. characterMakers.push(() => makeCharacter(
  3554. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3555. {
  3556. front: {
  3557. height: math.unit(470, "feet"),
  3558. weight: math.unit(924, "tons"),
  3559. name: "Front",
  3560. image: {
  3561. source: "./media/characters/angelpatamon/front.svg",
  3562. }
  3563. }
  3564. },
  3565. [
  3566. {
  3567. name: "Normal",
  3568. height: math.unit(470, "feet"),
  3569. default: true
  3570. },
  3571. {
  3572. name: "Deity Size I",
  3573. height: math.unit(28651.2, "km")
  3574. },
  3575. {
  3576. name: "Deity Size II",
  3577. height: math.unit(171907.2, "km")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3583. {
  3584. side: {
  3585. height: math.unit(7.2, "meter"),
  3586. weight: math.unit(8.2, "tons"),
  3587. name: "Side",
  3588. image: {
  3589. source: "./media/characters/cryae/side.svg",
  3590. extra: 3500 / 1500
  3591. }
  3592. }
  3593. },
  3594. [
  3595. {
  3596. name: "Normal",
  3597. height: math.unit(7.2, "meter"),
  3598. default: true
  3599. }
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3604. {
  3605. front: {
  3606. height: math.unit(6, "feet"),
  3607. weight: math.unit(175, "lb"),
  3608. name: "Front",
  3609. image: {
  3610. source: "./media/characters/xera/front.svg",
  3611. extra: 2377 / 1972,
  3612. bottom: 75.5 / 2452
  3613. }
  3614. },
  3615. side: {
  3616. height: math.unit(6, "feet"),
  3617. weight: math.unit(175, "lb"),
  3618. name: "Side",
  3619. image: {
  3620. source: "./media/characters/xera/side.svg",
  3621. extra: 2345 / 2019,
  3622. bottom: 39.7 / 2384
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(6, "feet"),
  3627. weight: math.unit(175, "lb"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/xera/back.svg",
  3631. extra: 2095 / 1984,
  3632. bottom: 67 / 2166
  3633. }
  3634. },
  3635. },
  3636. [
  3637. {
  3638. name: "Small",
  3639. height: math.unit(10, "feet")
  3640. },
  3641. {
  3642. name: "Macro",
  3643. height: math.unit(500, "meters"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Macro+",
  3648. height: math.unit(10, "km")
  3649. },
  3650. {
  3651. name: "Gigamacro",
  3652. height: math.unit(25000, "km")
  3653. },
  3654. {
  3655. name: "Teramacro",
  3656. height: math.unit(3e6, "km")
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(175, "lb"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/nebula/front.svg",
  3669. extra: 2566 / 2362,
  3670. bottom: 81 / 2644
  3671. }
  3672. }
  3673. },
  3674. [
  3675. {
  3676. name: "Small",
  3677. height: math.unit(4.5, "meters")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(1500, "meters"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(150, "km")
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(27000, "km")
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3696. {
  3697. front: {
  3698. height: math.unit(6, "feet"),
  3699. weight: math.unit(225, "lb"),
  3700. name: "Front",
  3701. image: {
  3702. source: "./media/characters/abysgar/front.svg"
  3703. }
  3704. }
  3705. },
  3706. [
  3707. {
  3708. name: "Small",
  3709. height: math.unit(4.5, "meters")
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(1250, "meters"),
  3714. default: true
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(125, "km")
  3719. },
  3720. {
  3721. name: "Gigamacro",
  3722. height: math.unit(26000, "km")
  3723. }
  3724. ]
  3725. ))
  3726. characterMakers.push(() => makeCharacter(
  3727. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3728. {
  3729. front: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(180, "lb"),
  3732. name: "Front",
  3733. image: {
  3734. source: "./media/characters/yakuz/front.svg"
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Small",
  3741. height: math.unit(5, "meters")
  3742. },
  3743. {
  3744. name: "Macro",
  3745. height: math.unit(1500, "meters"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Megamacro",
  3750. height: math.unit(200, "km")
  3751. },
  3752. {
  3753. name: "Gigamacro",
  3754. height: math.unit(100000, "km")
  3755. }
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(175, "lb"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/mirova/front.svg",
  3767. extra: 3334 / 3071,
  3768. bottom: 42 / 3375.6
  3769. }
  3770. }
  3771. },
  3772. [
  3773. {
  3774. name: "Small",
  3775. height: math.unit(5, "meters")
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(900, "meters"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Megamacro",
  3784. height: math.unit(135, "km")
  3785. },
  3786. {
  3787. name: "Gigamacro",
  3788. height: math.unit(20000, "km")
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3794. {
  3795. side: {
  3796. height: math.unit(28.35, "feet"),
  3797. weight: math.unit(99.75, "tons"),
  3798. name: "Side",
  3799. image: {
  3800. source: "./media/characters/asana-mech/side.svg",
  3801. extra: 923 / 699,
  3802. bottom: 50 / 975
  3803. }
  3804. },
  3805. chaingun: {
  3806. height: math.unit(7, "feet"),
  3807. weight: math.unit(2400, "lb"),
  3808. name: "Chaingun",
  3809. image: {
  3810. source: "./media/characters/asana-mech/chaingun.svg"
  3811. }
  3812. },
  3813. laser: {
  3814. height: math.unit(7.12, "feet"),
  3815. weight: math.unit(2000, "lb"),
  3816. name: "Laser",
  3817. image: {
  3818. source: "./media/characters/asana-mech/laser.svg"
  3819. }
  3820. },
  3821. },
  3822. [
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(28.35, "feet"),
  3826. default: true
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(2500, "feet")
  3831. },
  3832. {
  3833. name: "Megamacro",
  3834. height: math.unit(25, "miles")
  3835. },
  3836. {
  3837. name: "Examacro",
  3838. height: math.unit(6e8, "lightyears")
  3839. },
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(5, "meters"),
  3847. weight: math.unit(1000, "kg"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/asche/front.svg",
  3851. extra: 1258 / 1190,
  3852. bottom: 47 / 1305
  3853. }
  3854. },
  3855. frontUnderwear: {
  3856. height: math.unit(5, "meters"),
  3857. weight: math.unit(1000, "kg"),
  3858. name: "Front (Underwear)",
  3859. image: {
  3860. source: "./media/characters/asche/front-underwear.svg",
  3861. extra: 1258 / 1190,
  3862. bottom: 47 / 1305
  3863. }
  3864. },
  3865. frontDressed: {
  3866. height: math.unit(5, "meters"),
  3867. weight: math.unit(1000, "kg"),
  3868. name: "Front (Dressed)",
  3869. image: {
  3870. source: "./media/characters/asche/front-dressed.svg",
  3871. extra: 1258 / 1190,
  3872. bottom: 47 / 1305
  3873. }
  3874. },
  3875. frontArmor: {
  3876. height: math.unit(5, "meters"),
  3877. weight: math.unit(1000, "kg"),
  3878. name: "Front (Armored)",
  3879. image: {
  3880. source: "./media/characters/asche/front-armored.svg",
  3881. extra: 1374 / 1308,
  3882. bottom: 23 / 1397
  3883. }
  3884. },
  3885. mp724: {
  3886. height: math.unit(0.96, "meters"),
  3887. weight: math.unit(38, "kg"),
  3888. name: "H&K MP724",
  3889. image: {
  3890. source: "./media/characters/asche/h&k-mp724.svg"
  3891. }
  3892. },
  3893. side: {
  3894. height: math.unit(5, "meters"),
  3895. weight: math.unit(1000, "kg"),
  3896. name: "Side",
  3897. image: {
  3898. source: "./media/characters/asche/side.svg",
  3899. extra: 1717 / 1609,
  3900. bottom: 0.005
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(5, "meters"),
  3905. weight: math.unit(1000, "kg"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/asche/back.svg",
  3909. extra: 1570 / 1501
  3910. }
  3911. },
  3912. },
  3913. [
  3914. {
  3915. name: "DEFCON 5",
  3916. height: math.unit(5, "meters")
  3917. },
  3918. {
  3919. name: "DEFCON 4",
  3920. height: math.unit(500, "meters"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "DEFCON 3",
  3925. height: math.unit(5, "km")
  3926. },
  3927. {
  3928. name: "DEFCON 2",
  3929. height: math.unit(500, "km")
  3930. },
  3931. {
  3932. name: "DEFCON 1",
  3933. height: math.unit(500000, "km")
  3934. },
  3935. {
  3936. name: "DEFCON 0",
  3937. height: math.unit(3, "gigaparsecs")
  3938. },
  3939. ]
  3940. ))
  3941. characterMakers.push(() => makeCharacter(
  3942. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3943. {
  3944. front: {
  3945. height: math.unit(2, "meters"),
  3946. weight: math.unit(76, "kg"),
  3947. name: "Front",
  3948. image: {
  3949. source: "./media/characters/gale/front.svg"
  3950. }
  3951. },
  3952. frontAlt1: {
  3953. height: math.unit(2, "meters"),
  3954. weight: math.unit(76, "kg"),
  3955. name: "Front (Alt 1)",
  3956. image: {
  3957. source: "./media/characters/gale/front-alt-1.svg"
  3958. }
  3959. },
  3960. frontAlt2: {
  3961. height: math.unit(2, "meters"),
  3962. weight: math.unit(76, "kg"),
  3963. name: "Front (Alt 2)",
  3964. image: {
  3965. source: "./media/characters/gale/front-alt-2.svg"
  3966. }
  3967. },
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(7, "feet")
  3973. },
  3974. {
  3975. name: "Macro",
  3976. height: math.unit(150, "feet"),
  3977. default: true
  3978. },
  3979. {
  3980. name: "Macro+",
  3981. height: math.unit(300, "feet")
  3982. },
  3983. ]
  3984. ))
  3985. characterMakers.push(() => makeCharacter(
  3986. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3987. {
  3988. front: {
  3989. height: math.unit(2, "meters"),
  3990. weight: math.unit(76, "kg"),
  3991. name: "Front",
  3992. image: {
  3993. source: "./media/characters/draylen/front.svg"
  3994. }
  3995. }
  3996. },
  3997. [
  3998. {
  3999. name: "Macro",
  4000. height: math.unit(150, "feet"),
  4001. default: true
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(7 + 9 / 12, "feet"),
  4010. weight: math.unit(379, "lbs"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/chez/front.svg"
  4014. }
  4015. },
  4016. side: {
  4017. height: math.unit(7 + 9 / 12, "feet"),
  4018. weight: math.unit(379, "lbs"),
  4019. name: "Side",
  4020. image: {
  4021. source: "./media/characters/chez/side.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(7 + 9 / 12, "feet"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "God King",
  4033. height: math.unit(9750000, "meters")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(275, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/kaylum/front.svg",
  4046. bottom: 0.01,
  4047. extra: 1166 / 1031
  4048. }
  4049. },
  4050. frontWingless: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(275, "lbs"),
  4053. name: "Front (Wingless)",
  4054. image: {
  4055. source: "./media/characters/kaylum/front-wingless.svg",
  4056. bottom: 0.01,
  4057. extra: 1117 / 1031
  4058. }
  4059. }
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(3.05, "meters")
  4065. },
  4066. {
  4067. name: "Master",
  4068. height: math.unit(5.5, "meters")
  4069. },
  4070. {
  4071. name: "Rampage",
  4072. height: math.unit(19, "meters")
  4073. },
  4074. {
  4075. name: "Macro Lite",
  4076. height: math.unit(37, "meters")
  4077. },
  4078. {
  4079. name: "Hyper Predator",
  4080. height: math.unit(61, "meters")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(138, "meters"),
  4085. default: true
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4091. {
  4092. front: {
  4093. height: math.unit(6, "feet"),
  4094. weight: math.unit(150, "lbs"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/geta/front.svg"
  4098. }
  4099. }
  4100. },
  4101. [
  4102. {
  4103. name: "Micro",
  4104. height: math.unit(3, "inches"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(5 + 5 / 12, "feet")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(300, "lbs"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/tyrnn/front.svg"
  4122. }
  4123. }
  4124. },
  4125. [
  4126. {
  4127. name: "Main Height",
  4128. height: math.unit(355, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Fave. Height",
  4133. height: math.unit(2400, "feet")
  4134. }
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(6, "feet"),
  4142. weight: math.unit(300, "lbs"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/appledectomy/front.svg"
  4146. }
  4147. }
  4148. },
  4149. [
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(2500, "feet")
  4153. },
  4154. {
  4155. name: "Megamacro",
  4156. height: math.unit(50, "miles"),
  4157. default: true
  4158. },
  4159. {
  4160. name: "Gigamacro",
  4161. height: math.unit(5000, "miles")
  4162. },
  4163. {
  4164. name: "Teramacro",
  4165. height: math.unit(250000, "miles")
  4166. },
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4171. {
  4172. front: {
  4173. height: math.unit(6, "feet"),
  4174. weight: math.unit(200, "lbs"),
  4175. name: "Front",
  4176. image: {
  4177. source: "./media/characters/vulpes/front.svg",
  4178. extra: 573 / 543,
  4179. bottom: 0.033
  4180. }
  4181. },
  4182. side: {
  4183. height: math.unit(6, "feet"),
  4184. weight: math.unit(200, "lbs"),
  4185. name: "Side",
  4186. image: {
  4187. source: "./media/characters/vulpes/side.svg",
  4188. extra: 577 / 549,
  4189. bottom: 11 / 588
  4190. }
  4191. },
  4192. back: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(200, "lbs"),
  4195. name: "Back",
  4196. image: {
  4197. source: "./media/characters/vulpes/back.svg",
  4198. extra: 573 / 549,
  4199. bottom: 20 / 593
  4200. }
  4201. },
  4202. feet: {
  4203. height: math.unit(1.276, "feet"),
  4204. name: "Feet",
  4205. image: {
  4206. source: "./media/characters/vulpes/feet.svg"
  4207. }
  4208. },
  4209. maw: {
  4210. height: math.unit(1.18, "feet"),
  4211. name: "Maw",
  4212. image: {
  4213. source: "./media/characters/vulpes/maw.svg"
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Micro",
  4220. height: math.unit(2, "inches")
  4221. },
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(6.3, "feet")
  4225. },
  4226. {
  4227. name: "Macro",
  4228. height: math.unit(850, "feet")
  4229. },
  4230. {
  4231. name: "Megamacro",
  4232. height: math.unit(7500, "feet"),
  4233. default: true
  4234. },
  4235. {
  4236. name: "Gigamacro",
  4237. height: math.unit(570000, "miles")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4243. {
  4244. front: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(210, "lbs"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/rain-fallen/front.svg"
  4250. }
  4251. },
  4252. side: {
  4253. height: math.unit(6, "feet"),
  4254. weight: math.unit(210, "lbs"),
  4255. name: "Side",
  4256. image: {
  4257. source: "./media/characters/rain-fallen/side.svg"
  4258. }
  4259. },
  4260. back: {
  4261. height: math.unit(6, "feet"),
  4262. weight: math.unit(210, "lbs"),
  4263. name: "Back",
  4264. image: {
  4265. source: "./media/characters/rain-fallen/back.svg"
  4266. }
  4267. },
  4268. feral: {
  4269. height: math.unit(9, "feet"),
  4270. weight: math.unit(700, "lbs"),
  4271. name: "Feral",
  4272. image: {
  4273. source: "./media/characters/rain-fallen/feral.svg"
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(5, "meter")
  4281. },
  4282. {
  4283. name: "Macro",
  4284. height: math.unit(150, "meter"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Megamacro",
  4289. height: math.unit(278e6, "meter")
  4290. },
  4291. {
  4292. name: "Gigamacro",
  4293. height: math.unit(2e9, "meter")
  4294. },
  4295. {
  4296. name: "Teramacro",
  4297. height: math.unit(8e12, "meter")
  4298. },
  4299. {
  4300. name: "Devourer",
  4301. height: math.unit(14, "zettameters")
  4302. },
  4303. {
  4304. name: "Scarlet King",
  4305. height: math.unit(18, "yottameters")
  4306. },
  4307. {
  4308. name: "Void",
  4309. height: math.unit(6.66e66, "yottameters")
  4310. }
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4315. {
  4316. standing: {
  4317. height: math.unit(6, "feet"),
  4318. weight: math.unit(180, "lbs"),
  4319. name: "Standing",
  4320. image: {
  4321. source: "./media/characters/zaakira/standing.svg"
  4322. }
  4323. },
  4324. laying: {
  4325. height: math.unit(3, "feet"),
  4326. weight: math.unit(180, "lbs"),
  4327. name: "Laying",
  4328. image: {
  4329. source: "./media/characters/zaakira/laying.svg"
  4330. }
  4331. },
  4332. },
  4333. [
  4334. {
  4335. name: "Normal",
  4336. height: math.unit(12, "feet")
  4337. },
  4338. {
  4339. name: "Macro",
  4340. height: math.unit(279, "feet"),
  4341. default: true
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4347. {
  4348. femSfw: {
  4349. height: math.unit(8, "feet"),
  4350. weight: math.unit(350, "lb"),
  4351. name: "Fem",
  4352. image: {
  4353. source: "./media/characters/sigvald/fem-sfw.svg",
  4354. extra: 182 / 164,
  4355. bottom: 8.7 / 190.5
  4356. }
  4357. },
  4358. femNsfw: {
  4359. height: math.unit(8, "feet"),
  4360. weight: math.unit(350, "lb"),
  4361. name: "Fem (NSFW)",
  4362. image: {
  4363. source: "./media/characters/sigvald/fem-nsfw.svg",
  4364. extra: 182 / 164,
  4365. bottom: 8.7 / 190.5
  4366. }
  4367. },
  4368. maleNsfw: {
  4369. height: math.unit(8, "feet"),
  4370. weight: math.unit(350, "lb"),
  4371. name: "Male (NSFW)",
  4372. image: {
  4373. source: "./media/characters/sigvald/male-nsfw.svg",
  4374. extra: 182 / 164,
  4375. bottom: 8.7 / 190.5
  4376. }
  4377. },
  4378. hermNsfw: {
  4379. height: math.unit(8, "feet"),
  4380. weight: math.unit(350, "lb"),
  4381. name: "Herm (NSFW)",
  4382. image: {
  4383. source: "./media/characters/sigvald/herm-nsfw.svg",
  4384. extra: 182 / 164,
  4385. bottom: 8.7 / 190.5
  4386. }
  4387. },
  4388. dick: {
  4389. height: math.unit(2.36, "feet"),
  4390. name: "Dick",
  4391. image: {
  4392. source: "./media/characters/sigvald/dick.svg"
  4393. }
  4394. },
  4395. eye: {
  4396. height: math.unit(0.31, "feet"),
  4397. name: "Eye",
  4398. image: {
  4399. source: "./media/characters/sigvald/eye.svg"
  4400. }
  4401. },
  4402. mouth: {
  4403. height: math.unit(0.92, "feet"),
  4404. name: "Mouth",
  4405. image: {
  4406. source: "./media/characters/sigvald/mouth.svg"
  4407. }
  4408. },
  4409. paws: {
  4410. height: math.unit(2.2, "feet"),
  4411. name: "Paws",
  4412. image: {
  4413. source: "./media/characters/sigvald/paws.svg"
  4414. }
  4415. }
  4416. },
  4417. [
  4418. {
  4419. name: "Normal",
  4420. height: math.unit(8, "feet")
  4421. },
  4422. {
  4423. name: "Large",
  4424. height: math.unit(12, "feet")
  4425. },
  4426. {
  4427. name: "Larger",
  4428. height: math.unit(20, "feet")
  4429. },
  4430. {
  4431. name: "Macro",
  4432. height: math.unit(150, "feet")
  4433. },
  4434. {
  4435. name: "Macro+",
  4436. height: math.unit(200, "feet"),
  4437. default: true
  4438. },
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4443. {
  4444. side: {
  4445. height: math.unit(12, "feet"),
  4446. weight: math.unit(2000, "kg"),
  4447. name: "Side",
  4448. image: {
  4449. source: "./media/characters/scott/side.svg",
  4450. extra: 754 / 724,
  4451. bottom: 0.069
  4452. }
  4453. },
  4454. upright: {
  4455. height: math.unit(12, "feet"),
  4456. weight: math.unit(2000, "kg"),
  4457. name: "Upright",
  4458. image: {
  4459. source: "./media/characters/scott/upright.svg",
  4460. extra: 3881 / 3722,
  4461. bottom: 0.05
  4462. }
  4463. },
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(12, "feet"),
  4469. default: true
  4470. },
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4475. {
  4476. side: {
  4477. height: math.unit(8, "meters"),
  4478. weight: math.unit(84755, "lbs"),
  4479. name: "Side",
  4480. image: {
  4481. source: "./media/characters/tobias/side.svg",
  4482. extra: 1474 / 1096,
  4483. bottom: 38.9 / 1513.1235
  4484. }
  4485. },
  4486. },
  4487. [
  4488. {
  4489. name: "Normal",
  4490. height: math.unit(8, "meters"),
  4491. default: true
  4492. },
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4497. {
  4498. front: {
  4499. height: math.unit(5.5, "feet"),
  4500. weight: math.unit(400, "lbs"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/kieran/front.svg",
  4504. extra: 2694 / 2364,
  4505. bottom: 217 / 2908
  4506. }
  4507. },
  4508. side: {
  4509. height: math.unit(5.5, "feet"),
  4510. weight: math.unit(400, "lbs"),
  4511. name: "Side",
  4512. image: {
  4513. source: "./media/characters/kieran/side.svg",
  4514. extra: 875 / 777,
  4515. bottom: 84.6 / 959
  4516. }
  4517. },
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(5.5, "feet"),
  4523. default: true
  4524. },
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4529. {
  4530. side: {
  4531. height: math.unit(2, "meters"),
  4532. weight: math.unit(70, "kg"),
  4533. name: "Side",
  4534. image: {
  4535. source: "./media/characters/sanya/side.svg",
  4536. bottom: 0.02,
  4537. extra: 1.02
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Small",
  4544. height: math.unit(2, "meters")
  4545. },
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(3, "meters")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(16, "meters"),
  4553. default: true
  4554. },
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(2, "meters"),
  4562. weight: math.unit(120, "kg"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/miranda/front.svg",
  4566. extra: 195 / 185,
  4567. bottom: 10.9 / 206.5
  4568. }
  4569. },
  4570. back: {
  4571. height: math.unit(2, "meters"),
  4572. weight: math.unit(120, "kg"),
  4573. name: "Back",
  4574. image: {
  4575. source: "./media/characters/miranda/back.svg",
  4576. extra: 201 / 193,
  4577. bottom: 2.3 / 203.7
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(10, "feet"),
  4585. default: true
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "James", species: ["deer"], tags: ["anthro"] },
  4591. {
  4592. side: {
  4593. height: math.unit(2, "meters"),
  4594. weight: math.unit(100, "kg"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/james/front.svg",
  4598. extra: 10 / 8.5
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(8.5, "feet"),
  4606. default: true
  4607. }
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4612. {
  4613. side: {
  4614. height: math.unit(9.5, "feet"),
  4615. weight: math.unit(2500, "lbs"),
  4616. name: "Side",
  4617. image: {
  4618. source: "./media/characters/heather/side.svg"
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(9.5, "feet"),
  4626. default: true
  4627. }
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4632. {
  4633. side: {
  4634. height: math.unit(6.5, "feet"),
  4635. weight: math.unit(400, "lbs"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/lukas/side.svg",
  4639. extra: 7.25 / 6.5
  4640. }
  4641. },
  4642. },
  4643. [
  4644. {
  4645. name: "Normal",
  4646. height: math.unit(6.5, "feet"),
  4647. default: true
  4648. }
  4649. ]
  4650. ))
  4651. characterMakers.push(() => makeCharacter(
  4652. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4653. {
  4654. side: {
  4655. height: math.unit(5, "feet"),
  4656. weight: math.unit(3000, "lbs"),
  4657. name: "Side",
  4658. image: {
  4659. source: "./media/characters/louise/side.svg"
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Normal",
  4666. height: math.unit(5, "feet"),
  4667. default: true
  4668. }
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4673. {
  4674. side: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(150, "lbs"),
  4677. name: "Side",
  4678. image: {
  4679. source: "./media/characters/ramona/side.svg"
  4680. }
  4681. },
  4682. },
  4683. [
  4684. {
  4685. name: "Normal",
  4686. height: math.unit(5.3, "meters"),
  4687. default: true
  4688. },
  4689. {
  4690. name: "Macro",
  4691. height: math.unit(20, "stories")
  4692. },
  4693. {
  4694. name: "Macro+",
  4695. height: math.unit(50, "stories")
  4696. },
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4701. {
  4702. standing: {
  4703. height: math.unit(5.75, "feet"),
  4704. weight: math.unit(160, "lbs"),
  4705. name: "Standing",
  4706. image: {
  4707. source: "./media/characters/deerpuff/standing.svg",
  4708. extra: 682 / 624
  4709. }
  4710. },
  4711. sitting: {
  4712. height: math.unit(5.75 / 1.79, "feet"),
  4713. weight: math.unit(160, "lbs"),
  4714. name: "Sitting",
  4715. image: {
  4716. source: "./media/characters/deerpuff/sitting.svg",
  4717. bottom: 44 / 400,
  4718. extra: 1
  4719. }
  4720. },
  4721. taurLaying: {
  4722. height: math.unit(6, "feet"),
  4723. weight: math.unit(400, "lbs"),
  4724. name: "Taur (Laying)",
  4725. image: {
  4726. source: "./media/characters/deerpuff/taur-laying.svg"
  4727. }
  4728. },
  4729. },
  4730. [
  4731. {
  4732. name: "Puffball",
  4733. height: math.unit(6, "inches")
  4734. },
  4735. {
  4736. name: "Normalpuff",
  4737. height: math.unit(5.75, "feet")
  4738. },
  4739. {
  4740. name: "Macropuff",
  4741. height: math.unit(1500, "feet"),
  4742. default: true
  4743. },
  4744. {
  4745. name: "Megapuff",
  4746. height: math.unit(500, "miles")
  4747. },
  4748. {
  4749. name: "Gigapuff",
  4750. height: math.unit(250000, "miles")
  4751. },
  4752. {
  4753. name: "Omegapuff",
  4754. height: math.unit(1000, "lightyears")
  4755. },
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4760. {
  4761. stomping: {
  4762. height: math.unit(6, "feet"),
  4763. weight: math.unit(170, "lbs"),
  4764. name: "Stomping",
  4765. image: {
  4766. source: "./media/characters/vivian/stomping.svg"
  4767. }
  4768. },
  4769. sitting: {
  4770. height: math.unit(6 / 1.75, "feet"),
  4771. weight: math.unit(170, "lbs"),
  4772. name: "Sitting",
  4773. image: {
  4774. source: "./media/characters/vivian/sitting.svg",
  4775. bottom: 1 / 6.4,
  4776. extra: 1,
  4777. }
  4778. },
  4779. },
  4780. [
  4781. {
  4782. name: "Normal",
  4783. height: math.unit(7, "feet"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Macro",
  4788. height: math.unit(10, "stories")
  4789. },
  4790. {
  4791. name: "Macro+",
  4792. height: math.unit(30, "stories")
  4793. },
  4794. {
  4795. name: "Megamacro",
  4796. height: math.unit(10, "miles")
  4797. },
  4798. {
  4799. name: "Megamacro+",
  4800. height: math.unit(2750000, "meters")
  4801. },
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(160, "lbs"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/prince/front.svg",
  4813. extra: 3400 / 3000
  4814. }
  4815. },
  4816. jumping: {
  4817. height: math.unit(6, "feet"),
  4818. weight: math.unit(160, "lbs"),
  4819. name: "Jumping",
  4820. image: {
  4821. source: "./media/characters/prince/jump.svg",
  4822. extra: 2555 / 2134
  4823. }
  4824. },
  4825. },
  4826. [
  4827. {
  4828. name: "Normal",
  4829. height: math.unit(7.75, "feet"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Not cute",
  4834. height: math.unit(17, "feet")
  4835. },
  4836. {
  4837. name: "I said NOT",
  4838. height: math.unit(91, "feet")
  4839. },
  4840. {
  4841. name: "Please stop",
  4842. height: math.unit(560, "feet")
  4843. },
  4844. {
  4845. name: "What have you done",
  4846. height: math.unit(2200, "feet")
  4847. },
  4848. {
  4849. name: "Deer God",
  4850. height: math.unit(3.6, "miles")
  4851. },
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4856. {
  4857. standing: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(300, "lbs"),
  4860. name: "Standing",
  4861. image: {
  4862. source: "./media/characters/psymon/standing.svg",
  4863. extra: 1888 / 1810,
  4864. bottom: 0.05
  4865. }
  4866. },
  4867. slithering: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(300, "lbs"),
  4870. name: "Slithering",
  4871. image: {
  4872. source: "./media/characters/psymon/slithering.svg",
  4873. extra: 1330 / 1224
  4874. }
  4875. },
  4876. slitheringAlt: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(300, "lbs"),
  4879. name: "Slithering (Alt)",
  4880. image: {
  4881. source: "./media/characters/psymon/slithering-alt.svg",
  4882. extra: 1330 / 1224
  4883. }
  4884. },
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(11.25, "feet"),
  4890. default: true
  4891. },
  4892. {
  4893. name: "Large",
  4894. height: math.unit(27, "feet")
  4895. },
  4896. {
  4897. name: "Giant",
  4898. height: math.unit(87, "feet")
  4899. },
  4900. {
  4901. name: "Macro",
  4902. height: math.unit(365, "feet")
  4903. },
  4904. {
  4905. name: "Megamacro",
  4906. height: math.unit(3, "miles")
  4907. },
  4908. {
  4909. name: "World Serpent",
  4910. height: math.unit(8000, "miles")
  4911. },
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4916. {
  4917. front: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Front",
  4921. image: {
  4922. source: "./media/characters/daimos/front.svg",
  4923. extra: 4160 / 3897,
  4924. bottom: 0.021
  4925. }
  4926. }
  4927. },
  4928. [
  4929. {
  4930. name: "Normal",
  4931. height: math.unit(8, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Big Dog",
  4936. height: math.unit(22, "feet")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(127, "feet")
  4941. },
  4942. {
  4943. name: "Megamacro",
  4944. height: math.unit(3600, "feet")
  4945. },
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4950. {
  4951. side: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(180, "lbs"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/blake/side.svg",
  4957. extra: 1212 / 1120,
  4958. bottom: 0.05
  4959. }
  4960. },
  4961. crouched: {
  4962. height: math.unit(6 * 0.57, "feet"),
  4963. weight: math.unit(180, "lbs"),
  4964. name: "Crouched",
  4965. image: {
  4966. source: "./media/characters/blake/crouched.svg",
  4967. extra: 840 / 587,
  4968. bottom: 0.04
  4969. }
  4970. },
  4971. bent: {
  4972. height: math.unit(6 * 0.75, "feet"),
  4973. weight: math.unit(180, "lbs"),
  4974. name: "Bent",
  4975. image: {
  4976. source: "./media/characters/blake/bent.svg",
  4977. extra: 592 / 544,
  4978. bottom: 0.035
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(8 + 1 / 6, "feet"),
  4986. default: true
  4987. },
  4988. {
  4989. name: "Big Backside",
  4990. height: math.unit(37, "feet")
  4991. },
  4992. {
  4993. name: "Subway Shredder",
  4994. height: math.unit(72, "feet")
  4995. },
  4996. {
  4997. name: "City Carver",
  4998. height: math.unit(1675, "feet")
  4999. },
  5000. {
  5001. name: "Tectonic Tweaker",
  5002. height: math.unit(2300, "miles")
  5003. },
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5008. {
  5009. front: {
  5010. height: math.unit(6, "feet"),
  5011. weight: math.unit(180, "lbs"),
  5012. name: "Front",
  5013. image: {
  5014. source: "./media/characters/guisetto/front.svg",
  5015. extra: 856 / 817,
  5016. bottom: 0.06
  5017. }
  5018. },
  5019. airborne: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(180, "lbs"),
  5022. name: "Airborne",
  5023. image: {
  5024. source: "./media/characters/guisetto/airborne.svg",
  5025. extra: 584 / 525
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(10 + 11 / 12, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "Large",
  5037. height: math.unit(35, "feet")
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(475, "feet")
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5047. {
  5048. front: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(180, "lbs"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/luxor/front.svg",
  5054. extra: 2940 / 2152
  5055. }
  5056. },
  5057. back: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(180, "lbs"),
  5060. name: "Back",
  5061. image: {
  5062. source: "./media/characters/luxor/back.svg",
  5063. extra: 1083 / 960
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(5 + 5 / 6, "feet"),
  5071. default: true
  5072. },
  5073. {
  5074. name: "Lamp",
  5075. height: math.unit(50, "feet")
  5076. },
  5077. {
  5078. name: "Lämp",
  5079. height: math.unit(300, "feet")
  5080. },
  5081. {
  5082. name: "The sun is a lamp",
  5083. height: math.unit(250000, "miles")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5089. {
  5090. front: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(50, "lbs"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/huoyan/front.svg"
  5096. }
  5097. },
  5098. side: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(180, "lbs"),
  5101. name: "Side",
  5102. image: {
  5103. source: "./media/characters/huoyan/side.svg"
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Chef",
  5110. height: math.unit(9, "feet")
  5111. },
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(65, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro",
  5119. height: math.unit(780, "feet")
  5120. },
  5121. {
  5122. name: "Flaming Mountain",
  5123. height: math.unit(4.8, "miles")
  5124. },
  5125. {
  5126. name: "Celestial",
  5127. height: math.unit(765000, "miles")
  5128. },
  5129. ]
  5130. ))
  5131. characterMakers.push(() => makeCharacter(
  5132. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5133. {
  5134. front: {
  5135. height: math.unit(5 + 3 / 4, "feet"),
  5136. weight: math.unit(120, "lbs"),
  5137. name: "Front",
  5138. image: {
  5139. source: "./media/characters/tails/front.svg"
  5140. }
  5141. }
  5142. },
  5143. [
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(5 + 3 / 4, "feet"),
  5147. default: true
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(4, "feet"),
  5156. weight: math.unit(50, "lbs"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/rainy/front.svg"
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(800, "feet"),
  5167. default: true
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(150, "lbs"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/rainier/front.svg"
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Micro",
  5186. height: math.unit(2, "mm"),
  5187. default: true
  5188. }
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5193. {
  5194. front: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(180, "lbs"),
  5197. name: "Front",
  5198. image: {
  5199. source: "./media/characters/andy/front.svg"
  5200. }
  5201. }
  5202. },
  5203. [
  5204. {
  5205. name: "Normal",
  5206. height: math.unit(8, "feet"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Macro",
  5211. height: math.unit(1000, "feet")
  5212. },
  5213. {
  5214. name: "Megamacro",
  5215. height: math.unit(5, "miles")
  5216. },
  5217. {
  5218. name: "Gigamacro",
  5219. height: math.unit(5000, "miles")
  5220. },
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5225. {
  5226. front: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(210, "lbs"),
  5229. name: "Front",
  5230. image: {
  5231. source: "./media/characters/cimmaron/front-sfw.svg",
  5232. extra: 701 / 676,
  5233. bottom: 0.046
  5234. }
  5235. },
  5236. back: {
  5237. height: math.unit(6, "feet"),
  5238. weight: math.unit(210, "lbs"),
  5239. name: "Back",
  5240. image: {
  5241. source: "./media/characters/cimmaron/back-sfw.svg",
  5242. extra: 701 / 676,
  5243. bottom: 0.046
  5244. }
  5245. },
  5246. frontNsfw: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(210, "lbs"),
  5249. name: "Front (NSFW)",
  5250. image: {
  5251. source: "./media/characters/cimmaron/front-nsfw.svg",
  5252. extra: 701 / 676,
  5253. bottom: 0.046
  5254. }
  5255. },
  5256. backNsfw: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(210, "lbs"),
  5259. name: "Back (NSFW)",
  5260. image: {
  5261. source: "./media/characters/cimmaron/back-nsfw.svg",
  5262. extra: 701 / 676,
  5263. bottom: 0.046
  5264. }
  5265. },
  5266. dick: {
  5267. height: math.unit(1.714, "feet"),
  5268. name: "Dick",
  5269. image: {
  5270. source: "./media/characters/cimmaron/dick.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(6, "feet"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro Mayor",
  5282. height: math.unit(350, "meters")
  5283. },
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(200, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/akari/front.svg",
  5295. extra: 962 / 901,
  5296. bottom: 0.04
  5297. }
  5298. }
  5299. },
  5300. [
  5301. {
  5302. name: "Micro",
  5303. height: math.unit(5, "inches"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Normal",
  5308. height: math.unit(7, "feet")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(140, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/cynosura/front.svg",
  5321. extra: 896 / 847
  5322. }
  5323. },
  5324. back: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(140, "lbs"),
  5327. name: "Back",
  5328. image: {
  5329. source: "./media/characters/cynosura/back.svg",
  5330. extra: 1365 / 1250
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Micro",
  5337. height: math.unit(4, "inches")
  5338. },
  5339. {
  5340. name: "Normal",
  5341. height: math.unit(5.75, "feet"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Tall",
  5346. height: math.unit(10, "feet")
  5347. },
  5348. {
  5349. name: "Big",
  5350. height: math.unit(20, "feet")
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(50, "feet")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(170, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/gin/front.svg",
  5367. extra: 1.053,
  5368. bottom: 0.025
  5369. }
  5370. },
  5371. foot: {
  5372. height: math.unit(6 / 4.25, "feet"),
  5373. name: "Foot",
  5374. image: {
  5375. source: "./media/characters/gin/foot.svg"
  5376. }
  5377. },
  5378. sole: {
  5379. height: math.unit(6 / 4.40, "feet"),
  5380. name: "Sole",
  5381. image: {
  5382. source: "./media/characters/gin/sole.svg"
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(13 + 2 / 12, "feet")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(1500, "feet")
  5394. },
  5395. {
  5396. name: "Megamacro",
  5397. height: math.unit(200, "miles"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Gigamacro",
  5402. height: math.unit(500, "megameters")
  5403. },
  5404. {
  5405. name: "Teramacro",
  5406. height: math.unit(15, "lightyears")
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(6 + 1 / 6, "feet"),
  5415. weight: math.unit(178, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/guy/front.svg"
  5419. }
  5420. }
  5421. },
  5422. [
  5423. {
  5424. name: "Normal",
  5425. height: math.unit(6 + 1 / 6, "feet"),
  5426. default: true
  5427. },
  5428. {
  5429. name: "Large",
  5430. height: math.unit(25 + 7 / 12, "feet")
  5431. },
  5432. {
  5433. name: "Macro",
  5434. height: math.unit(60 + 9 / 12, "feet")
  5435. },
  5436. {
  5437. name: "Macro+",
  5438. height: math.unit(246, "feet")
  5439. },
  5440. {
  5441. name: "Macro++",
  5442. height: math.unit(878, "feet")
  5443. }
  5444. ]
  5445. ))
  5446. characterMakers.push(() => makeCharacter(
  5447. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5448. {
  5449. front: {
  5450. height: math.unit(9, "feet"),
  5451. weight: math.unit(800, "lbs"),
  5452. name: "Front",
  5453. image: {
  5454. source: "./media/characters/tiberius/front.svg",
  5455. extra: 2295 / 2071
  5456. }
  5457. },
  5458. back: {
  5459. height: math.unit(9, "feet"),
  5460. weight: math.unit(800, "lbs"),
  5461. name: "Back",
  5462. image: {
  5463. source: "./media/characters/tiberius/back.svg",
  5464. extra: 2373 / 2160
  5465. }
  5466. },
  5467. },
  5468. [
  5469. {
  5470. name: "Normal",
  5471. height: math.unit(9, "feet"),
  5472. default: true
  5473. }
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5478. {
  5479. front: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(600, "lbs"),
  5482. name: "Front",
  5483. image: {
  5484. source: "./media/characters/surgo/front.svg",
  5485. extra: 3591 / 2227
  5486. }
  5487. },
  5488. back: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(600, "lbs"),
  5491. name: "Back",
  5492. image: {
  5493. source: "./media/characters/surgo/back.svg",
  5494. extra: 3557 / 2228
  5495. }
  5496. },
  5497. laying: {
  5498. height: math.unit(6 * 0.85, "feet"),
  5499. weight: math.unit(600, "lbs"),
  5500. name: "Laying",
  5501. image: {
  5502. source: "./media/characters/surgo/laying.svg"
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(6, "feet"),
  5510. default: true
  5511. }
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5516. {
  5517. side: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(150, "lbs"),
  5520. name: "Side",
  5521. image: {
  5522. source: "./media/characters/cibus/side.svg",
  5523. extra: 800 / 400
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(6, "feet"),
  5531. default: true
  5532. }
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(240, "lbs"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/nibbles/front.svg"
  5544. }
  5545. },
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(240, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/nibbles/side.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(9, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5565. {
  5566. side: {
  5567. height: math.unit(5 + 1 / 6, "feet"),
  5568. weight: math.unit(130, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/rikky/side.svg",
  5572. extra: 851 / 801
  5573. }
  5574. },
  5575. },
  5576. [
  5577. {
  5578. name: "Normal",
  5579. height: math.unit(5 + 1 / 6, "feet")
  5580. },
  5581. {
  5582. name: "Macro",
  5583. height: math.unit(152, "feet"),
  5584. default: true
  5585. },
  5586. {
  5587. name: "Megamacro",
  5588. height: math.unit(7, "miles")
  5589. }
  5590. ]
  5591. ))
  5592. characterMakers.push(() => makeCharacter(
  5593. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5594. {
  5595. side: {
  5596. height: math.unit(370, "cm"),
  5597. weight: math.unit(350, "lbs"),
  5598. name: "Side",
  5599. image: {
  5600. source: "./media/characters/malfressa/side.svg"
  5601. }
  5602. },
  5603. walking: {
  5604. height: math.unit(370, "cm"),
  5605. weight: math.unit(350, "lbs"),
  5606. name: "Walking",
  5607. image: {
  5608. source: "./media/characters/malfressa/walking.svg"
  5609. }
  5610. },
  5611. feral: {
  5612. height: math.unit(2500, "cm"),
  5613. weight: math.unit(100000, "lbs"),
  5614. name: "Feral",
  5615. image: {
  5616. source: "./media/characters/malfressa/feral.svg",
  5617. extra: 2108 / 837,
  5618. bottom: 0.02
  5619. }
  5620. },
  5621. },
  5622. [
  5623. {
  5624. name: "Normal",
  5625. height: math.unit(370, "cm")
  5626. },
  5627. {
  5628. name: "Macro",
  5629. height: math.unit(300, "meters"),
  5630. default: true
  5631. }
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(60, "kg"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/jaro/front.svg"
  5643. }
  5644. },
  5645. back: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(60, "kg"),
  5648. name: "Back",
  5649. image: {
  5650. source: "./media/characters/jaro/back.svg"
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Micro",
  5657. height: math.unit(7, "inches")
  5658. },
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(5.5, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Minimacro",
  5666. height: math.unit(20, "feet")
  5667. },
  5668. {
  5669. name: "Macro",
  5670. height: math.unit(200, "meters")
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(195, "lb"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/rogue/front.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Macro",
  5689. height: math.unit(90, "feet"),
  5690. default: true
  5691. },
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(5 + 8 / 12, "feet"),
  5699. weight: math.unit(140, "lb"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/piper/front.svg",
  5703. extra: 3928 / 3681
  5704. }
  5705. },
  5706. },
  5707. [
  5708. {
  5709. name: "Micro",
  5710. height: math.unit(2, "inches")
  5711. },
  5712. {
  5713. name: "Normal",
  5714. height: math.unit(5 + 8 / 12, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(250, "feet"),
  5719. default: true
  5720. },
  5721. {
  5722. name: "Megamacro",
  5723. height: math.unit(7, "miles")
  5724. },
  5725. ]
  5726. ))
  5727. characterMakers.push(() => makeCharacter(
  5728. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5729. {
  5730. front: {
  5731. height: math.unit(6, "feet"),
  5732. weight: math.unit(220, "lb"),
  5733. name: "Front",
  5734. image: {
  5735. source: "./media/characters/gemini/front.svg"
  5736. }
  5737. },
  5738. back: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(220, "lb"),
  5741. name: "Back",
  5742. image: {
  5743. source: "./media/characters/gemini/back.svg"
  5744. }
  5745. },
  5746. kneeling: {
  5747. height: math.unit(6 / 1.5, "feet"),
  5748. weight: math.unit(220, "lb"),
  5749. name: "Kneeling",
  5750. image: {
  5751. source: "./media/characters/gemini/kneeling.svg",
  5752. bottom: 0.02
  5753. }
  5754. },
  5755. },
  5756. [
  5757. {
  5758. name: "Macro",
  5759. height: math.unit(300, "meters"),
  5760. default: true
  5761. },
  5762. {
  5763. name: "Megamacro",
  5764. height: math.unit(6900, "meters")
  5765. },
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5770. {
  5771. anthro: {
  5772. height: math.unit(2.35, "meters"),
  5773. weight: math.unit(73, "kg"),
  5774. name: "Anthro",
  5775. image: {
  5776. source: "./media/characters/alicia/anthro.svg",
  5777. extra: 2571 / 2385,
  5778. bottom: 75 / 2648
  5779. }
  5780. },
  5781. paw: {
  5782. height: math.unit(1.32, "feet"),
  5783. name: "Paw",
  5784. image: {
  5785. source: "./media/characters/alicia/paw.svg"
  5786. }
  5787. },
  5788. feral: {
  5789. height: math.unit(1.69, "meters"),
  5790. weight: math.unit(73, "kg"),
  5791. name: "Feral",
  5792. image: {
  5793. source: "./media/characters/alicia/feral.svg",
  5794. extra: 2123 / 1715,
  5795. bottom: 222 / 2349
  5796. }
  5797. },
  5798. },
  5799. [
  5800. {
  5801. name: "Normal",
  5802. height: math.unit(2.35, "meters")
  5803. },
  5804. {
  5805. name: "Macro",
  5806. height: math.unit(60, "meters"),
  5807. default: true
  5808. },
  5809. {
  5810. name: "Megamacro",
  5811. height: math.unit(10000, "kilometers")
  5812. },
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5817. {
  5818. front: {
  5819. height: math.unit(7, "feet"),
  5820. weight: math.unit(250, "lbs"),
  5821. name: "Front",
  5822. image: {
  5823. source: "./media/characters/archy/front.svg"
  5824. }
  5825. }
  5826. },
  5827. [
  5828. {
  5829. name: "Micro",
  5830. height: math.unit(1, "inch")
  5831. },
  5832. {
  5833. name: "Shorty",
  5834. height: math.unit(5, "feet")
  5835. },
  5836. {
  5837. name: "Normal",
  5838. height: math.unit(7, "feet")
  5839. },
  5840. {
  5841. name: "Macro",
  5842. height: math.unit(600, "meters"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Megamacro",
  5847. height: math.unit(1, "mile")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(1.65, "meters"),
  5856. weight: math.unit(74, "kg"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/berri/front.svg",
  5860. extra: 857 / 837,
  5861. bottom: 18 / 877
  5862. }
  5863. },
  5864. bum: {
  5865. height: math.unit(1.46, "feet"),
  5866. name: "Bum",
  5867. image: {
  5868. source: "./media/characters/berri/bum.svg"
  5869. }
  5870. },
  5871. mouth: {
  5872. height: math.unit(0.44, "feet"),
  5873. name: "Mouth",
  5874. image: {
  5875. source: "./media/characters/berri/mouth.svg"
  5876. }
  5877. },
  5878. paw: {
  5879. height: math.unit(0.826, "feet"),
  5880. name: "Paw",
  5881. image: {
  5882. source: "./media/characters/berri/paw.svg"
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(1.65, "meters")
  5890. },
  5891. {
  5892. name: "Macro",
  5893. height: math.unit(60, "m"),
  5894. default: true
  5895. },
  5896. {
  5897. name: "Megamacro",
  5898. height: math.unit(9.213, "km")
  5899. },
  5900. {
  5901. name: "Planet Eater",
  5902. height: math.unit(489, "megameters")
  5903. },
  5904. {
  5905. name: "Teramacro",
  5906. height: math.unit(2471635000000, "meters")
  5907. },
  5908. {
  5909. name: "Examacro",
  5910. height: math.unit(8.0624e+26, "meters")
  5911. }
  5912. ]
  5913. ))
  5914. characterMakers.push(() => makeCharacter(
  5915. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5916. {
  5917. front: {
  5918. height: math.unit(1.72, "meters"),
  5919. weight: math.unit(68, "kg"),
  5920. name: "Front",
  5921. image: {
  5922. source: "./media/characters/lexi/front.svg"
  5923. }
  5924. }
  5925. },
  5926. [
  5927. {
  5928. name: "Very Smol",
  5929. height: math.unit(10, "mm")
  5930. },
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(6.8, "cm"),
  5934. default: true
  5935. },
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(1.72, "m")
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(1.69, "meters"),
  5947. weight: math.unit(68, "kg"),
  5948. name: "Front",
  5949. image: {
  5950. source: "./media/characters/martin/front.svg",
  5951. extra: 596 / 581
  5952. }
  5953. }
  5954. },
  5955. [
  5956. {
  5957. name: "Micro",
  5958. height: math.unit(6.85, "cm"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Normal",
  5963. height: math.unit(1.69, "m")
  5964. }
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(1.69, "meters"),
  5972. weight: math.unit(68, "kg"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/juno/front.svg"
  5976. }
  5977. }
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(7, "cm")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(1.89, "m")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(353, "meters"),
  5991. default: true
  5992. }
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(1.93, "meters"),
  6000. weight: math.unit(83, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/samantha/front.svg"
  6004. }
  6005. },
  6006. frontClothed: {
  6007. height: math.unit(1.93, "meters"),
  6008. weight: math.unit(83, "kg"),
  6009. name: "Front (Clothed)",
  6010. image: {
  6011. source: "./media/characters/samantha/front-clothed.svg"
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(1.93, "meters"),
  6016. weight: math.unit(83, "kg"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/samantha/back.svg"
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(1.93, "m")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(74, "meters"),
  6031. default: true
  6032. },
  6033. {
  6034. name: "Macro+",
  6035. height: math.unit(223, "meters"),
  6036. },
  6037. {
  6038. name: "Megamacro",
  6039. height: math.unit(8381, "meters"),
  6040. },
  6041. {
  6042. name: "Megamacro+",
  6043. height: math.unit(12000, "kilometers")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6049. {
  6050. front: {
  6051. height: math.unit(1.92, "meters"),
  6052. weight: math.unit(80, "kg"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/dr-clay/front.svg"
  6056. }
  6057. },
  6058. frontClothed: {
  6059. height: math.unit(1.92, "meters"),
  6060. weight: math.unit(80, "kg"),
  6061. name: "Front (Clothed)",
  6062. image: {
  6063. source: "./media/characters/dr-clay/front-clothed.svg"
  6064. }
  6065. }
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(1.92, "m")
  6071. },
  6072. {
  6073. name: "Macro",
  6074. height: math.unit(214, "meters"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Macro+",
  6079. height: math.unit(12.237, "meters"),
  6080. },
  6081. {
  6082. name: "Megamacro",
  6083. height: math.unit(557, "megameters"),
  6084. },
  6085. {
  6086. name: "Unimaginable",
  6087. height: math.unit(120e9, "lightyears")
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6093. {
  6094. front: {
  6095. height: math.unit(2, "meters"),
  6096. weight: math.unit(80, "kg"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Teramacro",
  6106. height: math.unit(500000, "lightyears"),
  6107. default: true
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(2, "meters"),
  6116. weight: math.unit(150, "kg"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/vemus/front.svg",
  6120. extra: 2384 / 2084,
  6121. bottom: 0.0123
  6122. }
  6123. }
  6124. },
  6125. [
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(3.75, "meters"),
  6129. default: true
  6130. },
  6131. {
  6132. name: "Big",
  6133. height: math.unit(8, "meters")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(100, "meters")
  6138. },
  6139. {
  6140. name: "Macro+",
  6141. height: math.unit(1500, "meters")
  6142. },
  6143. {
  6144. name: "Stellar",
  6145. height: math.unit(14e8, "meters")
  6146. },
  6147. ]
  6148. ))
  6149. characterMakers.push(() => makeCharacter(
  6150. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6151. {
  6152. front: {
  6153. height: math.unit(2, "meters"),
  6154. weight: math.unit(70, "kg"),
  6155. name: "Front",
  6156. image: {
  6157. source: "./media/characters/beherit/front.svg",
  6158. extra: 1408 / 1242
  6159. }
  6160. }
  6161. },
  6162. [
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(6, "feet")
  6166. },
  6167. {
  6168. name: "Lorg",
  6169. height: math.unit(25, "feet"),
  6170. default: true
  6171. },
  6172. {
  6173. name: "Lorger",
  6174. height: math.unit(75, "feet")
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(200, "meters")
  6179. },
  6180. ]
  6181. ))
  6182. characterMakers.push(() => makeCharacter(
  6183. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6184. {
  6185. front: {
  6186. height: math.unit(2, "meters"),
  6187. weight: math.unit(150, "kg"),
  6188. name: "Front",
  6189. image: {
  6190. source: "./media/characters/everett/front.svg",
  6191. extra: 2038 / 1737,
  6192. bottom: 0.03
  6193. }
  6194. },
  6195. paw: {
  6196. height: math.unit(2 / 3.6, "meters"),
  6197. name: "Paw",
  6198. image: {
  6199. source: "./media/characters/everett/paw.svg"
  6200. }
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(15, "feet"),
  6207. default: true
  6208. },
  6209. {
  6210. name: "Lorg",
  6211. height: math.unit(70, "feet"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Lorger",
  6216. height: math.unit(250, "feet")
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(500, "meters")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(2, "meters"),
  6229. weight: math.unit(86, "kg"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/rose-lion/front.svg"
  6233. }
  6234. },
  6235. bent: {
  6236. height: math.unit(2 / 1.4288, "meters"),
  6237. weight: math.unit(86, "kg"),
  6238. name: "Bent",
  6239. image: {
  6240. source: "./media/characters/rose-lion/bent.svg"
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Mini-Micro",
  6247. height: math.unit(1, "cm")
  6248. },
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(3.5, "inches"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(6 + 1 / 6, "feet")
  6257. },
  6258. {
  6259. name: "Mini-Macro",
  6260. height: math.unit(9 + 10 / 12, "feet")
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(2, "meters"),
  6269. weight: math.unit(350, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/regal/front.svg"
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(2, "meters"),
  6277. weight: math.unit(350, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/regal/back.svg"
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Macro",
  6287. height: math.unit(350, "feet"),
  6288. default: true
  6289. }
  6290. ]
  6291. ))
  6292. characterMakers.push(() => makeCharacter(
  6293. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6294. {
  6295. front: {
  6296. height: math.unit(4 + 11 / 12, "feet"),
  6297. weight: math.unit(100, "lbs"),
  6298. name: "Front",
  6299. image: {
  6300. source: "./media/characters/opal/front.svg"
  6301. }
  6302. },
  6303. frontAlt: {
  6304. height: math.unit(4 + 11 / 12, "feet"),
  6305. weight: math.unit(100, "lbs"),
  6306. name: "Front (Alt)",
  6307. image: {
  6308. source: "./media/characters/opal/front-alt.svg"
  6309. }
  6310. },
  6311. },
  6312. [
  6313. {
  6314. name: "Small",
  6315. height: math.unit(4 + 11 / 12, "feet")
  6316. },
  6317. {
  6318. name: "Normal",
  6319. height: math.unit(20, "feet"),
  6320. default: true
  6321. },
  6322. {
  6323. name: "Macro",
  6324. height: math.unit(120, "feet")
  6325. },
  6326. {
  6327. name: "Megamacro",
  6328. height: math.unit(80, "miles")
  6329. },
  6330. {
  6331. name: "True Size",
  6332. height: math.unit(100000, "lightyears")
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(6, "feet"),
  6341. weight: math.unit(200, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/vector-wuff/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(2.8, "meters")
  6352. },
  6353. {
  6354. name: "Macro",
  6355. height: math.unit(450, "meters"),
  6356. default: true
  6357. },
  6358. {
  6359. name: "Megamacro",
  6360. height: math.unit(15, "kilometers")
  6361. }
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(256, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/dannik/front.svg"
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(69.57, "meters"),
  6380. default: true
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(120, "lbs"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/azura-saharah/front.svg"
  6393. }
  6394. },
  6395. back: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(120, "lbs"),
  6398. name: "Back",
  6399. image: {
  6400. source: "./media/characters/azura-saharah/back.svg"
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(100, "feet"),
  6408. default: true
  6409. },
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6414. {
  6415. side: {
  6416. height: math.unit(5 + 4 / 12, "feet"),
  6417. weight: math.unit(163, "lbs"),
  6418. name: "Side",
  6419. image: {
  6420. source: "./media/characters/kennedy/side.svg"
  6421. }
  6422. }
  6423. },
  6424. [
  6425. {
  6426. name: "Standard Doggo",
  6427. height: math.unit(5 + 4 / 12, "feet")
  6428. },
  6429. {
  6430. name: "Big Doggo",
  6431. height: math.unit(25 + 3 / 12, "feet"),
  6432. default: true
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(90, "lbs"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/odi-lunar/front.svg"
  6445. }
  6446. }
  6447. },
  6448. [
  6449. {
  6450. name: "Micro",
  6451. height: math.unit(3, "inches"),
  6452. default: true
  6453. },
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(5.5, "feet")
  6457. }
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6462. {
  6463. back: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(220, "lbs"),
  6466. name: "Back",
  6467. image: {
  6468. source: "./media/characters/mandake/back.svg"
  6469. }
  6470. }
  6471. },
  6472. [
  6473. {
  6474. name: "Normal",
  6475. height: math.unit(7, "feet"),
  6476. default: true
  6477. },
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(78, "feet")
  6481. },
  6482. {
  6483. name: "Macro+",
  6484. height: math.unit(300, "meters")
  6485. },
  6486. {
  6487. name: "Macro++",
  6488. height: math.unit(2400, "feet")
  6489. },
  6490. {
  6491. name: "Megamacro",
  6492. height: math.unit(5167, "meters")
  6493. },
  6494. {
  6495. name: "Gigamacro",
  6496. height: math.unit(41769, "miles")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6502. {
  6503. front: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(120, "lbs"),
  6506. name: "Front",
  6507. image: {
  6508. source: "./media/characters/yozey/front.svg"
  6509. }
  6510. },
  6511. frontAlt: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(120, "lbs"),
  6514. name: "Front (Alt)",
  6515. image: {
  6516. source: "./media/characters/yozey/front-alt.svg"
  6517. }
  6518. },
  6519. side: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(120, "lbs"),
  6522. name: "Side",
  6523. image: {
  6524. source: "./media/characters/yozey/side.svg"
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Micro",
  6531. height: math.unit(3, "inches"),
  6532. default: true
  6533. },
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(6, "feet")
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(103, "lbs"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/valeska-voss/front.svg"
  6549. }
  6550. }
  6551. },
  6552. [
  6553. {
  6554. name: "Mini-Sized Sub",
  6555. height: math.unit(3.1, "inches")
  6556. },
  6557. {
  6558. name: "Mid-Sized Sub",
  6559. height: math.unit(6.2, "inches")
  6560. },
  6561. {
  6562. name: "Full-Sized Sub",
  6563. height: math.unit(9.3, "inches")
  6564. },
  6565. {
  6566. name: "Normal",
  6567. height: math.unit(5 + 2 / 12, "foot"),
  6568. default: true
  6569. },
  6570. ]
  6571. ))
  6572. characterMakers.push(() => makeCharacter(
  6573. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6574. {
  6575. front: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(160, "lbs"),
  6578. name: "Front",
  6579. image: {
  6580. source: "./media/characters/gene-zeta/front.svg",
  6581. extra: 3006 / 2826,
  6582. bottom: 182 / 3188
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Micro",
  6589. height: math.unit(6, "inches")
  6590. },
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(5 + 11 / 12, "foot"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(140, "feet")
  6599. },
  6600. {
  6601. name: "Supercharged",
  6602. height: math.unit(2500, "feet")
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(350, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/razinox/front.svg",
  6615. extra: 1686 / 1548,
  6616. bottom: 28.2 / 1868
  6617. }
  6618. },
  6619. back: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(350, "lbs"),
  6622. name: "Back",
  6623. image: {
  6624. source: "./media/characters/razinox/back.svg",
  6625. extra: 1660 / 1590,
  6626. bottom: 15 / 1665
  6627. }
  6628. },
  6629. },
  6630. [
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(10 + 8 / 12, "foot")
  6634. },
  6635. {
  6636. name: "Minimacro",
  6637. height: math.unit(15, "foot")
  6638. },
  6639. {
  6640. name: "Macro",
  6641. height: math.unit(60, "foot"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Megamacro",
  6646. height: math.unit(5, "miles")
  6647. },
  6648. {
  6649. name: "Gigamacro",
  6650. height: math.unit(6000, "miles")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(150, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/cobalt/front.svg"
  6663. }
  6664. }
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(8 + 1 / 12, "foot")
  6670. },
  6671. {
  6672. name: "Macro",
  6673. height: math.unit(111, "foot"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Supracosmic",
  6678. height: math.unit(1e42, "feet")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(140, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/amanda/front.svg"
  6691. }
  6692. }
  6693. },
  6694. [
  6695. {
  6696. name: "Micro",
  6697. height: math.unit(5, "inches"),
  6698. default: true
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(2.75, "meters"),
  6707. weight: math.unit(1200, "lb"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/teal/front.svg",
  6711. extra: 2463 / 2320,
  6712. bottom: 166 / 2629
  6713. }
  6714. },
  6715. back: {
  6716. height: math.unit(2.75, "meters"),
  6717. weight: math.unit(1200, "lb"),
  6718. name: "Back",
  6719. image: {
  6720. source: "./media/characters/teal/back.svg",
  6721. extra: 2580 / 2489,
  6722. bottom: 151 / 2731
  6723. }
  6724. },
  6725. sitting: {
  6726. height: math.unit(1.9, "meters"),
  6727. weight: math.unit(1200, "lb"),
  6728. name: "Sitting",
  6729. image: {
  6730. source: "./media/characters/teal/sitting.svg",
  6731. extra: 623 / 590,
  6732. bottom: 121 / 744
  6733. }
  6734. },
  6735. standing: {
  6736. height: math.unit(2.75, "meters"),
  6737. weight: math.unit(1200, "lb"),
  6738. name: "Standing",
  6739. image: {
  6740. source: "./media/characters/teal/standing.svg",
  6741. extra: 923 / 893,
  6742. bottom: 60 / 983
  6743. }
  6744. },
  6745. stretching: {
  6746. height: math.unit(3.65, "meters"),
  6747. weight: math.unit(1200, "lb"),
  6748. name: "Stretching",
  6749. image: {
  6750. source: "./media/characters/teal/stretching.svg",
  6751. extra: 1276 / 1244,
  6752. bottom: 0 / 1276
  6753. }
  6754. },
  6755. legged: {
  6756. height: math.unit(1.3, "meters"),
  6757. weight: math.unit(100, "lb"),
  6758. name: "Legged",
  6759. image: {
  6760. source: "./media/characters/teal/legged.svg",
  6761. extra: 462 / 437,
  6762. bottom: 24 / 486
  6763. }
  6764. },
  6765. naga: {
  6766. height: math.unit(5.4, "meters"),
  6767. weight: math.unit(4000, "lb"),
  6768. name: "Naga",
  6769. image: {
  6770. source: "./media/characters/teal/naga.svg",
  6771. extra: 1902 / 1858,
  6772. bottom: 0 / 1902
  6773. }
  6774. },
  6775. hand: {
  6776. height: math.unit(0.52, "meters"),
  6777. name: "Hand",
  6778. image: {
  6779. source: "./media/characters/teal/hand.svg"
  6780. }
  6781. },
  6782. maw: {
  6783. height: math.unit(0.43, "meters"),
  6784. name: "Maw",
  6785. image: {
  6786. source: "./media/characters/teal/maw.svg"
  6787. }
  6788. },
  6789. slit: {
  6790. height: math.unit(0.25, "meters"),
  6791. name: "Slit",
  6792. image: {
  6793. source: "./media/characters/teal/slit.svg"
  6794. }
  6795. },
  6796. },
  6797. [
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(2.75, "meters"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(300, "feet")
  6806. },
  6807. {
  6808. name: "Macro+",
  6809. height: math.unit(2000, "feet")
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6815. {
  6816. frontCat: {
  6817. height: math.unit(6, "feet"),
  6818. weight: math.unit(180, "lbs"),
  6819. name: "Front (Cat)",
  6820. image: {
  6821. source: "./media/characters/ravin-amulet/front-cat.svg"
  6822. }
  6823. },
  6824. frontCatAlt: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front (Alt, Cat)",
  6828. image: {
  6829. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6830. }
  6831. },
  6832. frontWerewolf: {
  6833. height: math.unit(6 * 1.2, "feet"),
  6834. weight: math.unit(225, "lbs"),
  6835. name: "Front (Werewolf)",
  6836. image: {
  6837. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6838. }
  6839. },
  6840. backWerewolf: {
  6841. height: math.unit(6 * 1.2, "feet"),
  6842. weight: math.unit(225, "lbs"),
  6843. name: "Back (Werewolf)",
  6844. image: {
  6845. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Nano",
  6852. height: math.unit(1, "micrometer")
  6853. },
  6854. {
  6855. name: "Micro",
  6856. height: math.unit(1, "inch")
  6857. },
  6858. {
  6859. name: "Normal",
  6860. height: math.unit(6, "feet"),
  6861. default: true
  6862. },
  6863. {
  6864. name: "Macro",
  6865. height: math.unit(60, "feet")
  6866. }
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6871. {
  6872. front: {
  6873. height: math.unit(6, "feet"),
  6874. weight: math.unit(165, "lbs"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/fluoresce/front.svg"
  6878. }
  6879. }
  6880. },
  6881. [
  6882. {
  6883. name: "Micro",
  6884. height: math.unit(6, "cm")
  6885. },
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(5 + 7 / 12, "feet"),
  6889. default: true
  6890. },
  6891. {
  6892. name: "Macro",
  6893. height: math.unit(56, "feet")
  6894. },
  6895. {
  6896. name: "Megamacro",
  6897. height: math.unit(1.9, "miles")
  6898. },
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6903. {
  6904. front: {
  6905. height: math.unit(9 + 6 / 12, "feet"),
  6906. weight: math.unit(523, "lbs"),
  6907. name: "Side",
  6908. image: {
  6909. source: "./media/characters/aurora/side.svg"
  6910. }
  6911. }
  6912. },
  6913. [
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(9 + 6 / 12, "feet")
  6917. },
  6918. {
  6919. name: "Macro",
  6920. height: math.unit(96, "feet"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Macro+",
  6925. height: math.unit(243, "feet")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(194, "cm"),
  6934. weight: math.unit(90, "kg"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/ranek/front.svg"
  6938. }
  6939. },
  6940. side: {
  6941. height: math.unit(194, "cm"),
  6942. weight: math.unit(90, "kg"),
  6943. name: "Side",
  6944. image: {
  6945. source: "./media/characters/ranek/side.svg"
  6946. }
  6947. },
  6948. back: {
  6949. height: math.unit(194, "cm"),
  6950. weight: math.unit(90, "kg"),
  6951. name: "Back",
  6952. image: {
  6953. source: "./media/characters/ranek/back.svg"
  6954. }
  6955. },
  6956. feral: {
  6957. height: math.unit(30, "cm"),
  6958. weight: math.unit(1.6, "lbs"),
  6959. name: "Feral",
  6960. image: {
  6961. source: "./media/characters/ranek/feral.svg"
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(194, "cm"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(100, "meters")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(5 + 6 / 12, "feet"),
  6982. weight: math.unit(153, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/andrew-cooper/front.svg"
  6986. }
  6987. },
  6988. },
  6989. [
  6990. {
  6991. name: "Nano",
  6992. height: math.unit(1, "mm")
  6993. },
  6994. {
  6995. name: "Micro",
  6996. height: math.unit(2, "inches")
  6997. },
  6998. {
  6999. name: "Normal",
  7000. height: math.unit(5 + 6 / 12, "feet"),
  7001. default: true
  7002. }
  7003. ]
  7004. ))
  7005. characterMakers.push(() => makeCharacter(
  7006. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7007. {
  7008. front: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(180, "lbs"),
  7011. name: "Front",
  7012. image: {
  7013. source: "./media/characters/akane-sato/front.svg",
  7014. extra: 1219 / 1140
  7015. }
  7016. },
  7017. back: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(180, "lbs"),
  7020. name: "Back",
  7021. image: {
  7022. source: "./media/characters/akane-sato/back.svg",
  7023. extra: 1219 / 1170
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(2.5, "meters")
  7031. },
  7032. {
  7033. name: "Macro",
  7034. height: math.unit(250, "meters"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Megamacro",
  7039. height: math.unit(25, "km")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(65, "kg"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/rook/front.svg",
  7052. extra: 960 / 950
  7053. }
  7054. }
  7055. },
  7056. [
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(8.8, "feet")
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(88, "feet"),
  7064. default: true
  7065. },
  7066. {
  7067. name: "Megamacro",
  7068. height: math.unit(8, "miles")
  7069. },
  7070. ]
  7071. ))
  7072. characterMakers.push(() => makeCharacter(
  7073. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7074. {
  7075. front: {
  7076. height: math.unit(12 + 2 / 12, "feet"),
  7077. weight: math.unit(808, "lbs"),
  7078. name: "Front",
  7079. image: {
  7080. source: "./media/characters/prodigy/front.svg"
  7081. }
  7082. }
  7083. },
  7084. [
  7085. {
  7086. name: "Normal",
  7087. height: math.unit(12 + 2 / 12, "feet"),
  7088. default: true
  7089. },
  7090. {
  7091. name: "Macro",
  7092. height: math.unit(143, "feet")
  7093. },
  7094. {
  7095. name: "Macro+",
  7096. height: math.unit(400, "feet")
  7097. },
  7098. ]
  7099. ))
  7100. characterMakers.push(() => makeCharacter(
  7101. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7102. {
  7103. front: {
  7104. height: math.unit(6, "feet"),
  7105. weight: math.unit(225, "lbs"),
  7106. name: "Front",
  7107. image: {
  7108. source: "./media/characters/daniel/front.svg"
  7109. }
  7110. },
  7111. leaning: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(225, "lbs"),
  7114. name: "Leaning",
  7115. image: {
  7116. source: "./media/characters/daniel/leaning.svg"
  7117. }
  7118. },
  7119. },
  7120. [
  7121. {
  7122. name: "Macro",
  7123. height: math.unit(1000, "feet"),
  7124. default: true
  7125. },
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7130. {
  7131. front: {
  7132. height: math.unit(6, "feet"),
  7133. weight: math.unit(88, "lbs"),
  7134. name: "Front",
  7135. image: {
  7136. source: "./media/characters/chiros/front.svg",
  7137. extra: 306 / 226
  7138. }
  7139. },
  7140. side: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(88, "lbs"),
  7143. name: "Side",
  7144. image: {
  7145. source: "./media/characters/chiros/side.svg",
  7146. extra: 306 / 226
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(6, "cm"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7160. {
  7161. front: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(100, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/selka/front.svg",
  7167. extra: 947 / 887
  7168. }
  7169. }
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(5, "cm"),
  7175. default: true
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(8 + 3 / 12, "feet"),
  7184. weight: math.unit(424, "lbs"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/verin/front.svg",
  7188. extra: 1845 / 1550
  7189. }
  7190. },
  7191. frontArmored: {
  7192. height: math.unit(8 + 3 / 12, "feet"),
  7193. weight: math.unit(424, "lbs"),
  7194. name: "Front (Armored)",
  7195. image: {
  7196. source: "./media/characters/verin/front-armor.svg",
  7197. extra: 1845 / 1550,
  7198. bottom: 0.01
  7199. }
  7200. },
  7201. back: {
  7202. height: math.unit(8 + 3 / 12, "feet"),
  7203. weight: math.unit(424, "lbs"),
  7204. name: "Back",
  7205. image: {
  7206. source: "./media/characters/verin/back.svg",
  7207. bottom: 0.1,
  7208. extra: 1
  7209. }
  7210. },
  7211. foot: {
  7212. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7213. name: "Foot",
  7214. image: {
  7215. source: "./media/characters/verin/foot.svg"
  7216. }
  7217. },
  7218. },
  7219. [
  7220. {
  7221. name: "Normal",
  7222. height: math.unit(8 + 3 / 12, "feet")
  7223. },
  7224. {
  7225. name: "Minimacro",
  7226. height: math.unit(21, "feet"),
  7227. default: true
  7228. },
  7229. {
  7230. name: "Macro",
  7231. height: math.unit(626, "feet")
  7232. },
  7233. ]
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7237. {
  7238. front: {
  7239. height: math.unit(2.718, "meters"),
  7240. weight: math.unit(150, "lbs"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/sovrim-terraquian/front.svg"
  7244. }
  7245. },
  7246. back: {
  7247. height: math.unit(2.718, "meters"),
  7248. weight: math.unit(150, "lbs"),
  7249. name: "Back",
  7250. image: {
  7251. source: "./media/characters/sovrim-terraquian/back.svg"
  7252. }
  7253. }
  7254. },
  7255. [
  7256. {
  7257. name: "Micro",
  7258. height: math.unit(2, "inches")
  7259. },
  7260. {
  7261. name: "Small",
  7262. height: math.unit(1, "meter")
  7263. },
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(Math.E, "meters"),
  7267. default: true
  7268. },
  7269. {
  7270. name: "Macro",
  7271. height: math.unit(20, "meters")
  7272. },
  7273. {
  7274. name: "Macro+",
  7275. height: math.unit(400, "meters")
  7276. },
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7281. {
  7282. front: {
  7283. height: math.unit(7, "feet"),
  7284. weight: math.unit(489, "lbs"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/reece-silvermane/front.svg",
  7288. bottom: 0.02,
  7289. extra: 1
  7290. }
  7291. },
  7292. },
  7293. [
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(1.5, "miles"),
  7297. default: true
  7298. },
  7299. ]
  7300. ))
  7301. characterMakers.push(() => makeCharacter(
  7302. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7303. {
  7304. front: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(78, "kg"),
  7307. name: "Front",
  7308. image: {
  7309. source: "./media/characters/kane/front.svg",
  7310. extra: 978 / 899
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(2.1, "m"),
  7318. },
  7319. {
  7320. name: "Macro",
  7321. height: math.unit(1, "km"),
  7322. default: true
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(200, "kg"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/tegon/front.svg",
  7335. bottom: 0.01,
  7336. extra: 1
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Micro",
  7343. height: math.unit(1, "inch")
  7344. },
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(6 + 3 / 12, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(300, "feet")
  7353. },
  7354. {
  7355. name: "Megamacro",
  7356. height: math.unit(69, "miles")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7362. {
  7363. side: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(2304, "lbs"),
  7366. name: "Side",
  7367. image: {
  7368. source: "./media/characters/arcturax/side.svg",
  7369. extra: 790 / 376,
  7370. bottom: 0.01
  7371. }
  7372. },
  7373. },
  7374. [
  7375. {
  7376. name: "Micro",
  7377. height: math.unit(2, "inch")
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6, "feet")
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(39, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Megamacro",
  7390. height: math.unit(7, "miles")
  7391. },
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(50, "lbs"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/sentri/front.svg",
  7403. extra: 1750 / 1570,
  7404. bottom: 0.025
  7405. }
  7406. },
  7407. frontAlt: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(50, "lbs"),
  7410. name: "Front (Alt)",
  7411. image: {
  7412. source: "./media/characters/sentri/front-alt.svg",
  7413. extra: 1750 / 1570,
  7414. bottom: 0.025
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(15, "feet"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(2500, "feet")
  7427. }
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(5 + 8 / 12, "feet"),
  7435. weight: math.unit(130, "lbs"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/corvin/front.svg",
  7439. extra: 1803 / 1629
  7440. }
  7441. },
  7442. frontShirt: {
  7443. height: math.unit(5 + 8 / 12, "feet"),
  7444. weight: math.unit(130, "lbs"),
  7445. name: "Front (Shirt)",
  7446. image: {
  7447. source: "./media/characters/corvin/front-shirt.svg",
  7448. extra: 1803 / 1629
  7449. }
  7450. },
  7451. frontPoncho: {
  7452. height: math.unit(5 + 8 / 12, "feet"),
  7453. weight: math.unit(130, "lbs"),
  7454. name: "Front (Poncho)",
  7455. image: {
  7456. source: "./media/characters/corvin/front-poncho.svg",
  7457. extra: 1803 / 1629
  7458. }
  7459. },
  7460. side: {
  7461. height: math.unit(5 + 8 / 12, "feet"),
  7462. weight: math.unit(130, "lbs"),
  7463. name: "Side",
  7464. image: {
  7465. source: "./media/characters/corvin/side.svg",
  7466. extra: 1012 / 945
  7467. }
  7468. },
  7469. back: {
  7470. height: math.unit(5 + 8 / 12, "feet"),
  7471. weight: math.unit(130, "lbs"),
  7472. name: "Back",
  7473. image: {
  7474. source: "./media/characters/corvin/back.svg",
  7475. extra: 1803 / 1629
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Micro",
  7482. height: math.unit(3, "inches")
  7483. },
  7484. {
  7485. name: "Normal",
  7486. height: math.unit(5 + 8 / 12, "feet")
  7487. },
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(300, "feet"),
  7491. default: true
  7492. },
  7493. {
  7494. name: "Megamacro",
  7495. height: math.unit(500, "miles")
  7496. }
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(135, "lbs"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/q/front.svg",
  7508. extra: 854 / 752,
  7509. bottom: 0.005
  7510. }
  7511. },
  7512. back: {
  7513. height: math.unit(6, "feet"),
  7514. weight: math.unit(130, "lbs"),
  7515. name: "Back",
  7516. image: {
  7517. source: "./media/characters/q/back.svg",
  7518. extra: 854 / 752
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(90, "feet"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Extra Macro",
  7530. height: math.unit(300, "feet"),
  7531. },
  7532. {
  7533. name: "BIG WALF",
  7534. height: math.unit(750, "feet"),
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(6, "feet"),
  7543. weight: math.unit(150, "lbs"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/carley/front.svg",
  7547. extra: 3927 / 3540,
  7548. bottom: 29.2 / 735
  7549. }
  7550. }
  7551. },
  7552. [
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(6 + 3 / 12, "feet")
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(185, "feet"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Megamacro",
  7564. height: math.unit(8, "miles"),
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(3, "feet"),
  7573. weight: math.unit(28, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/citrine/front.svg"
  7577. }
  7578. }
  7579. },
  7580. [
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(3, "feet"),
  7584. default: true
  7585. }
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7590. {
  7591. front: {
  7592. height: math.unit(14, "feet"),
  7593. weight: math.unit(1450, "kg"),
  7594. capacity: math.unit(15, "people"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/aura-starwind/front.svg",
  7598. extra: 1455 / 1335
  7599. }
  7600. },
  7601. side: {
  7602. height: math.unit(14, "feet"),
  7603. weight: math.unit(1450, "kg"),
  7604. capacity: math.unit(15, "people"),
  7605. name: "Side",
  7606. image: {
  7607. source: "./media/characters/aura-starwind/side.svg",
  7608. extra: 1654 / 1497
  7609. }
  7610. },
  7611. taur: {
  7612. height: math.unit(18, "feet"),
  7613. weight: math.unit(5500, "kg"),
  7614. capacity: math.unit(50, "people"),
  7615. name: "Taur",
  7616. image: {
  7617. source: "./media/characters/aura-starwind/taur.svg",
  7618. extra: 1760 / 1650
  7619. }
  7620. },
  7621. feral: {
  7622. height: math.unit(46, "feet"),
  7623. weight: math.unit(25000, "kg"),
  7624. capacity: math.unit(120, "people"),
  7625. name: "Feral",
  7626. image: {
  7627. source: "./media/characters/aura-starwind/feral.svg"
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(14, "feet"),
  7635. default: true
  7636. },
  7637. {
  7638. name: "Macro",
  7639. height: math.unit(50, "meters")
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(5000, "meters")
  7644. },
  7645. {
  7646. name: "Gigamacro",
  7647. height: math.unit(100000, "kilometers")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(2 + 7 / 12, "feet"),
  7656. weight: math.unit(32, "lbs"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/rivet/front.svg",
  7660. extra: 1716 / 1658,
  7661. bottom: 0.03
  7662. }
  7663. },
  7664. foot: {
  7665. height: math.unit(0.551, "feet"),
  7666. name: "Rivet's Foot",
  7667. image: {
  7668. source: "./media/characters/rivet/foot.svg"
  7669. },
  7670. rename: true
  7671. }
  7672. },
  7673. [
  7674. {
  7675. name: "Micro",
  7676. height: math.unit(1.5, "inches"),
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(2 + 7 / 12, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(85, "feet")
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(2.2, "km")
  7690. }
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(5 + 9 / 12, "feet"),
  7698. weight: math.unit(150, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/coffee/front.svg",
  7702. extra: 3666 / 3032,
  7703. bottom: 0.04
  7704. }
  7705. },
  7706. foot: {
  7707. height: math.unit(1.29, "feet"),
  7708. name: "Foot",
  7709. image: {
  7710. source: "./media/characters/coffee/foot.svg"
  7711. }
  7712. },
  7713. },
  7714. [
  7715. {
  7716. name: "Micro",
  7717. height: math.unit(2, "inches"),
  7718. },
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(5 + 9 / 12, "feet"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(800, "feet")
  7727. },
  7728. {
  7729. name: "Megamacro",
  7730. height: math.unit(25, "miles")
  7731. }
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(6, "feet"),
  7739. weight: math.unit(200, "lbs"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/chari-gal/front.svg",
  7743. extra: 1568 / 1385,
  7744. bottom: 0.047
  7745. }
  7746. },
  7747. gigantamax: {
  7748. height: math.unit(6 * 16, "feet"),
  7749. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7750. name: "Gigantamax",
  7751. image: {
  7752. source: "./media/characters/chari-gal/gigantamax.svg",
  7753. extra: 1124 / 888,
  7754. bottom: 0.03
  7755. }
  7756. },
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(5 + 7 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(200, "feet"),
  7766. default: true
  7767. }
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(6, "feet"),
  7775. weight: math.unit(150, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/nova/front.svg",
  7779. extra: 5000 / 4722,
  7780. bottom: 0.02
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Micro-",
  7787. height: math.unit(0.8, "inches")
  7788. },
  7789. {
  7790. name: "Micro",
  7791. height: math.unit(2, "inches"),
  7792. default: true
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(3 + 1 / 12, "feet"),
  7801. weight: math.unit(21.7, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/argent/front.svg",
  7805. extra: 1471 / 1331,
  7806. bottom: 100.8 / 1575.5
  7807. }
  7808. }
  7809. },
  7810. [
  7811. {
  7812. name: "Micro",
  7813. height: math.unit(2, "inches")
  7814. },
  7815. {
  7816. name: "Normal",
  7817. height: math.unit(3 + 1 / 12, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(120, "feet")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7828. {
  7829. lamp: {
  7830. height: math.unit(7 * 1559 / 989, "feet"),
  7831. name: "Magic Lamp",
  7832. image: {
  7833. source: "./media/characters/mira-al-cul/lamp.svg",
  7834. extra: 1617 / 1559
  7835. }
  7836. },
  7837. front: {
  7838. height: math.unit(7, "feet"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/mira-al-cul/front.svg",
  7842. extra: 1044 / 990
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Heavily Restricted",
  7849. height: math.unit(7 * 1559 / 989, "feet")
  7850. },
  7851. {
  7852. name: "Freshly Freed",
  7853. height: math.unit(50 * 1559 / 989, "feet")
  7854. },
  7855. {
  7856. name: "World Encompassing",
  7857. height: math.unit(10000 * 1559 / 989, "miles")
  7858. },
  7859. {
  7860. name: "Galactic",
  7861. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7862. },
  7863. {
  7864. name: "Palmed Universe",
  7865. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7866. default: true
  7867. },
  7868. {
  7869. name: "Multiversal Matriarch",
  7870. height: math.unit(8.87e10, "yottameters")
  7871. },
  7872. {
  7873. name: "Void Mother",
  7874. height: math.unit(3.14e110, "yottaparsecs")
  7875. },
  7876. {
  7877. name: "Toying with Transcendence",
  7878. height: math.unit(1e307, "meters")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7884. {
  7885. front: {
  7886. height: math.unit(17 + 1 / 12, "feet"),
  7887. weight: math.unit(476.2 * 5, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/kuro-shi-uchū/front.svg",
  7891. extra: 2329 / 1835,
  7892. bottom: 0.02
  7893. }
  7894. },
  7895. },
  7896. [
  7897. {
  7898. name: "Micro",
  7899. height: math.unit(2, "inches")
  7900. },
  7901. {
  7902. name: "Normal",
  7903. height: math.unit(12, "meters")
  7904. },
  7905. {
  7906. name: "Planetary",
  7907. height: math.unit(0.00929, "AU"),
  7908. default: true
  7909. },
  7910. {
  7911. name: "Universal",
  7912. height: math.unit(20, "gigaparsecs")
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7918. {
  7919. front: {
  7920. height: math.unit(5 + 2 / 12, "feet"),
  7921. weight: math.unit(120, "lbs"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/katherine/front.svg",
  7925. extra: 2075 / 1969
  7926. }
  7927. },
  7928. dress: {
  7929. height: math.unit(5 + 2 / 12, "feet"),
  7930. weight: math.unit(120, "lbs"),
  7931. name: "Dress",
  7932. image: {
  7933. source: "./media/characters/katherine/dress.svg",
  7934. extra: 2258 / 2064
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Micro",
  7941. height: math.unit(1, "inches"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(5 + 2 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Macro",
  7950. height: math.unit(100, "meters")
  7951. },
  7952. {
  7953. name: "Megamacro",
  7954. height: math.unit(80, "miles")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(7 + 8 / 12, "feet"),
  7963. weight: math.unit(250, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/yevis/front.svg",
  7967. extra: 1938 / 1755
  7968. }
  7969. }
  7970. },
  7971. [
  7972. {
  7973. name: "Mortal",
  7974. height: math.unit(7 + 8 / 12, "feet")
  7975. },
  7976. {
  7977. name: "Battle",
  7978. height: math.unit(25 + 11 / 12, "feet")
  7979. },
  7980. {
  7981. name: "Wrath",
  7982. height: math.unit(1654 + 11 / 12, "feet")
  7983. },
  7984. {
  7985. name: "Planet Destroyer",
  7986. height: math.unit(12000, "miles")
  7987. },
  7988. {
  7989. name: "Galaxy Conqueror",
  7990. height: math.unit(1.45, "zettameters"),
  7991. default: true
  7992. },
  7993. {
  7994. name: "Universal War",
  7995. height: math.unit(184, "gigaparsecs")
  7996. },
  7997. {
  7998. name: "Eternity War",
  7999. height: math.unit(1.98e55, "yottaparsecs")
  8000. },
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(5 + 8 / 12, "feet"),
  8008. weight: math.unit(63, "kg"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/xavier/front.svg",
  8012. extra: 944 / 883
  8013. }
  8014. },
  8015. frontStretch: {
  8016. height: math.unit(5 + 8 / 12, "feet"),
  8017. weight: math.unit(63, "kg"),
  8018. name: "Stretching",
  8019. image: {
  8020. source: "./media/characters/xavier/front-stretch.svg",
  8021. extra: 962 / 820
  8022. }
  8023. },
  8024. },
  8025. [
  8026. {
  8027. name: "Normal",
  8028. height: math.unit(5 + 8 / 12, "feet")
  8029. },
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(100, "meters"),
  8033. default: true
  8034. },
  8035. {
  8036. name: "McLargeHuge",
  8037. height: math.unit(10, "miles")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(5 + 5 / 12, "feet"),
  8046. weight: math.unit(150, "lb"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/joshii/front.svg",
  8050. extra: 765 / 653,
  8051. bottom: 51 / 816
  8052. }
  8053. },
  8054. foot: {
  8055. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8056. name: "Foot",
  8057. image: {
  8058. source: "./media/characters/joshii/foot.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Micro",
  8065. height: math.unit(2, "inches"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(5 + 5 / 12, "feet")
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(785, "feet")
  8075. },
  8076. {
  8077. name: "Megamacro",
  8078. height: math.unit(24.5, "miles")
  8079. },
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(150, "lb"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/goddess-elizabeth/front.svg",
  8091. extra: 1800 / 1525,
  8092. bottom: 0.005
  8093. }
  8094. },
  8095. foot: {
  8096. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8097. name: "Foot",
  8098. image: {
  8099. source: "./media/characters/goddess-elizabeth/foot.svg"
  8100. }
  8101. },
  8102. mouth: {
  8103. height: math.unit(6, "feet"),
  8104. name: "Mouth",
  8105. image: {
  8106. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(12, "feet")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(80, "miles"),
  8118. default: true
  8119. },
  8120. {
  8121. name: "Macro",
  8122. height: math.unit(15000, "parsecs")
  8123. },
  8124. ]
  8125. ))
  8126. characterMakers.push(() => makeCharacter(
  8127. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8128. {
  8129. front: {
  8130. height: math.unit(5 + 9 / 12, "feet"),
  8131. weight: math.unit(144, "lb"),
  8132. name: "Front",
  8133. image: {
  8134. source: "./media/characters/kara/front.svg"
  8135. }
  8136. },
  8137. feet: {
  8138. height: math.unit(6 / 6.765, "feet"),
  8139. name: "Kara's Feet",
  8140. rename: true,
  8141. image: {
  8142. source: "./media/characters/kara/feet.svg"
  8143. }
  8144. },
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(5 + 9 / 12, "feet")
  8150. },
  8151. {
  8152. name: "Macro",
  8153. height: math.unit(174, "feet"),
  8154. default: true
  8155. },
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(18, "feet"),
  8163. weight: math.unit(4050, "lb"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/tyrone/front.svg",
  8167. extra: 2405 / 2270,
  8168. bottom: 182 / 2587
  8169. }
  8170. },
  8171. },
  8172. [
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(18, "feet"),
  8176. default: true
  8177. },
  8178. {
  8179. name: "Macro",
  8180. height: math.unit(300, "feet")
  8181. },
  8182. {
  8183. name: "Megamacro",
  8184. height: math.unit(15, "km")
  8185. },
  8186. {
  8187. name: "Gigamacro",
  8188. height: math.unit(500, "km")
  8189. },
  8190. {
  8191. name: "Teramacro",
  8192. height: math.unit(0.5, "gigameters")
  8193. },
  8194. {
  8195. name: "Omnimacro",
  8196. height: math.unit(1e252, "yottauniverse")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(7 + 8 / 12, "feet"),
  8205. weight: math.unit(120, "lb"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/danny/front.svg",
  8209. extra: 1490 / 1350
  8210. }
  8211. },
  8212. back: {
  8213. height: math.unit(7 + 8 / 12, "feet"),
  8214. weight: math.unit(120, "lb"),
  8215. name: "Back",
  8216. image: {
  8217. source: "./media/characters/danny/back.svg",
  8218. extra: 1490 / 1350
  8219. }
  8220. },
  8221. },
  8222. [
  8223. {
  8224. name: "Normal",
  8225. height: math.unit(7 + 8 / 12, "feet"),
  8226. default: true
  8227. },
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(3.5, "inches"),
  8235. weight: math.unit(19, "grams"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/mallow/front.svg",
  8239. extra: 471 / 431
  8240. }
  8241. },
  8242. back: {
  8243. height: math.unit(3.5, "inches"),
  8244. weight: math.unit(19, "grams"),
  8245. name: "Back",
  8246. image: {
  8247. source: "./media/characters/mallow/back.svg",
  8248. extra: 471 / 431
  8249. }
  8250. },
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(3.5, "inches"),
  8256. default: true
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(9, "feet"),
  8265. weight: math.unit(230, "kg"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/starry-aqua/front.svg"
  8269. }
  8270. },
  8271. back: {
  8272. height: math.unit(9, "feet"),
  8273. weight: math.unit(230, "kg"),
  8274. name: "Back",
  8275. image: {
  8276. source: "./media/characters/starry-aqua/back.svg"
  8277. }
  8278. },
  8279. hand: {
  8280. height: math.unit(9 * 0.1168, "feet"),
  8281. name: "Hand",
  8282. image: {
  8283. source: "./media/characters/starry-aqua/hand.svg"
  8284. }
  8285. },
  8286. foot: {
  8287. height: math.unit(9 * 0.18, "feet"),
  8288. name: "Foot",
  8289. image: {
  8290. source: "./media/characters/starry-aqua/foot.svg"
  8291. }
  8292. }
  8293. },
  8294. [
  8295. {
  8296. name: "Micro",
  8297. height: math.unit(3, "inches")
  8298. },
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(9, "feet")
  8302. },
  8303. {
  8304. name: "Macro",
  8305. height: math.unit(300, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "Megamacro",
  8310. height: math.unit(3200, "feet")
  8311. }
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(230, "lb"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/luka/front.svg",
  8323. extra: 1,
  8324. bottom: 0.025
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(12 + 8 / 12, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Minimacro",
  8336. height: math.unit(20, "feet")
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(250, "feet")
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(5, "miles")
  8345. },
  8346. {
  8347. name: "Gigamacro",
  8348. height: math.unit(8000, "miles")
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(150, "lb"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/natalie-nightring/front.svg",
  8361. extra: 1,
  8362. bottom: 0.06
  8363. }
  8364. },
  8365. },
  8366. [
  8367. {
  8368. name: "Uh Oh",
  8369. height: math.unit(0.1, "mm")
  8370. },
  8371. {
  8372. name: "Small",
  8373. height: math.unit(3, "inches")
  8374. },
  8375. {
  8376. name: "Human Scale",
  8377. height: math.unit(6, "feet")
  8378. },
  8379. {
  8380. name: "Librarian",
  8381. height: math.unit(50, "feet"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Immense",
  8386. height: math.unit(200, "miles")
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(6, "feet"),
  8395. weight: math.unit(180, "lbs"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/danni-rosie/front.svg",
  8399. extra: 1260 / 1128,
  8400. bottom: 0.022
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(2, "inches"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(5 + 9 / 12, "feet"),
  8417. weight: math.unit(220, "lb"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/samantha-kruse/front.svg",
  8421. extra: (985 / 935),
  8422. bottom: 0.03
  8423. }
  8424. },
  8425. frontUndressed: {
  8426. height: math.unit(5 + 9 / 12, "feet"),
  8427. weight: math.unit(220, "lb"),
  8428. name: "Front (Undressed)",
  8429. image: {
  8430. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8431. extra: (973 / 923),
  8432. bottom: 0.025
  8433. }
  8434. },
  8435. fat: {
  8436. height: math.unit(5 + 9 / 12, "feet"),
  8437. weight: math.unit(900, "lb"),
  8438. name: "Front (Fat)",
  8439. image: {
  8440. source: "./media/characters/samantha-kruse/fat.svg",
  8441. extra: 2688 / 2561
  8442. }
  8443. },
  8444. },
  8445. [
  8446. {
  8447. name: "Normal",
  8448. height: math.unit(5 + 9 / 12, "feet"),
  8449. default: true
  8450. }
  8451. ]
  8452. ))
  8453. characterMakers.push(() => makeCharacter(
  8454. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8455. {
  8456. back: {
  8457. height: math.unit(5 + 4 / 12, "feet"),
  8458. weight: math.unit(4963, "lb"),
  8459. name: "Back",
  8460. image: {
  8461. source: "./media/characters/amelia-rosie/back.svg",
  8462. extra: 1113 / 963,
  8463. bottom: 0.01
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Level 0",
  8470. height: math.unit(5 + 4 / 12, "feet")
  8471. },
  8472. {
  8473. name: "Level 1",
  8474. height: math.unit(164597, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Level 2",
  8479. height: math.unit(956243, "miles")
  8480. },
  8481. {
  8482. name: "Level 3",
  8483. height: math.unit(29421709423, "miles")
  8484. },
  8485. {
  8486. name: "Level 4",
  8487. height: math.unit(154, "lightyears")
  8488. },
  8489. {
  8490. name: "Level 5",
  8491. height: math.unit(4738272, "lightyears")
  8492. },
  8493. {
  8494. name: "Level 6",
  8495. height: math.unit(145787152896, "lightyears")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(5 + 11 / 12, "feet"),
  8504. weight: math.unit(65, "kg"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/rook-kitara/front.svg",
  8508. extra: 1347 / 1274,
  8509. bottom: 0.005
  8510. }
  8511. },
  8512. },
  8513. [
  8514. {
  8515. name: "Totally Unfair",
  8516. height: math.unit(1.8, "mm")
  8517. },
  8518. {
  8519. name: "Lap Rookie",
  8520. height: math.unit(1.4, "feet")
  8521. },
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5 + 11 / 12, "feet"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "How Did This Happen",
  8529. height: math.unit(80, "miles")
  8530. }
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(7, "feet"),
  8538. weight: math.unit(300, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/pisces/front.svg",
  8542. extra: 2255 / 2115,
  8543. bottom: 0.03
  8544. }
  8545. },
  8546. back: {
  8547. height: math.unit(7, "feet"),
  8548. weight: math.unit(300, "lb"),
  8549. name: "Back",
  8550. image: {
  8551. source: "./media/characters/pisces/back.svg",
  8552. extra: 2146 / 2055,
  8553. bottom: 0.04
  8554. }
  8555. },
  8556. },
  8557. [
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(7, "feet"),
  8561. default: true
  8562. },
  8563. {
  8564. name: "Swimming Pool",
  8565. height: math.unit(12.2, "meters")
  8566. },
  8567. {
  8568. name: "Olympic Swimming Pool",
  8569. height: math.unit(56.3, "meters")
  8570. },
  8571. {
  8572. name: "Lake Superior",
  8573. height: math.unit(93900, "meters")
  8574. },
  8575. {
  8576. name: "Mediterranean Sea",
  8577. height: math.unit(644457, "meters")
  8578. },
  8579. {
  8580. name: "World's Oceans",
  8581. height: math.unit(4567491, "meters")
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8587. {
  8588. front: {
  8589. height: math.unit(2.3, "meters"),
  8590. weight: math.unit(120, "kg"),
  8591. name: "Front",
  8592. image: {
  8593. source: "./media/characters/zelas/front.svg"
  8594. }
  8595. },
  8596. side: {
  8597. height: math.unit(2.3, "meters"),
  8598. weight: math.unit(120, "kg"),
  8599. name: "Side",
  8600. image: {
  8601. source: "./media/characters/zelas/side.svg"
  8602. }
  8603. },
  8604. back: {
  8605. height: math.unit(2.3, "meters"),
  8606. weight: math.unit(120, "kg"),
  8607. name: "Back",
  8608. image: {
  8609. source: "./media/characters/zelas/back.svg"
  8610. }
  8611. },
  8612. foot: {
  8613. height: math.unit(1.116, "feet"),
  8614. name: "Foot",
  8615. image: {
  8616. source: "./media/characters/zelas/foot.svg"
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(2.3, "meters")
  8624. },
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(30, "meters"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(1, "inch"),
  8637. weight: math.unit(0.21, "grams"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/talbot/front.svg",
  8641. extra: 594 / 544
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Micro",
  8648. height: math.unit(1, "inch"),
  8649. default: true
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8655. {
  8656. front: {
  8657. height: math.unit(3 + 3 / 12, "feet"),
  8658. weight: math.unit(51.8, "lb"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/fliss/front.svg",
  8662. extra: 840 / 640
  8663. }
  8664. },
  8665. },
  8666. [
  8667. {
  8668. name: "Teeny Tiny",
  8669. height: math.unit(1, "mm")
  8670. },
  8671. {
  8672. name: "Small",
  8673. height: math.unit(1, "inch"),
  8674. default: true
  8675. },
  8676. {
  8677. name: "Standard Sylveon",
  8678. height: math.unit(3 + 3 / 12, "feet")
  8679. },
  8680. {
  8681. name: "Large Nuisance",
  8682. height: math.unit(33, "feet")
  8683. },
  8684. {
  8685. name: "City Filler",
  8686. height: math.unit(3000, "feet")
  8687. },
  8688. {
  8689. name: "New Horizon",
  8690. height: math.unit(6000, "miles")
  8691. },
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(5, "cm"),
  8699. weight: math.unit(1.94, "g"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/fleta/front.svg",
  8703. extra: 835 / 803
  8704. }
  8705. },
  8706. back: {
  8707. height: math.unit(5, "cm"),
  8708. weight: math.unit(1.94, "g"),
  8709. name: "Back",
  8710. image: {
  8711. source: "./media/characters/fleta/back.svg",
  8712. extra: 835 / 803
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Micro",
  8719. height: math.unit(5, "cm"),
  8720. default: true
  8721. },
  8722. ]
  8723. ))
  8724. characterMakers.push(() => makeCharacter(
  8725. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8726. {
  8727. front: {
  8728. height: math.unit(6, "feet"),
  8729. weight: math.unit(225, "lb"),
  8730. name: "Front",
  8731. image: {
  8732. source: "./media/characters/dominic/front.svg",
  8733. extra: 1770 / 1620,
  8734. bottom: 0.025
  8735. }
  8736. },
  8737. back: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(225, "lb"),
  8740. name: "Back",
  8741. image: {
  8742. source: "./media/characters/dominic/back.svg",
  8743. extra: 1745 / 1620,
  8744. bottom: 0.065
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Nano",
  8751. height: math.unit(0.1, "mm")
  8752. },
  8753. {
  8754. name: "Micro-",
  8755. height: math.unit(1, "mm")
  8756. },
  8757. {
  8758. name: "Micro",
  8759. height: math.unit(4, "inches")
  8760. },
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(6 + 4 / 12, "feet"),
  8764. default: true
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(115, "feet")
  8769. },
  8770. {
  8771. name: "Macro+",
  8772. height: math.unit(955, "feet")
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(8990, "feet")
  8777. },
  8778. {
  8779. name: "Gigmacro",
  8780. height: math.unit(9310, "miles")
  8781. },
  8782. {
  8783. name: "Teramacro",
  8784. height: math.unit(1567005010, "miles")
  8785. },
  8786. {
  8787. name: "Examacro",
  8788. height: math.unit(1425, "parsecs")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(400, "feet"),
  8797. weight: math.unit(44444444, "lb"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/major-colonel/front.svg"
  8801. }
  8802. },
  8803. back: {
  8804. height: math.unit(400, "feet"),
  8805. weight: math.unit(44444444, "lb"),
  8806. name: "Back",
  8807. image: {
  8808. source: "./media/characters/major-colonel/back.svg"
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Macro",
  8815. height: math.unit(400, "feet"),
  8816. default: true
  8817. },
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8822. {
  8823. catFront: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(120, "lb"),
  8826. name: "Front (Cat Side)",
  8827. image: {
  8828. source: "./media/characters/axel-lycan/cat-front.svg",
  8829. extra: 430 / 402,
  8830. bottom: 43 / 472.35
  8831. }
  8832. },
  8833. catBack: {
  8834. height: math.unit(6, "feet"),
  8835. weight: math.unit(120, "lb"),
  8836. name: "Back (Cat Side)",
  8837. image: {
  8838. source: "./media/characters/axel-lycan/cat-back.svg",
  8839. extra: 447 / 419,
  8840. bottom: 23.3 / 469
  8841. }
  8842. },
  8843. wolfFront: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(120, "lb"),
  8846. name: "Front (Wolf Side)",
  8847. image: {
  8848. source: "./media/characters/axel-lycan/wolf-front.svg",
  8849. extra: 485 / 456,
  8850. bottom: 19 / 504
  8851. }
  8852. },
  8853. wolfBack: {
  8854. height: math.unit(6, "feet"),
  8855. weight: math.unit(120, "lb"),
  8856. name: "Back (Wolf Side)",
  8857. image: {
  8858. source: "./media/characters/axel-lycan/wolf-back.svg",
  8859. extra: 475 / 438,
  8860. bottom: 39.2 / 514
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(1, "km"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(5 + 9 / 12, "feet"),
  8877. weight: math.unit(175, "lb"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/vanrel-hyena/front.svg",
  8881. extra: 1086 / 1010,
  8882. bottom: 0.04
  8883. }
  8884. },
  8885. },
  8886. [
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(5 + 9 / 12, "feet"),
  8890. default: true
  8891. },
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(103, "lb"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/abbott-absol/front.svg",
  8903. extra: 2010 / 1842
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Megamicro",
  8910. height: math.unit(0.1, "mm")
  8911. },
  8912. {
  8913. name: "Micro",
  8914. height: math.unit(1, "inch")
  8915. },
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(6, "feet"),
  8919. default: true
  8920. },
  8921. ]
  8922. ))
  8923. characterMakers.push(() => makeCharacter(
  8924. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8925. {
  8926. front: {
  8927. height: math.unit(6, "feet"),
  8928. weight: math.unit(264, "lb"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/hector/front.svg",
  8932. extra: 2280 / 2130,
  8933. bottom: 0.07
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(12.25, "foot"),
  8941. default: true
  8942. },
  8943. {
  8944. name: "Macro",
  8945. height: math.unit(160, "feet")
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(150, "lb"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/sal/front.svg",
  8958. extra: 1846 / 1699,
  8959. bottom: 0.04
  8960. }
  8961. },
  8962. },
  8963. [
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(10, "miles"),
  8967. default: true
  8968. },
  8969. ]
  8970. ))
  8971. characterMakers.push(() => makeCharacter(
  8972. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8973. {
  8974. front: {
  8975. height: math.unit(3, "meters"),
  8976. weight: math.unit(450, "kg"),
  8977. name: "front",
  8978. image: {
  8979. source: "./media/characters/ranger/front.svg",
  8980. extra: 2401 / 2243,
  8981. bottom: 0.05
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Normal",
  8988. height: math.unit(3, "meters"),
  8989. default: true
  8990. },
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8995. {
  8996. front: {
  8997. height: math.unit(14, "feet"),
  8998. weight: math.unit(800, "kg"),
  8999. name: "Front",
  9000. image: {
  9001. source: "./media/characters/theresa/front.svg",
  9002. extra: 3575 / 3346,
  9003. bottom: 0.03
  9004. }
  9005. },
  9006. },
  9007. [
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(14, "feet"),
  9011. default: true
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9017. {
  9018. front: {
  9019. height: math.unit(6, "feet"),
  9020. weight: math.unit(3, "kg"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/ine/front.svg",
  9024. extra: 678 / 539,
  9025. bottom: 0.023
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(2.265, "feet"),
  9033. default: true
  9034. },
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(5, "feet"),
  9042. weight: math.unit(30, "kg"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/vial/front.svg",
  9046. extra: 1365 / 1277,
  9047. bottom: 0.04
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(5, "feet"),
  9055. default: true
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9061. {
  9062. side: {
  9063. height: math.unit(3.4, "meters"),
  9064. weight: math.unit(1000, "lb"),
  9065. name: "Side",
  9066. image: {
  9067. source: "./media/characters/rovoska/side.svg",
  9068. extra: 4403 / 1515
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(3.4, "meters"),
  9076. default: true
  9077. },
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9082. {
  9083. front: {
  9084. height: math.unit(8, "feet"),
  9085. weight: math.unit(315, "lb"),
  9086. name: "Front",
  9087. image: {
  9088. source: "./media/characters/gunner-rotthbauer/front.svg"
  9089. }
  9090. },
  9091. back: {
  9092. height: math.unit(8, "feet"),
  9093. weight: math.unit(315, "lb"),
  9094. name: "Back",
  9095. image: {
  9096. source: "./media/characters/gunner-rotthbauer/back.svg"
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(3.5, "inches")
  9104. },
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(8, "feet"),
  9108. default: true
  9109. },
  9110. {
  9111. name: "Macro",
  9112. height: math.unit(250, "feet")
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(1, "AU")
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(5 + 5 / 12, "feet"),
  9125. weight: math.unit(140, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/allatia/front.svg",
  9129. extra: 1227 / 1180,
  9130. bottom: 0.027
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(5 + 5 / 12, "feet")
  9138. },
  9139. {
  9140. name: "Macro",
  9141. height: math.unit(250, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Megamacro",
  9146. height: math.unit(8, "miles")
  9147. }
  9148. ]
  9149. ))
  9150. characterMakers.push(() => makeCharacter(
  9151. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9152. {
  9153. front: {
  9154. height: math.unit(6, "feet"),
  9155. weight: math.unit(120, "lb"),
  9156. name: "Front",
  9157. image: {
  9158. source: "./media/characters/tene/front.svg",
  9159. extra: 1728 / 1578,
  9160. bottom: 0.022
  9161. }
  9162. },
  9163. stomping: {
  9164. height: math.unit(2.025, "meters"),
  9165. weight: math.unit(120, "lb"),
  9166. name: "Stomping",
  9167. image: {
  9168. source: "./media/characters/tene/stomping.svg",
  9169. extra: 938 / 873,
  9170. bottom: 0.01
  9171. }
  9172. },
  9173. sitting: {
  9174. height: math.unit(1, "meter"),
  9175. weight: math.unit(120, "lb"),
  9176. name: "Sitting",
  9177. image: {
  9178. source: "./media/characters/tene/sitting.svg",
  9179. extra: 437 / 415,
  9180. bottom: 0.1
  9181. }
  9182. },
  9183. feral: {
  9184. height: math.unit(3.9, "feet"),
  9185. weight: math.unit(250, "lb"),
  9186. name: "Feral",
  9187. image: {
  9188. source: "./media/characters/tene/feral.svg",
  9189. extra: 717 / 458,
  9190. bottom: 0.179
  9191. }
  9192. },
  9193. },
  9194. [
  9195. {
  9196. name: "Normal",
  9197. height: math.unit(6, "feet")
  9198. },
  9199. {
  9200. name: "Macro",
  9201. height: math.unit(300, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "Megamacro",
  9206. height: math.unit(5, "miles")
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9212. {
  9213. side: {
  9214. height: math.unit(6, "feet"),
  9215. name: "Side",
  9216. image: {
  9217. source: "./media/characters/evander/side.svg",
  9218. extra: 877 / 477
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(0.83, "meters"),
  9226. default: true
  9227. },
  9228. ]
  9229. ))
  9230. characterMakers.push(() => makeCharacter(
  9231. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9232. {
  9233. front: {
  9234. height: math.unit(12, "feet"),
  9235. weight: math.unit(1000, "lb"),
  9236. name: "Front",
  9237. image: {
  9238. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9239. extra: 1762 / 1611
  9240. }
  9241. },
  9242. back: {
  9243. height: math.unit(12, "feet"),
  9244. weight: math.unit(1000, "lb"),
  9245. name: "Back",
  9246. image: {
  9247. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9248. extra: 1762 / 1611
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(12, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Kaiju",
  9260. height: math.unit(150, "feet")
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/zero-alurus/front.svg"
  9273. }
  9274. },
  9275. back: {
  9276. height: math.unit(6, "feet"),
  9277. weight: math.unit(150, "lb"),
  9278. name: "Back",
  9279. image: {
  9280. source: "./media/characters/zero-alurus/back.svg"
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Normal",
  9287. height: math.unit(5 + 10 / 12, "feet")
  9288. },
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(60, "feet"),
  9292. default: true
  9293. },
  9294. {
  9295. name: "Macro+",
  9296. height: math.unit(450, "feet")
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(6, "feet"),
  9305. weight: math.unit(200, "lb"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/mega-shi/front.svg",
  9309. extra: 1279 / 1250,
  9310. bottom: 0.02
  9311. }
  9312. },
  9313. back: {
  9314. height: math.unit(6, "feet"),
  9315. weight: math.unit(200, "lb"),
  9316. name: "Back",
  9317. image: {
  9318. source: "./media/characters/mega-shi/back.svg",
  9319. extra: 1279 / 1250,
  9320. bottom: 0.02
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Micro",
  9327. height: math.unit(16 + 6 / 12, "feet")
  9328. },
  9329. {
  9330. name: "Third Dimension",
  9331. height: math.unit(40, "meters")
  9332. },
  9333. {
  9334. name: "Normal",
  9335. height: math.unit(660, "feet"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Megamacro",
  9340. height: math.unit(10, "miles")
  9341. },
  9342. {
  9343. name: "Planetary Launch",
  9344. height: math.unit(500, "miles")
  9345. },
  9346. {
  9347. name: "Interstellar",
  9348. height: math.unit(1e9, "miles")
  9349. },
  9350. {
  9351. name: "Leaving the Universe",
  9352. height: math.unit(1, "gigaparsec")
  9353. },
  9354. {
  9355. name: "Travelling Universes",
  9356. height: math.unit(30e15, "parsecs")
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(150, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/odyssey/front.svg",
  9369. extra: 1782 / 1582,
  9370. bottom: 0.01
  9371. }
  9372. },
  9373. side: {
  9374. height: math.unit(5.7, "feet"),
  9375. weight: math.unit(140, "lb"),
  9376. name: "Side",
  9377. image: {
  9378. source: "./media/characters/odyssey/side.svg",
  9379. extra: 6462 / 5700
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(5 + 4 / 12, "feet")
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(1, "km")
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(3000, "km")
  9395. },
  9396. {
  9397. name: "Gigamacro",
  9398. height: math.unit(1, "AU"),
  9399. default: true
  9400. },
  9401. {
  9402. name: "Omniversal",
  9403. height: math.unit(100e14, "lightyears")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(6, "feet"),
  9412. weight: math.unit(300, "lb"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/mekuto/front.svg",
  9416. extra: 921 / 832,
  9417. bottom: 0.03
  9418. }
  9419. },
  9420. hand: {
  9421. height: math.unit(6 / 10.24, "feet"),
  9422. name: "Hand",
  9423. image: {
  9424. source: "./media/characters/mekuto/hand.svg"
  9425. }
  9426. },
  9427. foot: {
  9428. height: math.unit(6 / 5.05, "feet"),
  9429. name: "Foot",
  9430. image: {
  9431. source: "./media/characters/mekuto/foot.svg"
  9432. }
  9433. },
  9434. },
  9435. [
  9436. {
  9437. name: "Minimicro",
  9438. height: math.unit(0.2, "inches")
  9439. },
  9440. {
  9441. name: "Micro",
  9442. height: math.unit(1.5, "inches")
  9443. },
  9444. {
  9445. name: "Normal",
  9446. height: math.unit(5 + 11 / 12, "feet"),
  9447. default: true
  9448. },
  9449. {
  9450. name: "Minimacro",
  9451. height: math.unit(17 + 9 / 12, "feet")
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(177.5, "feet")
  9456. },
  9457. {
  9458. name: "Megamacro",
  9459. height: math.unit(152, "miles")
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9465. {
  9466. front: {
  9467. height: math.unit(6.5, "inches"),
  9468. weight: math.unit(13, "oz"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/dafydd-tomos/front.svg",
  9472. extra: 2990 / 2603,
  9473. bottom: 0.03
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Micro",
  9480. height: math.unit(6.5, "inches"),
  9481. default: true
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(6, "feet"),
  9490. weight: math.unit(150, "lb"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/splinter/front.svg",
  9494. extra: 2990 / 2882,
  9495. bottom: 0.04
  9496. }
  9497. },
  9498. back: {
  9499. height: math.unit(6, "feet"),
  9500. weight: math.unit(150, "lb"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/splinter/back.svg",
  9504. extra: 2990 / 2882,
  9505. bottom: 0.04
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(6, "feet")
  9513. },
  9514. {
  9515. name: "Macro",
  9516. height: math.unit(230, "meters"),
  9517. default: true
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(4 + 10 / 12, "feet"),
  9526. weight: math.unit(480, "lb"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/snow-gabumon/front.svg",
  9530. extra: 1140 / 963,
  9531. bottom: 0.058
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(4 + 10 / 12, "feet"),
  9536. weight: math.unit(480, "lb"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/snow-gabumon/back.svg",
  9540. extra: 1115 / 962,
  9541. bottom: 0.041
  9542. }
  9543. },
  9544. frontUndresed: {
  9545. height: math.unit(4 + 10 / 12, "feet"),
  9546. weight: math.unit(480, "lb"),
  9547. name: "Front (Undressed)",
  9548. image: {
  9549. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9550. extra: 1061 / 960,
  9551. bottom: 0.045
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Micro",
  9558. height: math.unit(1, "inch")
  9559. },
  9560. {
  9561. name: "Normal",
  9562. height: math.unit(4 + 10 / 12, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(200, "feet")
  9568. },
  9569. {
  9570. name: "Megamacro",
  9571. height: math.unit(120, "miles")
  9572. },
  9573. {
  9574. name: "Gigamacro",
  9575. height: math.unit(9800, "miles")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(1.7, "meters"),
  9584. weight: math.unit(140, "lb"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/moody/front.svg",
  9588. extra: 3226 / 3007,
  9589. bottom: 0.087
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(1, "mm")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(1.7, "meters"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(80, "meters")
  9606. },
  9607. {
  9608. name: "Macro+",
  9609. height: math.unit(500, "meters")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(150, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/zyas/front.svg",
  9622. extra: 1180 / 1120,
  9623. bottom: 0.045
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(10, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(500, "feet")
  9636. },
  9637. {
  9638. name: "Megamacro",
  9639. height: math.unit(5, "miles")
  9640. },
  9641. {
  9642. name: "Teramacro",
  9643. height: math.unit(150000, "miles")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/cuon/front.svg",
  9656. extra: 1390 / 1320,
  9657. bottom: 0.008
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Micro",
  9664. height: math.unit(3, "inches")
  9665. },
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(18 + 9 / 12, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(360, "feet")
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(360, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(2.4, "meters"),
  9686. weight: math.unit(70, "kg"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/nyanuxk/front.svg",
  9690. extra: 1172 / 1084,
  9691. bottom: 0.065
  9692. }
  9693. },
  9694. side: {
  9695. height: math.unit(2.4, "meters"),
  9696. weight: math.unit(70, "kg"),
  9697. name: "Side",
  9698. image: {
  9699. source: "./media/characters/nyanuxk/side.svg",
  9700. extra: 1190 / 1132,
  9701. bottom: 0.007
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(2.4, "meters"),
  9706. weight: math.unit(70, "kg"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/nyanuxk/back.svg",
  9710. extra: 1200 / 1141,
  9711. bottom: 0.015
  9712. }
  9713. },
  9714. foot: {
  9715. height: math.unit(0.52, "meters"),
  9716. name: "Foot",
  9717. image: {
  9718. source: "./media/characters/nyanuxk/foot.svg"
  9719. }
  9720. },
  9721. },
  9722. [
  9723. {
  9724. name: "Micro",
  9725. height: math.unit(2, "cm")
  9726. },
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(2.4, "meters"),
  9730. default: true
  9731. },
  9732. {
  9733. name: "Smaller Macro",
  9734. height: math.unit(120, "meters")
  9735. },
  9736. {
  9737. name: "Bigger Macro",
  9738. height: math.unit(1.2, "km")
  9739. },
  9740. {
  9741. name: "Megamacro",
  9742. height: math.unit(15, "kilometers")
  9743. },
  9744. {
  9745. name: "Gigamacro",
  9746. height: math.unit(2000, "km")
  9747. },
  9748. {
  9749. name: "Teramacro",
  9750. height: math.unit(500000, "km")
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9756. {
  9757. side: {
  9758. height: math.unit(6, "feet"),
  9759. name: "Side",
  9760. image: {
  9761. source: "./media/characters/ailbhe/side.svg",
  9762. extra: 757 / 464,
  9763. bottom: 0.041
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Normal",
  9770. height: math.unit(1.07, "meters"),
  9771. default: true
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(120, "kg"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/zevulfius/front.svg",
  9784. extra: 965 / 903
  9785. }
  9786. },
  9787. side: {
  9788. height: math.unit(6, "feet"),
  9789. weight: math.unit(120, "kg"),
  9790. name: "Side",
  9791. image: {
  9792. source: "./media/characters/zevulfius/side.svg",
  9793. extra: 939 / 900
  9794. }
  9795. },
  9796. back: {
  9797. height: math.unit(6, "feet"),
  9798. weight: math.unit(120, "kg"),
  9799. name: "Back",
  9800. image: {
  9801. source: "./media/characters/zevulfius/back.svg",
  9802. extra: 918 / 854,
  9803. bottom: 0.005
  9804. }
  9805. },
  9806. foot: {
  9807. height: math.unit(6 / 3.72, "feet"),
  9808. name: "Foot",
  9809. image: {
  9810. source: "./media/characters/zevulfius/foot.svg"
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(750, "meters")
  9818. },
  9819. {
  9820. name: "Megamacro",
  9821. height: math.unit(20, "km"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Gigamacro",
  9826. height: math.unit(2000, "km")
  9827. },
  9828. {
  9829. name: "Teramacro",
  9830. height: math.unit(250000, "km")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(100, "feet"),
  9839. weight: math.unit(350, "kg"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/rikes/front.svg",
  9843. extra: 1565 / 1483,
  9844. bottom: 0.017
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(100, "feet"),
  9852. default: true
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9858. {
  9859. anthro: {
  9860. height: math.unit(8, "feet"),
  9861. weight: math.unit(120, "kg"),
  9862. name: "Anthro",
  9863. image: {
  9864. source: "./media/characters/adam-silver-mane/anthro.svg",
  9865. extra: 5743 / 5339,
  9866. bottom: 0.07
  9867. }
  9868. },
  9869. taur: {
  9870. height: math.unit(16, "feet"),
  9871. weight: math.unit(1500, "kg"),
  9872. name: "Taur",
  9873. image: {
  9874. source: "./media/characters/adam-silver-mane/taur.svg",
  9875. extra: 1713 / 1571,
  9876. bottom: 0.01
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Normal",
  9883. height: math.unit(8, "feet")
  9884. },
  9885. {
  9886. name: "Minimacro",
  9887. height: math.unit(80, "feet")
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(800, "feet"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Megamacro",
  9896. height: math.unit(8000, "feet")
  9897. },
  9898. {
  9899. name: "Gigamacro",
  9900. height: math.unit(800, "miles")
  9901. },
  9902. {
  9903. name: "Teramacro",
  9904. height: math.unit(80000, "miles")
  9905. },
  9906. {
  9907. name: "Celestial",
  9908. height: math.unit(8e6, "miles")
  9909. },
  9910. {
  9911. name: "Star Dragon",
  9912. height: math.unit(800000, "parsecs")
  9913. },
  9914. {
  9915. name: "Godly",
  9916. height: math.unit(800, "teraparsecs")
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9922. {
  9923. front: {
  9924. height: math.unit(6, "feet"),
  9925. weight: math.unit(150, "lb"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/ky'owin/front.svg",
  9929. extra: 3888 / 3068,
  9930. bottom: 0.015
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(6 + 8 / 12, "feet")
  9938. },
  9939. {
  9940. name: "Large",
  9941. height: math.unit(68, "feet")
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(132, "feet")
  9946. },
  9947. {
  9948. name: "Macro+",
  9949. height: math.unit(340, "feet")
  9950. },
  9951. {
  9952. name: "Macro++",
  9953. height: math.unit(680, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Megamacro",
  9958. height: math.unit(1, "mile")
  9959. },
  9960. {
  9961. name: "Megamacro+",
  9962. height: math.unit(10, "miles")
  9963. },
  9964. ]
  9965. ))
  9966. characterMakers.push(() => makeCharacter(
  9967. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9968. {
  9969. front: {
  9970. height: math.unit(4, "feet"),
  9971. weight: math.unit(50, "lb"),
  9972. name: "Front",
  9973. image: {
  9974. source: "./media/characters/mal/front.svg",
  9975. extra: 785 / 724,
  9976. bottom: 0.07
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(4, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(4, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(200, "feet")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/jordan-deware/front.svg",
  10005. extra: 1191 / 1012
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Nano",
  10012. height: math.unit(0.01, "mm")
  10013. },
  10014. {
  10015. name: "Minimicro",
  10016. height: math.unit(1, "mm")
  10017. },
  10018. {
  10019. name: "Micro",
  10020. height: math.unit(0.5, "inches")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(4, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Minimacro",
  10029. height: math.unit(40, "meters")
  10030. },
  10031. {
  10032. name: "Small Macro",
  10033. height: math.unit(400, "meters")
  10034. },
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(4, "miles")
  10038. },
  10039. {
  10040. name: "Megamacro",
  10041. height: math.unit(40, "miles")
  10042. },
  10043. {
  10044. name: "Megamacro+",
  10045. height: math.unit(400, "miles")
  10046. },
  10047. {
  10048. name: "Gigamacro",
  10049. height: math.unit(400000, "miles")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10055. {
  10056. side: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(150, "lb"),
  10059. name: "Side",
  10060. image: {
  10061. source: "./media/characters/kimiko/side.svg",
  10062. extra: 600 / 358
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(15, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(220, "feet")
  10075. },
  10076. {
  10077. name: "Macro+",
  10078. height: math.unit(1450, "feet")
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(11500, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(9500, "miles")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(2208005005, "miles")
  10091. },
  10092. {
  10093. name: "Examacro",
  10094. height: math.unit(2750, "parsecs")
  10095. },
  10096. {
  10097. name: "Zettamacro",
  10098. height: math.unit(101500, "parsecs")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(70, "kg"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/andrew-sleepy/front.svg"
  10111. }
  10112. },
  10113. side: {
  10114. height: math.unit(6, "feet"),
  10115. weight: math.unit(70, "kg"),
  10116. name: "Side",
  10117. image: {
  10118. source: "./media/characters/andrew-sleepy/side.svg"
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(1, "mm"),
  10126. default: true
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(6, "feet"),
  10135. weight: math.unit(150, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/judio/front.svg",
  10139. extra: 1258 / 1110
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Normal",
  10146. height: math.unit(5 + 6 / 12, "feet")
  10147. },
  10148. {
  10149. name: "Macro",
  10150. height: math.unit(1000, "feet"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Megamacro",
  10155. height: math.unit(10, "miles")
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(6, "feet"),
  10164. weight: math.unit(68, "kg"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/nomaxice/front.svg",
  10168. extra: 1498 / 1073,
  10169. bottom: 0.075
  10170. }
  10171. },
  10172. foot: {
  10173. height: math.unit(1.1, "feet"),
  10174. name: "Foot",
  10175. image: {
  10176. source: "./media/characters/nomaxice/foot.svg"
  10177. }
  10178. },
  10179. },
  10180. [
  10181. {
  10182. name: "Micro",
  10183. height: math.unit(8, "cm")
  10184. },
  10185. {
  10186. name: "Norm",
  10187. height: math.unit(1.82, "m")
  10188. },
  10189. {
  10190. name: "Norm+",
  10191. height: math.unit(8.8, "feet")
  10192. },
  10193. {
  10194. name: "Big",
  10195. height: math.unit(8, "meters"),
  10196. default: true
  10197. },
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(18, "meters")
  10201. },
  10202. {
  10203. name: "Macro+",
  10204. height: math.unit(88, "meters")
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10210. {
  10211. front: {
  10212. height: math.unit(12, "feet"),
  10213. weight: math.unit(1.5, "tons"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/dydros/front.svg",
  10217. extra: 863 / 800,
  10218. bottom: 0.015
  10219. }
  10220. },
  10221. back: {
  10222. height: math.unit(12, "feet"),
  10223. weight: math.unit(1.5, "tons"),
  10224. name: "Back",
  10225. image: {
  10226. source: "./media/characters/dydros/back.svg",
  10227. extra: 900 / 843,
  10228. bottom: 0.005
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(12, "feet"),
  10236. default: true
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(100, "kg"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/riggi/front.svg",
  10249. extra: 5787 / 5303
  10250. }
  10251. },
  10252. hyper: {
  10253. height: math.unit(6 * 5 / 3, "feet"),
  10254. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10255. name: "Hyper",
  10256. image: {
  10257. source: "./media/characters/riggi/hyper.svg",
  10258. extra: 3595 / 3485
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Small Macro",
  10265. height: math.unit(50, "feet")
  10266. },
  10267. {
  10268. name: "Default",
  10269. height: math.unit(200, "feet"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Loom",
  10274. height: math.unit(10000, "feet")
  10275. },
  10276. {
  10277. name: "Cruising Altitude",
  10278. height: math.unit(30000, "feet")
  10279. },
  10280. {
  10281. name: "Megamacro",
  10282. height: math.unit(100, "miles")
  10283. },
  10284. {
  10285. name: "Continent Sized",
  10286. height: math.unit(2800, "miles")
  10287. },
  10288. {
  10289. name: "Earth Sized",
  10290. height: math.unit(8000, "miles")
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(250, "lb"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/alexi/front.svg",
  10303. extra: 3483 / 3291,
  10304. bottom: 0.04
  10305. }
  10306. },
  10307. back: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(250, "lb"),
  10310. name: "Back",
  10311. image: {
  10312. source: "./media/characters/alexi/back.svg",
  10313. extra: 3533 / 3356,
  10314. bottom: 0.021
  10315. }
  10316. },
  10317. frontTransforming: {
  10318. height: math.unit(8.58, "feet"),
  10319. weight: math.unit(1300, "lb"),
  10320. name: "Transforming",
  10321. image: {
  10322. source: "./media/characters/alexi/front-transforming.svg",
  10323. extra: 437 / 409,
  10324. bottom: 19 / 458.66
  10325. }
  10326. },
  10327. frontTransformed: {
  10328. height: math.unit(12.5, "feet"),
  10329. weight: math.unit(4000, "lb"),
  10330. name: "Transformed",
  10331. image: {
  10332. source: "./media/characters/alexi/front-transformed.svg",
  10333. extra: 639 / 614,
  10334. bottom: 30.55 / 671
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(14, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Minimacro",
  10346. height: math.unit(30, "meters")
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(500, "meters")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(9000, "km")
  10355. },
  10356. {
  10357. name: "Teramacro",
  10358. height: math.unit(384000, "km")
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10364. {
  10365. front: {
  10366. height: math.unit(6, "feet"),
  10367. weight: math.unit(150, "lb"),
  10368. name: "Front",
  10369. image: {
  10370. source: "./media/characters/kayroo/front.svg",
  10371. extra: 1153 / 1038,
  10372. bottom: 0.06
  10373. }
  10374. },
  10375. foot: {
  10376. height: math.unit(6, "feet"),
  10377. weight: math.unit(150, "lb"),
  10378. name: "Foot",
  10379. image: {
  10380. source: "./media/characters/kayroo/foot.svg"
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(8, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Minimacro",
  10392. height: math.unit(250, "feet")
  10393. },
  10394. {
  10395. name: "Macro",
  10396. height: math.unit(2800, "feet")
  10397. },
  10398. {
  10399. name: "Megamacro",
  10400. height: math.unit(5200, "feet")
  10401. },
  10402. {
  10403. name: "Gigamacro",
  10404. height: math.unit(27000, "feet")
  10405. },
  10406. {
  10407. name: "Omega",
  10408. height: math.unit(45000, "feet")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(18, "feet"),
  10417. weight: math.unit(5800, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/rhys/front.svg",
  10421. extra: 3386 / 3090,
  10422. bottom: 0.07
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(18, "feet"),
  10430. default: true
  10431. },
  10432. {
  10433. name: "Working Size",
  10434. height: math.unit(200, "feet")
  10435. },
  10436. {
  10437. name: "Demolition Size",
  10438. height: math.unit(2000, "feet")
  10439. },
  10440. {
  10441. name: "Maximum Licensed Size",
  10442. height: math.unit(5, "miles")
  10443. },
  10444. {
  10445. name: "Maximum Observed Size",
  10446. height: math.unit(10, "yottameters")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(250, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/toto/front.svg",
  10459. extra: 527 / 479,
  10460. bottom: 0.05
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(3, "feet")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(10, "feet")
  10472. },
  10473. {
  10474. name: "Macro",
  10475. height: math.unit(150, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(1200, "feet")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "King", species: ["lion"], tags: ["anthro"] },
  10486. {
  10487. back: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(150, "lb"),
  10490. name: "Back",
  10491. image: {
  10492. source: "./media/characters/king/back.svg"
  10493. }
  10494. },
  10495. },
  10496. [
  10497. {
  10498. name: "Micro",
  10499. height: math.unit(2, "inches")
  10500. },
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(8, "feet")
  10504. },
  10505. {
  10506. name: "Macro",
  10507. height: math.unit(200, "feet"),
  10508. default: true
  10509. },
  10510. {
  10511. name: "Megamacro",
  10512. height: math.unit(50, "miles")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10518. {
  10519. anthro: {
  10520. height: math.unit(6 + 5 / 12, "feet"),
  10521. weight: math.unit(280, "lb"),
  10522. name: "Anthro",
  10523. image: {
  10524. source: "./media/characters/cordite/anthro.svg",
  10525. extra: 1986 / 1905,
  10526. bottom: 0.025
  10527. }
  10528. },
  10529. feral: {
  10530. height: math.unit(2, "feet"),
  10531. weight: math.unit(90, "lb"),
  10532. name: "Feral",
  10533. image: {
  10534. source: "./media/characters/cordite/feral.svg",
  10535. extra: 1260 / 755,
  10536. bottom: 0.05
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(6 + 5 / 12, "feet"),
  10544. default: true
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(150, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/pianostrong/front.svg",
  10557. extra: 6577 / 6254,
  10558. bottom: 0.02
  10559. }
  10560. },
  10561. side: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(150, "lb"),
  10564. name: "Side",
  10565. image: {
  10566. source: "./media/characters/pianostrong/side.svg",
  10567. extra: 6106 / 5730
  10568. }
  10569. },
  10570. back: {
  10571. height: math.unit(6, "feet"),
  10572. weight: math.unit(150, "lb"),
  10573. name: "Back",
  10574. image: {
  10575. source: "./media/characters/pianostrong/back.svg",
  10576. extra: 6085 / 5733,
  10577. bottom: 0.01
  10578. }
  10579. },
  10580. },
  10581. [
  10582. {
  10583. name: "Macro",
  10584. height: math.unit(100, "feet")
  10585. },
  10586. {
  10587. name: "Macro+",
  10588. height: math.unit(300, "feet"),
  10589. default: true
  10590. },
  10591. {
  10592. name: "Macro++",
  10593. height: math.unit(1000, "feet")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(150, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/kona/front.svg",
  10606. extra: 2960 / 2629,
  10607. bottom: 0.005
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(11 + 8 / 12, "feet")
  10615. },
  10616. {
  10617. name: "Macro",
  10618. height: math.unit(850, "feet"),
  10619. default: true
  10620. },
  10621. {
  10622. name: "Macro+",
  10623. height: math.unit(1.5, "km"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Megamacro",
  10628. height: math.unit(80, "miles")
  10629. },
  10630. {
  10631. name: "Gigamacro",
  10632. height: math.unit(3500, "miles")
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10638. {
  10639. side: {
  10640. height: math.unit(1.9, "meters"),
  10641. weight: math.unit(326, "kg"),
  10642. name: "Side",
  10643. image: {
  10644. source: "./media/characters/levi/side.svg",
  10645. extra: 1704 / 1334,
  10646. bottom: 0.02
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(1.9, "meters"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Macro",
  10658. height: math.unit(20, "meters")
  10659. },
  10660. {
  10661. name: "Macro+",
  10662. height: math.unit(200, "meters")
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(2, "km")
  10667. },
  10668. {
  10669. name: "Megamacro+",
  10670. height: math.unit(20, "km")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(2500, "km")
  10675. },
  10676. {
  10677. name: "Gigamacro+",
  10678. height: math.unit(120000, "km")
  10679. },
  10680. {
  10681. name: "Teramacro",
  10682. height: math.unit(7.77e6, "km")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6 + 4 / 12, "feet"),
  10691. weight: math.unit(188, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/bmc/front.svg",
  10695. extra: 1067 / 1022,
  10696. bottom: 0.047
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Human-sized",
  10703. height: math.unit(6 + 4 / 12, "feet")
  10704. },
  10705. {
  10706. name: "Small",
  10707. height: math.unit(250, "feet")
  10708. },
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(1250, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Good Day",
  10716. height: math.unit(88, "miles")
  10717. },
  10718. {
  10719. name: "Largest Measured Size",
  10720. height: math.unit(11.2e6, "lightyears")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(20, "feet"),
  10729. weight: math.unit(2016, "kg"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/sven-the-kaiju/front.svg",
  10733. extra: 1479 / 1449,
  10734. bottom: 0.05
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Fairy",
  10741. height: math.unit(6, "inches")
  10742. },
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(20, "feet"),
  10746. default: true
  10747. },
  10748. {
  10749. name: "Rampage",
  10750. height: math.unit(200, "feet")
  10751. },
  10752. {
  10753. name: "Archfey Forest Guardian",
  10754. height: math.unit(1, "mile")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(4, "meters"),
  10763. weight: math.unit(2, "tons"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/marik/front.svg",
  10767. extra: 1057 / 1003,
  10768. bottom: 0.08
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(4, "meters"),
  10776. default: true
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(20, "meters")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(50, "km")
  10785. },
  10786. {
  10787. name: "Gigamacro",
  10788. height: math.unit(100, "km")
  10789. },
  10790. {
  10791. name: "Alpha Macro",
  10792. height: math.unit(7.88e7, "yottameters")
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(6, "feet"),
  10801. weight: math.unit(110, "lb"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/mel/front.svg",
  10805. extra: 736 / 617,
  10806. bottom: 0.017
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Pico",
  10813. height: math.unit(3, "pm")
  10814. },
  10815. {
  10816. name: "Nano",
  10817. height: math.unit(3, "nm")
  10818. },
  10819. {
  10820. name: "Micro",
  10821. height: math.unit(0.3, "mm"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Micro+",
  10826. height: math.unit(3, "mm")
  10827. },
  10828. {
  10829. name: "Normal",
  10830. height: math.unit(5 + 10.5 / 12, "feet")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10836. {
  10837. kaiju: {
  10838. height: math.unit(1.75, "meters"),
  10839. weight: math.unit(55, "kg"),
  10840. name: "Kaiju",
  10841. image: {
  10842. source: "./media/characters/lykonous/kaiju.svg",
  10843. extra: 1055 / 946,
  10844. bottom: 0.135
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(2.5, "meters"),
  10852. default: true
  10853. },
  10854. {
  10855. name: "Kaiju Dragon",
  10856. height: math.unit(60, "meters")
  10857. },
  10858. {
  10859. name: "Mega Kaiju",
  10860. height: math.unit(120, "km")
  10861. },
  10862. {
  10863. name: "Giga Kaiju",
  10864. height: math.unit(200, "megameters")
  10865. },
  10866. {
  10867. name: "Terra Kaiju",
  10868. height: math.unit(400, "gigameters")
  10869. },
  10870. {
  10871. name: "Kaiju Dragon God",
  10872. height: math.unit(13000, "exaparsecs")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(150, "lb"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/blü/front.svg",
  10885. extra: 1883 / 1564,
  10886. bottom: 0.031
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Normal",
  10893. height: math.unit(13, "feet"),
  10894. default: true
  10895. },
  10896. {
  10897. name: "Big Boi",
  10898. height: math.unit(150, "meters")
  10899. },
  10900. {
  10901. name: "Mini Stomper",
  10902. height: math.unit(300, "meters")
  10903. },
  10904. {
  10905. name: "Macro",
  10906. height: math.unit(1000, "meters")
  10907. },
  10908. {
  10909. name: "Megamacro",
  10910. height: math.unit(11000, "meters")
  10911. },
  10912. {
  10913. name: "Gigamacro",
  10914. height: math.unit(11000, "km")
  10915. },
  10916. {
  10917. name: "Teramacro",
  10918. height: math.unit(420000, "km")
  10919. },
  10920. {
  10921. name: "Examacro",
  10922. height: math.unit(120, "parsecs")
  10923. },
  10924. {
  10925. name: "God Tho",
  10926. height: math.unit(98000000000, "parsecs")
  10927. },
  10928. ]
  10929. ))
  10930. characterMakers.push(() => makeCharacter(
  10931. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10932. {
  10933. taurFront: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(200, "lb"),
  10936. name: "Taur (Front)",
  10937. image: {
  10938. source: "./media/characters/scales/taur-front.svg",
  10939. extra: 1,
  10940. bottom: 0.05
  10941. }
  10942. },
  10943. taurBack: {
  10944. height: math.unit(6, "feet"),
  10945. weight: math.unit(200, "lb"),
  10946. name: "Taur (Back)",
  10947. image: {
  10948. source: "./media/characters/scales/taur-back.svg",
  10949. extra: 1,
  10950. bottom: 0.08
  10951. }
  10952. },
  10953. anthro: {
  10954. height: math.unit(6 * 7 / 12, "feet"),
  10955. weight: math.unit(100, "lb"),
  10956. name: "Anthro",
  10957. image: {
  10958. source: "./media/characters/scales/anthro.svg",
  10959. extra: 1,
  10960. bottom: 0.06
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(12, "feet"),
  10968. default: true
  10969. },
  10970. ]
  10971. ))
  10972. characterMakers.push(() => makeCharacter(
  10973. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10974. {
  10975. front: {
  10976. height: math.unit(6, "feet"),
  10977. weight: math.unit(150, "lb"),
  10978. name: "Front",
  10979. image: {
  10980. source: "./media/characters/koragos/front.svg",
  10981. extra: 841 / 794,
  10982. bottom: 0.035
  10983. }
  10984. },
  10985. back: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(150, "lb"),
  10988. name: "Back",
  10989. image: {
  10990. source: "./media/characters/koragos/back.svg",
  10991. extra: 841 / 810,
  10992. bottom: 0.022
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(6 + 11 / 12, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(490, "feet")
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(10, "miles")
  11009. },
  11010. {
  11011. name: "Gigamacro",
  11012. height: math.unit(50, "miles")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6, "feet"),
  11021. weight: math.unit(250, "lb"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/xylrem/front.svg",
  11025. extra: 3323 / 3050,
  11026. bottom: 0.065
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Micro",
  11033. height: math.unit(4, "feet")
  11034. },
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(16, "feet"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Macro",
  11042. height: math.unit(2720, "feet")
  11043. },
  11044. {
  11045. name: "Megamacro",
  11046. height: math.unit(25000, "miles")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(8, "feet"),
  11055. weight: math.unit(250, "kg"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/ikideru/front.svg",
  11059. extra: 930 / 870,
  11060. bottom: 0.087
  11061. }
  11062. },
  11063. back: {
  11064. height: math.unit(8, "feet"),
  11065. weight: math.unit(250, "kg"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/ikideru/back.svg",
  11069. extra: 919 / 852,
  11070. bottom: 0.055
  11071. }
  11072. },
  11073. },
  11074. [
  11075. {
  11076. name: "Rare",
  11077. height: math.unit(8, "feet"),
  11078. default: true
  11079. },
  11080. {
  11081. name: "Playful Loom",
  11082. height: math.unit(80, "feet")
  11083. },
  11084. {
  11085. name: "City Leaner",
  11086. height: math.unit(230, "feet")
  11087. },
  11088. {
  11089. name: "Megamacro",
  11090. height: math.unit(2500, "feet")
  11091. },
  11092. {
  11093. name: "Gigamacro",
  11094. height: math.unit(26400, "feet")
  11095. },
  11096. {
  11097. name: "Tectonic Shifter",
  11098. height: math.unit(1.7, "megameters")
  11099. },
  11100. {
  11101. name: "Planet Carer",
  11102. height: math.unit(21, "megameters")
  11103. },
  11104. {
  11105. name: "God",
  11106. height: math.unit(11157.22, "parsecs")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11112. {
  11113. front: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(120, "lb"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/neo/front.svg"
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Micro",
  11125. height: math.unit(2, "inches"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Human Size",
  11130. height: math.unit(5 + 8 / 12, "feet")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(13 + 10 / 12, "feet"),
  11139. weight: math.unit(5320, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/chauncey-chantz/front.svg",
  11143. extra: 1587 / 1435,
  11144. bottom: 0.02
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(13 + 10 / 12, "feet"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Macro",
  11156. height: math.unit(45, "feet")
  11157. },
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(250, "miles")
  11161. },
  11162. {
  11163. name: "Planetary",
  11164. height: math.unit(10000, "miles")
  11165. },
  11166. {
  11167. name: "Galactic",
  11168. height: math.unit(40000, "parsecs")
  11169. },
  11170. {
  11171. name: "Universal",
  11172. height: math.unit(1, "yottameter")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11178. {
  11179. front: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/epifox/front.svg",
  11185. extra: 1,
  11186. bottom: 0.075
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Micro",
  11193. height: math.unit(6, "inches")
  11194. },
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(12, "feet"),
  11198. default: true
  11199. },
  11200. {
  11201. name: "Macro",
  11202. height: math.unit(3810, "feet")
  11203. },
  11204. {
  11205. name: "Megamacro",
  11206. height: math.unit(500, "miles")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11212. {
  11213. front: {
  11214. height: math.unit(1.8796, "m"),
  11215. weight: math.unit(230, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/colin-t/front.svg",
  11219. extra: 1272 / 1193,
  11220. bottom: 0.07
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(0.571, "meters")
  11228. },
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(1.8796, "meters"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Tall",
  11236. height: math.unit(4, "meters")
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(67.241, "meters")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(371.856, "meters")
  11245. },
  11246. {
  11247. name: "Planetary",
  11248. height: math.unit(12631.5689, "km")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(1.85, "meters"),
  11257. weight: math.unit(80, "kg"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/matvei/front.svg",
  11261. extra: 614 / 594,
  11262. bottom: 0.01
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(1.85, "meters"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(5 + 9 / 12, "feet"),
  11279. weight: math.unit(70, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/quincy/front.svg",
  11283. extra: 3041 / 2751
  11284. }
  11285. },
  11286. back: {
  11287. height: math.unit(5 + 9 / 12, "feet"),
  11288. weight: math.unit(70, "lb"),
  11289. name: "Back",
  11290. image: {
  11291. source: "./media/characters/quincy/back.svg",
  11292. extra: 3041 / 2751
  11293. }
  11294. },
  11295. flying: {
  11296. height: math.unit(5 + 4 / 12, "feet"),
  11297. weight: math.unit(70, "lb"),
  11298. name: "Flying",
  11299. image: {
  11300. source: "./media/characters/quincy/flying.svg",
  11301. extra: 1044 / 930
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Micro",
  11308. height: math.unit(3, "cm")
  11309. },
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(5 + 9 / 12, "feet")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(200, "meters"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(1000, "meters")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(4 + 7 / 12, "feet"),
  11330. weight: math.unit(50, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/vanrel/front.svg",
  11334. extra: 1,
  11335. bottom: 0.02
  11336. }
  11337. },
  11338. frontAlt: {
  11339. height: math.unit(4 + 7 / 12, "feet"),
  11340. weight: math.unit(50, "lb"),
  11341. name: "Front-alt",
  11342. image: {
  11343. source: "./media/characters/vanrel/front-alt.svg",
  11344. extra: 1,
  11345. bottom: 15 / 1511
  11346. }
  11347. },
  11348. elemental: {
  11349. height: math.unit(3, "feet"),
  11350. weight: math.unit(50, "lb"),
  11351. name: "Elemental",
  11352. image: {
  11353. source: "./media/characters/vanrel/elemental.svg",
  11354. extra: 192.3 / 162.8,
  11355. bottom: 1.79 / 194.17
  11356. }
  11357. },
  11358. side: {
  11359. height: math.unit(4 + 7 / 12, "feet"),
  11360. weight: math.unit(50, "lb"),
  11361. name: "Side",
  11362. image: {
  11363. source: "./media/characters/vanrel/side.svg",
  11364. extra: 1,
  11365. bottom: 0.025
  11366. }
  11367. },
  11368. tome: {
  11369. height: math.unit(1.35, "feet"),
  11370. weight: math.unit(10, "lb"),
  11371. name: "Vanrel's Tome",
  11372. rename: true,
  11373. image: {
  11374. source: "./media/characters/vanrel/tome.svg"
  11375. }
  11376. },
  11377. beans: {
  11378. height: math.unit(0.89, "feet"),
  11379. name: "Beans",
  11380. image: {
  11381. source: "./media/characters/vanrel/beans.svg"
  11382. }
  11383. },
  11384. },
  11385. [
  11386. {
  11387. name: "Normal",
  11388. height: math.unit(4 + 7 / 12, "feet"),
  11389. default: true
  11390. },
  11391. ]
  11392. ))
  11393. characterMakers.push(() => makeCharacter(
  11394. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11395. {
  11396. front: {
  11397. height: math.unit(7 + 5 / 12, "feet"),
  11398. weight: math.unit(150, "lb"),
  11399. name: "Front",
  11400. image: {
  11401. source: "./media/characters/kuiper-vanrel/front.svg",
  11402. extra: 1118 / 1068,
  11403. bottom: 0.09
  11404. }
  11405. },
  11406. foot: {
  11407. height: math.unit(0.55, "meters"),
  11408. name: "Foot",
  11409. image: {
  11410. source: "./media/characters/kuiper-vanrel/foot.svg",
  11411. }
  11412. },
  11413. battle: {
  11414. height: math.unit(6.824, "feet"),
  11415. weight: math.unit(150, "lb"),
  11416. name: "Battle",
  11417. image: {
  11418. source: "./media/characters/kuiper-vanrel/battle.svg",
  11419. extra: 1466 / 1327,
  11420. bottom: 29 / 1492.5
  11421. }
  11422. },
  11423. battleAlt: {
  11424. height: math.unit(6.824, "feet"),
  11425. weight: math.unit(150, "lb"),
  11426. name: "Battle (Alt)",
  11427. image: {
  11428. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11429. extra: 2081 / 1965,
  11430. bottom: 40 / 2121
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(7 + 5 / 12, "feet"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(8 + 5 / 12, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/keset-vanrel/front.svg",
  11451. extra: 1150 / 1084,
  11452. bottom: 0.05
  11453. }
  11454. },
  11455. hand: {
  11456. height: math.unit(0.6, "meters"),
  11457. name: "Hand",
  11458. image: {
  11459. source: "./media/characters/keset-vanrel/hand.svg"
  11460. }
  11461. },
  11462. foot: {
  11463. height: math.unit(0.94978, "meters"),
  11464. name: "Foot",
  11465. image: {
  11466. source: "./media/characters/keset-vanrel/foot.svg"
  11467. }
  11468. },
  11469. battle: {
  11470. height: math.unit(7.408, "feet"),
  11471. weight: math.unit(150, "lb"),
  11472. name: "Battle",
  11473. image: {
  11474. source: "./media/characters/keset-vanrel/battle.svg",
  11475. extra: 1890 / 1386,
  11476. bottom: 73.28 / 1970
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(8 + 5 / 12, "feet"),
  11484. default: true
  11485. },
  11486. ]
  11487. ))
  11488. characterMakers.push(() => makeCharacter(
  11489. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11490. {
  11491. front: {
  11492. height: math.unit(6, "feet"),
  11493. weight: math.unit(150, "lb"),
  11494. name: "Front",
  11495. image: {
  11496. source: "./media/characters/neos/front.svg",
  11497. extra: 1696 / 992,
  11498. bottom: 0.14
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Normal",
  11505. height: math.unit(54, "cm"),
  11506. default: true
  11507. },
  11508. {
  11509. name: "Macro",
  11510. height: math.unit(100, "m")
  11511. },
  11512. {
  11513. name: "Megamacro",
  11514. height: math.unit(10, "km")
  11515. },
  11516. {
  11517. name: "Megamacro+",
  11518. height: math.unit(100, "km")
  11519. },
  11520. {
  11521. name: "Gigamacro",
  11522. height: math.unit(100, "Mm")
  11523. },
  11524. {
  11525. name: "Teramacro",
  11526. height: math.unit(100, "Gm")
  11527. },
  11528. {
  11529. name: "Examacro",
  11530. height: math.unit(100, "Em")
  11531. },
  11532. {
  11533. name: "Godly",
  11534. height: math.unit(10000, "Ym")
  11535. },
  11536. {
  11537. name: "Beyond Godly",
  11538. height: math.unit(25, "multiverses")
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11544. {
  11545. feminine: {
  11546. height: math.unit(5, "feet"),
  11547. weight: math.unit(100, "lb"),
  11548. name: "Feminine",
  11549. image: {
  11550. source: "./media/characters/sammy-mouse/feminine.svg",
  11551. extra: 2526 / 2425,
  11552. bottom: 0.123
  11553. }
  11554. },
  11555. masculine: {
  11556. height: math.unit(5, "feet"),
  11557. weight: math.unit(100, "lb"),
  11558. name: "Masculine",
  11559. image: {
  11560. source: "./media/characters/sammy-mouse/masculine.svg",
  11561. extra: 2526 / 2425,
  11562. bottom: 0.123
  11563. }
  11564. },
  11565. },
  11566. [
  11567. {
  11568. name: "Micro",
  11569. height: math.unit(5, "inches")
  11570. },
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(5, "feet"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Macro",
  11578. height: math.unit(60, "feet")
  11579. },
  11580. ]
  11581. ))
  11582. characterMakers.push(() => makeCharacter(
  11583. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11584. {
  11585. front: {
  11586. height: math.unit(4, "feet"),
  11587. weight: math.unit(50, "lb"),
  11588. name: "Front",
  11589. image: {
  11590. source: "./media/characters/kole/front.svg",
  11591. extra: 1423 / 1303,
  11592. bottom: 0.025
  11593. }
  11594. },
  11595. back: {
  11596. height: math.unit(4, "feet"),
  11597. weight: math.unit(50, "lb"),
  11598. name: "Back",
  11599. image: {
  11600. source: "./media/characters/kole/back.svg",
  11601. extra: 1426 / 1280,
  11602. bottom: 0.02
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(4, "feet"),
  11610. default: true
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(2 + 6 / 12, "feet"),
  11619. weight: math.unit(20, "lb"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/rufran/front.svg",
  11623. extra: 2041 / 1839,
  11624. bottom: 0.055
  11625. }
  11626. },
  11627. back: {
  11628. height: math.unit(2 + 6 / 12, "feet"),
  11629. weight: math.unit(20, "lb"),
  11630. name: "Back",
  11631. image: {
  11632. source: "./media/characters/rufran/back.svg",
  11633. extra: 2054 / 1839,
  11634. bottom: 0.01
  11635. }
  11636. },
  11637. hand: {
  11638. height: math.unit(0.2166, "meters"),
  11639. name: "Hand",
  11640. image: {
  11641. source: "./media/characters/rufran/hand.svg"
  11642. }
  11643. },
  11644. foot: {
  11645. height: math.unit(0.185, "meters"),
  11646. name: "Foot",
  11647. image: {
  11648. source: "./media/characters/rufran/foot.svg"
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Micro",
  11655. height: math.unit(1, "inch")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(2 + 6 / 12, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Big",
  11664. height: math.unit(60, "feet")
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(325, "feet")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(0.3, "meters"),
  11677. weight: math.unit(3.5, "kg"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/chip/front.svg",
  11681. extra: 748 / 674
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Micro",
  11688. height: math.unit(1, "inch"),
  11689. default: true
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11695. {
  11696. side: {
  11697. height: math.unit(2.3, "meters"),
  11698. weight: math.unit(3500, "lb"),
  11699. name: "Side",
  11700. image: {
  11701. source: "./media/characters/torvid/side.svg",
  11702. extra: 1972 / 722,
  11703. bottom: 0.035
  11704. }
  11705. },
  11706. },
  11707. [
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(2.3, "meters"),
  11711. default: true
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11717. {
  11718. front: {
  11719. height: math.unit(2, "meters"),
  11720. weight: math.unit(150.5, "kg"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/susan/front.svg",
  11724. extra: 693 / 635,
  11725. bottom: 0.05
  11726. }
  11727. },
  11728. },
  11729. [
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(505, "miles"),
  11733. default: true
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(6, "feet"),
  11742. weight: math.unit(150, "lb"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/raindrops/front.svg",
  11746. extra: 2655 / 2461,
  11747. bottom: 49 / 2705
  11748. }
  11749. },
  11750. back: {
  11751. height: math.unit(6, "feet"),
  11752. weight: math.unit(150, "lb"),
  11753. name: "Back",
  11754. image: {
  11755. source: "./media/characters/raindrops/back.svg",
  11756. extra: 2574 / 2400,
  11757. bottom: 65 / 2634
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Micro",
  11764. height: math.unit(6, "inches")
  11765. },
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(6 + 2 / 12, "feet")
  11769. },
  11770. {
  11771. name: "Macro",
  11772. height: math.unit(131, "feet"),
  11773. default: true
  11774. },
  11775. {
  11776. name: "Megamacro",
  11777. height: math.unit(15, "miles")
  11778. },
  11779. {
  11780. name: "Gigamacro",
  11781. height: math.unit(4000, "miles")
  11782. },
  11783. {
  11784. name: "Teramacro",
  11785. height: math.unit(315000, "miles")
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(2.794, "meters"),
  11794. weight: math.unit(325, "kg"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/tezwa/front.svg",
  11798. extra: 2083 / 1906,
  11799. bottom: 0.031
  11800. }
  11801. },
  11802. foot: {
  11803. height: math.unit(0.687, "meters"),
  11804. name: "Foot",
  11805. image: {
  11806. source: "./media/characters/tezwa/foot.svg"
  11807. }
  11808. },
  11809. },
  11810. [
  11811. {
  11812. name: "Normal",
  11813. height: math.unit(9 + 2 / 12, "feet"),
  11814. default: true
  11815. },
  11816. ]
  11817. ))
  11818. characterMakers.push(() => makeCharacter(
  11819. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11820. {
  11821. front: {
  11822. height: math.unit(58, "feet"),
  11823. weight: math.unit(89000, "lb"),
  11824. name: "Front",
  11825. image: {
  11826. source: "./media/characters/typhus/front.svg",
  11827. extra: 816 / 800,
  11828. bottom: 0.065
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(58, "feet"),
  11836. default: true
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(12, "feet"),
  11845. weight: math.unit(6, "tonnes"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/lyra-von-wulf/front.svg",
  11849. extra: 1,
  11850. bottom: 0.10
  11851. }
  11852. },
  11853. frontMecha: {
  11854. height: math.unit(12, "feet"),
  11855. weight: math.unit(12, "tonnes"),
  11856. name: "Front (Mecha)",
  11857. image: {
  11858. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11859. extra: 1,
  11860. bottom: 0.042
  11861. }
  11862. },
  11863. maw: {
  11864. height: math.unit(2.2, "feet"),
  11865. name: "Maw",
  11866. image: {
  11867. source: "./media/characters/lyra-von-wulf/maw.svg"
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Normal",
  11874. height: math.unit(12, "feet"),
  11875. default: true
  11876. },
  11877. {
  11878. name: "Classic",
  11879. height: math.unit(50, "feet")
  11880. },
  11881. {
  11882. name: "Macro",
  11883. height: math.unit(500, "feet")
  11884. },
  11885. {
  11886. name: "Megamacro",
  11887. height: math.unit(1, "mile")
  11888. },
  11889. {
  11890. name: "Gigamacro",
  11891. height: math.unit(400, "miles")
  11892. },
  11893. {
  11894. name: "Teramacro",
  11895. height: math.unit(22000, "miles")
  11896. },
  11897. {
  11898. name: "Solarmacro",
  11899. height: math.unit(8600000, "miles")
  11900. },
  11901. {
  11902. name: "Galactic",
  11903. height: math.unit(1057000, "lightyears")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(6 + 10 / 12, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/dixon/front.svg",
  11916. extra: 3361 / 3209,
  11917. bottom: 0.01
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(6 + 10 / 12, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Big",
  11929. height: math.unit(12, "meters")
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(500, "meters")
  11934. },
  11935. {
  11936. name: "Megamacro",
  11937. height: math.unit(2, "km")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(185, "cm"),
  11946. weight: math.unit(68, "kg"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/kauko/front.svg",
  11950. extra: 1455 / 1421,
  11951. bottom: 0.03
  11952. }
  11953. },
  11954. back: {
  11955. height: math.unit(185, "cm"),
  11956. weight: math.unit(68, "kg"),
  11957. name: "Back",
  11958. image: {
  11959. source: "./media/characters/kauko/back.svg",
  11960. extra: 1455 / 1421,
  11961. bottom: 0.004
  11962. }
  11963. },
  11964. },
  11965. [
  11966. {
  11967. name: "Normal",
  11968. height: math.unit(185, "cm"),
  11969. default: true
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(6, "feet"),
  11978. weight: math.unit(150, "kg"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/varg/front.svg",
  11982. extra: 1108 / 1018,
  11983. bottom: 0.0375
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(5, "meters")
  11991. },
  11992. {
  11993. name: "Macro",
  11994. height: math.unit(200, "meters")
  11995. },
  11996. {
  11997. name: "Megamacro",
  11998. height: math.unit(20, "kilometers")
  11999. },
  12000. {
  12001. name: "True Size",
  12002. height: math.unit(211, "km"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(1000, "km")
  12008. },
  12009. {
  12010. name: "Gigamacro+",
  12011. height: math.unit(8000, "km")
  12012. },
  12013. {
  12014. name: "Teramacro",
  12015. height: math.unit(1000000, "km")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(7 + 7 / 12, "feet"),
  12024. weight: math.unit(267, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/dayza/front.svg",
  12028. extra: 1262 / 1200,
  12029. bottom: 0.035
  12030. }
  12031. },
  12032. side: {
  12033. height: math.unit(7 + 7 / 12, "feet"),
  12034. weight: math.unit(267, "lb"),
  12035. name: "Side",
  12036. image: {
  12037. source: "./media/characters/dayza/side.svg",
  12038. extra: 1295 / 1245,
  12039. bottom: 0.05
  12040. }
  12041. },
  12042. back: {
  12043. height: math.unit(7 + 7 / 12, "feet"),
  12044. weight: math.unit(267, "lb"),
  12045. name: "Back",
  12046. image: {
  12047. source: "./media/characters/dayza/back.svg",
  12048. extra: 1241 / 1170
  12049. }
  12050. },
  12051. },
  12052. [
  12053. {
  12054. name: "Normal",
  12055. height: math.unit(7 + 7 / 12, "feet"),
  12056. default: true
  12057. },
  12058. {
  12059. name: "Macro",
  12060. height: math.unit(155, "feet")
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(6 + 5 / 12, "feet"),
  12069. weight: math.unit(160, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/xanthos/front.svg",
  12073. extra: 1,
  12074. bottom: 0.04
  12075. }
  12076. },
  12077. back: {
  12078. height: math.unit(6 + 5 / 12, "feet"),
  12079. weight: math.unit(160, "lb"),
  12080. name: "Back",
  12081. image: {
  12082. source: "./media/characters/xanthos/back.svg",
  12083. extra: 1,
  12084. bottom: 0.03
  12085. }
  12086. },
  12087. hand: {
  12088. height: math.unit(0.928, "feet"),
  12089. name: "Hand",
  12090. image: {
  12091. source: "./media/characters/xanthos/hand.svg"
  12092. }
  12093. },
  12094. foot: {
  12095. height: math.unit(1.286, "feet"),
  12096. name: "Foot",
  12097. image: {
  12098. source: "./media/characters/xanthos/foot.svg"
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Normal",
  12105. height: math.unit(6 + 5 / 12, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Normal+",
  12110. height: math.unit(6, "meters")
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(40, "feet")
  12115. },
  12116. {
  12117. name: "Macro+",
  12118. height: math.unit(200, "meters")
  12119. },
  12120. {
  12121. name: "Megamacro",
  12122. height: math.unit(20, "km")
  12123. },
  12124. {
  12125. name: "Megamacro+",
  12126. height: math.unit(100, "km")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(6 + 3 / 12, "feet"),
  12135. weight: math.unit(215, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/grynn/front.svg",
  12139. extra: 4627 / 4209,
  12140. bottom: 0.047
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Micro",
  12147. height: math.unit(6, "inches")
  12148. },
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(6 + 3 / 12, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Big",
  12156. height: math.unit(104, "feet")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(944, "feet")
  12161. },
  12162. {
  12163. name: "Macro+",
  12164. height: math.unit(9480, "feet")
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(78752, "feet")
  12169. },
  12170. {
  12171. name: "Megamacro+",
  12172. height: math.unit(630128, "feet")
  12173. },
  12174. {
  12175. name: "Megamacro++",
  12176. height: math.unit(3150695, "feet")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(7 + 5 / 12, "feet"),
  12185. weight: math.unit(450, "lb"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/mocha-aura/front.svg",
  12189. extra: 1907 / 1817,
  12190. bottom: 0.04
  12191. }
  12192. },
  12193. back: {
  12194. height: math.unit(7 + 5 / 12, "feet"),
  12195. weight: math.unit(450, "lb"),
  12196. name: "Back",
  12197. image: {
  12198. source: "./media/characters/mocha-aura/back.svg",
  12199. extra: 1900 / 1825,
  12200. bottom: 0.045
  12201. }
  12202. },
  12203. },
  12204. [
  12205. {
  12206. name: "Nano",
  12207. height: math.unit(1, "nm")
  12208. },
  12209. {
  12210. name: "Megamicro",
  12211. height: math.unit(1, "mm")
  12212. },
  12213. {
  12214. name: "Micro",
  12215. height: math.unit(3, "inches")
  12216. },
  12217. {
  12218. name: "Normal",
  12219. height: math.unit(7 + 5 / 12, "feet"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(30, "feet")
  12225. },
  12226. {
  12227. name: "Megamacro",
  12228. height: math.unit(3500, "feet")
  12229. },
  12230. {
  12231. name: "Teramacro",
  12232. height: math.unit(500000, "miles")
  12233. },
  12234. {
  12235. name: "Petamacro",
  12236. height: math.unit(50000000000000000, "parsecs")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12242. {
  12243. front: {
  12244. height: math.unit(6, "feet"),
  12245. weight: math.unit(150, "lb"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/ilisha-devya/front.svg",
  12249. extra: 1,
  12250. bottom: 0.175
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Back",
  12257. image: {
  12258. source: "./media/characters/ilisha-devya/back.svg",
  12259. extra: 1,
  12260. bottom: 0.015
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Macro",
  12267. height: math.unit(500, "feet"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(10, "miles")
  12273. },
  12274. {
  12275. name: "Gigamacro",
  12276. height: math.unit(100000, "miles")
  12277. },
  12278. {
  12279. name: "Examacro",
  12280. height: math.unit(1e9, "lightyears")
  12281. },
  12282. {
  12283. name: "Omniversal",
  12284. height: math.unit(1e33, "lightyears")
  12285. },
  12286. {
  12287. name: "Beyond Infinite",
  12288. height: math.unit(1e100, "lightyears")
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12294. {
  12295. Side: {
  12296. height: math.unit(6, "feet"),
  12297. weight: math.unit(150, "lb"),
  12298. name: "Side",
  12299. image: {
  12300. source: "./media/characters/mira/side.svg",
  12301. extra: 900 / 799,
  12302. bottom: 0.02
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Human Size",
  12309. height: math.unit(6, "feet")
  12310. },
  12311. {
  12312. name: "Macro",
  12313. height: math.unit(100, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Megamacro",
  12318. height: math.unit(10, "miles")
  12319. },
  12320. {
  12321. name: "Gigamacro",
  12322. height: math.unit(25000, "miles")
  12323. },
  12324. {
  12325. name: "Teramacro",
  12326. height: math.unit(300, "AU")
  12327. },
  12328. {
  12329. name: "Full Size",
  12330. height: math.unit(4.5e10, "lightyears")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(6, "feet"),
  12339. weight: math.unit(150, "lb"),
  12340. name: "Front",
  12341. image: {
  12342. source: "./media/characters/holly/front.svg",
  12343. extra: 639 / 606
  12344. }
  12345. },
  12346. back: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Back",
  12350. image: {
  12351. source: "./media/characters/holly/back.svg",
  12352. extra: 623 / 598
  12353. }
  12354. },
  12355. frontWorking: {
  12356. height: math.unit(6, "feet"),
  12357. weight: math.unit(150, "lb"),
  12358. name: "Front (Working)",
  12359. image: {
  12360. source: "./media/characters/holly/front-working.svg",
  12361. extra: 607 / 577,
  12362. bottom: 0.048
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(12 + 3 / 12, "feet"),
  12370. default: true
  12371. },
  12372. ]
  12373. ))
  12374. characterMakers.push(() => makeCharacter(
  12375. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12376. {
  12377. front: {
  12378. height: math.unit(6, "feet"),
  12379. weight: math.unit(150, "lb"),
  12380. name: "Front",
  12381. image: {
  12382. source: "./media/characters/porter/front.svg",
  12383. extra: 1,
  12384. bottom: 0.01
  12385. }
  12386. },
  12387. frontRobes: {
  12388. height: math.unit(6, "feet"),
  12389. weight: math.unit(150, "lb"),
  12390. name: "Front (Robes)",
  12391. image: {
  12392. source: "./media/characters/porter/front-robes.svg",
  12393. extra: 1.01,
  12394. bottom: 0.01
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(11 + 9 / 12, "feet"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12408. {
  12409. legendary: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Legendary",
  12413. image: {
  12414. source: "./media/characters/lucy/legendary.svg",
  12415. extra: 1355 / 1100,
  12416. bottom: 0.045
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Legendary",
  12423. height: math.unit(86882 * 2, "miles"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/drusilla/front.svg",
  12437. extra: 678 / 635,
  12438. bottom: 0.03
  12439. }
  12440. },
  12441. back: {
  12442. height: math.unit(6, "feet"),
  12443. weight: math.unit(150, "lb"),
  12444. name: "Back",
  12445. image: {
  12446. source: "./media/characters/drusilla/back.svg",
  12447. extra: 678 / 635,
  12448. bottom: 0.005
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(100, "feet")
  12456. },
  12457. {
  12458. name: "Canon Height",
  12459. height: math.unit(2000, "feet"),
  12460. default: true
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(180, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/renard-thatch/front.svg",
  12473. extra: 2411 / 2275,
  12474. bottom: 0.01
  12475. }
  12476. },
  12477. frontPosing: {
  12478. height: math.unit(6, "feet"),
  12479. weight: math.unit(180, "lb"),
  12480. name: "Front (Posing)",
  12481. image: {
  12482. source: "./media/characters/renard-thatch/front-posing.svg",
  12483. extra: 2381 / 2261,
  12484. bottom: 0.01
  12485. }
  12486. },
  12487. back: {
  12488. height: math.unit(6, "feet"),
  12489. weight: math.unit(180, "lb"),
  12490. name: "Back",
  12491. image: {
  12492. source: "./media/characters/renard-thatch/back.svg",
  12493. extra: 2428 / 2288
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Micro",
  12500. height: math.unit(3, "inches")
  12501. },
  12502. {
  12503. name: "Default",
  12504. height: math.unit(6, "feet"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(75, "feet")
  12510. },
  12511. ]
  12512. ))
  12513. characterMakers.push(() => makeCharacter(
  12514. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12515. {
  12516. front: {
  12517. height: math.unit(1450, "feet"),
  12518. weight: math.unit(1.21e6, "tons"),
  12519. name: "Front",
  12520. image: {
  12521. source: "./media/characters/sekvra/front.svg",
  12522. extra: 1,
  12523. bottom: 0.03
  12524. }
  12525. },
  12526. frontClothed: {
  12527. height: math.unit(1450, "feet"),
  12528. weight: math.unit(1.21e6, "tons"),
  12529. name: "Front (Clothed)",
  12530. image: {
  12531. source: "./media/characters/sekvra/front-clothed.svg",
  12532. extra: 1,
  12533. bottom: 0.03
  12534. }
  12535. },
  12536. side: {
  12537. height: math.unit(1450, "feet"),
  12538. weight: math.unit(1.21e6, "tons"),
  12539. name: "Side",
  12540. image: {
  12541. source: "./media/characters/sekvra/side.svg",
  12542. extra: 1,
  12543. bottom: 0.025
  12544. }
  12545. },
  12546. back: {
  12547. height: math.unit(1450, "feet"),
  12548. weight: math.unit(1.21e6, "tons"),
  12549. name: "Back",
  12550. image: {
  12551. source: "./media/characters/sekvra/back.svg",
  12552. extra: 1,
  12553. bottom: 0.005
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Macro",
  12560. height: math.unit(1450, "feet"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Megamacro",
  12565. height: math.unit(15000, "feet")
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(6, "feet"),
  12574. weight: math.unit(150, "lb"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/carmine/front.svg",
  12578. extra: 1,
  12579. bottom: 0.035
  12580. }
  12581. },
  12582. frontArmor: {
  12583. height: math.unit(6, "feet"),
  12584. weight: math.unit(150, "lb"),
  12585. name: "Front (Armor)",
  12586. image: {
  12587. source: "./media/characters/carmine/front-armor.svg",
  12588. extra: 1,
  12589. bottom: 0.035
  12590. }
  12591. },
  12592. },
  12593. [
  12594. {
  12595. name: "Large",
  12596. height: math.unit(1, "mile")
  12597. },
  12598. {
  12599. name: "Huge",
  12600. height: math.unit(40, "miles"),
  12601. default: true
  12602. },
  12603. {
  12604. name: "Colossal",
  12605. height: math.unit(2500, "miles")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Elyssia", species: ["banchofossa"], 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/elyssia/front.svg",
  12618. extra: 2201 / 2035,
  12619. bottom: 0.05
  12620. }
  12621. },
  12622. frontClothed: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Front (Clothed)",
  12626. image: {
  12627. source: "./media/characters/elyssia/front-clothed.svg",
  12628. extra: 2201 / 2035,
  12629. bottom: 0.05
  12630. }
  12631. },
  12632. back: {
  12633. height: math.unit(6, "feet"),
  12634. weight: math.unit(150, "lb"),
  12635. name: "Back",
  12636. image: {
  12637. source: "./media/characters/elyssia/back.svg",
  12638. extra: 2201 / 2035,
  12639. bottom: 0.013
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Smaller",
  12646. height: math.unit(150, "feet")
  12647. },
  12648. {
  12649. name: "Standard",
  12650. height: math.unit(1400, "feet"),
  12651. default: true
  12652. },
  12653. {
  12654. name: "Distracted",
  12655. height: math.unit(15000, "feet")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(7 + 4 / 12, "feet"),
  12664. weight: math.unit(500, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/geno-maxwell/front.svg",
  12668. extra: 2207 / 2040,
  12669. bottom: 0.015
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Micro",
  12676. height: math.unit(3, "inches")
  12677. },
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(7 + 4 / 12, "feet"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(220, "feet")
  12686. },
  12687. {
  12688. name: "Megamacro",
  12689. height: math.unit(11, "miles")
  12690. },
  12691. ]
  12692. ))
  12693. characterMakers.push(() => makeCharacter(
  12694. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12695. {
  12696. front: {
  12697. height: math.unit(7 + 4 / 12, "feet"),
  12698. weight: math.unit(500, "lb"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/regena-maxwell/front.svg",
  12702. extra: 3115 / 2770,
  12703. bottom: 0.02
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(7 + 4 / 12, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(220, "feet")
  12716. },
  12717. {
  12718. name: "Megamacro",
  12719. height: math.unit(11, "miles")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], 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/x-gliding-dragon-x/front.svg",
  12732. extra: 860 / 690,
  12733. bottom: 0.03
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Normal",
  12740. height: math.unit(1.7, "meters"),
  12741. default: true
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(6, "feet"),
  12750. weight: math.unit(150, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/quilly/front.svg",
  12754. extra: 890 / 776
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Gigamacro",
  12761. height: math.unit(404090, "miles"),
  12762. default: true
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12768. {
  12769. front: {
  12770. height: math.unit(7 + 8 / 12, "feet"),
  12771. weight: math.unit(350, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/tempest/front.svg",
  12775. extra: 1175 / 1086,
  12776. bottom: 0.02
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(7 + 8 / 12, "feet"),
  12784. default: true
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12790. {
  12791. side: {
  12792. height: math.unit(4 + 5 / 12, "feet"),
  12793. weight: math.unit(80, "lb"),
  12794. name: "Side",
  12795. image: {
  12796. source: "./media/characters/rodger/side.svg",
  12797. extra: 1235 / 1118
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Micro",
  12804. height: math.unit(1, "inch")
  12805. },
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(4 + 5 / 12, "feet"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Macro",
  12813. height: math.unit(120, "feet")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(6, "feet"),
  12822. weight: math.unit(150, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/danyel/front.svg",
  12826. extra: 1185 / 1123,
  12827. bottom: 0.05
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Shrunken",
  12834. height: math.unit(0.5, "mm")
  12835. },
  12836. {
  12837. name: "Micro",
  12838. height: math.unit(1, "mm"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Upsized",
  12843. height: math.unit(5 + 5 / 12, "feet")
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(5 + 6 / 12, "feet"),
  12852. weight: math.unit(200, "lb"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/vivian-bijoux/front.svg",
  12856. extra: 1,
  12857. bottom: 0.072
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Normal",
  12864. height: math.unit(5 + 6 / 12, "feet"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Bad Dream",
  12869. height: math.unit(500, "feet")
  12870. },
  12871. {
  12872. name: "Nightmare",
  12873. height: math.unit(500, "miles")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(6 + 1 / 12, "feet"),
  12882. weight: math.unit(260, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/zeta/front.svg",
  12886. extra: 1968 / 1889,
  12887. bottom: 0.06
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(6 + 1 / 12, "feet"),
  12892. weight: math.unit(260, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/zeta/back.svg",
  12896. extra: 1944 / 1858,
  12897. bottom: 0.03
  12898. }
  12899. },
  12900. hand: {
  12901. height: math.unit(1.112, "feet"),
  12902. name: "Hand",
  12903. image: {
  12904. source: "./media/characters/zeta/hand.svg"
  12905. }
  12906. },
  12907. foot: {
  12908. height: math.unit(1.48, "feet"),
  12909. name: "Foot",
  12910. image: {
  12911. source: "./media/characters/zeta/foot.svg"
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Micro",
  12918. height: math.unit(6, "inches")
  12919. },
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(6 + 1 / 12, "feet"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Macro",
  12927. height: math.unit(20, "feet")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(150, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/jamie-larsen/front.svg",
  12940. extra: 962 / 933,
  12941. bottom: 0.02
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "lb"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/jamie-larsen/back.svg",
  12950. extra: 997 / 946
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(28 + 7 / 12, "feet"),
  12958. default: true
  12959. },
  12960. {
  12961. name: "Macro+",
  12962. height: math.unit(180, "feet")
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(10, "miles")
  12967. },
  12968. {
  12969. name: "Gigamacro",
  12970. height: math.unit(200000, "miles")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(120, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/vance/front.svg",
  12983. extra: 1980 / 1890,
  12984. bottom: 0.09
  12985. }
  12986. },
  12987. back: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(120, "lb"),
  12990. name: "Back",
  12991. image: {
  12992. source: "./media/characters/vance/back.svg",
  12993. extra: 2081 / 1994,
  12994. bottom: 0.014
  12995. }
  12996. },
  12997. hand: {
  12998. height: math.unit(0.88, "feet"),
  12999. name: "Hand",
  13000. image: {
  13001. source: "./media/characters/vance/hand.svg"
  13002. }
  13003. },
  13004. foot: {
  13005. height: math.unit(0.64, "feet"),
  13006. name: "Foot",
  13007. image: {
  13008. source: "./media/characters/vance/foot.svg"
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Small",
  13015. height: math.unit(90, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Macro",
  13020. height: math.unit(100, "meters")
  13021. },
  13022. {
  13023. name: "Megamacro",
  13024. height: math.unit(15, "miles")
  13025. },
  13026. ]
  13027. ))
  13028. characterMakers.push(() => makeCharacter(
  13029. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13030. {
  13031. front: {
  13032. height: math.unit(6, "feet"),
  13033. weight: math.unit(180, "lb"),
  13034. name: "Front",
  13035. image: {
  13036. source: "./media/characters/xochitl/front.svg",
  13037. extra: 2297 / 2261,
  13038. bottom: 0.065
  13039. }
  13040. },
  13041. back: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(180, "lb"),
  13044. name: "Back",
  13045. image: {
  13046. source: "./media/characters/xochitl/back.svg",
  13047. extra: 2386 / 2354,
  13048. bottom: 0.01
  13049. }
  13050. },
  13051. foot: {
  13052. height: math.unit(6 / 5 * 1.15, "feet"),
  13053. weight: math.unit(150, "lb"),
  13054. name: "Foot",
  13055. image: {
  13056. source: "./media/characters/xochitl/foot.svg"
  13057. }
  13058. },
  13059. },
  13060. [
  13061. {
  13062. name: "Macro",
  13063. height: math.unit(80, "feet")
  13064. },
  13065. {
  13066. name: "Macro+",
  13067. height: math.unit(400, "feet"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(80000, "miles")
  13073. },
  13074. {
  13075. name: "Gigamacro+",
  13076. height: math.unit(400000, "miles")
  13077. },
  13078. {
  13079. name: "Teramacro",
  13080. height: math.unit(300, "AU")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(6, "feet"),
  13089. weight: math.unit(150, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/vincent/front.svg",
  13093. extra: 1130 / 1080,
  13094. bottom: 0.055
  13095. }
  13096. },
  13097. beak: {
  13098. height: math.unit(6 * 0.1, "feet"),
  13099. name: "Beak",
  13100. image: {
  13101. source: "./media/characters/vincent/beak.svg"
  13102. }
  13103. },
  13104. hand: {
  13105. height: math.unit(6 * 0.85, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Hand",
  13108. image: {
  13109. source: "./media/characters/vincent/hand.svg"
  13110. }
  13111. },
  13112. foot: {
  13113. height: math.unit(6 * 0.19, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Foot",
  13116. image: {
  13117. source: "./media/characters/vincent/foot.svg"
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Base",
  13124. height: math.unit(6 + 5 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(300, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(2, "miles")
  13134. },
  13135. {
  13136. name: "Gigamacro",
  13137. height: math.unit(1000, "miles")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6 + 2 / 12, "feet"),
  13146. weight: math.unit(265, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/jay/front.svg",
  13150. extra: 1510 / 1430,
  13151. bottom: 0.042
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(6 + 2 / 12, "feet"),
  13156. weight: math.unit(265, "lb"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/jay/back.svg",
  13160. extra: 1510 / 1430,
  13161. bottom: 0.025
  13162. }
  13163. },
  13164. clothed: {
  13165. height: math.unit(6 + 2 / 12, "feet"),
  13166. weight: math.unit(265, "lb"),
  13167. name: "Front (Clothed)",
  13168. image: {
  13169. source: "./media/characters/jay/clothed.svg",
  13170. extra: 744 / 699,
  13171. bottom: 0.043
  13172. }
  13173. },
  13174. head: {
  13175. height: math.unit(1.772, "feet"),
  13176. name: "Head",
  13177. image: {
  13178. source: "./media/characters/jay/head.svg"
  13179. }
  13180. },
  13181. sizeRay: {
  13182. height: math.unit(1.331, "feet"),
  13183. name: "Size Ray",
  13184. image: {
  13185. source: "./media/characters/jay/size-ray.svg"
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Micro",
  13192. height: math.unit(1, "inch")
  13193. },
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(6 + 2 / 12, "feet"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(1, "mile")
  13202. },
  13203. {
  13204. name: "Megamacro",
  13205. height: math.unit(100, "miles")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(2, "meters"),
  13214. weight: math.unit(500, "kg"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/coatl/front.svg",
  13218. extra: 3948 / 3500,
  13219. bottom: 0.082
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(4, "meters")
  13227. },
  13228. {
  13229. name: "Macro",
  13230. height: math.unit(100, "meters"),
  13231. default: true
  13232. },
  13233. {
  13234. name: "Macro+",
  13235. height: math.unit(300, "meters")
  13236. },
  13237. {
  13238. name: "Megamacro",
  13239. height: math.unit(3, "gigameters")
  13240. },
  13241. {
  13242. name: "Megamacro+",
  13243. height: math.unit(300, "terameters")
  13244. },
  13245. {
  13246. name: "Megamacro++",
  13247. height: math.unit(3, "lightyears")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(6, "feet"),
  13256. weight: math.unit(50, "kg"),
  13257. name: "front",
  13258. image: {
  13259. source: "./media/characters/shiroryu/front.svg",
  13260. extra: 1990 / 1935
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Mortal Mingling",
  13267. height: math.unit(3, "meters")
  13268. },
  13269. {
  13270. name: "Kaiju-ish",
  13271. height: math.unit(250, "meters")
  13272. },
  13273. {
  13274. name: "Somewhat Godly",
  13275. height: math.unit(400, "km"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Planetary",
  13280. height: math.unit(300, "megameters")
  13281. },
  13282. {
  13283. name: "Galaxy-dwarfing",
  13284. height: math.unit(450, "kiloparsecs")
  13285. },
  13286. {
  13287. name: "Universe Eater",
  13288. height: math.unit(150, "gigaparsecs")
  13289. },
  13290. {
  13291. name: "Almost Immeasurable",
  13292. height: math.unit(1.3e266, "yottaparsecs")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/umeko/front.svg",
  13305. extra: 1,
  13306. bottom: 0.019
  13307. }
  13308. },
  13309. frontArmored: {
  13310. height: math.unit(6, "feet"),
  13311. weight: math.unit(150, "lb"),
  13312. name: "Front (Armored)",
  13313. image: {
  13314. source: "./media/characters/umeko/front-armored.svg",
  13315. extra: 1,
  13316. bottom: 0.021
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(220, "feet"),
  13324. default: true
  13325. },
  13326. {
  13327. name: "Guardian Dragon",
  13328. height: math.unit(50, "miles")
  13329. },
  13330. {
  13331. name: "Cosmic",
  13332. height: math.unit(800000, "miles")
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(150, "lb"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/cassidy/front.svg",
  13345. extra: 1,
  13346. bottom: 0.043
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Canon Height",
  13353. height: math.unit(120, "feet"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Macro+",
  13358. height: math.unit(400, "feet")
  13359. },
  13360. {
  13361. name: "Macro++",
  13362. height: math.unit(4000, "feet")
  13363. },
  13364. {
  13365. name: "Megamacro",
  13366. height: math.unit(3, "miles")
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(6, "feet"),
  13375. weight: math.unit(150, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/isaac/front.svg",
  13379. extra: 896 / 815,
  13380. bottom: 0.11
  13381. }
  13382. },
  13383. },
  13384. [
  13385. {
  13386. name: "Human Size",
  13387. height: math.unit(8, "feet"),
  13388. default: true
  13389. },
  13390. {
  13391. name: "Macro",
  13392. height: math.unit(400, "feet")
  13393. },
  13394. {
  13395. name: "Megamacro",
  13396. height: math.unit(50, "miles")
  13397. },
  13398. {
  13399. name: "Canon Height",
  13400. height: math.unit(200, "AU")
  13401. },
  13402. ]
  13403. ))
  13404. characterMakers.push(() => makeCharacter(
  13405. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13406. {
  13407. front: {
  13408. height: math.unit(6, "feet"),
  13409. weight: math.unit(72, "kg"),
  13410. name: "Front",
  13411. image: {
  13412. source: "./media/characters/sleekit/front.svg",
  13413. extra: 4693 / 4487,
  13414. bottom: 0.012
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Minimum Height",
  13421. height: math.unit(10, "meters")
  13422. },
  13423. {
  13424. name: "Smaller",
  13425. height: math.unit(25, "meters")
  13426. },
  13427. {
  13428. name: "Larger",
  13429. height: math.unit(38, "meters"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Maximum height",
  13434. height: math.unit(100, "meters")
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/nillia/front.svg",
  13447. extra: 2195 / 2037,
  13448. bottom: 0.005
  13449. }
  13450. },
  13451. back: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(150, "lb"),
  13454. name: "Back",
  13455. image: {
  13456. source: "./media/characters/nillia/back.svg",
  13457. extra: 2195 / 2037,
  13458. bottom: 0.005
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Canon Height",
  13465. height: math.unit(489, "feet"),
  13466. default: true
  13467. }
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(6, "feet"),
  13475. weight: math.unit(150, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/mesmyriza/front.svg",
  13479. extra: 2067 / 1784,
  13480. bottom: 0.035
  13481. }
  13482. },
  13483. foot: {
  13484. height: math.unit(6 / (250 / 35), "feet"),
  13485. name: "Foot",
  13486. image: {
  13487. source: "./media/characters/mesmyriza/foot.svg"
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Macro",
  13494. height: math.unit(457, "meters"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Megamacro",
  13499. height: math.unit(8, "megameters")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(250, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/saudade/front.svg",
  13512. extra: 1172 / 1139,
  13513. bottom: 0.035
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(3, "inches")
  13521. },
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(6, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(50, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(2800, "feet")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(5 + 4 / 12, "feet"),
  13542. weight: math.unit(100, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/keireer/front.svg",
  13546. extra: 716 / 666,
  13547. bottom: 0.05
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(5 + 4 / 12, "feet"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(90, "kg"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/mirja/front.svg",
  13568. extra: 1789 / 1683,
  13569. bottom: 0.05
  13570. }
  13571. },
  13572. frontDressed: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(90, "lb"),
  13575. name: "Front (Dressed)",
  13576. image: {
  13577. source: "./media/characters/mirja/front-dressed.svg",
  13578. extra: 1789 / 1683,
  13579. bottom: 0.05
  13580. }
  13581. },
  13582. back: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(90, "lb"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/mirja/back.svg",
  13588. extra: 953 / 917,
  13589. bottom: 0.017
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "\"Incognito\"",
  13596. height: math.unit(3, "meters")
  13597. },
  13598. {
  13599. name: "Strolling Size",
  13600. height: math.unit(15, "km")
  13601. },
  13602. {
  13603. name: "Larger Strolling Size",
  13604. height: math.unit(400, "km")
  13605. },
  13606. {
  13607. name: "Preferred Size",
  13608. height: math.unit(5000, "km")
  13609. },
  13610. {
  13611. name: "True Size",
  13612. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13613. default: true
  13614. },
  13615. ]
  13616. ))
  13617. characterMakers.push(() => makeCharacter(
  13618. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13619. {
  13620. front: {
  13621. height: math.unit(15, "feet"),
  13622. weight: math.unit(880, "kg"),
  13623. name: "Front",
  13624. image: {
  13625. source: "./media/characters/nightraver/front.svg",
  13626. extra: 2444 / 2160,
  13627. bottom: 0.027
  13628. }
  13629. },
  13630. back: {
  13631. height: math.unit(15, "feet"),
  13632. weight: math.unit(880, "kg"),
  13633. name: "Back",
  13634. image: {
  13635. source: "./media/characters/nightraver/back.svg",
  13636. extra: 2309 / 2180,
  13637. bottom: 0.005
  13638. }
  13639. },
  13640. sole: {
  13641. height: math.unit(2.878, "feet"),
  13642. name: "Sole",
  13643. image: {
  13644. source: "./media/characters/nightraver/sole.svg"
  13645. }
  13646. },
  13647. foot: {
  13648. height: math.unit(2.285, "feet"),
  13649. name: "Foot",
  13650. image: {
  13651. source: "./media/characters/nightraver/foot.svg"
  13652. }
  13653. },
  13654. maw: {
  13655. height: math.unit(2.67, "feet"),
  13656. name: "Maw",
  13657. image: {
  13658. source: "./media/characters/nightraver/maw.svg"
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Micro",
  13665. height: math.unit(1, "cm")
  13666. },
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(15, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Macro",
  13674. height: math.unit(300, "feet")
  13675. },
  13676. {
  13677. name: "Megamacro",
  13678. height: math.unit(300, "miles")
  13679. },
  13680. {
  13681. name: "Gigamacro",
  13682. height: math.unit(10000, "miles")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13688. {
  13689. side: {
  13690. height: math.unit(2, "inches"),
  13691. weight: math.unit(5, "grams"),
  13692. name: "Side",
  13693. image: {
  13694. source: "./media/characters/arc/side.svg"
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Micro",
  13701. height: math.unit(2, "inches"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(1.1938, "meters"),
  13711. weight: math.unit(54, "kg"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/nebula-shahar/front.svg",
  13715. extra: 1642 / 1436,
  13716. bottom: 0.06
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Megamicro",
  13723. height: math.unit(0.3, "mm")
  13724. },
  13725. {
  13726. name: "Micro",
  13727. height: math.unit(3, "cm")
  13728. },
  13729. {
  13730. name: "Normal",
  13731. height: math.unit(138, "cm"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(30, "m")
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13742. {
  13743. front: {
  13744. height: math.unit(5.24, "feet"),
  13745. weight: math.unit(150, "lb"),
  13746. name: "Front",
  13747. image: {
  13748. source: "./media/characters/shayla/front.svg",
  13749. extra: 1512 / 1414,
  13750. bottom: 0.01
  13751. }
  13752. },
  13753. back: {
  13754. height: math.unit(5.24, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Back",
  13757. image: {
  13758. source: "./media/characters/shayla/back.svg",
  13759. extra: 1512 / 1414
  13760. }
  13761. },
  13762. hand: {
  13763. height: math.unit(0.7781496062992126, "feet"),
  13764. name: "Hand",
  13765. image: {
  13766. source: "./media/characters/shayla/hand.svg"
  13767. }
  13768. },
  13769. foot: {
  13770. height: math.unit(1.4206036745406823, "feet"),
  13771. name: "Foot",
  13772. image: {
  13773. source: "./media/characters/shayla/foot.svg"
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Micro",
  13780. height: math.unit(0.32, "feet")
  13781. },
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(5.24, "feet"),
  13785. default: true
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(492.12, "feet")
  13790. },
  13791. {
  13792. name: "Megamacro",
  13793. height: math.unit(186.41, "miles")
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(2.2, "m"),
  13802. weight: math.unit(120, "kg"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/pia-jr/front.svg",
  13806. extra: 1000 / 970,
  13807. bottom: 0.035
  13808. }
  13809. },
  13810. hand: {
  13811. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13812. name: "Hand",
  13813. image: {
  13814. source: "./media/characters/pia-jr/hand.svg"
  13815. }
  13816. },
  13817. paw: {
  13818. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13819. name: "Paw",
  13820. image: {
  13821. source: "./media/characters/pia-jr/paw.svg"
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Micro",
  13828. height: math.unit(1.2, "cm")
  13829. },
  13830. {
  13831. name: "Normal",
  13832. height: math.unit(2.2, "m"),
  13833. default: true
  13834. },
  13835. {
  13836. name: "Macro",
  13837. height: math.unit(180, "m")
  13838. },
  13839. {
  13840. name: "Megamacro",
  13841. height: math.unit(420, "km")
  13842. },
  13843. ]
  13844. ))
  13845. characterMakers.push(() => makeCharacter(
  13846. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13847. {
  13848. front: {
  13849. height: math.unit(2, "m"),
  13850. weight: math.unit(115, "kg"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/pia-sr/front.svg",
  13854. extra: 760 / 730,
  13855. bottom: 0.015
  13856. }
  13857. },
  13858. back: {
  13859. height: math.unit(2, "m"),
  13860. weight: math.unit(115, "kg"),
  13861. name: "Back",
  13862. image: {
  13863. source: "./media/characters/pia-sr/back.svg",
  13864. extra: 760 / 730,
  13865. bottom: 0.01
  13866. }
  13867. },
  13868. hand: {
  13869. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13870. name: "Hand",
  13871. image: {
  13872. source: "./media/characters/pia-sr/hand.svg"
  13873. }
  13874. },
  13875. foot: {
  13876. height: math.unit(1.83, "feet"),
  13877. name: "Foot",
  13878. image: {
  13879. source: "./media/characters/pia-sr/foot.svg"
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Micro",
  13886. height: math.unit(88, "mm")
  13887. },
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(2, "m"),
  13891. default: true
  13892. },
  13893. {
  13894. name: "Macro",
  13895. height: math.unit(200, "m")
  13896. },
  13897. {
  13898. name: "Megamacro",
  13899. height: math.unit(420, "km")
  13900. },
  13901. ]
  13902. ))
  13903. characterMakers.push(() => makeCharacter(
  13904. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13905. {
  13906. front: {
  13907. height: math.unit(8 + 2 / 12, "feet"),
  13908. weight: math.unit(300, "lb"),
  13909. name: "Front",
  13910. image: {
  13911. source: "./media/characters/kibibyte/front.svg",
  13912. extra: 2221 / 2098,
  13913. bottom: 0.04
  13914. }
  13915. },
  13916. },
  13917. [
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(8 + 2 / 12, "feet"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Socialable Macro",
  13925. height: math.unit(50, "feet")
  13926. },
  13927. {
  13928. name: "Macro",
  13929. height: math.unit(300, "feet")
  13930. },
  13931. {
  13932. name: "Megamacro",
  13933. height: math.unit(500, "miles")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13939. {
  13940. front: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(150, "lb"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/felix/front.svg",
  13946. extra: 762 / 722,
  13947. bottom: 0.02
  13948. }
  13949. },
  13950. frontClothed: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(150, "lb"),
  13953. name: "Front (Clothed)",
  13954. image: {
  13955. source: "./media/characters/felix/front-clothed.svg",
  13956. extra: 762 / 722,
  13957. bottom: 0.02
  13958. }
  13959. },
  13960. },
  13961. [
  13962. {
  13963. name: "Normal",
  13964. height: math.unit(6 + 8 / 12, "feet"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(2600, "feet")
  13970. },
  13971. {
  13972. name: "Megamacro",
  13973. height: math.unit(450, "miles")
  13974. },
  13975. ]
  13976. ))
  13977. characterMakers.push(() => makeCharacter(
  13978. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13979. {
  13980. front: {
  13981. height: math.unit(6 + 1 / 12, "feet"),
  13982. weight: math.unit(250, "lb"),
  13983. name: "Front",
  13984. image: {
  13985. source: "./media/characters/tobo/front.svg",
  13986. extra: 608 / 586,
  13987. bottom: 0.023
  13988. }
  13989. },
  13990. back: {
  13991. height: math.unit(6 + 1 / 12, "feet"),
  13992. weight: math.unit(250, "lb"),
  13993. name: "Back",
  13994. image: {
  13995. source: "./media/characters/tobo/back.svg",
  13996. extra: 608 / 586
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Nano",
  14003. height: math.unit(2, "nm")
  14004. },
  14005. {
  14006. name: "Megamicro",
  14007. height: math.unit(0.1, "mm")
  14008. },
  14009. {
  14010. name: "Micro",
  14011. height: math.unit(1, "inch"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Human-sized",
  14016. height: math.unit(6 + 1 / 12, "feet")
  14017. },
  14018. {
  14019. name: "Macro",
  14020. height: math.unit(250, "feet")
  14021. },
  14022. {
  14023. name: "Megamacro",
  14024. height: math.unit(75, "miles")
  14025. },
  14026. {
  14027. name: "Texas-sized",
  14028. height: math.unit(750, "miles")
  14029. },
  14030. {
  14031. name: "Teramacro",
  14032. height: math.unit(50000, "miles")
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14038. {
  14039. front: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(269, "lb"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/danny-kapowsky/front.svg",
  14045. extra: 766 / 736,
  14046. bottom: 0.044
  14047. }
  14048. },
  14049. back: {
  14050. height: math.unit(6, "feet"),
  14051. weight: math.unit(269, "lb"),
  14052. name: "Back",
  14053. image: {
  14054. source: "./media/characters/danny-kapowsky/back.svg",
  14055. extra: 797 / 760,
  14056. bottom: 0.025
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(150, "feet"),
  14064. default: true
  14065. },
  14066. {
  14067. name: "Macro+",
  14068. height: math.unit(200, "feet")
  14069. },
  14070. {
  14071. name: "Macro++",
  14072. height: math.unit(300, "feet")
  14073. },
  14074. {
  14075. name: "Macro+++",
  14076. height: math.unit(400, "feet")
  14077. },
  14078. ]
  14079. ))
  14080. characterMakers.push(() => makeCharacter(
  14081. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14082. {
  14083. side: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(170, "lb"),
  14086. name: "Side",
  14087. image: {
  14088. source: "./media/characters/finn/side.svg",
  14089. extra: 1953 / 1807,
  14090. bottom: 0.057
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Megamacro",
  14097. height: math.unit(14445, "feet"),
  14098. default: true
  14099. },
  14100. ]
  14101. ))
  14102. characterMakers.push(() => makeCharacter(
  14103. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14104. {
  14105. front: {
  14106. height: math.unit(5 + 6 / 12, "feet"),
  14107. weight: math.unit(125, "lb"),
  14108. name: "Front",
  14109. image: {
  14110. source: "./media/characters/roy/front.svg",
  14111. extra: 1,
  14112. bottom: 0.11
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Micro",
  14119. height: math.unit(3, "inches"),
  14120. default: true
  14121. },
  14122. {
  14123. name: "Normal",
  14124. height: math.unit(5 + 6 / 12, "feet")
  14125. },
  14126. {
  14127. name: "Lesser Macro",
  14128. height: math.unit(60, "feet")
  14129. },
  14130. {
  14131. name: "Greater Macro",
  14132. height: math.unit(120, "feet")
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(6, "feet"),
  14141. weight: math.unit(100, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/aevsivs/front.svg",
  14145. extra: 1,
  14146. bottom: 0.03
  14147. }
  14148. },
  14149. back: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(100, "lb"),
  14152. name: "Back",
  14153. image: {
  14154. source: "./media/characters/aevsivs/back.svg"
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(2, "inches"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(5, "feet")
  14167. },
  14168. ]
  14169. ))
  14170. characterMakers.push(() => makeCharacter(
  14171. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14172. {
  14173. front: {
  14174. height: math.unit(5 + 7 / 12, "feet"),
  14175. weight: math.unit(159, "lb"),
  14176. name: "Front",
  14177. image: {
  14178. source: "./media/characters/hildegard/front.svg",
  14179. extra: 289 / 269,
  14180. bottom: 7.63 / 297.8
  14181. }
  14182. },
  14183. back: {
  14184. height: math.unit(5 + 7 / 12, "feet"),
  14185. weight: math.unit(159, "lb"),
  14186. name: "Back",
  14187. image: {
  14188. source: "./media/characters/hildegard/back.svg",
  14189. extra: 280 / 260,
  14190. bottom: 2.3 / 282
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(5 + 7 / 12, "feet"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14204. {
  14205. bernard: {
  14206. height: math.unit(2 + 7 / 12, "feet"),
  14207. weight: math.unit(66, "lb"),
  14208. name: "Bernard",
  14209. rename: true,
  14210. image: {
  14211. source: "./media/characters/bernard-wilder/bernard.svg",
  14212. extra: 192 / 128,
  14213. bottom: 0.05
  14214. }
  14215. },
  14216. wilder: {
  14217. height: math.unit(5 + 8 / 12, "feet"),
  14218. weight: math.unit(143, "lb"),
  14219. name: "Wilder",
  14220. rename: true,
  14221. image: {
  14222. source: "./media/characters/bernard-wilder/wilder.svg",
  14223. extra: 361 / 312,
  14224. bottom: 0.02
  14225. }
  14226. },
  14227. },
  14228. [
  14229. {
  14230. name: "Normal",
  14231. height: math.unit(2 + 7 / 12, "feet"),
  14232. default: true
  14233. },
  14234. ]
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14238. {
  14239. anthro: {
  14240. height: math.unit(6 + 1 / 12, "feet"),
  14241. weight: math.unit(155, "lb"),
  14242. name: "Anthro",
  14243. image: {
  14244. source: "./media/characters/hearth/anthro.svg",
  14245. extra: 260 / 250,
  14246. bottom: 0.02
  14247. }
  14248. },
  14249. feral: {
  14250. height: math.unit(3.78, "feet"),
  14251. weight: math.unit(35, "kg"),
  14252. name: "Feral",
  14253. image: {
  14254. source: "./media/characters/hearth/feral.svg",
  14255. extra: 153 / 135,
  14256. bottom: 0.03
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(6 + 1 / 12, "feet"),
  14264. default: true
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(6, "feet"),
  14273. weight: math.unit(182, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/ingrid/front.svg",
  14277. extra: 294 / 268,
  14278. bottom: 0.027
  14279. }
  14280. },
  14281. },
  14282. [
  14283. {
  14284. name: "Normal",
  14285. height: math.unit(6, "feet"),
  14286. default: true
  14287. },
  14288. ]
  14289. ))
  14290. characterMakers.push(() => makeCharacter(
  14291. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14292. {
  14293. eevee: {
  14294. height: math.unit(2 + 10 / 12, "feet"),
  14295. weight: math.unit(86, "lb"),
  14296. name: "Malgam",
  14297. image: {
  14298. source: "./media/characters/malgam/eevee.svg",
  14299. extra: 218 / 180,
  14300. bottom: 0.2
  14301. }
  14302. },
  14303. sylveon: {
  14304. height: math.unit(4, "feet"),
  14305. weight: math.unit(101, "lb"),
  14306. name: "Future Malgam",
  14307. rename: true,
  14308. image: {
  14309. source: "./media/characters/malgam/sylveon.svg",
  14310. extra: 371 / 325,
  14311. bottom: 0.015
  14312. }
  14313. },
  14314. gigantamax: {
  14315. height: math.unit(50, "feet"),
  14316. name: "Gigantamax Malgam",
  14317. rename: true,
  14318. image: {
  14319. source: "./media/characters/malgam/gigantamax.svg"
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(2 + 10 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(5 + 11 / 12, "feet"),
  14336. weight: math.unit(188, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/fleur/front.svg",
  14340. extra: 309 / 283,
  14341. bottom: 0.007
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(5 + 11 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14355. {
  14356. front: {
  14357. height: math.unit(5 + 4 / 12, "feet"),
  14358. weight: math.unit(122, "lb"),
  14359. name: "Front",
  14360. image: {
  14361. source: "./media/characters/jude/front.svg",
  14362. extra: 288 / 273,
  14363. bottom: 0.03
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(5 + 4 / 12, "feet"),
  14371. default: true
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(5 + 11 / 12, "feet"),
  14380. weight: math.unit(190, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/seara/front.svg",
  14384. extra: 1,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5 + 11 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(16 + 5 / 12, "feet"),
  14402. weight: math.unit(524, "lb"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/caspian/front.svg",
  14406. extra: 1,
  14407. bottom: 0.04
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(16 + 5 / 12, "feet"),
  14415. default: true
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(5 + 7 / 12, "feet"),
  14424. weight: math.unit(170, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/mika/front.svg",
  14428. extra: 1,
  14429. bottom: 0.016
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5 + 7 / 12, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6 + 2 / 12, "feet"),
  14446. weight: math.unit(268, "lb"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/sol/front.svg",
  14450. extra: 247 / 231,
  14451. bottom: 0.05
  14452. }
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(6 + 2 / 12, "feet"),
  14459. default: true
  14460. },
  14461. ]
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14465. {
  14466. buizel: {
  14467. height: math.unit(2 + 5 / 12, "feet"),
  14468. weight: math.unit(87, "lb"),
  14469. name: "Buizel",
  14470. image: {
  14471. source: "./media/characters/umiko/buizel.svg",
  14472. extra: 172 / 157,
  14473. bottom: 0.01
  14474. }
  14475. },
  14476. floatzel: {
  14477. height: math.unit(5 + 9 / 12, "feet"),
  14478. weight: math.unit(250, "lb"),
  14479. name: "Floatzel",
  14480. image: {
  14481. source: "./media/characters/umiko/floatzel.svg",
  14482. extra: 262 / 248
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(2 + 5 / 12, "feet"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14496. {
  14497. front: {
  14498. height: math.unit(6 + 2 / 12, "feet"),
  14499. weight: math.unit(146, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/iliac/front.svg",
  14503. extra: 389 / 365,
  14504. bottom: 0.035
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(6 + 2 / 12, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(170, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/topaz/front.svg",
  14525. extra: 317 / 303,
  14526. bottom: 0.055
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(6, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(5 + 11 / 12, "feet"),
  14543. weight: math.unit(144, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/gabriel/front.svg",
  14547. extra: 285 / 262,
  14548. bottom: 0.004
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(5 + 11 / 12, "feet"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14562. {
  14563. side: {
  14564. height: math.unit(6 + 5 / 12, "feet"),
  14565. weight: math.unit(300, "lb"),
  14566. name: "Side",
  14567. image: {
  14568. source: "./media/characters/tempest-suicune/side.svg",
  14569. extra: 195 / 154,
  14570. bottom: 0.04
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(6 + 5 / 12, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14584. {
  14585. front: {
  14586. height: math.unit(7 + 2 / 12, "feet"),
  14587. weight: math.unit(322, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/vulcan/front.svg",
  14591. extra: 154 / 147,
  14592. bottom: 0.04
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(7 + 2 / 12, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(5 + 10 / 12, "feet"),
  14609. weight: math.unit(264, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/gault/front.svg",
  14613. extra: 161 / 140,
  14614. bottom: 0.028
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(5 + 10 / 12, "feet"),
  14622. default: true
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(6, "feet"),
  14631. weight: math.unit(150, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/shard/front.svg",
  14635. extra: 273 / 238,
  14636. bottom: 0.02
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(3 + 6 / 12, "feet"),
  14644. default: true
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(5 + 11 / 12, "feet"),
  14653. weight: math.unit(146, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/ashe/front.svg",
  14657. extra: 400 / 373,
  14658. bottom: 0.01
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(5 + 11 / 12, "feet"),
  14666. default: true
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(5 + 5 / 12, "feet"),
  14675. weight: math.unit(135, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/beatrix/front.svg",
  14679. extra: 392 / 379,
  14680. bottom: 0.01
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(6, "feet"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(6, "feet"),
  14697. weight: math.unit(150, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/ignatius/front.svg",
  14701. extra: 245 / 222,
  14702. bottom: 0.01
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(5 + 5 / 12, "feet"),
  14710. default: true
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(6 + 2 / 12, "feet"),
  14719. weight: math.unit(138, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/mei-li/front.svg",
  14723. extra: 237 / 229,
  14724. bottom: 0.03
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(6 + 2 / 12, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(2 + 4 / 12, "feet"),
  14741. weight: math.unit(62, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/puru/front.svg",
  14745. extra: 206 / 149,
  14746. bottom: 0.06
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(2 + 4 / 12, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14760. {
  14761. taur: {
  14762. height: math.unit(11, "feet"),
  14763. weight: math.unit(500, "lb"),
  14764. name: "Taur",
  14765. image: {
  14766. source: "./media/characters/kee/taur.svg",
  14767. extra: 1,
  14768. bottom: 0.04
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(11, "feet"),
  14776. default: true
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14782. {
  14783. anthro: {
  14784. height: math.unit(7, "feet"),
  14785. weight: math.unit(190, "lb"),
  14786. name: "Anthro",
  14787. image: {
  14788. source: "./media/characters/cobalt-dracha/anthro.svg",
  14789. extra: 231 / 225,
  14790. bottom: 0.04
  14791. }
  14792. },
  14793. feral: {
  14794. height: math.unit(9 + 7 / 12, "feet"),
  14795. weight: math.unit(294, "lb"),
  14796. name: "Feral",
  14797. image: {
  14798. source: "./media/characters/cobalt-dracha/feral.svg",
  14799. extra: 692 / 633,
  14800. bottom: 0.05
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(7, "feet"),
  14808. default: true
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14814. {
  14815. fallen: {
  14816. height: math.unit(11 + 8 / 12, "feet"),
  14817. weight: math.unit(485, "lb"),
  14818. name: "Java (Fallen)",
  14819. rename: true,
  14820. image: {
  14821. source: "./media/characters/java/fallen.svg",
  14822. extra: 226 / 208,
  14823. bottom: 0.005
  14824. }
  14825. },
  14826. godkin: {
  14827. height: math.unit(10 + 6 / 12, "feet"),
  14828. weight: math.unit(328, "lb"),
  14829. name: "Java (Godkin)",
  14830. rename: true,
  14831. image: {
  14832. source: "./media/characters/java/godkin.svg",
  14833. extra: 270 / 262,
  14834. bottom: 0.02
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(11 + 8 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(7 + 8 / 12, "feet"),
  14851. weight: math.unit(320, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/skoll/front.svg",
  14855. extra: 232 / 220,
  14856. bottom: 0.02
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(7 + 8 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(5 + 9 / 12, "feet"),
  14873. weight: math.unit(170, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/purna/front.svg",
  14877. extra: 239 / 229,
  14878. bottom: 0.01
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(5 + 9 / 12, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(5 + 9 / 12, "feet"),
  14895. weight: math.unit(142, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/kuva/front.svg",
  14899. extra: 281 / 271,
  14900. bottom: 0.006
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(5 + 9 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14914. {
  14915. anthro: {
  14916. height: math.unit(9 + 2 / 12, "feet"),
  14917. weight: math.unit(270, "lb"),
  14918. name: "Anthro",
  14919. image: {
  14920. source: "./media/characters/embra/anthro.svg",
  14921. extra: 200 / 187,
  14922. bottom: 0.02
  14923. }
  14924. },
  14925. feral: {
  14926. height: math.unit(18 + 8 / 12, "feet"),
  14927. weight: math.unit(576, "lb"),
  14928. name: "Feral",
  14929. image: {
  14930. source: "./media/characters/embra/feral.svg",
  14931. extra: 152 / 137,
  14932. bottom: 0.037
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(9 + 2 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14946. {
  14947. anthro: {
  14948. height: math.unit(10 + 9 / 12, "feet"),
  14949. weight: math.unit(224, "lb"),
  14950. name: "Anthro",
  14951. image: {
  14952. source: "./media/characters/grottos/anthro.svg",
  14953. extra: 350 / 332,
  14954. bottom: 0.045
  14955. }
  14956. },
  14957. feral: {
  14958. height: math.unit(20 + 7 / 12, "feet"),
  14959. weight: math.unit(629, "lb"),
  14960. name: "Feral",
  14961. image: {
  14962. source: "./media/characters/grottos/feral.svg",
  14963. extra: 207 / 190,
  14964. bottom: 0.05
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(10 + 9 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14978. {
  14979. anthro: {
  14980. height: math.unit(9 + 6 / 12, "feet"),
  14981. weight: math.unit(298, "lb"),
  14982. name: "Anthro",
  14983. image: {
  14984. source: "./media/characters/frifna/anthro.svg",
  14985. extra: 282 / 269,
  14986. bottom: 0.015
  14987. }
  14988. },
  14989. feral: {
  14990. height: math.unit(16 + 2 / 12, "feet"),
  14991. weight: math.unit(624, "lb"),
  14992. name: "Feral",
  14993. image: {
  14994. source: "./media/characters/frifna/feral.svg"
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(9 + 6 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6 + 2 / 12, "feet"),
  15011. weight: math.unit(168, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/elise/front.svg",
  15015. extra: 276 / 271
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Normal",
  15022. height: math.unit(6 + 2 / 12, "feet"),
  15023. default: true
  15024. },
  15025. ]
  15026. ))
  15027. characterMakers.push(() => makeCharacter(
  15028. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15029. {
  15030. front: {
  15031. height: math.unit(5 + 10 / 12, "feet"),
  15032. weight: math.unit(210, "lb"),
  15033. name: "Front",
  15034. image: {
  15035. source: "./media/characters/glade/front.svg",
  15036. extra: 258 / 247,
  15037. bottom: 0.008
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5 + 10 / 12, "feet"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(5 + 10 / 12, "feet"),
  15054. weight: math.unit(129, "lb"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/rina/front.svg",
  15058. extra: 266 / 255,
  15059. bottom: 0.005
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Normal",
  15066. height: math.unit(5 + 10 / 12, "feet"),
  15067. default: true
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6 + 1 / 12, "feet"),
  15076. weight: math.unit(192, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/veronica/front.svg",
  15080. extra: 319 / 309,
  15081. bottom: 0.005
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Normal",
  15088. height: math.unit(6 + 1 / 12, "feet"),
  15089. default: true
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(9 + 3 / 12, "feet"),
  15098. weight: math.unit(1100, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/braxton/front.svg",
  15102. extra: 1057 / 984,
  15103. bottom: 0.05
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(9 + 3 / 12, "feet")
  15111. },
  15112. {
  15113. name: "Giant",
  15114. height: math.unit(300, "feet"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(700, "feet")
  15120. },
  15121. {
  15122. name: "Megamacro",
  15123. height: math.unit(6000, "feet")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6 + 7 / 12, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/blue-feyonics/front.svg",
  15136. extra: 1403 / 1306,
  15137. bottom: 0.047
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(6 + 7 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(1.8, "meters"),
  15154. weight: math.unit(60, "kg"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/maxwell/front.svg",
  15158. extra: 2060 / 1873
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Micro",
  15165. height: math.unit(1, "mm")
  15166. },
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(1.8, "meter"),
  15170. default: true
  15171. },
  15172. {
  15173. name: "Macro",
  15174. height: math.unit(30, "meters")
  15175. },
  15176. {
  15177. name: "Megamacro",
  15178. height: math.unit(10, "km")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15184. {
  15185. front: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Front",
  15189. image: {
  15190. source: "./media/characters/jack/front.svg",
  15191. extra: 1754 / 1640,
  15192. bottom: 0.01
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Normal",
  15199. height: math.unit(80000, "feet"),
  15200. default: true
  15201. },
  15202. {
  15203. name: "Max size",
  15204. height: math.unit(10, "lightyears")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15210. {
  15211. upright: {
  15212. height: math.unit(7, "feet"),
  15213. weight: math.unit(170, "lb"),
  15214. name: "Upright",
  15215. image: {
  15216. source: "./media/characters/cafat/upright.svg",
  15217. bottom: 0.01
  15218. }
  15219. },
  15220. uprightFull: {
  15221. height: math.unit(7, "feet"),
  15222. weight: math.unit(170, "lb"),
  15223. name: "Upright (Full)",
  15224. image: {
  15225. source: "./media/characters/cafat/upright-full.svg",
  15226. bottom: 0.01
  15227. }
  15228. },
  15229. side: {
  15230. height: math.unit(5, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Side",
  15233. image: {
  15234. source: "./media/characters/cafat/side.svg"
  15235. }
  15236. },
  15237. },
  15238. [
  15239. {
  15240. name: "Small",
  15241. height: math.unit(7, "feet"),
  15242. default: true
  15243. },
  15244. {
  15245. name: "Large",
  15246. height: math.unit(15.5, "feet")
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(150, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/verin-raharra/front.svg",
  15259. extra: 5019 / 4835,
  15260. bottom: 0.023
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Normal",
  15267. height: math.unit(7 + 5 / 12, "feet"),
  15268. default: true
  15269. },
  15270. {
  15271. name: "Upsized",
  15272. height: math.unit(20, "feet")
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(7, "feet"),
  15281. weight: math.unit(230, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/nakata/front.svg",
  15285. extra: 1.005,
  15286. bottom: 0.01
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(7, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Big",
  15298. height: math.unit(14, "feet")
  15299. },
  15300. {
  15301. name: "Macro",
  15302. height: math.unit(400, "feet")
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(4.91, "feet"),
  15311. weight: math.unit(100, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/lily/front.svg",
  15315. extra: 1585 / 1415,
  15316. bottom: 0.02
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(4.91, "feet"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15330. {
  15331. laying: {
  15332. height: math.unit(4 + 4 / 12, "feet"),
  15333. weight: math.unit(600, "lb"),
  15334. name: "Laying",
  15335. image: {
  15336. source: "./media/characters/sheila/laying.svg",
  15337. extra: 1333 / 1265,
  15338. bottom: 0.16
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(4 + 4 / 12, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15352. {
  15353. front: {
  15354. height: math.unit(6, "feet"),
  15355. weight: math.unit(190, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/sax/front.svg",
  15359. extra: 1187 / 973,
  15360. bottom: 0.042
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Micro",
  15367. height: math.unit(4, "inches"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/pandora/front.svg",
  15381. extra: 2720 / 2556,
  15382. bottom: 0.015
  15383. }
  15384. },
  15385. back: {
  15386. height: math.unit(6, "feet"),
  15387. weight: math.unit(150, "lb"),
  15388. name: "Back",
  15389. image: {
  15390. source: "./media/characters/pandora/back.svg",
  15391. extra: 2720 / 2556,
  15392. bottom: 0.01
  15393. }
  15394. },
  15395. beans: {
  15396. height: math.unit(6 / 8, "feet"),
  15397. name: "Beans",
  15398. image: {
  15399. source: "./media/characters/pandora/beans.svg"
  15400. }
  15401. },
  15402. skirt: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(150, "lb"),
  15405. name: "Skirt",
  15406. image: {
  15407. source: "./media/characters/pandora/skirt.svg",
  15408. extra: 1622 / 1525,
  15409. bottom: 0.015
  15410. }
  15411. },
  15412. hoodie: {
  15413. height: math.unit(6, "feet"),
  15414. weight: math.unit(150, "lb"),
  15415. name: "Hoodie",
  15416. image: {
  15417. source: "./media/characters/pandora/hoodie.svg",
  15418. extra: 1622 / 1525,
  15419. bottom: 0.015
  15420. }
  15421. },
  15422. casual: {
  15423. height: math.unit(6, "feet"),
  15424. weight: math.unit(150, "lb"),
  15425. name: "Casual",
  15426. image: {
  15427. source: "./media/characters/pandora/casual.svg",
  15428. extra: 1622 / 1525,
  15429. bottom: 0.015
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(6, "feet")
  15437. },
  15438. {
  15439. name: "Big Steppy",
  15440. height: math.unit(1, "km"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15447. {
  15448. side: {
  15449. height: math.unit(10, "feet"),
  15450. weight: math.unit(800, "kg"),
  15451. name: "Side",
  15452. image: {
  15453. source: "./media/characters/venio-darcony/side.svg",
  15454. extra: 1373 / 1003,
  15455. bottom: 0.037
  15456. }
  15457. },
  15458. front: {
  15459. height: math.unit(19, "feet"),
  15460. weight: math.unit(800, "kg"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/venio-darcony/front.svg"
  15464. }
  15465. },
  15466. back: {
  15467. height: math.unit(19, "feet"),
  15468. weight: math.unit(800, "kg"),
  15469. name: "Back",
  15470. image: {
  15471. source: "./media/characters/venio-darcony/back.svg"
  15472. }
  15473. },
  15474. sideNsfw: {
  15475. height: math.unit(10, "feet"),
  15476. weight: math.unit(800, "kg"),
  15477. name: "Side (NSFW)",
  15478. image: {
  15479. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15480. extra: 1373 / 1003,
  15481. bottom: 0.037
  15482. }
  15483. },
  15484. frontNsfw: {
  15485. height: math.unit(19, "feet"),
  15486. weight: math.unit(800, "kg"),
  15487. name: "Front (NSFW)",
  15488. image: {
  15489. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15490. }
  15491. },
  15492. backNsfw: {
  15493. height: math.unit(19, "feet"),
  15494. weight: math.unit(800, "kg"),
  15495. name: "Back (NSFW)",
  15496. image: {
  15497. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15498. }
  15499. },
  15500. sideArmored: {
  15501. height: math.unit(10, "feet"),
  15502. weight: math.unit(800, "kg"),
  15503. name: "Side (Armored)",
  15504. image: {
  15505. source: "./media/characters/venio-darcony/side-armored.svg",
  15506. extra: 1373 / 1003,
  15507. bottom: 0.037
  15508. }
  15509. },
  15510. frontArmored: {
  15511. height: math.unit(19, "feet"),
  15512. weight: math.unit(900, "kg"),
  15513. name: "Front (Armored)",
  15514. image: {
  15515. source: "./media/characters/venio-darcony/front-armored.svg"
  15516. }
  15517. },
  15518. backArmored: {
  15519. height: math.unit(19, "feet"),
  15520. weight: math.unit(900, "kg"),
  15521. name: "Back (Armored)",
  15522. image: {
  15523. source: "./media/characters/venio-darcony/back-armored.svg"
  15524. }
  15525. },
  15526. sword: {
  15527. height: math.unit(10, "feet"),
  15528. weight: math.unit(50, "lb"),
  15529. name: "Sword",
  15530. image: {
  15531. source: "./media/characters/venio-darcony/sword.svg"
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(10, "feet")
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(130, "feet"),
  15543. default: true
  15544. },
  15545. {
  15546. name: "Macro+",
  15547. height: math.unit(240, "feet")
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(6, "feet"),
  15556. weight: math.unit(150, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/veski/front.svg",
  15560. extra: 1299 / 1225,
  15561. bottom: 0.04
  15562. }
  15563. },
  15564. back: {
  15565. height: math.unit(6, "feet"),
  15566. weight: math.unit(150, "lb"),
  15567. name: "Back",
  15568. image: {
  15569. source: "./media/characters/veski/back.svg",
  15570. extra: 1299 / 1225,
  15571. bottom: 0.008
  15572. }
  15573. },
  15574. maw: {
  15575. height: math.unit(1.5 * 1.21, "feet"),
  15576. name: "Maw",
  15577. image: {
  15578. source: "./media/characters/veski/maw.svg"
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(2, "km"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(5 + 7 / 12, "feet"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/isabelle/front.svg",
  15598. extra: 2130 / 1976,
  15599. bottom: 0.05
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Supermicro",
  15606. height: math.unit(10, "micrometers")
  15607. },
  15608. {
  15609. name: "Micro",
  15610. height: math.unit(1, "inch")
  15611. },
  15612. {
  15613. name: "Tiny",
  15614. height: math.unit(5, "inches")
  15615. },
  15616. {
  15617. name: "Standard",
  15618. height: math.unit(5 + 7 / 12, "inches")
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(80, "meters"),
  15623. default: true
  15624. },
  15625. {
  15626. name: "Megamacro",
  15627. height: math.unit(250, "meters")
  15628. },
  15629. {
  15630. name: "Gigamacro",
  15631. height: math.unit(5, "km")
  15632. },
  15633. {
  15634. name: "Cosmic",
  15635. height: math.unit(2.5e6, "miles")
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15641. {
  15642. front: {
  15643. height: math.unit(6, "feet"),
  15644. weight: math.unit(150, "lb"),
  15645. name: "Front",
  15646. image: {
  15647. source: "./media/characters/hanzo/front.svg",
  15648. extra: 374 / 344,
  15649. bottom: 0.02
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(8, "feet"),
  15657. default: true
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(7, "feet"),
  15666. weight: math.unit(130, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/anna/front.svg",
  15670. extra: 169 / 145,
  15671. bottom: 0.06
  15672. }
  15673. },
  15674. full: {
  15675. height: math.unit(4.96, "feet"),
  15676. weight: math.unit(220, "lb"),
  15677. name: "Full",
  15678. image: {
  15679. source: "./media/characters/anna/full.svg",
  15680. extra: 138 / 114,
  15681. bottom: 0.15
  15682. }
  15683. },
  15684. tongue: {
  15685. height: math.unit(2.53, "feet"),
  15686. name: "Tongue",
  15687. image: {
  15688. source: "./media/characters/anna/tongue.svg"
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Normal",
  15695. height: math.unit(7, "feet"),
  15696. default: true
  15697. },
  15698. ]
  15699. ))
  15700. characterMakers.push(() => makeCharacter(
  15701. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15702. {
  15703. front: {
  15704. height: math.unit(7, "feet"),
  15705. weight: math.unit(150, "lb"),
  15706. name: "Front",
  15707. image: {
  15708. source: "./media/characters/ian-corvid/front.svg",
  15709. extra: 150 / 142,
  15710. bottom: 0.02
  15711. }
  15712. },
  15713. back: {
  15714. height: math.unit(7, "feet"),
  15715. weight: math.unit(150, "lb"),
  15716. name: "Back",
  15717. image: {
  15718. source: "./media/characters/ian-corvid/back.svg",
  15719. extra: 150 / 143,
  15720. bottom: 0.01
  15721. }
  15722. },
  15723. stomping: {
  15724. height: math.unit(7, "feet"),
  15725. weight: math.unit(150, "lb"),
  15726. name: "Stomping",
  15727. image: {
  15728. source: "./media/characters/ian-corvid/stomping.svg",
  15729. extra: 76 / 72
  15730. }
  15731. },
  15732. sitting: {
  15733. height: math.unit(7 / 1.8, "feet"),
  15734. weight: math.unit(150, "lb"),
  15735. name: "Sitting",
  15736. image: {
  15737. source: "./media/characters/ian-corvid/sitting.svg",
  15738. extra: 1400 / 1269,
  15739. bottom: 0.15
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Tiny Microw",
  15746. height: math.unit(1, "inch")
  15747. },
  15748. {
  15749. name: "Microw",
  15750. height: math.unit(6, "inches")
  15751. },
  15752. {
  15753. name: "Crow",
  15754. height: math.unit(7 + 1 / 12, "feet"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "Macrow",
  15759. height: math.unit(176, "feet")
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(5 + 7 / 12, "feet"),
  15768. weight: math.unit(147, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/natalie-kellon/front.svg",
  15772. extra: 1214 / 1141,
  15773. bottom: 0.02
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Micro",
  15780. height: math.unit(1 / 16, "inch")
  15781. },
  15782. {
  15783. name: "Tiny",
  15784. height: math.unit(4, "inches")
  15785. },
  15786. {
  15787. name: "Normal",
  15788. height: math.unit(5 + 7 / 12, "feet"),
  15789. default: true
  15790. },
  15791. {
  15792. name: "Amazon",
  15793. height: math.unit(12, "feet")
  15794. },
  15795. {
  15796. name: "Giantess",
  15797. height: math.unit(160, "meters")
  15798. },
  15799. {
  15800. name: "Titaness",
  15801. height: math.unit(800, "meters")
  15802. },
  15803. ]
  15804. ))
  15805. characterMakers.push(() => makeCharacter(
  15806. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15807. {
  15808. front: {
  15809. height: math.unit(6, "feet"),
  15810. weight: math.unit(150, "lb"),
  15811. name: "Front",
  15812. image: {
  15813. source: "./media/characters/alluria/front.svg",
  15814. extra: 806 / 738,
  15815. bottom: 0.01
  15816. }
  15817. },
  15818. side: {
  15819. height: math.unit(6, "feet"),
  15820. weight: math.unit(150, "lb"),
  15821. name: "Side",
  15822. image: {
  15823. source: "./media/characters/alluria/side.svg",
  15824. extra: 800 / 750,
  15825. }
  15826. },
  15827. back: {
  15828. height: math.unit(6, "feet"),
  15829. weight: math.unit(150, "lb"),
  15830. name: "Back",
  15831. image: {
  15832. source: "./media/characters/alluria/back.svg",
  15833. extra: 806 / 738,
  15834. }
  15835. },
  15836. frontMaid: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Front (Maid)",
  15840. image: {
  15841. source: "./media/characters/alluria/front-maid.svg",
  15842. extra: 806 / 738,
  15843. bottom: 0.01
  15844. }
  15845. },
  15846. sideMaid: {
  15847. height: math.unit(6, "feet"),
  15848. weight: math.unit(150, "lb"),
  15849. name: "Side (Maid)",
  15850. image: {
  15851. source: "./media/characters/alluria/side-maid.svg",
  15852. extra: 800 / 750,
  15853. bottom: 0.005
  15854. }
  15855. },
  15856. backMaid: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(150, "lb"),
  15859. name: "Back (Maid)",
  15860. image: {
  15861. source: "./media/characters/alluria/back-maid.svg",
  15862. extra: 806 / 738,
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Micro",
  15869. height: math.unit(6, "inches"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(6, "feet"),
  15879. weight: math.unit(150, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/kyle/front.svg",
  15883. extra: 1069 / 962,
  15884. bottom: 77.228 / 1727.45
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Macro",
  15891. height: math.unit(150, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(6, "feet"),
  15901. weight: math.unit(300, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/duncan/front.svg",
  15905. extra: 1650 / 1482,
  15906. bottom: 0.05
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Macro",
  15913. height: math.unit(100, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(5 + 4 / 12, "feet"),
  15923. weight: math.unit(220, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/memory/front.svg",
  15927. extra: 3641 / 3545,
  15928. bottom: 0.03
  15929. }
  15930. },
  15931. back: {
  15932. height: math.unit(5 + 4 / 12, "feet"),
  15933. weight: math.unit(220, "lb"),
  15934. name: "Back",
  15935. image: {
  15936. source: "./media/characters/memory/back.svg",
  15937. extra: 3641 / 3545,
  15938. bottom: 0.025
  15939. }
  15940. },
  15941. frontSkirt: {
  15942. height: math.unit(5 + 4 / 12, "feet"),
  15943. weight: math.unit(220, "lb"),
  15944. name: "Front (Skirt)",
  15945. image: {
  15946. source: "./media/characters/memory/front-skirt.svg",
  15947. extra: 3641 / 3545,
  15948. bottom: 0.03
  15949. }
  15950. },
  15951. frontDress: {
  15952. height: math.unit(5 + 4 / 12, "feet"),
  15953. weight: math.unit(220, "lb"),
  15954. name: "Front (Dress)",
  15955. image: {
  15956. source: "./media/characters/memory/front-dress.svg",
  15957. extra: 3641 / 3545,
  15958. bottom: 0.03
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Micro",
  15965. height: math.unit(6, "inches"),
  15966. default: true
  15967. },
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(5 + 4 / 12, "feet")
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(4 + 11 / 12, "feet"),
  15979. weight: math.unit(100, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/luno/front.svg",
  15983. extra: 1535 / 1487,
  15984. bottom: 0.03
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Micro",
  15991. height: math.unit(3, "inches")
  15992. },
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(4 + 11 / 12, "feet"),
  15996. default: true
  15997. },
  15998. {
  15999. name: "Macro",
  16000. height: math.unit(300, "feet")
  16001. },
  16002. {
  16003. name: "Megamacro",
  16004. height: math.unit(700, "miles")
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16010. {
  16011. front: {
  16012. height: math.unit(6 + 2 / 12, "feet"),
  16013. weight: math.unit(170, "lb"),
  16014. name: "Front",
  16015. image: {
  16016. source: "./media/characters/jamesy/front.svg",
  16017. extra: 440 / 382,
  16018. bottom: 0.005
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Micro",
  16025. height: math.unit(3, "inches")
  16026. },
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(6 + 2 / 12, "feet"),
  16030. default: true
  16031. },
  16032. {
  16033. name: "Macro",
  16034. height: math.unit(300, "feet")
  16035. },
  16036. {
  16037. name: "Megamacro",
  16038. height: math.unit(700, "miles")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(160, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/mark/front.svg",
  16051. extra: 3300 / 3100,
  16052. bottom: 136.42 / 3440.47
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Macro",
  16059. height: math.unit(120, "meters")
  16060. },
  16061. {
  16062. name: "Bigger Macro",
  16063. height: math.unit(350, "meters")
  16064. },
  16065. {
  16066. name: "Megamacro",
  16067. height: math.unit(8, "km"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Continental",
  16072. height: math.unit(4550, "km")
  16073. },
  16074. {
  16075. name: "Planetary",
  16076. height: math.unit(65000, "km")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(400, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/mac/front.svg",
  16089. extra: 1048 / 987.7,
  16090. bottom: 60 / 1107.6,
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Macro",
  16097. height: math.unit(500, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(5 + 2 / 12, "feet"),
  16107. weight: math.unit(190, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/bari/front.svg",
  16111. extra: 3156 / 2880,
  16112. bottom: 0.03
  16113. }
  16114. },
  16115. back: {
  16116. height: math.unit(5 + 2 / 12, "feet"),
  16117. weight: math.unit(190, "lb"),
  16118. name: "Back",
  16119. image: {
  16120. source: "./media/characters/bari/back.svg",
  16121. extra: 3260 / 2834,
  16122. bottom: 0.025
  16123. }
  16124. },
  16125. frontPlush: {
  16126. height: math.unit(5 + 2 / 12, "feet"),
  16127. weight: math.unit(190, "lb"),
  16128. name: "Front (Plush)",
  16129. image: {
  16130. source: "./media/characters/bari/front-plush.svg",
  16131. extra: 1112 / 1061,
  16132. bottom: 0.002
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Micro",
  16139. height: math.unit(3, "inches")
  16140. },
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(5 + 2 / 12, "feet"),
  16144. default: true
  16145. },
  16146. {
  16147. name: "Macro",
  16148. height: math.unit(20, "feet")
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(6 + 1 / 12, "feet"),
  16157. weight: math.unit(275, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/hunter-misha-raven/front.svg"
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Mortal",
  16167. height: math.unit(6 + 1 / 12, "feet")
  16168. },
  16169. {
  16170. name: "Divine",
  16171. height: math.unit(1.12134e34, "parsecs"),
  16172. default: true
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6 + 3 / 12, "feet"),
  16181. weight: math.unit(220, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/max-calore/front.svg",
  16185. extra: 1700 / 1648,
  16186. bottom: 0.01
  16187. }
  16188. },
  16189. back: {
  16190. height: math.unit(6 + 3 / 12, "feet"),
  16191. weight: math.unit(220, "lb"),
  16192. name: "Back",
  16193. image: {
  16194. source: "./media/characters/max-calore/back.svg",
  16195. extra: 1700 / 1648,
  16196. bottom: 0.01
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(6 + 3 / 12, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16210. {
  16211. side: {
  16212. height: math.unit(2 + 8 / 12, "feet"),
  16213. weight: math.unit(99, "lb"),
  16214. name: "Side",
  16215. image: {
  16216. source: "./media/characters/aspen/side.svg",
  16217. extra: 152 / 138,
  16218. bottom: 0.032
  16219. }
  16220. },
  16221. },
  16222. [
  16223. {
  16224. name: "Normal",
  16225. height: math.unit(2 + 8 / 12, "feet"),
  16226. default: true
  16227. },
  16228. ]
  16229. ))
  16230. characterMakers.push(() => makeCharacter(
  16231. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16232. {
  16233. side: {
  16234. height: math.unit(3 + 2 / 12, "feet"),
  16235. weight: math.unit(224, "lb"),
  16236. name: "Side",
  16237. image: {
  16238. source: "./media/characters/sheila-feral-wolf/side.svg",
  16239. extra: 179 / 166,
  16240. bottom: 0.03
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(3 + 2 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16254. {
  16255. side: {
  16256. height: math.unit(1 + 9 / 12, "feet"),
  16257. weight: math.unit(38, "lb"),
  16258. name: "Side",
  16259. image: {
  16260. source: "./media/characters/michelle/side.svg",
  16261. extra: 147 / 136.7,
  16262. bottom: 0.03
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(1 + 9 / 12, "feet"),
  16270. default: true
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(1 + 1 / 12, "feet"),
  16279. weight: math.unit(18, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/nino/front.svg"
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(1 + 1 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(1, "feet"),
  16299. weight: math.unit(16, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/viola/front.svg"
  16303. }
  16304. },
  16305. },
  16306. [
  16307. {
  16308. name: "Normal",
  16309. height: math.unit(1, "feet"),
  16310. default: true
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16316. {
  16317. front: {
  16318. height: math.unit(6 + 5 / 12, "feet"),
  16319. weight: math.unit(580, "lb"),
  16320. name: "Front",
  16321. image: {
  16322. source: "./media/characters/atlas/front.svg",
  16323. extra: 298.5 / 290,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(6 + 5 / 12, "feet"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16338. {
  16339. side: {
  16340. height: math.unit(1 + 10 / 12, "feet"),
  16341. weight: math.unit(25, "lb"),
  16342. name: "Side",
  16343. image: {
  16344. source: "./media/characters/davy/side.svg",
  16345. extra: 200 / 170,
  16346. bottom: 0.01
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(1 + 10 / 12, "feet"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16360. {
  16361. side: {
  16362. height: math.unit(4 + 8 / 12, "feet"),
  16363. weight: math.unit(166, "lb"),
  16364. name: "Side",
  16365. image: {
  16366. source: "./media/characters/fiona/side.svg",
  16367. extra: 232 / 220,
  16368. bottom: 0.03
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(4 + 8 / 12, "feet"),
  16376. default: true
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16382. {
  16383. front: {
  16384. height: math.unit(2, "feet"),
  16385. weight: math.unit(62, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/lyla/front.svg",
  16389. bottom: 0.1
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(2, "feet"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16403. {
  16404. side: {
  16405. height: math.unit(1.8, "feet"),
  16406. weight: math.unit(44, "lb"),
  16407. name: "Side",
  16408. image: {
  16409. source: "./media/characters/perseus/side.svg",
  16410. bottom: 0.21
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(1.8, "feet"),
  16418. default: true
  16419. },
  16420. ]
  16421. ))
  16422. characterMakers.push(() => makeCharacter(
  16423. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16424. {
  16425. side: {
  16426. height: math.unit(4 + 2 / 12, "feet"),
  16427. weight: math.unit(20, "lb"),
  16428. name: "Side",
  16429. image: {
  16430. source: "./media/characters/remus/side.svg"
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(4 + 2 / 12, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(4 + 11 / 12, "feet"),
  16447. weight: math.unit(114, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/raf/front.svg",
  16451. bottom: 20.5 / 1863
  16452. }
  16453. },
  16454. side: {
  16455. height: math.unit(4 + 11 / 12, "feet"),
  16456. weight: math.unit(114, "lb"),
  16457. name: "Side",
  16458. image: {
  16459. source: "./media/characters/raf/side.svg",
  16460. bottom: 22 / 1822
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Micro",
  16467. height: math.unit(2, "inches")
  16468. },
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(4 + 11 / 12, "feet"),
  16472. default: true
  16473. },
  16474. {
  16475. name: "Macro",
  16476. height: math.unit(70, "feet")
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(1.5, "meters"),
  16485. weight: math.unit(68, "kg"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/liam-einarr/front.svg",
  16489. extra: 2822 / 2666
  16490. }
  16491. },
  16492. back: {
  16493. height: math.unit(1.5, "meters"),
  16494. weight: math.unit(68, "kg"),
  16495. name: "Back",
  16496. image: {
  16497. source: "./media/characters/liam-einarr/back.svg",
  16498. extra: 2822 / 2666,
  16499. bottom: 0.015
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(1.5, "meters"),
  16507. default: true
  16508. },
  16509. {
  16510. name: "Macro",
  16511. height: math.unit(150, "meters")
  16512. },
  16513. {
  16514. name: "Megamacro",
  16515. height: math.unit(35, "km")
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16521. {
  16522. front: {
  16523. height: math.unit(6, "feet"),
  16524. weight: math.unit(75, "kg"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/linda/front.svg",
  16528. extra: 930 / 874,
  16529. bottom: 0.004
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(6, "feet"),
  16537. default: true
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(6 + 8 / 12, "feet"),
  16546. weight: math.unit(220, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/caylex/front.svg",
  16550. extra: 821 / 772,
  16551. bottom: 0.07
  16552. }
  16553. },
  16554. back: {
  16555. height: math.unit(6 + 8 / 12, "feet"),
  16556. weight: math.unit(220, "lb"),
  16557. name: "Back",
  16558. image: {
  16559. source: "./media/characters/caylex/back.svg",
  16560. extra: 821 / 772,
  16561. bottom: 0.022
  16562. }
  16563. },
  16564. hand: {
  16565. height: math.unit(1.25, "feet"),
  16566. name: "Hand",
  16567. image: {
  16568. source: "./media/characters/caylex/hand.svg"
  16569. }
  16570. },
  16571. foot: {
  16572. height: math.unit(1.6, "feet"),
  16573. name: "Foot",
  16574. image: {
  16575. source: "./media/characters/caylex/foot.svg"
  16576. }
  16577. },
  16578. armored: {
  16579. height: math.unit(6 + 8 / 12, "feet"),
  16580. weight: math.unit(250, "lb"),
  16581. name: "Armored",
  16582. image: {
  16583. source: "./media/characters/caylex/armored.svg",
  16584. extra: 1420 / 1310,
  16585. bottom: 0.045
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(6 + 8 / 12, "feet"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Normal+",
  16597. height: math.unit(12, "feet")
  16598. },
  16599. ]
  16600. ))
  16601. characterMakers.push(() => makeCharacter(
  16602. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16603. {
  16604. front: {
  16605. height: math.unit(7 + 6 / 12, "feet"),
  16606. weight: math.unit(288, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/alana/front.svg",
  16610. extra: 679 / 653,
  16611. bottom: 22.5 / 701
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(7 + 6 / 12, "feet")
  16619. },
  16620. {
  16621. name: "Large",
  16622. height: math.unit(50, "feet")
  16623. },
  16624. {
  16625. name: "Macro",
  16626. height: math.unit(100, "feet"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Macro+",
  16631. height: math.unit(200, "feet")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(6 + 1 / 12, "feet"),
  16640. weight: math.unit(210, "lb"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/hasani/front.svg",
  16644. extra: 244 / 232,
  16645. bottom: 0.01
  16646. }
  16647. },
  16648. back: {
  16649. height: math.unit(6 + 1 / 12, "feet"),
  16650. weight: math.unit(210, "lb"),
  16651. name: "Back",
  16652. image: {
  16653. source: "./media/characters/hasani/back.svg",
  16654. extra: 244 / 232,
  16655. bottom: 0.01
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(6 + 1 / 12, "feet")
  16663. },
  16664. {
  16665. name: "Macro",
  16666. height: math.unit(175, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(1.82, "meters"),
  16676. weight: math.unit(140, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/nita/front.svg",
  16680. extra: 2473 / 2363,
  16681. bottom: 0.01
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1.82, "m")
  16689. },
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(300, "m")
  16693. },
  16694. {
  16695. name: "Mistake Canon",
  16696. height: math.unit(0.5, "miles"),
  16697. default: true
  16698. },
  16699. {
  16700. name: "Big Mistake",
  16701. height: math.unit(13, "miles")
  16702. },
  16703. {
  16704. name: "Playing God",
  16705. height: math.unit(2450, "miles")
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16711. {
  16712. front: {
  16713. height: math.unit(4, "feet"),
  16714. weight: math.unit(120, "lb"),
  16715. name: "Front",
  16716. image: {
  16717. source: "./media/characters/shiriko/front.svg",
  16718. extra: 195 / 188
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(4, "feet"),
  16726. default: true
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(6, "feet"),
  16735. name: "front",
  16736. image: {
  16737. source: "./media/characters/deja/front.svg",
  16738. extra: 926 / 840,
  16739. bottom: 0.07
  16740. }
  16741. },
  16742. },
  16743. [
  16744. {
  16745. name: "Planck Length",
  16746. height: math.unit(1.6e-35, "meters")
  16747. },
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(30.48, "meters"),
  16751. default: true
  16752. },
  16753. {
  16754. name: "Universal",
  16755. height: math.unit(8.8e26, "meters")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16761. {
  16762. side: {
  16763. height: math.unit(8, "feet"),
  16764. weight: math.unit(6300, "lb"),
  16765. name: "Side",
  16766. image: {
  16767. source: "./media/characters/anima/side.svg",
  16768. bottom: 0.035
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(8, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(8, "feet"),
  16785. weight: math.unit(350, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/bianca/front.svg",
  16789. extra: 234 / 225,
  16790. bottom: 0.03
  16791. }
  16792. },
  16793. },
  16794. [
  16795. {
  16796. name: "Normal",
  16797. height: math.unit(8, "feet"),
  16798. default: true
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16804. {
  16805. front: {
  16806. height: math.unit(6, "feet"),
  16807. weight: math.unit(150, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/adinia/front.svg",
  16811. extra: 1845 / 1672,
  16812. bottom: 0.02
  16813. }
  16814. },
  16815. back: {
  16816. height: math.unit(6, "feet"),
  16817. weight: math.unit(150, "lb"),
  16818. name: "Back",
  16819. image: {
  16820. source: "./media/characters/adinia/back.svg",
  16821. extra: 1845 / 1672,
  16822. bottom: 0.002
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Normal",
  16829. height: math.unit(11 + 5 / 12, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(3, "meters"),
  16839. weight: math.unit(200, "kg"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/lykasa/front.svg",
  16843. extra: 1076 / 976,
  16844. bottom: 0.06
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Normal",
  16851. height: math.unit(3, "meters")
  16852. },
  16853. {
  16854. name: "Kaiju",
  16855. height: math.unit(120, "meters"),
  16856. default: true
  16857. },
  16858. {
  16859. name: "Mega Kaiju",
  16860. height: math.unit(240, "km")
  16861. },
  16862. {
  16863. name: "Giga Kaiju",
  16864. height: math.unit(400, "megameters")
  16865. },
  16866. {
  16867. name: "Tera Kaiju",
  16868. height: math.unit(800, "gigameters")
  16869. },
  16870. {
  16871. name: "Kaiju Dragon Goddess",
  16872. height: math.unit(26, "zettaparsecs")
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16878. {
  16879. side: {
  16880. height: math.unit(283 / 124 * 6, "feet"),
  16881. weight: math.unit(35000, "lb"),
  16882. name: "Side",
  16883. image: {
  16884. source: "./media/characters/malfaren/side.svg",
  16885. extra: 2500 / 1010,
  16886. bottom: 0.01
  16887. }
  16888. },
  16889. front: {
  16890. height: math.unit(22.36, "feet"),
  16891. weight: math.unit(35000, "lb"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/malfaren/front.svg",
  16895. extra: 1631 / 1476,
  16896. bottom: 0.01
  16897. }
  16898. },
  16899. maw: {
  16900. height: math.unit(6.9, "feet"),
  16901. name: "Maw",
  16902. image: {
  16903. source: "./media/characters/malfaren/maw.svg"
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Big",
  16910. height: math.unit(283 / 162 * 6, "feet"),
  16911. },
  16912. {
  16913. name: "Bigger",
  16914. height: math.unit(283 / 124 * 6, "feet")
  16915. },
  16916. {
  16917. name: "Massive",
  16918. height: math.unit(283 / 92 * 6, "feet"),
  16919. default: true
  16920. },
  16921. {
  16922. name: "👀💦",
  16923. height: math.unit(283 / 73 * 6, "feet"),
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(1.7, "m"),
  16932. weight: math.unit(70, "kg"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/kernel/front.svg",
  16936. extra: 222 / 210,
  16937. bottom: 0.007
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Nano",
  16944. height: math.unit(17, "micrometers")
  16945. },
  16946. {
  16947. name: "Micro",
  16948. height: math.unit(1.7, "mm")
  16949. },
  16950. {
  16951. name: "Small",
  16952. height: math.unit(1.7, "cm")
  16953. },
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(1.7, "m"),
  16957. default: true
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(1.75, "meters"),
  16966. weight: math.unit(65, "kg"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/jayne-folest/front.svg",
  16970. extra: 2115 / 2007,
  16971. bottom: 0.02
  16972. }
  16973. },
  16974. back: {
  16975. height: math.unit(1.75, "meters"),
  16976. weight: math.unit(65, "kg"),
  16977. name: "Back",
  16978. image: {
  16979. source: "./media/characters/jayne-folest/back.svg",
  16980. extra: 2115 / 2007,
  16981. bottom: 0.005
  16982. }
  16983. },
  16984. frontClothed: {
  16985. height: math.unit(1.75, "meters"),
  16986. weight: math.unit(65, "kg"),
  16987. name: "Front (Clothed)",
  16988. image: {
  16989. source: "./media/characters/jayne-folest/front-clothed.svg",
  16990. extra: 2115 / 2007,
  16991. bottom: 0.035
  16992. }
  16993. },
  16994. hand: {
  16995. height: math.unit(1 / 1.260, "feet"),
  16996. name: "Hand",
  16997. image: {
  16998. source: "./media/characters/jayne-folest/hand.svg"
  16999. }
  17000. },
  17001. foot: {
  17002. height: math.unit(1 / 0.918, "feet"),
  17003. name: "Foot",
  17004. image: {
  17005. source: "./media/characters/jayne-folest/foot.svg"
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Micro",
  17012. height: math.unit(4, "cm")
  17013. },
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(1.75, "meters")
  17017. },
  17018. {
  17019. name: "Macro",
  17020. height: math.unit(47.5, "meters"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(180, "cm"),
  17030. weight: math.unit(70, "kg"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/algier/front.svg",
  17034. extra: 596 / 572,
  17035. bottom: 0.04
  17036. }
  17037. },
  17038. back: {
  17039. height: math.unit(180, "cm"),
  17040. weight: math.unit(70, "kg"),
  17041. name: "Back",
  17042. image: {
  17043. source: "./media/characters/algier/back.svg",
  17044. extra: 596 / 572,
  17045. bottom: 0.025
  17046. }
  17047. },
  17048. frontdressed: {
  17049. height: math.unit(180, "cm"),
  17050. weight: math.unit(150, "kg"),
  17051. name: "Front-dressed",
  17052. image: {
  17053. source: "./media/characters/algier/front-dressed.svg",
  17054. extra: 596 / 572,
  17055. bottom: 0.038
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Micro",
  17062. height: math.unit(5, "cm")
  17063. },
  17064. {
  17065. name: "Normal",
  17066. height: math.unit(180, "cm"),
  17067. default: true
  17068. },
  17069. {
  17070. name: "Macro",
  17071. height: math.unit(64, "m")
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17077. {
  17078. upright: {
  17079. height: math.unit(7, "feet"),
  17080. weight: math.unit(300, "lb"),
  17081. name: "Upright",
  17082. image: {
  17083. source: "./media/characters/pretzel/upright.svg",
  17084. extra: 534 / 522,
  17085. bottom: 0.065
  17086. }
  17087. },
  17088. sprawling: {
  17089. height: math.unit(3.75, "feet"),
  17090. weight: math.unit(300, "lb"),
  17091. name: "Sprawling",
  17092. image: {
  17093. source: "./media/characters/pretzel/sprawling.svg",
  17094. extra: 314 / 281,
  17095. bottom: 0.1
  17096. }
  17097. },
  17098. tongue: {
  17099. height: math.unit(2, "feet"),
  17100. name: "Tongue",
  17101. image: {
  17102. source: "./media/characters/pretzel/tongue.svg"
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(7, "feet"),
  17110. default: true
  17111. },
  17112. {
  17113. name: "Oversized",
  17114. height: math.unit(15, "feet")
  17115. },
  17116. {
  17117. name: "Huge",
  17118. height: math.unit(30, "feet")
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(250, "feet")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17128. {
  17129. sideFront: {
  17130. height: math.unit(5 + 2 / 12, "feet"),
  17131. weight: math.unit(120, "lb"),
  17132. name: "Front Side",
  17133. image: {
  17134. source: "./media/characters/roxi/side-front.svg",
  17135. extra: 2924 / 2717,
  17136. bottom: 0.08
  17137. }
  17138. },
  17139. sideBack: {
  17140. height: math.unit(5 + 2 / 12, "feet"),
  17141. weight: math.unit(120, "lb"),
  17142. name: "Back Side",
  17143. image: {
  17144. source: "./media/characters/roxi/side-back.svg",
  17145. extra: 2904 / 2693,
  17146. bottom: 0.06
  17147. }
  17148. },
  17149. front: {
  17150. height: math.unit(5 + 2 / 12, "feet"),
  17151. weight: math.unit(120, "lb"),
  17152. name: "Front",
  17153. image: {
  17154. source: "./media/characters/roxi/front.svg",
  17155. extra: 2028 / 1907,
  17156. bottom: 0.01
  17157. }
  17158. },
  17159. frontAlt: {
  17160. height: math.unit(5 + 2 / 12, "feet"),
  17161. weight: math.unit(120, "lb"),
  17162. name: "Front (Alt)",
  17163. image: {
  17164. source: "./media/characters/roxi/front-alt.svg",
  17165. extra: 1828 / 1798,
  17166. bottom: 0.01
  17167. }
  17168. },
  17169. sitting: {
  17170. height: math.unit(2.8, "feet"),
  17171. weight: math.unit(120, "lb"),
  17172. name: "Sitting",
  17173. image: {
  17174. source: "./media/characters/roxi/sitting.svg",
  17175. extra: 2660 / 2462,
  17176. bottom: 0.1
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(5 + 2 / 12, "feet"),
  17184. default: true
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17190. {
  17191. side: {
  17192. height: math.unit(55, "feet"),
  17193. weight: math.unit(153, "tons"),
  17194. name: "Side",
  17195. image: {
  17196. source: "./media/characters/shadow/side.svg",
  17197. extra: 701 / 628,
  17198. bottom: 0.02
  17199. }
  17200. },
  17201. flying: {
  17202. height: math.unit(145, "feet"),
  17203. weight: math.unit(153, "tons"),
  17204. name: "Flying",
  17205. image: {
  17206. source: "./media/characters/shadow/flying.svg"
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(55, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(6, "feet"),
  17223. weight: math.unit(200, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/marcie/front.svg",
  17227. extra: 960 / 876,
  17228. bottom: 58 / 1017.87
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Macro",
  17235. height: math.unit(1, "mile"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17242. {
  17243. front: {
  17244. height: math.unit(7, "feet"),
  17245. weight: math.unit(200, "lb"),
  17246. name: "Front",
  17247. image: {
  17248. source: "./media/characters/kachina/front.svg",
  17249. extra: 1290.68 / 1119,
  17250. bottom: 36.5 / 1327.18
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(7, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17264. {
  17265. looking: {
  17266. height: math.unit(2, "meters"),
  17267. weight: math.unit(300, "kg"),
  17268. name: "Looking",
  17269. image: {
  17270. source: "./media/characters/kash/looking.svg",
  17271. extra: 474 / 344,
  17272. bottom: 0.03
  17273. }
  17274. },
  17275. side: {
  17276. height: math.unit(2, "meters"),
  17277. weight: math.unit(300, "kg"),
  17278. name: "Side",
  17279. image: {
  17280. source: "./media/characters/kash/side.svg",
  17281. extra: 302 / 251,
  17282. bottom: 0.03
  17283. }
  17284. },
  17285. front: {
  17286. height: math.unit(2, "meters"),
  17287. weight: math.unit(300, "kg"),
  17288. name: "Front",
  17289. image: {
  17290. source: "./media/characters/kash/front.svg",
  17291. extra: 495 / 360,
  17292. bottom: 0.015
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(2, "meters"),
  17300. default: true
  17301. },
  17302. {
  17303. name: "Big",
  17304. height: math.unit(3, "meters")
  17305. },
  17306. {
  17307. name: "Large",
  17308. height: math.unit(5, "meters")
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17314. {
  17315. feeding: {
  17316. height: math.unit(6.7, "feet"),
  17317. weight: math.unit(350, "lb"),
  17318. name: "Feeding",
  17319. image: {
  17320. source: "./media/characters/lalim/feeding.svg",
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(6.7, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(9.5, "feet"),
  17337. weight: math.unit(600, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/de'vout/front.svg",
  17341. extra: 1443 / 1328,
  17342. bottom: 0.025
  17343. }
  17344. },
  17345. back: {
  17346. height: math.unit(9.5, "feet"),
  17347. weight: math.unit(600, "lb"),
  17348. name: "Back",
  17349. image: {
  17350. source: "./media/characters/de'vout/back.svg",
  17351. extra: 1443 / 1328
  17352. }
  17353. },
  17354. frontDressed: {
  17355. height: math.unit(9.5, "feet"),
  17356. weight: math.unit(600, "lb"),
  17357. name: "Front (Dressed",
  17358. image: {
  17359. source: "./media/characters/de'vout/front-dressed.svg",
  17360. extra: 1443 / 1328,
  17361. bottom: 0.025
  17362. }
  17363. },
  17364. backDressed: {
  17365. height: math.unit(9.5, "feet"),
  17366. weight: math.unit(600, "lb"),
  17367. name: "Back (Dressed",
  17368. image: {
  17369. source: "./media/characters/de'vout/back-dressed.svg",
  17370. extra: 1443 / 1328
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(9.5, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(8, "feet"),
  17387. weight: math.unit(225, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/talana/front.svg",
  17391. extra: 1410 / 1300,
  17392. bottom: 0.015
  17393. }
  17394. },
  17395. frontDressed: {
  17396. height: math.unit(8, "feet"),
  17397. weight: math.unit(225, "lb"),
  17398. name: "Front (Dressed",
  17399. image: {
  17400. source: "./media/characters/talana/front-dressed.svg",
  17401. extra: 1410 / 1300,
  17402. bottom: 0.015
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(8, "feet"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17416. {
  17417. side: {
  17418. height: math.unit(7.2, "feet"),
  17419. weight: math.unit(150, "lb"),
  17420. name: "Side",
  17421. image: {
  17422. source: "./media/characters/xeauvok/side.svg",
  17423. extra: 1975 / 1523,
  17424. bottom: 0.07
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(7.2, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17438. {
  17439. side: {
  17440. height: math.unit(10, "feet"),
  17441. weight: math.unit(900, "kg"),
  17442. name: "Side",
  17443. image: {
  17444. source: "./media/characters/zara/side.svg",
  17445. extra: 504 / 498
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(10, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17459. {
  17460. side: {
  17461. height: math.unit(6, "feet"),
  17462. weight: math.unit(150, "lb"),
  17463. name: "Side",
  17464. image: {
  17465. source: "./media/characters/richard-dragon/side.svg",
  17466. extra: 845 / 340,
  17467. bottom: 0.017
  17468. }
  17469. },
  17470. maw: {
  17471. height: math.unit(2.97, "feet"),
  17472. name: "Maw",
  17473. image: {
  17474. source: "./media/characters/richard-dragon/maw.svg"
  17475. }
  17476. },
  17477. },
  17478. [
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(4, "feet"),
  17486. weight: math.unit(100, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/richard-smeargle/front.svg",
  17490. extra: 2952 / 2820,
  17491. bottom: 0.028
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(4, "feet"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "Dynamax",
  17503. height: math.unit(20, "meters")
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(6, "feet"),
  17512. weight: math.unit(110, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/klay/front.svg",
  17516. extra: 962 / 883,
  17517. bottom: 0.04
  17518. }
  17519. },
  17520. back: {
  17521. height: math.unit(6, "feet"),
  17522. weight: math.unit(110, "lb"),
  17523. name: "Back",
  17524. image: {
  17525. source: "./media/characters/klay/back.svg",
  17526. extra: 962 / 883
  17527. }
  17528. },
  17529. beans: {
  17530. height: math.unit(1.15, "feet"),
  17531. name: "Beans",
  17532. image: {
  17533. source: "./media/characters/klay/beans.svg"
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Micro",
  17540. height: math.unit(6, "inches")
  17541. },
  17542. {
  17543. name: "Mini",
  17544. height: math.unit(3, "feet")
  17545. },
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(6, "feet"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Big",
  17553. height: math.unit(25, "feet")
  17554. },
  17555. {
  17556. name: "Macro",
  17557. height: math.unit(100, "feet")
  17558. },
  17559. {
  17560. name: "Megamacro",
  17561. height: math.unit(400, "feet")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(6, "feet"),
  17570. weight: math.unit(160, "lb"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/marcus/front.svg",
  17574. extra: 734 / 676,
  17575. bottom: 0.03
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Little",
  17582. height: math.unit(6, "feet")
  17583. },
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(110, "feet"),
  17587. default: true
  17588. },
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(250, "feet")
  17592. },
  17593. {
  17594. name: "Megamacro",
  17595. height: math.unit(1000, "feet")
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(7, "feet"),
  17604. weight: math.unit(275, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/claude-delroute/front.svg",
  17608. extra: 230 / 214,
  17609. bottom: 0.007
  17610. }
  17611. },
  17612. side: {
  17613. height: math.unit(7, "feet"),
  17614. weight: math.unit(275, "lb"),
  17615. name: "Side",
  17616. image: {
  17617. source: "./media/characters/claude-delroute/side.svg",
  17618. extra: 222 / 214,
  17619. bottom: 0.01
  17620. }
  17621. },
  17622. back: {
  17623. height: math.unit(7, "feet"),
  17624. weight: math.unit(275, "lb"),
  17625. name: "Back",
  17626. image: {
  17627. source: "./media/characters/claude-delroute/back.svg",
  17628. extra: 230 / 214,
  17629. bottom: 0.015
  17630. }
  17631. },
  17632. maw: {
  17633. height: math.unit(0.6407, "meters"),
  17634. name: "Maw",
  17635. image: {
  17636. source: "./media/characters/claude-delroute/maw.svg"
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(7, "feet"),
  17644. default: true
  17645. },
  17646. {
  17647. name: "Lorge",
  17648. height: math.unit(20, "feet")
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(8 + 4 / 12, "feet"),
  17657. weight: math.unit(600, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/dragonien/front.svg",
  17661. extra: 100 / 94,
  17662. bottom: 3.3 / 103.3445
  17663. }
  17664. },
  17665. back: {
  17666. height: math.unit(8 + 4 / 12, "feet"),
  17667. weight: math.unit(600, "lb"),
  17668. name: "Back",
  17669. image: {
  17670. source: "./media/characters/dragonien/back.svg",
  17671. extra: 776 / 746,
  17672. bottom: 6.4 / 782.0616
  17673. }
  17674. },
  17675. foot: {
  17676. height: math.unit(1.54, "feet"),
  17677. name: "Foot",
  17678. image: {
  17679. source: "./media/characters/dragonien/foot.svg",
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(8 + 4 / 12, "feet"),
  17687. default: true
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(200, "feet")
  17692. },
  17693. {
  17694. name: "Megamacro",
  17695. height: math.unit(1, "mile")
  17696. },
  17697. {
  17698. name: "Gigamacro",
  17699. height: math.unit(1000, "miles")
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(5 + 2 / 12, "feet"),
  17708. weight: math.unit(110, "lb"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/desta/front.svg",
  17712. extra: 767 / 726,
  17713. bottom: 11.7 / 779
  17714. }
  17715. },
  17716. back: {
  17717. height: math.unit(5 + 2 / 12, "feet"),
  17718. weight: math.unit(110, "lb"),
  17719. name: "Back",
  17720. image: {
  17721. source: "./media/characters/desta/back.svg",
  17722. extra: 777 / 728,
  17723. bottom: 6 / 784
  17724. }
  17725. },
  17726. frontAlt: {
  17727. height: math.unit(5 + 2 / 12, "feet"),
  17728. weight: math.unit(110, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/desta/front-alt.svg",
  17732. extra: 1482 / 1417
  17733. }
  17734. },
  17735. side: {
  17736. height: math.unit(5 + 2 / 12, "feet"),
  17737. weight: math.unit(110, "lb"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/desta/side.svg",
  17741. extra: 2579 / 2491,
  17742. bottom: 0.053
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Micro",
  17749. height: math.unit(6, "inches")
  17750. },
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(5 + 2 / 12, "feet"),
  17754. default: true
  17755. },
  17756. {
  17757. name: "Macro",
  17758. height: math.unit(62, "feet")
  17759. },
  17760. {
  17761. name: "Megamacro",
  17762. height: math.unit(1800, "feet")
  17763. },
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17768. {
  17769. front: {
  17770. height: math.unit(10, "feet"),
  17771. weight: math.unit(700, "lb"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/storm-alystar/front.svg",
  17775. extra: 2112 / 1898,
  17776. bottom: 0.034
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Micro",
  17783. height: math.unit(3.5, "inches")
  17784. },
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(10, "feet"),
  17788. default: true
  17789. },
  17790. {
  17791. name: "Macro",
  17792. height: math.unit(400, "feet")
  17793. },
  17794. {
  17795. name: "Deific",
  17796. height: math.unit(60, "miles")
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17802. {
  17803. front: {
  17804. height: math.unit(2.35, "meters"),
  17805. weight: math.unit(119, "kg"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/ilia/front.svg",
  17809. extra: 1285 / 1255,
  17810. bottom: 0.06
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(2.35, "meters")
  17818. },
  17819. {
  17820. name: "Macro",
  17821. height: math.unit(140, "meters"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Megamacro",
  17826. height: math.unit(100, "miles")
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(6 + 5 / 12, "feet"),
  17835. weight: math.unit(190, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/kingdead/front.svg",
  17839. extra: 1228 / 1177
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Micro",
  17846. height: math.unit(7, "inches")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(6 + 5 / 12, "feet")
  17851. },
  17852. {
  17853. name: "Macro",
  17854. height: math.unit(150, "feet"),
  17855. default: true
  17856. },
  17857. {
  17858. name: "Megamacro",
  17859. height: math.unit(200, "miles")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(8, "feet"),
  17868. weight: math.unit(600, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/kyrehx/front.svg",
  17872. extra: 1195 / 1095,
  17873. bottom: 0.034
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Micro",
  17880. height: math.unit(2, "inches")
  17881. },
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(8, "feet"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Macro",
  17889. height: math.unit(255, "feet")
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17895. {
  17896. front: {
  17897. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17898. weight: math.unit(184, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/xang/front.svg",
  17902. extra: 845 / 755
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(0.935 * 146, "feet")
  17915. },
  17916. {
  17917. name: "Megamacro",
  17918. height: math.unit(0.935 * 3, "miles")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17924. {
  17925. frontDressed: {
  17926. height: math.unit(5 + 7 / 12, "feet"),
  17927. weight: math.unit(140, "lb"),
  17928. name: "Front (Dressed)",
  17929. image: {
  17930. source: "./media/characters/doc-weardno/front-dressed.svg",
  17931. extra: 263 / 234
  17932. }
  17933. },
  17934. backDressed: {
  17935. height: math.unit(5 + 7 / 12, "feet"),
  17936. weight: math.unit(140, "lb"),
  17937. name: "Back (Dressed)",
  17938. image: {
  17939. source: "./media/characters/doc-weardno/back-dressed.svg",
  17940. extra: 266 / 238
  17941. }
  17942. },
  17943. front: {
  17944. height: math.unit(5 + 7 / 12, "feet"),
  17945. weight: math.unit(140, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/doc-weardno/front.svg",
  17949. extra: 254 / 233
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Micro",
  17956. height: math.unit(3, "inches")
  17957. },
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(5 + 7 / 12, "feet"),
  17961. default: true
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(25, "feet")
  17966. },
  17967. {
  17968. name: "Megamacro",
  17969. height: math.unit(2, "miles")
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17975. {
  17976. front: {
  17977. height: math.unit(6 + 2 / 12, "feet"),
  17978. weight: math.unit(153, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/seth-whilst/front.svg",
  17982. bottom: 0.07
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Micro",
  17989. height: math.unit(5, "inches")
  17990. },
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(6 + 2 / 12, "feet"),
  17994. default: true
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(3, "inches"),
  18003. weight: math.unit(8, "grams"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/pocket-jabari/front.svg",
  18007. extra: 1024 / 974,
  18008. bottom: 0.039
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Minimicro",
  18015. height: math.unit(8, "mm")
  18016. },
  18017. {
  18018. name: "Micro",
  18019. height: math.unit(3, "inches"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(3, "feet")
  18025. },
  18026. ]
  18027. ))
  18028. characterMakers.push(() => makeCharacter(
  18029. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18030. {
  18031. front: {
  18032. height: math.unit(15, "feet"),
  18033. weight: math.unit(3280, "lb"),
  18034. name: "Front",
  18035. image: {
  18036. source: "./media/characters/sapphy/front.svg",
  18037. extra: 671 / 577,
  18038. bottom: 0.085
  18039. }
  18040. },
  18041. back: {
  18042. height: math.unit(15, "feet"),
  18043. weight: math.unit(3280, "lb"),
  18044. name: "Back",
  18045. image: {
  18046. source: "./media/characters/sapphy/back.svg",
  18047. extra: 631 / 607,
  18048. bottom: 0.045
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(15, "feet")
  18056. },
  18057. {
  18058. name: "Casual Macro",
  18059. height: math.unit(120, "feet")
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(2150, "feet"),
  18064. default: true
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(8, "miles")
  18069. },
  18070. {
  18071. name: "Galaxy Mom",
  18072. height: math.unit(6, "megalightyears")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(170, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/kiro/front.svg",
  18085. extra: 1064 / 1012,
  18086. bottom: 0.052
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Micro",
  18093. height: math.unit(6, "inches")
  18094. },
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(6, "feet"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Macro",
  18102. height: math.unit(72, "feet")
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18108. {
  18109. front: {
  18110. height: math.unit(5 + 9 / 12, "feet"),
  18111. weight: math.unit(175, "lb"),
  18112. name: "Front",
  18113. image: {
  18114. source: "./media/characters/irishfox/front.svg",
  18115. extra: 1912 / 1680,
  18116. bottom: 0.02
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Nano",
  18123. height: math.unit(1, "mm")
  18124. },
  18125. {
  18126. name: "Micro",
  18127. height: math.unit(2, "inches")
  18128. },
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(5 + 9 / 12, "feet"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Macro",
  18136. height: math.unit(45, "feet")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6 + 1 / 12, "feet"),
  18145. weight: math.unit(150, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/aronai-sieyes/front.svg",
  18149. extra: 1556 / 1480,
  18150. bottom: 0.015
  18151. }
  18152. },
  18153. side: {
  18154. height: math.unit(6 + 1 / 12, "feet"),
  18155. weight: math.unit(150, "lb"),
  18156. name: "Side",
  18157. image: {
  18158. source: "./media/characters/aronai-sieyes/side.svg",
  18159. extra: 1433 / 1390,
  18160. bottom: 0.0393
  18161. }
  18162. },
  18163. back: {
  18164. height: math.unit(6 + 1 / 12, "feet"),
  18165. weight: math.unit(150, "lb"),
  18166. name: "Back",
  18167. image: {
  18168. source: "./media/characters/aronai-sieyes/back.svg",
  18169. extra: 1544 / 1494,
  18170. bottom: 0.02
  18171. }
  18172. },
  18173. frontClothed: {
  18174. height: math.unit(6 + 1 / 12, "feet"),
  18175. weight: math.unit(150, "lb"),
  18176. name: "Front (Clothed)",
  18177. image: {
  18178. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18179. extra: 1582 / 1527
  18180. }
  18181. },
  18182. feral: {
  18183. height: math.unit(18, "feet"),
  18184. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18185. name: "Feral",
  18186. image: {
  18187. source: "./media/characters/aronai-sieyes/feral.svg",
  18188. extra: 1530 / 1240,
  18189. bottom: 0.035
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Micro",
  18196. height: math.unit(2, "inches")
  18197. },
  18198. {
  18199. name: "Normal",
  18200. height: math.unit(6 + 1 / 12, "feet"),
  18201. default: true
  18202. }
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(12, "feet"),
  18210. weight: math.unit(410, "kg"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/xuna/front.svg",
  18214. extra: 2184 / 1980
  18215. }
  18216. },
  18217. side: {
  18218. height: math.unit(12, "feet"),
  18219. weight: math.unit(410, "kg"),
  18220. name: "Side",
  18221. image: {
  18222. source: "./media/characters/xuna/side.svg",
  18223. extra: 2184 / 1980
  18224. }
  18225. },
  18226. back: {
  18227. height: math.unit(12, "feet"),
  18228. weight: math.unit(410, "kg"),
  18229. name: "Back",
  18230. image: {
  18231. source: "./media/characters/xuna/back.svg",
  18232. extra: 2184 / 1980
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Nano glow",
  18239. height: math.unit(10, "nm")
  18240. },
  18241. {
  18242. name: "Micro floof",
  18243. height: math.unit(0.3, "m")
  18244. },
  18245. {
  18246. name: "Huggable softy boi",
  18247. height: math.unit(3.6576, "m"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Admirable floof",
  18252. height: math.unit(80, "meters")
  18253. },
  18254. {
  18255. name: "Gentle macro",
  18256. height: math.unit(300, "meters")
  18257. },
  18258. {
  18259. name: "Very careful floof",
  18260. height: math.unit(3200, "meters")
  18261. },
  18262. {
  18263. name: "The mega floof",
  18264. height: math.unit(36000, "meters")
  18265. },
  18266. {
  18267. name: "Giga-fur-Wicker",
  18268. height: math.unit(4800000, "meters")
  18269. },
  18270. {
  18271. name: "Licky world",
  18272. height: math.unit(20000000, "meters")
  18273. },
  18274. {
  18275. name: "Floofy cyan sun",
  18276. height: math.unit(1500000000, "meters")
  18277. },
  18278. {
  18279. name: "Milky Wicker",
  18280. height: math.unit(1000000000000000000000, "meters")
  18281. },
  18282. {
  18283. name: "The observing Wicker",
  18284. height: math.unit(999999999999999999999999999, "meters")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(5 + 9 / 12, "feet"),
  18293. weight: math.unit(150, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/arokha-sieyes/front.svg",
  18297. extra: 1425 / 1284,
  18298. bottom: 0.05
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(5 + 9 / 12, "feet")
  18306. },
  18307. {
  18308. name: "Macro",
  18309. height: math.unit(30, "meters"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(6, "feet"),
  18319. weight: math.unit(180, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/arokh-sieyes/front.svg",
  18323. extra: 1830 / 1769,
  18324. bottom: 0.01
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(6, "feet")
  18332. },
  18333. {
  18334. name: "Macro",
  18335. height: math.unit(30, "meters"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18342. {
  18343. side: {
  18344. height: math.unit(13 + 1 / 12, "feet"),
  18345. weight: math.unit(8.5, "tonnes"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/goldeneye/side.svg",
  18349. extra: 1182 / 778,
  18350. bottom: 0.067
  18351. }
  18352. },
  18353. paw: {
  18354. height: math.unit(3.4, "feet"),
  18355. name: "Paw",
  18356. image: {
  18357. source: "./media/characters/goldeneye/paw.svg"
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(13 + 1 / 12, "feet"),
  18365. default: true
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18371. {
  18372. front: {
  18373. height: math.unit(6 + 1 / 12, "feet"),
  18374. weight: math.unit(210, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/leonardo-lycheborne/front.svg",
  18378. extra: 390 / 365,
  18379. bottom: 0.032
  18380. }
  18381. },
  18382. side: {
  18383. height: math.unit(6 + 1 / 12, "feet"),
  18384. weight: math.unit(210, "lb"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/leonardo-lycheborne/side.svg",
  18388. extra: 390 / 365,
  18389. bottom: 0.005
  18390. }
  18391. },
  18392. back: {
  18393. height: math.unit(6 + 1 / 12, "feet"),
  18394. weight: math.unit(210, "lb"),
  18395. name: "Back",
  18396. image: {
  18397. source: "./media/characters/leonardo-lycheborne/back.svg",
  18398. extra: 392 / 366,
  18399. bottom: 0.01
  18400. }
  18401. },
  18402. hand: {
  18403. height: math.unit(1.08, "feet"),
  18404. name: "Hand",
  18405. image: {
  18406. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18407. }
  18408. },
  18409. foot: {
  18410. height: math.unit(1.32, "feet"),
  18411. name: "Foot",
  18412. image: {
  18413. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18414. }
  18415. },
  18416. were: {
  18417. height: math.unit(20, "feet"),
  18418. weight: math.unit(7800, "lb"),
  18419. name: "Were",
  18420. image: {
  18421. source: "./media/characters/leonardo-lycheborne/were.svg",
  18422. extra: 308 / 294,
  18423. bottom: 0.048
  18424. }
  18425. },
  18426. feral: {
  18427. height: math.unit(7.5, "feet"),
  18428. weight: math.unit(600, "lb"),
  18429. name: "Feral",
  18430. image: {
  18431. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18432. extra: 210 / 186,
  18433. bottom: 0.108
  18434. }
  18435. },
  18436. taur: {
  18437. height: math.unit(11, "feet"),
  18438. weight: math.unit(3300, "lb"),
  18439. name: "Taur",
  18440. image: {
  18441. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18442. extra: 320 / 303,
  18443. bottom: 0.025
  18444. }
  18445. },
  18446. barghest: {
  18447. height: math.unit(11, "feet"),
  18448. weight: math.unit(1300, "lb"),
  18449. name: "Barghest",
  18450. image: {
  18451. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18452. extra: 323 / 302,
  18453. bottom: 0.027
  18454. }
  18455. },
  18456. dick: {
  18457. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18458. name: "Dick",
  18459. image: {
  18460. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18461. }
  18462. },
  18463. dickWere: {
  18464. height: math.unit((20) / 3.8, "feet"),
  18465. name: "Dick (Were)",
  18466. image: {
  18467. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(6 + 1 / 12, "feet"),
  18475. default: true
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(10, "feet"),
  18484. weight: math.unit(350, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/jet/front.svg",
  18488. extra: 2050 / 1980,
  18489. bottom: 0.013
  18490. }
  18491. },
  18492. back: {
  18493. height: math.unit(10, "feet"),
  18494. weight: math.unit(350, "lb"),
  18495. name: "Back",
  18496. image: {
  18497. source: "./media/characters/jet/back.svg",
  18498. extra: 2050 / 1980,
  18499. bottom: 0.013
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(6, "inches")
  18507. },
  18508. {
  18509. name: "Normal",
  18510. height: math.unit(10, "feet"),
  18511. default: true
  18512. },
  18513. {
  18514. name: "Macro",
  18515. height: math.unit(100, "feet")
  18516. },
  18517. ]
  18518. ))
  18519. characterMakers.push(() => makeCharacter(
  18520. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18521. {
  18522. front: {
  18523. height: math.unit(15, "feet"),
  18524. weight: math.unit(2800, "lb"),
  18525. name: "Front",
  18526. image: {
  18527. source: "./media/characters/tanarath/front.svg",
  18528. extra: 2392 / 2220,
  18529. bottom: 0.03
  18530. }
  18531. },
  18532. back: {
  18533. height: math.unit(15, "feet"),
  18534. weight: math.unit(2800, "lb"),
  18535. name: "Back",
  18536. image: {
  18537. source: "./media/characters/tanarath/back.svg",
  18538. extra: 2392 / 2220,
  18539. bottom: 0.03
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Normal",
  18546. height: math.unit(15, "feet"),
  18547. default: true
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(7 + 1 / 12, "feet"),
  18556. weight: math.unit(175, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/patty-cattybatty/front.svg",
  18560. extra: 908 / 874,
  18561. bottom: 0.025
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Micro",
  18568. height: math.unit(1, "inch")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(7 + 1 / 12, "feet")
  18573. },
  18574. {
  18575. name: "Mini Macro",
  18576. height: math.unit(155, "feet")
  18577. },
  18578. {
  18579. name: "Macro",
  18580. height: math.unit(1077, "feet")
  18581. },
  18582. {
  18583. name: "Mega Macro",
  18584. height: math.unit(47650, "feet"),
  18585. default: true
  18586. },
  18587. {
  18588. name: "Giga Macro",
  18589. height: math.unit(440, "miles")
  18590. },
  18591. {
  18592. name: "Tera Macro",
  18593. height: math.unit(8700, "miles")
  18594. },
  18595. {
  18596. name: "Planetary Macro",
  18597. height: math.unit(32700, "miles")
  18598. },
  18599. {
  18600. name: "Solar Macro",
  18601. height: math.unit(550000, "miles")
  18602. },
  18603. {
  18604. name: "Celestial Macro",
  18605. height: math.unit(2.5, "AU")
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(4 + 5 / 12, "feet"),
  18614. weight: math.unit(90, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/cappu/front.svg",
  18618. extra: 1247 / 1152,
  18619. bottom: 0.012
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Normal",
  18626. height: math.unit(4 + 5 / 12, "feet"),
  18627. default: true
  18628. },
  18629. ]
  18630. ))
  18631. characterMakers.push(() => makeCharacter(
  18632. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18633. {
  18634. frontDressed: {
  18635. height: math.unit(70, "cm"),
  18636. weight: math.unit(6, "kg"),
  18637. name: "Front (Dressed)",
  18638. image: {
  18639. source: "./media/characters/sebi/front-dressed.svg",
  18640. extra: 713.5 / 686.5,
  18641. bottom: 0.003
  18642. }
  18643. },
  18644. front: {
  18645. height: math.unit(70, "cm"),
  18646. weight: math.unit(5, "kg"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/sebi/front.svg",
  18650. extra: 713.5 / 686.5,
  18651. bottom: 0.003
  18652. }
  18653. }
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(70, "cm"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Macro",
  18663. height: math.unit(8, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6, "feet"),
  18672. weight: math.unit(150, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/typhek/front.svg",
  18676. extra: 1948 / 1929,
  18677. bottom: 0.025
  18678. }
  18679. },
  18680. side: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(150, "lb"),
  18683. name: "Side",
  18684. image: {
  18685. source: "./media/characters/typhek/side.svg",
  18686. extra: 2034 / 2010,
  18687. bottom: 0.003
  18688. }
  18689. },
  18690. back: {
  18691. height: math.unit(6, "feet"),
  18692. weight: math.unit(150, "lb"),
  18693. name: "Back",
  18694. image: {
  18695. source: "./media/characters/typhek/back.svg",
  18696. extra: 2005 / 1978,
  18697. bottom: 0.004
  18698. }
  18699. },
  18700. palm: {
  18701. height: math.unit(1.2, "feet"),
  18702. name: "Palm",
  18703. image: {
  18704. source: "./media/characters/typhek/palm.svg"
  18705. }
  18706. },
  18707. fist: {
  18708. height: math.unit(1.1, "feet"),
  18709. name: "Fist",
  18710. image: {
  18711. source: "./media/characters/typhek/fist.svg"
  18712. }
  18713. },
  18714. foot: {
  18715. height: math.unit(1.57, "feet"),
  18716. name: "Foot",
  18717. image: {
  18718. source: "./media/characters/typhek/foot.svg"
  18719. }
  18720. },
  18721. sole: {
  18722. height: math.unit(2.05, "feet"),
  18723. name: "Sole",
  18724. image: {
  18725. source: "./media/characters/typhek/sole.svg"
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Macro",
  18732. height: math.unit(40, "stories"),
  18733. default: true
  18734. },
  18735. {
  18736. name: "Megamacro",
  18737. height: math.unit(1, "mile")
  18738. },
  18739. {
  18740. name: "Gigamacro",
  18741. height: math.unit(4000, "solarradii")
  18742. },
  18743. {
  18744. name: "Universal",
  18745. height: math.unit(1.1, "universes")
  18746. }
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18751. {
  18752. side: {
  18753. height: math.unit(5 + 7 / 12, "feet"),
  18754. weight: math.unit(150, "lb"),
  18755. name: "Side",
  18756. image: {
  18757. source: "./media/characters/kassy/side.svg",
  18758. extra: 1280 / 1225,
  18759. bottom: 0.002
  18760. }
  18761. },
  18762. front: {
  18763. height: math.unit(5 + 7 / 12, "feet"),
  18764. weight: math.unit(150, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/kassy/front.svg",
  18768. extra: 1280 / 1225,
  18769. bottom: 0.025
  18770. }
  18771. },
  18772. back: {
  18773. height: math.unit(5 + 7 / 12, "feet"),
  18774. weight: math.unit(150, "lb"),
  18775. name: "Back",
  18776. image: {
  18777. source: "./media/characters/kassy/back.svg",
  18778. extra: 1280 / 1225,
  18779. bottom: 0.002
  18780. }
  18781. },
  18782. foot: {
  18783. height: math.unit(1.266, "feet"),
  18784. name: "Foot",
  18785. image: {
  18786. source: "./media/characters/kassy/foot.svg"
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(5 + 7 / 12, "feet")
  18794. },
  18795. {
  18796. name: "Macro",
  18797. height: math.unit(137, "feet"),
  18798. default: true
  18799. },
  18800. {
  18801. name: "Megamacro",
  18802. height: math.unit(1, "mile")
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18808. {
  18809. front: {
  18810. height: math.unit(6 + 1 / 12, "feet"),
  18811. weight: math.unit(200, "lb"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/neil/front.svg",
  18815. extra: 1326 / 1250,
  18816. bottom: 0.023
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(6 + 1 / 12, "feet"),
  18824. default: true
  18825. },
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(200, "feet")
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18834. {
  18835. front: {
  18836. height: math.unit(5 + 9 / 12, "feet"),
  18837. weight: math.unit(190, "lb"),
  18838. name: "Front",
  18839. image: {
  18840. source: "./media/characters/atticus/front.svg",
  18841. extra: 2934 / 2785,
  18842. bottom: 0.025
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(5 + 9 / 12, "feet"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Macro",
  18854. height: math.unit(180, "feet")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18860. {
  18861. side: {
  18862. height: math.unit(9, "feet"),
  18863. weight: math.unit(650, "lb"),
  18864. name: "Side",
  18865. image: {
  18866. source: "./media/characters/milo/side.svg",
  18867. extra: 2644 / 2310,
  18868. bottom: 0.032
  18869. }
  18870. },
  18871. },
  18872. [
  18873. {
  18874. name: "Normal",
  18875. height: math.unit(9, "feet"),
  18876. default: true
  18877. },
  18878. {
  18879. name: "Macro",
  18880. height: math.unit(300, "feet")
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18886. {
  18887. side: {
  18888. height: math.unit(8, "meters"),
  18889. weight: math.unit(90000, "kg"),
  18890. name: "Side",
  18891. image: {
  18892. source: "./media/characters/ijzer/side.svg",
  18893. extra: 2756 / 1600,
  18894. bottom: 0.01
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Small",
  18901. height: math.unit(3, "meters")
  18902. },
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(8, "meters"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Normal+",
  18910. height: math.unit(10, "meters")
  18911. },
  18912. {
  18913. name: "Bigger",
  18914. height: math.unit(24, "meters")
  18915. },
  18916. {
  18917. name: "Huge",
  18918. height: math.unit(80, "meters")
  18919. },
  18920. ]
  18921. ))
  18922. characterMakers.push(() => makeCharacter(
  18923. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18924. {
  18925. front: {
  18926. height: math.unit(6 + 2 / 12, "feet"),
  18927. weight: math.unit(153, "lb"),
  18928. name: "Front",
  18929. image: {
  18930. source: "./media/characters/luca-cervicum/front.svg",
  18931. extra: 370 / 327,
  18932. bottom: 0.015
  18933. }
  18934. },
  18935. back: {
  18936. height: math.unit(6 + 2 / 12, "feet"),
  18937. weight: math.unit(153, "lb"),
  18938. name: "Back",
  18939. image: {
  18940. source: "./media/characters/luca-cervicum/back.svg",
  18941. extra: 367 / 333,
  18942. bottom: 0.005
  18943. }
  18944. },
  18945. frontGear: {
  18946. height: math.unit(6 + 2 / 12, "feet"),
  18947. weight: math.unit(173, "lb"),
  18948. name: "Front (Gear)",
  18949. image: {
  18950. source: "./media/characters/luca-cervicum/front-gear.svg",
  18951. extra: 377 / 333,
  18952. bottom: 0.006
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(6 + 2 / 12, "feet"),
  18960. default: true
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(6 + 1 / 12, "feet"),
  18969. weight: math.unit(304, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/oliver/front.svg",
  18973. extra: 157 / 143,
  18974. bottom: 0.08
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(6 + 1 / 12, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(5 + 7 / 12, "feet"),
  18991. weight: math.unit(140, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/shane/front.svg",
  18995. extra: 304 / 289,
  18996. bottom: 0.005
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 7 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(5 + 9 / 12, "feet"),
  19013. weight: math.unit(178, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/shin/front.svg",
  19017. extra: 159 / 151,
  19018. bottom: 0.015
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 9 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(5 + 10 / 12, "feet"),
  19035. weight: math.unit(168, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/xerxes/front.svg",
  19039. extra: 282 / 260,
  19040. bottom: 0.045
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(5 + 10 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(6 + 7 / 12, "feet"),
  19057. weight: math.unit(208, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/chaska/front.svg",
  19061. extra: 332 / 319,
  19062. bottom: 0.015
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(6 + 7 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(5 + 8 / 12, "feet"),
  19079. weight: math.unit(208, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/enuk/front.svg",
  19083. extra: 437 / 406,
  19084. bottom: 0.02
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(5 + 8 / 12, "feet"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(5 + 10 / 12, "feet"),
  19101. weight: math.unit(252, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/bruun/front.svg",
  19105. extra: 197 / 187,
  19106. bottom: 0.012
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(5 + 10 / 12, "feet"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(6 + 10 / 12, "feet"),
  19123. weight: math.unit(255, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/alexeev/front.svg",
  19127. extra: 213 / 200,
  19128. bottom: 0.05
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(6 + 10 / 12, "feet"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(2 + 8 / 12, "feet"),
  19145. weight: math.unit(22, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/evelyn/front.svg",
  19149. extra: 208 / 180
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(2 + 8 / 12, "feet"),
  19157. default: true
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(5 + 9 / 12, "feet"),
  19166. weight: math.unit(139, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/inca/front.svg",
  19170. extra: 294 / 291,
  19171. bottom: 0.03
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(5 + 9 / 12, "feet"),
  19179. default: true
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19185. {
  19186. front: {
  19187. height: math.unit(5 + 1 / 12, "feet"),
  19188. weight: math.unit(84, "lb"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/magdalene/front.svg",
  19192. extra: 293 / 273
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(5 + 1 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(6 + 3 / 12, "feet"),
  19209. weight: math.unit(185, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/mera/front.svg",
  19213. extra: 291 / 277,
  19214. bottom: 0.03
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 3 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(6 + 7 / 12, "feet"),
  19231. weight: math.unit(160, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/ceres/front.svg",
  19235. extra: 1023 / 950,
  19236. bottom: 0.027
  19237. }
  19238. },
  19239. back: {
  19240. height: math.unit(6 + 7 / 12, "feet"),
  19241. weight: math.unit(160, "lb"),
  19242. name: "Back",
  19243. image: {
  19244. source: "./media/characters/ceres/back.svg",
  19245. extra: 1023 / 950
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(6 + 7 / 12, "feet"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(5 + 10 / 12, "feet"),
  19262. weight: math.unit(150, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/kris/front.svg",
  19266. extra: 885 / 803,
  19267. bottom: 0.03
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(5 + 10 / 12, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(7, "feet"),
  19284. weight: math.unit(120, "kg"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/taluthus/front.svg",
  19288. extra: 903 / 833,
  19289. bottom: 0.015
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(7, "feet"),
  19297. default: true
  19298. },
  19299. {
  19300. name: "Macro",
  19301. height: math.unit(300, "feet")
  19302. },
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19307. {
  19308. front: {
  19309. height: math.unit(5 + 9 / 12, "feet"),
  19310. weight: math.unit(145, "lb"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/dawn/front.svg",
  19314. extra: 2094 / 2016,
  19315. bottom: 0.025
  19316. }
  19317. },
  19318. back: {
  19319. height: math.unit(5 + 9 / 12, "feet"),
  19320. weight: math.unit(160, "lb"),
  19321. name: "Back",
  19322. image: {
  19323. source: "./media/characters/dawn/back.svg",
  19324. extra: 2112 / 2080,
  19325. bottom: 0.005
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(6 + 7 / 12, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19339. {
  19340. anthro: {
  19341. height: math.unit(8 + 3 / 12, "feet"),
  19342. weight: math.unit(450, "lb"),
  19343. name: "Anthro",
  19344. image: {
  19345. source: "./media/characters/arador/anthro.svg",
  19346. extra: 1835 / 1718,
  19347. bottom: 0.025
  19348. }
  19349. },
  19350. feral: {
  19351. height: math.unit(4, "feet"),
  19352. weight: math.unit(200, "lb"),
  19353. name: "Feral",
  19354. image: {
  19355. source: "./media/characters/arador/feral.svg",
  19356. extra: 1683 / 1514,
  19357. bottom: 0.07
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(8 + 3 / 12, "feet")
  19365. },
  19366. {
  19367. name: "Macro",
  19368. height: math.unit(82.5, "feet"),
  19369. default: true
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19375. {
  19376. front: {
  19377. height: math.unit(5 + 10 / 12, "feet"),
  19378. weight: math.unit(125, "lb"),
  19379. name: "Front",
  19380. image: {
  19381. source: "./media/characters/dharsi/front.svg",
  19382. extra: 716 / 630,
  19383. bottom: 0.035
  19384. }
  19385. },
  19386. },
  19387. [
  19388. {
  19389. name: "Nano",
  19390. height: math.unit(100, "nm")
  19391. },
  19392. {
  19393. name: "Micro",
  19394. height: math.unit(2, "inches")
  19395. },
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(5 + 10 / 12, "feet"),
  19399. default: true
  19400. },
  19401. {
  19402. name: "Macro",
  19403. height: math.unit(1000, "feet")
  19404. },
  19405. {
  19406. name: "Megamacro",
  19407. height: math.unit(10, "miles")
  19408. },
  19409. {
  19410. name: "Gigamacro",
  19411. height: math.unit(3000, "miles")
  19412. },
  19413. {
  19414. name: "Teramacro",
  19415. height: math.unit(500000, "miles")
  19416. },
  19417. {
  19418. name: "Teramacro+",
  19419. height: math.unit(30, "galaxies")
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(6, "feet"),
  19428. weight: math.unit(150, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/deathy/front.svg",
  19432. extra: 1552 / 1463,
  19433. bottom: 0.025
  19434. }
  19435. },
  19436. side: {
  19437. height: math.unit(6, "feet"),
  19438. weight: math.unit(150, "lb"),
  19439. name: "Side",
  19440. image: {
  19441. source: "./media/characters/deathy/side.svg",
  19442. extra: 1604 / 1455,
  19443. bottom: 0.025
  19444. }
  19445. },
  19446. back: {
  19447. height: math.unit(6, "feet"),
  19448. weight: math.unit(150, "lb"),
  19449. name: "Back",
  19450. image: {
  19451. source: "./media/characters/deathy/back.svg",
  19452. extra: 1580 / 1463,
  19453. bottom: 0.005
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Micro",
  19460. height: math.unit(5, "millimeters")
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(6 + 5 / 12, "feet"),
  19465. default: true
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19471. {
  19472. front: {
  19473. height: math.unit(16, "feet"),
  19474. weight: math.unit(4000, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/juniper/front.svg",
  19478. bottom: 0.04
  19479. }
  19480. },
  19481. },
  19482. [
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(16, "feet"),
  19486. default: true
  19487. },
  19488. ]
  19489. ))
  19490. characterMakers.push(() => makeCharacter(
  19491. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19492. {
  19493. front: {
  19494. height: math.unit(6, "feet"),
  19495. weight: math.unit(150, "lb"),
  19496. name: "Front",
  19497. image: {
  19498. source: "./media/characters/hipster/front.svg",
  19499. extra: 1312 / 1209,
  19500. bottom: 0.025
  19501. }
  19502. },
  19503. back: {
  19504. height: math.unit(6, "feet"),
  19505. weight: math.unit(150, "lb"),
  19506. name: "Back",
  19507. image: {
  19508. source: "./media/characters/hipster/back.svg",
  19509. extra: 1281 / 1196,
  19510. bottom: 0.01
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Micro",
  19517. height: math.unit(1, "mm")
  19518. },
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(4, "inches"),
  19522. default: true
  19523. },
  19524. {
  19525. name: "Macro",
  19526. height: math.unit(500, "feet")
  19527. },
  19528. {
  19529. name: "Megamacro",
  19530. height: math.unit(1000, "miles")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(6, "feet"),
  19539. weight: math.unit(150, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/tendirmuldr/front.svg",
  19543. extra: 1878 / 1772,
  19544. bottom: 0.015
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Megamacro",
  19551. height: math.unit(1500, "miles"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19558. {
  19559. front: {
  19560. height: math.unit(14, "feet"),
  19561. weight: math.unit(12000, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/mort/front.svg",
  19565. extra: 365 / 318,
  19566. bottom: 0.01
  19567. }
  19568. },
  19569. side: {
  19570. height: math.unit(14, "feet"),
  19571. weight: math.unit(12000, "lb"),
  19572. name: "Side",
  19573. image: {
  19574. source: "./media/characters/mort/side.svg",
  19575. extra: 365 / 318,
  19576. bottom: 0.052
  19577. },
  19578. default: true
  19579. },
  19580. back: {
  19581. height: math.unit(14, "feet"),
  19582. weight: math.unit(12000, "lb"),
  19583. name: "Back",
  19584. image: {
  19585. source: "./media/characters/mort/back.svg",
  19586. extra: 371 / 332,
  19587. bottom: 0.18
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(14, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19601. {
  19602. front: {
  19603. height: math.unit(8, "feet"),
  19604. weight: math.unit(1, "ton"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/lycoa/front.svg",
  19608. extra: 1875 / 1789,
  19609. bottom: 0.022
  19610. }
  19611. },
  19612. back: {
  19613. height: math.unit(8, "feet"),
  19614. weight: math.unit(1, "ton"),
  19615. name: "Back",
  19616. image: {
  19617. source: "./media/characters/lycoa/back.svg",
  19618. extra: 1835 / 1781,
  19619. bottom: 0.03
  19620. }
  19621. },
  19622. head: {
  19623. height: math.unit(2.1, "feet"),
  19624. name: "Head",
  19625. image: {
  19626. source: "./media/characters/lycoa/head.svg"
  19627. }
  19628. },
  19629. tailmaw: {
  19630. height: math.unit(1.9, "feet"),
  19631. name: "Tailmaw",
  19632. image: {
  19633. source: "./media/characters/lycoa/tailmaw.svg"
  19634. }
  19635. },
  19636. tentacles: {
  19637. height: math.unit(2.1, "feet"),
  19638. name: "Tentacles",
  19639. image: {
  19640. source: "./media/characters/lycoa/tentacles.svg"
  19641. }
  19642. },
  19643. dick: {
  19644. height: math.unit(1.73, "feet"),
  19645. name: "Dick",
  19646. image: {
  19647. source: "./media/characters/lycoa/dick.svg"
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(8, "feet"),
  19655. default: true
  19656. },
  19657. {
  19658. name: "Macro",
  19659. height: math.unit(30, "feet")
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19665. {
  19666. front: {
  19667. height: math.unit(4 + 2 / 12, "feet"),
  19668. weight: math.unit(70, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/naldara/front.svg",
  19672. extra: 841 / 720,
  19673. bottom: 0.04
  19674. }
  19675. },
  19676. naga: {
  19677. height: math.unit(23, "feet"),
  19678. weight: math.unit(15000, "kg"),
  19679. name: "Naga",
  19680. image: {
  19681. source: "./media/characters/naldara/naga.svg",
  19682. extra: 3290 / 2959,
  19683. bottom: 124 / 3432
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(4 + 2 / 12, "feet"),
  19691. default: true
  19692. },
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19697. {
  19698. front: {
  19699. height: math.unit(13 + 7 / 12, "feet"),
  19700. weight: math.unit(1500, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/briar/front.svg",
  19704. extra: 626 / 596,
  19705. bottom: 0.08
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(13 + 7 / 12, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19719. {
  19720. side: {
  19721. height: math.unit(10, "feet"),
  19722. weight: math.unit(500, "lb"),
  19723. name: "Side",
  19724. image: {
  19725. source: "./media/characters/vanguard/side.svg",
  19726. extra: 502 / 425,
  19727. bottom: 0.087
  19728. }
  19729. },
  19730. },
  19731. [
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(10, "feet"),
  19735. default: true
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(7.5, "feet"),
  19744. weight: math.unit(2, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/artemis/front.svg",
  19748. extra: 1192 / 1075,
  19749. bottom: 0.07
  19750. }
  19751. },
  19752. frontNsfw: {
  19753. height: math.unit(7.5, "feet"),
  19754. weight: math.unit(2, "lb"),
  19755. name: "Front (NSFW)",
  19756. image: {
  19757. source: "./media/characters/artemis/front-nsfw.svg",
  19758. extra: 1192 / 1075,
  19759. bottom: 0.07
  19760. }
  19761. },
  19762. frontNsfwer: {
  19763. height: math.unit(7.5, "feet"),
  19764. weight: math.unit(2, "lb"),
  19765. name: "Front (NSFW-er)",
  19766. image: {
  19767. source: "./media/characters/artemis/front-nsfwer.svg",
  19768. extra: 1192 / 1075,
  19769. bottom: 0.07
  19770. }
  19771. },
  19772. side: {
  19773. height: math.unit(7.5, "feet"),
  19774. weight: math.unit(2, "lb"),
  19775. name: "Side",
  19776. image: {
  19777. source: "./media/characters/artemis/side.svg",
  19778. extra: 1192 / 1075,
  19779. bottom: 0.07
  19780. }
  19781. },
  19782. sideNsfw: {
  19783. height: math.unit(7.5, "feet"),
  19784. weight: math.unit(2, "lb"),
  19785. name: "Side (NSFW)",
  19786. image: {
  19787. source: "./media/characters/artemis/side-nsfw.svg",
  19788. extra: 1192 / 1075,
  19789. bottom: 0.07
  19790. }
  19791. },
  19792. sideNsfwer: {
  19793. height: math.unit(7.5, "feet"),
  19794. weight: math.unit(2, "lb"),
  19795. name: "Side (NSFW-er)",
  19796. image: {
  19797. source: "./media/characters/artemis/side-nsfwer.svg",
  19798. extra: 1192 / 1075,
  19799. bottom: 0.07
  19800. }
  19801. },
  19802. maw: {
  19803. height: math.unit(1.1, "feet"),
  19804. name: "Maw",
  19805. image: {
  19806. source: "./media/characters/artemis/maw.svg"
  19807. }
  19808. },
  19809. stomach: {
  19810. height: math.unit(0.95, "feet"),
  19811. name: "Stomach",
  19812. image: {
  19813. source: "./media/characters/artemis/stomach.svg"
  19814. }
  19815. },
  19816. dickCanine: {
  19817. height: math.unit(1, "feet"),
  19818. name: "Dick (Canine)",
  19819. image: {
  19820. source: "./media/characters/artemis/dick-canine.svg"
  19821. }
  19822. },
  19823. dickEquine: {
  19824. height: math.unit(0.85, "feet"),
  19825. name: "Dick (Equine)",
  19826. image: {
  19827. source: "./media/characters/artemis/dick-equine.svg"
  19828. }
  19829. },
  19830. dickExotic: {
  19831. height: math.unit(0.85, "feet"),
  19832. name: "Dick (Exotic)",
  19833. image: {
  19834. source: "./media/characters/artemis/dick-exotic.svg"
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(7.5, "feet"),
  19842. default: true
  19843. },
  19844. {
  19845. name: "Enlarged",
  19846. height: math.unit(12, "feet")
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19852. {
  19853. front: {
  19854. height: math.unit(5 + 3 / 12, "feet"),
  19855. weight: math.unit(160, "lb"),
  19856. name: "Front",
  19857. image: {
  19858. source: "./media/characters/kira/front.svg",
  19859. extra: 906 / 786,
  19860. bottom: 0.01
  19861. }
  19862. },
  19863. back: {
  19864. height: math.unit(5 + 3 / 12, "feet"),
  19865. weight: math.unit(160, "lb"),
  19866. name: "Back",
  19867. image: {
  19868. source: "./media/characters/kira/back.svg",
  19869. extra: 882 / 757,
  19870. bottom: 0.005
  19871. }
  19872. },
  19873. frontDressed: {
  19874. height: math.unit(5 + 3 / 12, "feet"),
  19875. weight: math.unit(160, "lb"),
  19876. name: "Front (Dressed)",
  19877. image: {
  19878. source: "./media/characters/kira/front-dressed.svg",
  19879. extra: 906 / 786,
  19880. bottom: 0.01
  19881. }
  19882. },
  19883. beans: {
  19884. height: math.unit(0.92, "feet"),
  19885. name: "Beans",
  19886. image: {
  19887. source: "./media/characters/kira/beans.svg"
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(5 + 3 / 12, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(5 + 4 / 12, "feet"),
  19904. weight: math.unit(145, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/scramble/front.svg",
  19908. extra: 763 / 727,
  19909. bottom: 0.05
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(5 + 4 / 12, "feet"),
  19914. weight: math.unit(145, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/scramble/back.svg",
  19918. extra: 826 / 737,
  19919. bottom: 0.002
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(5 + 4 / 12, "feet"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19933. {
  19934. side: {
  19935. height: math.unit(6 + 2 / 12, "feet"),
  19936. weight: math.unit(190, "lb"),
  19937. name: "Side",
  19938. image: {
  19939. source: "./media/characters/biscuit/side.svg",
  19940. extra: 858 / 791,
  19941. bottom: 0.044
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(6 + 2 / 12, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(5 + 2 / 12, "feet"),
  19958. weight: math.unit(120, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/poffin/front.svg",
  19962. extra: 786 / 680,
  19963. bottom: 0.005
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(5 + 2 / 12, "feet"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(6 + 3 / 12, "feet"),
  19980. weight: math.unit(519, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/dhari/front.svg",
  19984. extra: 1048 / 946,
  19985. bottom: 0.015
  19986. }
  19987. },
  19988. back: {
  19989. height: math.unit(6 + 3 / 12, "feet"),
  19990. weight: math.unit(519, "lb"),
  19991. name: "Back",
  19992. image: {
  19993. source: "./media/characters/dhari/back.svg",
  19994. extra: 1048 / 931,
  19995. bottom: 0.005
  19996. }
  19997. },
  19998. frontDressed: {
  19999. height: math.unit(6 + 3 / 12, "feet"),
  20000. weight: math.unit(519, "lb"),
  20001. name: "Front (Dressed)",
  20002. image: {
  20003. source: "./media/characters/dhari/front-dressed.svg",
  20004. extra: 1713 / 1546,
  20005. bottom: 0.02
  20006. }
  20007. },
  20008. backDressed: {
  20009. height: math.unit(6 + 3 / 12, "feet"),
  20010. weight: math.unit(519, "lb"),
  20011. name: "Back (Dressed)",
  20012. image: {
  20013. source: "./media/characters/dhari/back-dressed.svg",
  20014. extra: 1699 / 1537,
  20015. bottom: 0.01
  20016. }
  20017. },
  20018. maw: {
  20019. height: math.unit(0.95, "feet"),
  20020. name: "Maw",
  20021. image: {
  20022. source: "./media/characters/dhari/maw.svg"
  20023. }
  20024. },
  20025. wereFront: {
  20026. height: math.unit(12 + 8 / 12, "feet"),
  20027. weight: math.unit(4000, "lb"),
  20028. name: "Front (Were)",
  20029. image: {
  20030. source: "./media/characters/dhari/were-front.svg",
  20031. extra: 1065 / 969,
  20032. bottom: 0.015
  20033. }
  20034. },
  20035. wereBack: {
  20036. height: math.unit(12 + 8 / 12, "feet"),
  20037. weight: math.unit(4000, "lb"),
  20038. name: "Back (Were)",
  20039. image: {
  20040. source: "./media/characters/dhari/were-back.svg",
  20041. extra: 1065 / 969,
  20042. bottom: 0.012
  20043. }
  20044. },
  20045. wereMaw: {
  20046. height: math.unit(0.625, "meters"),
  20047. name: "Maw (Were)",
  20048. image: {
  20049. source: "./media/characters/dhari/were-maw.svg"
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(6 + 3 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20063. {
  20064. anthro: {
  20065. height: math.unit(5 + 7 / 12, "feet"),
  20066. weight: math.unit(175, "lb"),
  20067. name: "Anthro",
  20068. image: {
  20069. source: "./media/characters/rena-dyne/anthro.svg",
  20070. extra: 1849 / 1785,
  20071. bottom: 0.005
  20072. }
  20073. },
  20074. taur: {
  20075. height: math.unit(15 + 6 / 12, "feet"),
  20076. weight: math.unit(8000, "lb"),
  20077. name: "Taur",
  20078. image: {
  20079. source: "./media/characters/rena-dyne/taur.svg",
  20080. extra: 2315 / 2234,
  20081. bottom: 0.033
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5 + 7 / 12, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20095. {
  20096. front: {
  20097. height: math.unit(8, "feet"),
  20098. weight: math.unit(600, "lb"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/weremeep/front.svg",
  20102. extra: 967 / 862,
  20103. bottom: 0.01
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(8, "feet"),
  20111. default: true
  20112. },
  20113. {
  20114. name: "Lorg",
  20115. height: math.unit(12, "feet")
  20116. },
  20117. {
  20118. name: "Oh Lawd She Comin'",
  20119. height: math.unit(20, "feet")
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20125. {
  20126. front: {
  20127. height: math.unit(4, "feet"),
  20128. weight: math.unit(90, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/reza/front.svg",
  20132. extra: 1183 / 1111,
  20133. bottom: 0.017
  20134. }
  20135. },
  20136. back: {
  20137. height: math.unit(4, "feet"),
  20138. weight: math.unit(90, "lb"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/reza/back.svg",
  20142. extra: 1183 / 1111,
  20143. bottom: 0.01
  20144. }
  20145. },
  20146. drake: {
  20147. height: math.unit(30, "feet"),
  20148. weight: math.unit(246960, "lb"),
  20149. name: "Drake",
  20150. image: {
  20151. source: "./media/characters/reza/drake.svg",
  20152. extra: 2350 / 2024,
  20153. bottom: 60.7 / 2403
  20154. }
  20155. },
  20156. },
  20157. [
  20158. {
  20159. name: "Normal",
  20160. height: math.unit(4, "feet"),
  20161. default: true
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20167. {
  20168. side: {
  20169. height: math.unit(15, "feet"),
  20170. weight: math.unit(14, "tons"),
  20171. name: "Side",
  20172. image: {
  20173. source: "./media/characters/athea/side.svg",
  20174. extra: 960 / 540,
  20175. bottom: 0.003
  20176. }
  20177. },
  20178. sitting: {
  20179. height: math.unit(6 * 2.85, "feet"),
  20180. weight: math.unit(14, "tons"),
  20181. name: "Sitting",
  20182. image: {
  20183. source: "./media/characters/athea/sitting.svg",
  20184. extra: 621 / 581,
  20185. bottom: 0.075
  20186. }
  20187. },
  20188. maw: {
  20189. height: math.unit(7.59498031496063, "feet"),
  20190. name: "Maw",
  20191. image: {
  20192. source: "./media/characters/athea/maw.svg"
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Lap Cat",
  20199. height: math.unit(2.5, "feet")
  20200. },
  20201. {
  20202. name: "Minimacro",
  20203. height: math.unit(15, "feet"),
  20204. default: true
  20205. },
  20206. {
  20207. name: "Macro",
  20208. height: math.unit(120, "feet")
  20209. },
  20210. {
  20211. name: "Macro+",
  20212. height: math.unit(640, "feet")
  20213. },
  20214. {
  20215. name: "Colossus",
  20216. height: math.unit(2.2, "miles")
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(8 + 8 / 12, "feet"),
  20225. weight: math.unit(130, "kg"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/seroko/front.svg",
  20229. extra: 1385 / 1280,
  20230. bottom: 0.025
  20231. }
  20232. },
  20233. back: {
  20234. height: math.unit(8 + 8 / 12, "feet"),
  20235. weight: math.unit(130, "kg"),
  20236. name: "Back",
  20237. image: {
  20238. source: "./media/characters/seroko/back.svg",
  20239. extra: 1369 / 1238,
  20240. bottom: 0.018
  20241. }
  20242. },
  20243. frontDressed: {
  20244. height: math.unit(8 + 8 / 12, "feet"),
  20245. weight: math.unit(130, "kg"),
  20246. name: "Front (Dressed)",
  20247. image: {
  20248. source: "./media/characters/seroko/front-dressed.svg",
  20249. extra: 1366 / 1275,
  20250. bottom: 0.03
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(8 + 8 / 12, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(5.5, "feet"),
  20267. weight: math.unit(160, "lb"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/quatzi/front.svg",
  20271. extra: 2346 / 2242,
  20272. bottom: 0.015
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(5.5, "feet"),
  20280. default: true
  20281. },
  20282. {
  20283. name: "Big",
  20284. height: math.unit(7.7, "feet")
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(5 + 11 / 12, "feet"),
  20293. weight: math.unit(180, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/sen/front.svg",
  20297. extra: 1321 / 1254,
  20298. bottom: 0.015
  20299. }
  20300. },
  20301. side: {
  20302. height: math.unit(5 + 11 / 12, "feet"),
  20303. weight: math.unit(180, "lb"),
  20304. name: "Side",
  20305. image: {
  20306. source: "./media/characters/sen/side.svg",
  20307. extra: 1321 / 1254,
  20308. bottom: 0.007
  20309. }
  20310. },
  20311. back: {
  20312. height: math.unit(5 + 11 / 12, "feet"),
  20313. weight: math.unit(180, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/sen/back.svg",
  20317. extra: 1321 / 1254
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(5 + 11 / 12, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20331. {
  20332. front: {
  20333. height: math.unit(166.6, "cm"),
  20334. weight: math.unit(66.6, "kg"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/fruity/front.svg",
  20338. extra: 1510 / 1386,
  20339. bottom: 0.04
  20340. }
  20341. },
  20342. back: {
  20343. height: math.unit(166.6, "cm"),
  20344. weight: math.unit(66.6, "lb"),
  20345. name: "Back",
  20346. image: {
  20347. source: "./media/characters/fruity/back.svg",
  20348. extra: 1563 / 1435,
  20349. bottom: 0.005
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(166.6, "cm"),
  20357. default: true
  20358. },
  20359. {
  20360. name: "Demonic",
  20361. height: math.unit(166.6, "feet")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20367. {
  20368. side: {
  20369. height: math.unit(10, "feet"),
  20370. weight: math.unit(500, "lb"),
  20371. name: "Side",
  20372. image: {
  20373. source: "./media/characters/zost/side.svg",
  20374. extra: 966 / 880,
  20375. bottom: 0.075
  20376. }
  20377. },
  20378. mawFront: {
  20379. height: math.unit(1.08, "meters"),
  20380. name: "Maw (Front)",
  20381. image: {
  20382. source: "./media/characters/zost/maw-front.svg"
  20383. }
  20384. },
  20385. mawSide: {
  20386. height: math.unit(2.66, "feet"),
  20387. name: "Maw (Side)",
  20388. image: {
  20389. source: "./media/characters/zost/maw-side.svg"
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(10, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(5 + 4 / 12, "feet"),
  20406. weight: math.unit(120, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/luci/front.svg",
  20410. extra: 1985 / 1884,
  20411. bottom: 0.04
  20412. }
  20413. },
  20414. back: {
  20415. height: math.unit(5 + 4 / 12, "feet"),
  20416. weight: math.unit(120, "lb"),
  20417. name: "Back",
  20418. image: {
  20419. source: "./media/characters/luci/back.svg",
  20420. extra: 1892 / 1791,
  20421. bottom: 0.002
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(5 + 4 / 12, "feet"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(1500, "feet"),
  20438. weight: math.unit(3.8e6, "tons"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/2th/front.svg",
  20442. extra: 3489 / 3350,
  20443. bottom: 0.1
  20444. }
  20445. },
  20446. foot: {
  20447. height: math.unit(461, "feet"),
  20448. name: "Foot",
  20449. image: {
  20450. source: "./media/characters/2th/foot.svg"
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "\"Micro\"",
  20457. height: math.unit(15 + 7 / 12, "feet")
  20458. },
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(1500, "feet"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Macro",
  20466. height: math.unit(5000, "feet")
  20467. },
  20468. {
  20469. name: "Megamacro",
  20470. height: math.unit(15, "miles")
  20471. },
  20472. {
  20473. name: "Gigamacro",
  20474. height: math.unit(4000, "miles")
  20475. },
  20476. {
  20477. name: "Galactic",
  20478. height: math.unit(50, "AU")
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20484. {
  20485. front: {
  20486. height: math.unit(5 + 6 / 12, "feet"),
  20487. weight: math.unit(220, "lb"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/amethyst/front.svg",
  20491. extra: 2078 / 2040,
  20492. bottom: 0.045
  20493. }
  20494. },
  20495. back: {
  20496. height: math.unit(5 + 6 / 12, "feet"),
  20497. weight: math.unit(220, "lb"),
  20498. name: "Back",
  20499. image: {
  20500. source: "./media/characters/amethyst/back.svg",
  20501. extra: 2021 / 1989,
  20502. bottom: 0.02
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Normal",
  20509. height: math.unit(5 + 6 / 12, "feet"),
  20510. default: true
  20511. },
  20512. ]
  20513. ))
  20514. characterMakers.push(() => makeCharacter(
  20515. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20516. {
  20517. front: {
  20518. height: math.unit(4 + 11 / 12, "feet"),
  20519. weight: math.unit(120, "lb"),
  20520. name: "Front",
  20521. image: {
  20522. source: "./media/characters/yumi-akiyama/front.svg",
  20523. extra: 1327 / 1235,
  20524. bottom: 0.02
  20525. }
  20526. },
  20527. back: {
  20528. height: math.unit(4 + 11 / 12, "feet"),
  20529. weight: math.unit(120, "lb"),
  20530. name: "Back",
  20531. image: {
  20532. source: "./media/characters/yumi-akiyama/back.svg",
  20533. extra: 1287 / 1245,
  20534. bottom: 0.002
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Galactic",
  20541. height: math.unit(50, "galaxies"),
  20542. default: true
  20543. },
  20544. {
  20545. name: "Universal",
  20546. height: math.unit(100, "universes")
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(8, "feet"),
  20555. weight: math.unit(500, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/rifter-yrmori/front.svg",
  20559. extra: 1180 / 1125,
  20560. bottom: 0.02
  20561. }
  20562. },
  20563. back: {
  20564. height: math.unit(8, "feet"),
  20565. weight: math.unit(500, "lb"),
  20566. name: "Back",
  20567. image: {
  20568. source: "./media/characters/rifter-yrmori/back.svg",
  20569. extra: 1190 / 1145,
  20570. bottom: 0.001
  20571. }
  20572. },
  20573. wings: {
  20574. height: math.unit(7.75, "feet"),
  20575. weight: math.unit(500, "lb"),
  20576. name: "Wings",
  20577. image: {
  20578. source: "./media/characters/rifter-yrmori/wings.svg",
  20579. extra: 1357 / 1285
  20580. }
  20581. },
  20582. maw: {
  20583. height: math.unit(0.8, "feet"),
  20584. name: "Maw",
  20585. image: {
  20586. source: "./media/characters/rifter-yrmori/maw.svg"
  20587. }
  20588. },
  20589. mawfront: {
  20590. height: math.unit(1.45, "feet"),
  20591. name: "Maw (Front)",
  20592. image: {
  20593. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(8, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(42, "meters")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20611. {
  20612. were: {
  20613. height: math.unit(25 + 6 / 12, "feet"),
  20614. weight: math.unit(10000, "lb"),
  20615. name: "Were",
  20616. image: {
  20617. source: "./media/characters/tahajin/were.svg",
  20618. extra: 801 / 770,
  20619. bottom: 0.042
  20620. }
  20621. },
  20622. aquatic: {
  20623. height: math.unit(6 + 4 / 12, "feet"),
  20624. weight: math.unit(160, "lb"),
  20625. name: "Aquatic",
  20626. image: {
  20627. source: "./media/characters/tahajin/aquatic.svg",
  20628. extra: 572 / 542,
  20629. bottom: 0.04
  20630. }
  20631. },
  20632. chow: {
  20633. height: math.unit(8 + 11 / 12, "feet"),
  20634. weight: math.unit(450, "lb"),
  20635. name: "Chow",
  20636. image: {
  20637. source: "./media/characters/tahajin/chow.svg",
  20638. extra: 660 / 640,
  20639. bottom: 0.015
  20640. }
  20641. },
  20642. demiNaga: {
  20643. height: math.unit(6 + 8 / 12, "feet"),
  20644. weight: math.unit(300, "lb"),
  20645. name: "Demi Naga",
  20646. image: {
  20647. source: "./media/characters/tahajin/demi-naga.svg",
  20648. extra: 643 / 615,
  20649. bottom: 0.1
  20650. }
  20651. },
  20652. data: {
  20653. height: math.unit(5, "inches"),
  20654. weight: math.unit(0.1, "lb"),
  20655. name: "Data",
  20656. image: {
  20657. source: "./media/characters/tahajin/data.svg"
  20658. }
  20659. },
  20660. fluu: {
  20661. height: math.unit(5 + 7 / 12, "feet"),
  20662. weight: math.unit(140, "lb"),
  20663. name: "Fluu",
  20664. image: {
  20665. source: "./media/characters/tahajin/fluu.svg",
  20666. extra: 628 / 592,
  20667. bottom: 0.02
  20668. }
  20669. },
  20670. starWarrior: {
  20671. height: math.unit(4 + 5 / 12, "feet"),
  20672. weight: math.unit(50, "lb"),
  20673. name: "Star Warrior",
  20674. image: {
  20675. source: "./media/characters/tahajin/star-warrior.svg"
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(25 + 6 / 12, "feet"),
  20683. default: true
  20684. },
  20685. ]
  20686. ))
  20687. characterMakers.push(() => makeCharacter(
  20688. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20689. {
  20690. front: {
  20691. height: math.unit(8, "feet"),
  20692. weight: math.unit(350, "lb"),
  20693. name: "Front",
  20694. image: {
  20695. source: "./media/characters/gabira/front.svg",
  20696. extra: 608 / 580,
  20697. bottom: 0.03
  20698. }
  20699. },
  20700. back: {
  20701. height: math.unit(8, "feet"),
  20702. weight: math.unit(350, "lb"),
  20703. name: "Back",
  20704. image: {
  20705. source: "./media/characters/gabira/back.svg",
  20706. extra: 608 / 580,
  20707. bottom: 0.03
  20708. }
  20709. },
  20710. },
  20711. [
  20712. {
  20713. name: "Normal",
  20714. height: math.unit(8, "feet"),
  20715. default: true
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(5 + 3 / 12, "feet"),
  20724. weight: math.unit(137, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/sasha-katraine/front.svg",
  20728. bottom: 0.045
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(5, "inches")
  20736. },
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 3 / 12, "feet"),
  20740. default: true
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20746. {
  20747. side: {
  20748. height: math.unit(4, "inches"),
  20749. weight: math.unit(200, "grams"),
  20750. name: "Side",
  20751. image: {
  20752. source: "./media/characters/der/side.svg",
  20753. extra: 719 / 400,
  20754. bottom: 30.6 / 749.9187
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Micro",
  20761. height: math.unit(4, "inches"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20768. {
  20769. side: {
  20770. height: math.unit(30, "meters"),
  20771. weight: math.unit(700, "tonnes"),
  20772. name: "Side",
  20773. image: {
  20774. source: "./media/characters/fixerdragon/side.svg",
  20775. extra: (1293.0514 - 116.03) / 1106.86,
  20776. bottom: 116.03 / 1293.0514
  20777. }
  20778. },
  20779. },
  20780. [
  20781. {
  20782. name: "Planck",
  20783. height: math.unit(1.6e-35, "meters")
  20784. },
  20785. {
  20786. name: "Micro",
  20787. height: math.unit(0.4, "meters")
  20788. },
  20789. {
  20790. name: "Normal",
  20791. height: math.unit(30, "meters"),
  20792. default: true
  20793. },
  20794. {
  20795. name: "Megamacro",
  20796. height: math.unit(1.2, "megameters")
  20797. },
  20798. {
  20799. name: "Teramacro",
  20800. height: math.unit(130, "terameters")
  20801. },
  20802. {
  20803. name: "Yottamacro",
  20804. height: math.unit(6200, "yottameters")
  20805. },
  20806. ]
  20807. ));
  20808. characterMakers.push(() => makeCharacter(
  20809. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20810. {
  20811. front: {
  20812. height: math.unit(8, "feet"),
  20813. weight: math.unit(250, "lb"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/kite/front.svg",
  20817. extra: 2796 / 2659,
  20818. bottom: 0.002
  20819. }
  20820. },
  20821. },
  20822. [
  20823. {
  20824. name: "Normal",
  20825. height: math.unit(8, "feet"),
  20826. default: true
  20827. },
  20828. {
  20829. name: "Macro",
  20830. height: math.unit(360, "feet")
  20831. },
  20832. {
  20833. name: "Megamacro",
  20834. height: math.unit(1500, "feet")
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20840. {
  20841. front: {
  20842. height: math.unit(5 + 10 / 12, "feet"),
  20843. weight: math.unit(150, "lb"),
  20844. name: "Front",
  20845. image: {
  20846. source: "./media/characters/poojawa-vynar/front.svg",
  20847. extra: (1506.1547 - 55) / 1356.6,
  20848. bottom: 55 / 1506.1547
  20849. }
  20850. },
  20851. frontTailless: {
  20852. height: math.unit(5 + 10 / 12, "feet"),
  20853. weight: math.unit(150, "lb"),
  20854. name: "Front (Tailless)",
  20855. image: {
  20856. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20857. extra: (1506.1547 - 55) / 1356.6,
  20858. bottom: 55 / 1506.1547
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(5 + 10 / 12, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(293, "meters"),
  20875. weight: math.unit(70400, "tons"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/violette/front.svg",
  20879. extra: 1227 / 1180,
  20880. bottom: 0.005
  20881. }
  20882. },
  20883. back: {
  20884. height: math.unit(293, "meters"),
  20885. weight: math.unit(70400, "tons"),
  20886. name: "Back",
  20887. image: {
  20888. source: "./media/characters/violette/back.svg",
  20889. extra: 1227 / 1180,
  20890. bottom: 0.005
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Macro",
  20897. height: math.unit(293, "meters"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(1050, "feet"),
  20907. weight: math.unit(200000, "tons"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/alessandra/front.svg",
  20911. extra: 960 / 912,
  20912. bottom: 0.06
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Macro",
  20919. height: math.unit(1050, "feet")
  20920. },
  20921. {
  20922. name: "Macro+",
  20923. height: math.unit(900, "meters"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(5, "feet"),
  20933. weight: math.unit(187, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/person/front.svg",
  20937. extra: 3087 / 2945,
  20938. bottom: 91 / 3181
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Micro",
  20945. height: math.unit(3, "inches")
  20946. },
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(5, "feet"),
  20950. default: true
  20951. },
  20952. {
  20953. name: "Macro",
  20954. height: math.unit(90, "feet")
  20955. },
  20956. {
  20957. name: "Max Size",
  20958. height: math.unit(280, "feet")
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(4.5, "meters"),
  20967. weight: math.unit(3200, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/ty/front.svg",
  20971. extra: 1038 / 960,
  20972. bottom: 31.156 / 1068
  20973. }
  20974. },
  20975. back: {
  20976. height: math.unit(4.5, "meters"),
  20977. weight: math.unit(3200, "lb"),
  20978. name: "Back",
  20979. image: {
  20980. source: "./media/characters/ty/back.svg",
  20981. extra: 1044 / 966,
  20982. bottom: 7.48 / 1049
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(4.5, "meters"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(5 + 4 / 12, "feet"),
  20999. weight: math.unit(115, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/rocky/front.svg",
  21003. extra: 1012 / 975,
  21004. bottom: 54 / 1066
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(5 + 4 / 12, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21018. {
  21019. upright: {
  21020. height: math.unit(6, "meters"),
  21021. weight: math.unit(4000, "kg"),
  21022. name: "Upright",
  21023. image: {
  21024. source: "./media/characters/ruin/upright.svg",
  21025. extra: 668 / 661,
  21026. bottom: 42 / 799.8396
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(6, "meters"),
  21034. default: true
  21035. },
  21036. ]
  21037. ))
  21038. characterMakers.push(() => makeCharacter(
  21039. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21040. {
  21041. front: {
  21042. height: math.unit(5, "feet"),
  21043. weight: math.unit(106, "lb"),
  21044. name: "Front",
  21045. image: {
  21046. source: "./media/characters/robin/front.svg",
  21047. extra: 862 / 799,
  21048. bottom: 42.4 / 914.8856
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(5, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21062. {
  21063. side: {
  21064. height: math.unit(3, "feet"),
  21065. weight: math.unit(225, "lb"),
  21066. name: "Side",
  21067. image: {
  21068. source: "./media/characters/saian/side.svg",
  21069. extra: 566 / 356,
  21070. bottom: 79.7 / 643
  21071. }
  21072. },
  21073. maw: {
  21074. height: math.unit(2.85, "feet"),
  21075. name: "Maw",
  21076. image: {
  21077. source: "./media/characters/saian/maw.svg"
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(3, "feet"),
  21085. default: true
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21091. {
  21092. side: {
  21093. height: math.unit(8, "feet"),
  21094. weight: math.unit(300, "lb"),
  21095. name: "Side",
  21096. image: {
  21097. source: "./media/characters/equus-silvermane/side.svg",
  21098. extra: 2176 / 2050,
  21099. bottom: 65.7 / 2245
  21100. }
  21101. },
  21102. front: {
  21103. height: math.unit(8, "feet"),
  21104. weight: math.unit(300, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/equus-silvermane/front.svg",
  21108. extra: 4633 / 4400,
  21109. bottom: 71.3 / 4706.915
  21110. }
  21111. },
  21112. sideStepping: {
  21113. height: math.unit(8, "feet"),
  21114. weight: math.unit(300, "lb"),
  21115. name: "Side (Stepping)",
  21116. image: {
  21117. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21118. extra: 1968 / 1860,
  21119. bottom: 16.4 / 1989
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Normal",
  21126. height: math.unit(8, "feet")
  21127. },
  21128. {
  21129. name: "Minimacro",
  21130. height: math.unit(75, "feet"),
  21131. default: true
  21132. },
  21133. {
  21134. name: "Macro",
  21135. height: math.unit(150, "feet")
  21136. },
  21137. {
  21138. name: "Macro+",
  21139. height: math.unit(1000, "feet")
  21140. },
  21141. {
  21142. name: "Megamacro",
  21143. height: math.unit(1, "mile")
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21149. {
  21150. side: {
  21151. height: math.unit(20, "feet"),
  21152. weight: math.unit(30000, "kg"),
  21153. name: "Side",
  21154. image: {
  21155. source: "./media/characters/windar/side.svg",
  21156. extra: 1491 / 1248,
  21157. bottom: 82.56 / 1568
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(20, "feet"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21171. {
  21172. side: {
  21173. height: math.unit(15.66, "feet"),
  21174. weight: math.unit(150, "lb"),
  21175. name: "Side",
  21176. image: {
  21177. source: "./media/characters/melody/side.svg",
  21178. extra: 1097 / 944,
  21179. bottom: 11.8 / 1109
  21180. }
  21181. },
  21182. sideOutfit: {
  21183. height: math.unit(15.66, "feet"),
  21184. weight: math.unit(150, "lb"),
  21185. name: "Side (Outfit)",
  21186. image: {
  21187. source: "./media/characters/melody/side-outfit.svg",
  21188. extra: 1097 / 944,
  21189. bottom: 11.8 / 1109
  21190. }
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(15.66, "feet"),
  21197. default: true
  21198. },
  21199. ]
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21203. {
  21204. front: {
  21205. height: math.unit(8, "feet"),
  21206. weight: math.unit(325, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/windera/front.svg",
  21210. extra: 3180 / 2845,
  21211. bottom: 178 / 3365
  21212. }
  21213. },
  21214. },
  21215. [
  21216. {
  21217. name: "Normal",
  21218. height: math.unit(8, "feet"),
  21219. default: true
  21220. },
  21221. ]
  21222. ))
  21223. characterMakers.push(() => makeCharacter(
  21224. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21225. {
  21226. front: {
  21227. height: math.unit(28.75, "feet"),
  21228. weight: math.unit(2000, "kg"),
  21229. name: "Front",
  21230. image: {
  21231. source: "./media/characters/sonear/front.svg",
  21232. extra: 1041.1 / 964.9,
  21233. bottom: 53.7 / 1096.6
  21234. }
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(28.75, "feet"),
  21241. default: true
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21247. {
  21248. side: {
  21249. height: math.unit(25.5, "feet"),
  21250. weight: math.unit(23000, "kg"),
  21251. name: "Side",
  21252. image: {
  21253. source: "./media/characters/kanara/side.svg"
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(25.5, "feet"),
  21261. default: true
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21267. {
  21268. side: {
  21269. height: math.unit(10, "feet"),
  21270. weight: math.unit(1000, "kg"),
  21271. name: "Side",
  21272. image: {
  21273. source: "./media/characters/ereus/side.svg",
  21274. extra: 1157 / 959,
  21275. bottom: 153 / 1312.5
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(10, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21289. {
  21290. side: {
  21291. height: math.unit(4.5, "feet"),
  21292. weight: math.unit(500, "lb"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/e-ter/side.svg",
  21296. extra: 1550 / 1248,
  21297. bottom: 146 / 1694
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(4.5, "feet"),
  21305. default: true
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21311. {
  21312. side: {
  21313. height: math.unit(9.7, "feet"),
  21314. weight: math.unit(4000, "kg"),
  21315. name: "Side",
  21316. image: {
  21317. source: "./media/characters/yamie/side.svg"
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(9.7, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(50, "feet"),
  21334. weight: math.unit(50000, "kg"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/anders/front.svg",
  21338. extra: 570 / 539,
  21339. bottom: 14.7 / 586.7
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Large",
  21346. height: math.unit(50, "feet")
  21347. },
  21348. {
  21349. name: "Macro",
  21350. height: math.unit(2000, "feet"),
  21351. default: true
  21352. },
  21353. {
  21354. name: "Megamacro",
  21355. height: math.unit(12, "miles")
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21361. {
  21362. front: {
  21363. height: math.unit(7 + 2 / 12, "feet"),
  21364. weight: math.unit(300, "lb"),
  21365. name: "Front",
  21366. image: {
  21367. source: "./media/characters/reban/front.svg",
  21368. extra: 516 / 487,
  21369. bottom: 42.82 / 558.356
  21370. }
  21371. },
  21372. dick: {
  21373. height: math.unit(7 / 5, "feet"),
  21374. name: "Dick",
  21375. image: {
  21376. source: "./media/characters/reban/dick.svg"
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Natural Height",
  21383. height: math.unit(7 + 2 / 12, "feet")
  21384. },
  21385. {
  21386. name: "Macro",
  21387. height: math.unit(500, "feet"),
  21388. default: true
  21389. },
  21390. {
  21391. name: "Canon Height",
  21392. height: math.unit(50, "AU")
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(6, "feet"),
  21401. weight: math.unit(150, "lb"),
  21402. name: "Front",
  21403. image: {
  21404. source: "./media/characters/terrance-keayes/front.svg",
  21405. extra: 1.005,
  21406. bottom: 151 / 1615
  21407. }
  21408. },
  21409. side: {
  21410. height: math.unit(6, "feet"),
  21411. weight: math.unit(150, "lb"),
  21412. name: "Side",
  21413. image: {
  21414. source: "./media/characters/terrance-keayes/side.svg",
  21415. extra: 1.005,
  21416. bottom: 129.4 / 1544
  21417. }
  21418. },
  21419. back: {
  21420. height: math.unit(6, "feet"),
  21421. weight: math.unit(150, "lb"),
  21422. name: "Back",
  21423. image: {
  21424. source: "./media/characters/terrance-keayes/back.svg",
  21425. extra: 1.005,
  21426. bottom: 58.4 / 1557.3
  21427. }
  21428. },
  21429. dick: {
  21430. height: math.unit(6 * 0.208, "feet"),
  21431. name: "Dick",
  21432. image: {
  21433. source: "./media/characters/terrance-keayes/dick.svg"
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Canon Height",
  21440. height: math.unit(35, "miles"),
  21441. default: true
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21447. {
  21448. front: {
  21449. height: math.unit(6, "feet"),
  21450. weight: math.unit(150, "lb"),
  21451. name: "Front",
  21452. image: {
  21453. source: "./media/characters/ofelia/front.svg",
  21454. extra: 546 / 541,
  21455. bottom: 39 / 583
  21456. }
  21457. },
  21458. back: {
  21459. height: math.unit(6, "feet"),
  21460. weight: math.unit(150, "lb"),
  21461. name: "Back",
  21462. image: {
  21463. source: "./media/characters/ofelia/back.svg",
  21464. extra: 564 / 559.5,
  21465. bottom: 8.69 / 573.02
  21466. }
  21467. },
  21468. maw: {
  21469. height: math.unit(1, "feet"),
  21470. name: "Maw",
  21471. image: {
  21472. source: "./media/characters/ofelia/maw.svg"
  21473. }
  21474. },
  21475. foot: {
  21476. height: math.unit(1.949, "feet"),
  21477. name: "Foot",
  21478. image: {
  21479. source: "./media/characters/ofelia/foot.svg"
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Canon Height",
  21486. height: math.unit(2000, "miles"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(6, "feet"),
  21496. weight: math.unit(150, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/samuel/front.svg",
  21500. extra: 265 / 258,
  21501. bottom: 2 / 266.1566
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Macro",
  21508. height: math.unit(100, "feet"),
  21509. default: true
  21510. },
  21511. {
  21512. name: "Full Size",
  21513. height: math.unit(1000, "miles")
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(6, "feet"),
  21522. weight: math.unit(300, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/beishir-kiel/front.svg",
  21526. extra: 569 / 547,
  21527. bottom: 41.9 / 609
  21528. }
  21529. },
  21530. maw: {
  21531. height: math.unit(6 * 0.202, "feet"),
  21532. name: "Maw",
  21533. image: {
  21534. source: "./media/characters/beishir-kiel/maw.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(300, "feet"),
  21542. default: true
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(5 + 8 / 12, "feet"),
  21551. weight: math.unit(120, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/logan-grey/front.svg",
  21555. extra: 2539 / 2393,
  21556. bottom: 97.6 / 2636.37
  21557. }
  21558. },
  21559. frontAlt: {
  21560. height: math.unit(5 + 8 / 12, "feet"),
  21561. weight: math.unit(120, "lb"),
  21562. name: "Front (Alt)",
  21563. image: {
  21564. source: "./media/characters/logan-grey/front-alt.svg",
  21565. extra: 958 / 893,
  21566. bottom: 15 / 970.768
  21567. }
  21568. },
  21569. back: {
  21570. height: math.unit(5 + 8 / 12, "feet"),
  21571. weight: math.unit(120, "lb"),
  21572. name: "Back",
  21573. image: {
  21574. source: "./media/characters/logan-grey/back.svg",
  21575. extra: 958 / 893,
  21576. bottom: 2.1881 / 970.9788
  21577. }
  21578. },
  21579. dick: {
  21580. height: math.unit(1.437, "feet"),
  21581. name: "Dick",
  21582. image: {
  21583. source: "./media/characters/logan-grey/dick.svg"
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Normal",
  21590. height: math.unit(5 + 8 / 12, "feet")
  21591. },
  21592. {
  21593. name: "The 500 Foot Femboy",
  21594. height: math.unit(500, "feet"),
  21595. default: true
  21596. },
  21597. {
  21598. name: "Megmacro",
  21599. height: math.unit(20, "miles")
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(8 + 2 / 12, "feet"),
  21608. weight: math.unit(275, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/draganta/front.svg",
  21612. extra: 1177 / 1135,
  21613. bottom: 33.46 / 1212.1
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(8 + 6 / 12, "feet"),
  21621. default: true
  21622. },
  21623. {
  21624. name: "Macro",
  21625. height: math.unit(150, "feet")
  21626. },
  21627. {
  21628. name: "Megamacro",
  21629. height: math.unit(1000, "miles")
  21630. },
  21631. ]
  21632. ))
  21633. characterMakers.push(() => makeCharacter(
  21634. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21635. {
  21636. front: {
  21637. height: math.unit(1.72, "m"),
  21638. weight: math.unit(80, "lb"),
  21639. name: "Front",
  21640. image: {
  21641. source: "./media/characters/voski/front.svg",
  21642. extra: 2076.22 / 2022.4,
  21643. bottom: 102.7 / 2177.3866
  21644. }
  21645. },
  21646. frontNsfw: {
  21647. height: math.unit(1.72, "m"),
  21648. weight: math.unit(80, "lb"),
  21649. name: "Front (NSFW)",
  21650. image: {
  21651. source: "./media/characters/voski/front-nsfw.svg",
  21652. extra: 2076.22 / 2022.4,
  21653. bottom: 102.7 / 2177.3866
  21654. }
  21655. },
  21656. back: {
  21657. height: math.unit(1.72, "m"),
  21658. weight: math.unit(80, "lb"),
  21659. name: "Back",
  21660. image: {
  21661. source: "./media/characters/voski/back.svg",
  21662. extra: 2104 / 2051,
  21663. bottom: 10.45 / 2113.63
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(1.72, "m")
  21671. },
  21672. {
  21673. name: "Macro",
  21674. height: math.unit(55, "m"),
  21675. default: true
  21676. },
  21677. {
  21678. name: "Macro+",
  21679. height: math.unit(300, "m")
  21680. },
  21681. {
  21682. name: "Macro++",
  21683. height: math.unit(700, "m")
  21684. },
  21685. {
  21686. name: "Macro+++",
  21687. height: math.unit(4500, "m")
  21688. },
  21689. {
  21690. name: "Macro++++",
  21691. height: math.unit(45, "km")
  21692. },
  21693. {
  21694. name: "Macro+++++",
  21695. height: math.unit(1220, "km")
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(2.3, "m"),
  21704. weight: math.unit(304, "kg"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/icowom-lee/front.svg",
  21708. extra: 985 / 955,
  21709. bottom: 25.4 / 1012
  21710. }
  21711. },
  21712. fronttentacles: {
  21713. height: math.unit(2.3, "m"),
  21714. weight: math.unit(304, "kg"),
  21715. name: "Front-tentacles",
  21716. image: {
  21717. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21718. extra: 985 / 955,
  21719. bottom: 25.4 / 1012
  21720. }
  21721. },
  21722. back: {
  21723. height: math.unit(2.3, "m"),
  21724. weight: math.unit(304, "kg"),
  21725. name: "Back",
  21726. image: {
  21727. source: "./media/characters/icowom-lee/back.svg",
  21728. extra: 975 / 954,
  21729. bottom: 9.5 / 985
  21730. }
  21731. },
  21732. backtentacles: {
  21733. height: math.unit(2.3, "m"),
  21734. weight: math.unit(304, "kg"),
  21735. name: "Back-tentacles",
  21736. image: {
  21737. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21738. extra: 975 / 954,
  21739. bottom: 9.5 / 985
  21740. }
  21741. },
  21742. frontDressed: {
  21743. height: math.unit(2.3, "m"),
  21744. weight: math.unit(304, "kg"),
  21745. name: "Front (Dressed)",
  21746. image: {
  21747. source: "./media/characters/icowom-lee/front-dressed.svg",
  21748. extra: 3076 / 2933,
  21749. bottom: 51.4 / 3125.1889
  21750. }
  21751. },
  21752. rump: {
  21753. height: math.unit(0.776, "meters"),
  21754. name: "Rump",
  21755. image: {
  21756. source: "./media/characters/icowom-lee/rump.svg"
  21757. }
  21758. },
  21759. genitals: {
  21760. height: math.unit(0.78, "meters"),
  21761. name: "Genitals",
  21762. image: {
  21763. source: "./media/characters/icowom-lee/genitals.svg"
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(2.3, "meters"),
  21771. default: true
  21772. },
  21773. {
  21774. name: "Macro",
  21775. height: math.unit(94, "meters"),
  21776. default: true
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(22, "meters"),
  21785. weight: math.unit(21000, "kg"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/shock-diamond/front.svg",
  21789. extra: 2204 / 2053,
  21790. bottom: 65 / 2239.47
  21791. }
  21792. },
  21793. frontNude: {
  21794. height: math.unit(22, "meters"),
  21795. weight: math.unit(21000, "kg"),
  21796. name: "Front (Nude)",
  21797. image: {
  21798. source: "./media/characters/shock-diamond/front-nude.svg",
  21799. extra: 2514 / 2285,
  21800. bottom: 13 / 2527.56
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(3, "meters")
  21808. },
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(22, "meters"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(5 + 4 / 12, "feet"),
  21821. weight: math.unit(120, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/rory/front.svg",
  21825. extra: 589 / 556,
  21826. bottom: 45.7 / 635.76
  21827. }
  21828. },
  21829. frontNude: {
  21830. height: math.unit(5 + 4 / 12, "feet"),
  21831. weight: math.unit(120, "lb"),
  21832. name: "Front (Nude)",
  21833. image: {
  21834. source: "./media/characters/rory/front-nude.svg",
  21835. extra: 589 / 556,
  21836. bottom: 45.7 / 635.76
  21837. }
  21838. },
  21839. side: {
  21840. height: math.unit(5 + 4 / 12, "feet"),
  21841. weight: math.unit(120, "lb"),
  21842. name: "Side",
  21843. image: {
  21844. source: "./media/characters/rory/side.svg",
  21845. extra: 597 / 564,
  21846. bottom: 55 / 653
  21847. }
  21848. },
  21849. back: {
  21850. height: math.unit(5 + 4 / 12, "feet"),
  21851. weight: math.unit(120, "lb"),
  21852. name: "Back",
  21853. image: {
  21854. source: "./media/characters/rory/back.svg",
  21855. extra: 620 / 585,
  21856. bottom: 8.86 / 630.43
  21857. }
  21858. },
  21859. dick: {
  21860. height: math.unit(0.86, "feet"),
  21861. name: "Dick",
  21862. image: {
  21863. source: "./media/characters/rory/dick.svg"
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(5 + 4 / 12, "feet"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(100, "feet")
  21876. },
  21877. {
  21878. name: "Macro+",
  21879. height: math.unit(140, "feet")
  21880. },
  21881. {
  21882. name: "Macro++",
  21883. height: math.unit(300, "feet")
  21884. },
  21885. ]
  21886. ))
  21887. characterMakers.push(() => makeCharacter(
  21888. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21889. {
  21890. front: {
  21891. height: math.unit(5 + 9 / 12, "feet"),
  21892. weight: math.unit(190, "lb"),
  21893. name: "Front",
  21894. image: {
  21895. source: "./media/characters/sprisk/front.svg",
  21896. extra: 1225 / 1180,
  21897. bottom: 42.7 / 1266.4
  21898. }
  21899. },
  21900. frontNsfw: {
  21901. height: math.unit(5 + 9 / 12, "feet"),
  21902. weight: math.unit(190, "lb"),
  21903. name: "Front (NSFW)",
  21904. image: {
  21905. source: "./media/characters/sprisk/front-nsfw.svg",
  21906. extra: 1225 / 1180,
  21907. bottom: 42.7 / 1266.4
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(5 + 9 / 12, "feet"),
  21912. weight: math.unit(190, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/sprisk/back.svg",
  21916. extra: 1247 / 1200,
  21917. bottom: 5.6 / 1253.04
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Tiny",
  21924. height: math.unit(2, "inches")
  21925. },
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(5 + 9 / 12, "feet"),
  21929. default: true
  21930. },
  21931. {
  21932. name: "Mini Macro",
  21933. height: math.unit(18, "feet")
  21934. },
  21935. {
  21936. name: "Macro",
  21937. height: math.unit(100, "feet")
  21938. },
  21939. {
  21940. name: "MACRO",
  21941. height: math.unit(50, "miles")
  21942. },
  21943. {
  21944. name: "M A C R O",
  21945. height: math.unit(300, "miles")
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21951. {
  21952. side: {
  21953. height: math.unit(15.6, "meters"),
  21954. weight: math.unit(700000, "kg"),
  21955. name: "Side",
  21956. image: {
  21957. source: "./media/characters/bunsen/side.svg",
  21958. extra: 1644 / 358
  21959. }
  21960. },
  21961. foot: {
  21962. height: math.unit(1.611 * 1644 / 358, "meter"),
  21963. name: "Foot",
  21964. image: {
  21965. source: "./media/characters/bunsen/foot.svg"
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Small",
  21972. height: math.unit(10, "feet")
  21973. },
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(15.6, "meters"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21983. {
  21984. front: {
  21985. height: math.unit(4 + 11 / 12, "feet"),
  21986. weight: math.unit(140, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/sesh/front.svg",
  21990. extra: 3420 / 3231,
  21991. bottom: 72 / 3949.5
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(4 + 11 / 12, "feet")
  21999. },
  22000. {
  22001. name: "Grown",
  22002. height: math.unit(15, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Macro",
  22007. height: math.unit(1500, "feet")
  22008. },
  22009. {
  22010. name: "Megamacro",
  22011. height: math.unit(30, "miles")
  22012. },
  22013. {
  22014. name: "Continental",
  22015. height: math.unit(3000, "miles")
  22016. },
  22017. {
  22018. name: "Gravity Mass",
  22019. height: math.unit(300000, "miles")
  22020. },
  22021. {
  22022. name: "Planet Buster",
  22023. height: math.unit(30000000, "miles")
  22024. },
  22025. {
  22026. name: "Big",
  22027. height: math.unit(3000000000, "miles")
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(9, "feet"),
  22036. weight: math.unit(350, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/pepper/front.svg",
  22040. extra: 1448 / 1312,
  22041. bottom: 9.4 / 1457.88
  22042. }
  22043. },
  22044. back: {
  22045. height: math.unit(9, "feet"),
  22046. weight: math.unit(350, "lb"),
  22047. name: "Back",
  22048. image: {
  22049. source: "./media/characters/pepper/back.svg",
  22050. extra: 1423 / 1300,
  22051. bottom: 4.6 / 1429
  22052. }
  22053. },
  22054. maw: {
  22055. height: math.unit(0.932, "feet"),
  22056. name: "Maw",
  22057. image: {
  22058. source: "./media/characters/pepper/maw.svg"
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(9, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(6, "feet"),
  22075. weight: math.unit(150, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/maelstrom/front.svg",
  22079. extra: 2100 / 1883,
  22080. bottom: 94 / 2196.7
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Less Kaiju",
  22087. height: math.unit(200, "feet")
  22088. },
  22089. {
  22090. name: "Kaiju",
  22091. height: math.unit(400, "feet"),
  22092. default: true
  22093. },
  22094. {
  22095. name: "Kaiju-er",
  22096. height: math.unit(600, "feet")
  22097. },
  22098. ]
  22099. ))
  22100. characterMakers.push(() => makeCharacter(
  22101. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22102. {
  22103. front: {
  22104. height: math.unit(6 + 5 / 12, "feet"),
  22105. weight: math.unit(180, "lb"),
  22106. name: "Front",
  22107. image: {
  22108. source: "./media/characters/lexir/front.svg",
  22109. extra: 180 / 172,
  22110. bottom: 12 / 192
  22111. }
  22112. },
  22113. back: {
  22114. height: math.unit(6 + 5 / 12, "feet"),
  22115. weight: math.unit(180, "lb"),
  22116. name: "Back",
  22117. image: {
  22118. source: "./media/characters/lexir/back.svg",
  22119. extra: 183.84 / 175.5,
  22120. bottom: 3.1 / 187
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Very Smal",
  22127. height: math.unit(1, "nm")
  22128. },
  22129. {
  22130. name: "Normal",
  22131. height: math.unit(6 + 5 / 12, "feet"),
  22132. default: true
  22133. },
  22134. {
  22135. name: "Macro",
  22136. height: math.unit(1, "mile")
  22137. },
  22138. {
  22139. name: "Megamacro",
  22140. height: math.unit(50, "miles")
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22146. {
  22147. front: {
  22148. height: math.unit(1.5, "meters"),
  22149. weight: math.unit(100, "lb"),
  22150. name: "Front",
  22151. image: {
  22152. source: "./media/characters/maksio/front.svg",
  22153. extra: 1549 / 1531,
  22154. bottom: 123.7 / 1674.5429
  22155. }
  22156. },
  22157. back: {
  22158. height: math.unit(1.5, "meters"),
  22159. weight: math.unit(100, "lb"),
  22160. name: "Back",
  22161. image: {
  22162. source: "./media/characters/maksio/back.svg",
  22163. extra: 1541 / 1509,
  22164. bottom: 97 / 1639
  22165. }
  22166. },
  22167. hand: {
  22168. height: math.unit(0.621, "feet"),
  22169. name: "Hand",
  22170. image: {
  22171. source: "./media/characters/maksio/hand.svg"
  22172. }
  22173. },
  22174. foot: {
  22175. height: math.unit(1.611, "feet"),
  22176. name: "Foot",
  22177. image: {
  22178. source: "./media/characters/maksio/foot.svg"
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Shrunken",
  22185. height: math.unit(10, "cm")
  22186. },
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(150, "cm"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(100, "feet"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/erza-bear/front.svg",
  22202. extra: 2449 / 2390,
  22203. bottom: 46 / 2494
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(100, "feet"),
  22208. name: "Back",
  22209. image: {
  22210. source: "./media/characters/erza-bear/back.svg",
  22211. extra: 2489 / 2430,
  22212. bottom: 85.4 / 2480
  22213. }
  22214. },
  22215. tail: {
  22216. height: math.unit(42, "feet"),
  22217. name: "Tail",
  22218. image: {
  22219. source: "./media/characters/erza-bear/tail.svg"
  22220. }
  22221. },
  22222. tongue: {
  22223. height: math.unit(8, "feet"),
  22224. name: "Tongue",
  22225. image: {
  22226. source: "./media/characters/erza-bear/tongue.svg"
  22227. }
  22228. },
  22229. dick: {
  22230. height: math.unit(10.5, "feet"),
  22231. name: "Dick",
  22232. image: {
  22233. source: "./media/characters/erza-bear/dick.svg"
  22234. }
  22235. },
  22236. dickVertical: {
  22237. height: math.unit(16.9, "feet"),
  22238. name: "Dick (Vertical)",
  22239. image: {
  22240. source: "./media/characters/erza-bear/dick-vertical.svg"
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Macro",
  22247. height: math.unit(100, "feet"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(172, "cm"),
  22257. weight: math.unit(73, "kg"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/violet-flor/front.svg",
  22261. extra: 1530 / 1442,
  22262. bottom: 61.9 / 1588.8
  22263. }
  22264. },
  22265. back: {
  22266. height: math.unit(180, "cm"),
  22267. weight: math.unit(73, "kg"),
  22268. name: "Back",
  22269. image: {
  22270. source: "./media/characters/violet-flor/back.svg",
  22271. extra: 1692 / 1630,
  22272. bottom: 20 / 1712
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(172, "cm"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(6, "feet"),
  22289. weight: math.unit(220, "lb"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/lynn-rhea/front.svg",
  22293. extra: 310 / 273
  22294. }
  22295. },
  22296. back: {
  22297. height: math.unit(6, "feet"),
  22298. weight: math.unit(220, "lb"),
  22299. name: "Back",
  22300. image: {
  22301. source: "./media/characters/lynn-rhea/back.svg",
  22302. extra: 310 / 273
  22303. }
  22304. },
  22305. dicks: {
  22306. height: math.unit(0.9, "feet"),
  22307. name: "Dicks",
  22308. image: {
  22309. source: "./media/characters/lynn-rhea/dicks.svg"
  22310. }
  22311. },
  22312. slit: {
  22313. height: math.unit(0.4, "feet"),
  22314. name: "Slit",
  22315. image: {
  22316. source: "./media/characters/lynn-rhea/slit.svg"
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Micro",
  22323. height: math.unit(1, "inch")
  22324. },
  22325. {
  22326. name: "Macro",
  22327. height: math.unit(60, "feet"),
  22328. default: true
  22329. },
  22330. {
  22331. name: "Megamacro",
  22332. height: math.unit(2, "miles")
  22333. },
  22334. {
  22335. name: "Gigamacro",
  22336. height: math.unit(3, "earths")
  22337. },
  22338. {
  22339. name: "Galactic",
  22340. height: math.unit(0.8, "galaxies")
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22346. {
  22347. front: {
  22348. height: math.unit(1600, "feet"),
  22349. weight: math.unit(85758785169, "kg"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/valathos/front.svg",
  22353. extra: 1451 / 1339
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Macro",
  22360. height: math.unit(1600, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(7 + 5 / 12, "feet"),
  22370. weight: math.unit(300, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/azula/front.svg",
  22374. extra: 3208 / 2880,
  22375. bottom: 80.2 / 3277
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(7 + 5 / 12, "feet"),
  22380. weight: math.unit(300, "lb"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/azula/back.svg",
  22384. extra: 3169 / 2822,
  22385. bottom: 150.6 / 3321
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(7 + 5 / 12, "feet"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Big",
  22397. height: math.unit(20, "feet")
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(5 + 1 / 12, "feet"),
  22406. weight: math.unit(110, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/rupert/front.svg",
  22410. extra: 1549 / 1495,
  22411. bottom: 54.2 / 1604.4
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Normal",
  22418. height: math.unit(5 + 1 / 12, "feet"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(8 + 4 / 12, "feet"),
  22428. weight: math.unit(350, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/sheera-castellar/front.svg",
  22432. extra: 1957 / 1894,
  22433. bottom: 26.97 / 1975.017
  22434. }
  22435. },
  22436. side: {
  22437. height: math.unit(8 + 4 / 12, "feet"),
  22438. weight: math.unit(350, "lb"),
  22439. name: "Side",
  22440. image: {
  22441. source: "./media/characters/sheera-castellar/side.svg",
  22442. extra: 1957 / 1894
  22443. }
  22444. },
  22445. back: {
  22446. height: math.unit(8 + 4 / 12, "feet"),
  22447. weight: math.unit(350, "lb"),
  22448. name: "Back",
  22449. image: {
  22450. source: "./media/characters/sheera-castellar/back.svg",
  22451. extra: 1957 / 1894
  22452. }
  22453. },
  22454. angled: {
  22455. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22456. weight: math.unit(350, "lb"),
  22457. name: "Angled",
  22458. image: {
  22459. source: "./media/characters/sheera-castellar/angled.svg",
  22460. extra: 1807 / 1707,
  22461. bottom: 68 / 1875
  22462. }
  22463. },
  22464. genitals: {
  22465. height: math.unit(2.2, "feet"),
  22466. name: "Genitals",
  22467. image: {
  22468. source: "./media/characters/sheera-castellar/genitals.svg"
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(8 + 4 / 12, "feet")
  22476. },
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(150, "feet"),
  22480. default: true
  22481. },
  22482. {
  22483. name: "Macro+",
  22484. height: math.unit(800, "feet")
  22485. },
  22486. ]
  22487. ))
  22488. characterMakers.push(() => makeCharacter(
  22489. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22490. {
  22491. front: {
  22492. height: math.unit(6, "feet"),
  22493. weight: math.unit(150, "lb"),
  22494. name: "Front",
  22495. image: {
  22496. source: "./media/characters/jaipur/front.svg",
  22497. extra: 3860 / 3731,
  22498. bottom: 287 / 4140
  22499. }
  22500. },
  22501. back: {
  22502. height: math.unit(6, "feet"),
  22503. weight: math.unit(150, "lb"),
  22504. name: "Back",
  22505. image: {
  22506. source: "./media/characters/jaipur/back.svg",
  22507. extra: 4060 / 3930,
  22508. bottom: 151 / 4200
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(1.85, "meters"),
  22516. default: true
  22517. },
  22518. {
  22519. name: "Macro",
  22520. height: math.unit(150, "meters")
  22521. },
  22522. {
  22523. name: "Macro+",
  22524. height: math.unit(0.5, "miles")
  22525. },
  22526. {
  22527. name: "Macro++",
  22528. height: math.unit(2.5, "miles")
  22529. },
  22530. {
  22531. name: "Macro+++",
  22532. height: math.unit(12, "miles")
  22533. },
  22534. {
  22535. name: "Macro++++",
  22536. height: math.unit(120, "miles")
  22537. },
  22538. {
  22539. name: "Macro+++++",
  22540. height: math.unit(1200, "miles")
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(6, "feet"),
  22549. weight: math.unit(150, "lb"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/sheila-wolf/front.svg",
  22553. extra: 1931 / 1808,
  22554. bottom: 29.5 / 1960
  22555. }
  22556. },
  22557. dick: {
  22558. height: math.unit(1.464, "feet"),
  22559. name: "Dick",
  22560. image: {
  22561. source: "./media/characters/sheila-wolf/dick.svg"
  22562. }
  22563. },
  22564. muzzle: {
  22565. height: math.unit(0.513, "feet"),
  22566. name: "Muzzle",
  22567. image: {
  22568. source: "./media/characters/sheila-wolf/muzzle.svg"
  22569. }
  22570. },
  22571. },
  22572. [
  22573. {
  22574. name: "Macro",
  22575. height: math.unit(70, "feet"),
  22576. default: true
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(32, "meters"),
  22585. weight: math.unit(300000, "kg"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/almor/front.svg",
  22589. extra: 1408 / 1322,
  22590. bottom: 94.6 / 1506.5
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Macro",
  22597. height: math.unit(32, "meters"),
  22598. default: true
  22599. },
  22600. ]
  22601. ))
  22602. characterMakers.push(() => makeCharacter(
  22603. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22604. {
  22605. front: {
  22606. height: math.unit(7, "feet"),
  22607. weight: math.unit(200, "lb"),
  22608. name: "Front",
  22609. image: {
  22610. source: "./media/characters/silver/front.svg",
  22611. extra: 472.1 / 450.5,
  22612. bottom: 26.5 / 499.424
  22613. }
  22614. },
  22615. },
  22616. [
  22617. {
  22618. name: "Normal",
  22619. height: math.unit(7, "feet"),
  22620. default: true
  22621. },
  22622. {
  22623. name: "Macro",
  22624. height: math.unit(800, "feet")
  22625. },
  22626. {
  22627. name: "Megamacro",
  22628. height: math.unit(250, "miles")
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22634. {
  22635. front: {
  22636. height: math.unit(6, "feet"),
  22637. weight: math.unit(150, "lb"),
  22638. name: "Front",
  22639. image: {
  22640. source: "./media/characters/pliskin/front.svg",
  22641. extra: 1469 / 1359,
  22642. bottom: 70 / 1540
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Micro",
  22649. height: math.unit(3, "inches")
  22650. },
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(5 + 11 / 12, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(120, "feet")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(6, "feet"),
  22667. weight: math.unit(150, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/sammy/front.svg",
  22671. extra: 1193 / 1089,
  22672. bottom: 30.5 / 1226
  22673. }
  22674. },
  22675. },
  22676. [
  22677. {
  22678. name: "Macro",
  22679. height: math.unit(1700, "feet"),
  22680. default: true
  22681. },
  22682. {
  22683. name: "Examacro",
  22684. height: math.unit(2.5e9, "lightyears")
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22690. {
  22691. front: {
  22692. height: math.unit(21, "meters"),
  22693. weight: math.unit(12, "tonnes"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/kuru/front.svg",
  22697. extra: 4301 / 3785,
  22698. bottom: 371.3 / 4691
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(21, "meters"),
  22706. default: true
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(23, "meters"),
  22715. weight: math.unit(12.2, "tonnes"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/rakka/front.svg",
  22719. extra: 4670 / 4169,
  22720. bottom: 301 / 4968.7
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(23, "meters"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(6, "feet"),
  22737. weight: math.unit(150, "lb"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/rhys-feline/front.svg",
  22741. extra: 2488 / 2308,
  22742. bottom: 35.67 / 2519.19
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Really Small",
  22749. height: math.unit(1, "nm")
  22750. },
  22751. {
  22752. name: "Micro",
  22753. height: math.unit(4, "inches")
  22754. },
  22755. {
  22756. name: "Normal",
  22757. height: math.unit(4 + 10 / 12, "feet"),
  22758. default: true
  22759. },
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(100, "feet")
  22763. },
  22764. {
  22765. name: "Megamacto",
  22766. height: math.unit(50, "miles")
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22772. {
  22773. side: {
  22774. height: math.unit(30, "feet"),
  22775. weight: math.unit(35000, "kg"),
  22776. name: "Side",
  22777. image: {
  22778. source: "./media/characters/alydar/side.svg",
  22779. extra: 234 / 222,
  22780. bottom: 6.5 / 241
  22781. }
  22782. },
  22783. front: {
  22784. height: math.unit(30, "feet"),
  22785. weight: math.unit(35000, "kg"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/alydar/front.svg",
  22789. extra: 223.37 / 210.2,
  22790. bottom: 22.3 / 246.76
  22791. }
  22792. },
  22793. top: {
  22794. height: math.unit(64.54, "feet"),
  22795. weight: math.unit(35000, "kg"),
  22796. name: "Top",
  22797. image: {
  22798. source: "./media/characters/alydar/top.svg"
  22799. }
  22800. },
  22801. anthro: {
  22802. height: math.unit(30, "feet"),
  22803. weight: math.unit(9000, "kg"),
  22804. name: "Anthro",
  22805. image: {
  22806. source: "./media/characters/alydar/anthro.svg",
  22807. extra: 432 / 421,
  22808. bottom: 7.18 / 440
  22809. }
  22810. },
  22811. maw: {
  22812. height: math.unit(11.693, "feet"),
  22813. name: "Maw",
  22814. image: {
  22815. source: "./media/characters/alydar/maw.svg"
  22816. }
  22817. },
  22818. head: {
  22819. height: math.unit(11.693, "feet"),
  22820. name: "Head",
  22821. image: {
  22822. source: "./media/characters/alydar/head.svg"
  22823. }
  22824. },
  22825. headAlt: {
  22826. height: math.unit(12.861, "feet"),
  22827. name: "Head (Alt)",
  22828. image: {
  22829. source: "./media/characters/alydar/head-alt.svg"
  22830. }
  22831. },
  22832. wing: {
  22833. height: math.unit(20.712, "feet"),
  22834. name: "Wing",
  22835. image: {
  22836. source: "./media/characters/alydar/wing.svg"
  22837. }
  22838. },
  22839. wingFeather: {
  22840. height: math.unit(9.662, "feet"),
  22841. name: "Wing Feather",
  22842. image: {
  22843. source: "./media/characters/alydar/wing-feather.svg"
  22844. }
  22845. },
  22846. countourFeather: {
  22847. height: math.unit(4.154, "feet"),
  22848. name: "Contour Feather",
  22849. image: {
  22850. source: "./media/characters/alydar/contour-feather.svg"
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Diplomatic",
  22857. height: math.unit(13, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Small",
  22862. height: math.unit(30, "feet")
  22863. },
  22864. {
  22865. name: "Normal",
  22866. height: math.unit(95, "feet"),
  22867. default: true
  22868. },
  22869. {
  22870. name: "Large",
  22871. height: math.unit(285, "feet")
  22872. },
  22873. {
  22874. name: "Incomprehensible",
  22875. height: math.unit(450, "megameters")
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22881. {
  22882. side: {
  22883. height: math.unit(11, "feet"),
  22884. weight: math.unit(1750, "kg"),
  22885. name: "Side",
  22886. image: {
  22887. source: "./media/characters/selicia/side.svg",
  22888. extra: 440 / 396,
  22889. bottom: 24.8 / 465.979
  22890. }
  22891. },
  22892. maw: {
  22893. height: math.unit(4.665, "feet"),
  22894. name: "Maw",
  22895. image: {
  22896. source: "./media/characters/selicia/maw.svg"
  22897. }
  22898. },
  22899. },
  22900. [
  22901. {
  22902. name: "Normal",
  22903. height: math.unit(11, "feet"),
  22904. default: true
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22910. {
  22911. side: {
  22912. height: math.unit(2 + 6 / 12, "feet"),
  22913. weight: math.unit(30, "lb"),
  22914. name: "Side",
  22915. image: {
  22916. source: "./media/characters/layla/side.svg",
  22917. extra: 244 / 188,
  22918. bottom: 18.2 / 262.1
  22919. }
  22920. },
  22921. back: {
  22922. height: math.unit(2 + 6 / 12, "feet"),
  22923. weight: math.unit(30, "lb"),
  22924. name: "Back",
  22925. image: {
  22926. source: "./media/characters/layla/back.svg",
  22927. extra: 308 / 241.5,
  22928. bottom: 8.9 / 316.8
  22929. }
  22930. },
  22931. cumming: {
  22932. height: math.unit(2 + 6 / 12, "feet"),
  22933. weight: math.unit(30, "lb"),
  22934. name: "Cumming",
  22935. image: {
  22936. source: "./media/characters/layla/cumming.svg",
  22937. extra: 342 / 279,
  22938. bottom: 595 / 938
  22939. }
  22940. },
  22941. dickFlaccid: {
  22942. height: math.unit(2.595, "feet"),
  22943. name: "Flaccid Genitals",
  22944. image: {
  22945. source: "./media/characters/layla/dick-flaccid.svg"
  22946. }
  22947. },
  22948. dickErect: {
  22949. height: math.unit(2.359, "feet"),
  22950. name: "Erect Genitals",
  22951. image: {
  22952. source: "./media/characters/layla/dick-erect.svg"
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Micro",
  22959. height: math.unit(1, "inch")
  22960. },
  22961. {
  22962. name: "Small",
  22963. height: math.unit(1, "foot")
  22964. },
  22965. {
  22966. name: "Normal",
  22967. height: math.unit(2 + 6 / 12, "feet"),
  22968. default: true
  22969. },
  22970. {
  22971. name: "Macro",
  22972. height: math.unit(200, "feet")
  22973. },
  22974. {
  22975. name: "Megamacro",
  22976. height: math.unit(1000, "miles")
  22977. },
  22978. {
  22979. name: "Planetary",
  22980. height: math.unit(8000, "miles")
  22981. },
  22982. {
  22983. name: "True Layla",
  22984. height: math.unit(200000 * 7, "multiverses")
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22990. {
  22991. back: {
  22992. height: math.unit(10.5, "feet"),
  22993. weight: math.unit(800, "lb"),
  22994. name: "Back",
  22995. image: {
  22996. source: "./media/characters/knox/back.svg",
  22997. extra: 1486 / 1089,
  22998. bottom: 107 / 1601.4
  22999. }
  23000. },
  23001. side: {
  23002. height: math.unit(10.5, "feet"),
  23003. weight: math.unit(800, "lb"),
  23004. name: "Side",
  23005. image: {
  23006. source: "./media/characters/knox/side.svg",
  23007. extra: 244 / 218,
  23008. bottom: 14 / 260
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Compact",
  23015. height: math.unit(10.5, "feet"),
  23016. default: true
  23017. },
  23018. {
  23019. name: "Dynamax",
  23020. height: math.unit(210, "feet")
  23021. },
  23022. {
  23023. name: "Full Macro",
  23024. height: math.unit(850, "feet")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(6, "feet"),
  23033. weight: math.unit(152, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/shin-pikachu/front.svg",
  23037. extra: 1574 / 1480,
  23038. bottom: 53.3 / 1626
  23039. }
  23040. },
  23041. hand: {
  23042. height: math.unit(1.055, "feet"),
  23043. name: "Hand",
  23044. image: {
  23045. source: "./media/characters/shin-pikachu/hand.svg"
  23046. }
  23047. },
  23048. foot: {
  23049. height: math.unit(1.1, "feet"),
  23050. name: "Foot",
  23051. image: {
  23052. source: "./media/characters/shin-pikachu/foot.svg"
  23053. }
  23054. },
  23055. collar: {
  23056. height: math.unit(0.386, "feet"),
  23057. name: "Collar",
  23058. image: {
  23059. source: "./media/characters/shin-pikachu/collar.svg"
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Smallest",
  23066. height: math.unit(0.5, "inches")
  23067. },
  23068. {
  23069. name: "Micro",
  23070. height: math.unit(6, "inches")
  23071. },
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(6, "feet"),
  23075. default: true
  23076. },
  23077. {
  23078. name: "Macro",
  23079. height: math.unit(150, "feet")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(28, "feet"),
  23088. weight: math.unit(10500, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/kayda/front.svg",
  23092. extra: 1536 / 1428,
  23093. bottom: 68.7 / 1603
  23094. }
  23095. },
  23096. back: {
  23097. height: math.unit(28, "feet"),
  23098. weight: math.unit(10500, "lb"),
  23099. name: "Back",
  23100. image: {
  23101. source: "./media/characters/kayda/back.svg",
  23102. extra: 1557 / 1464,
  23103. bottom: 39.5 / 1597.49
  23104. }
  23105. },
  23106. dick: {
  23107. height: math.unit(3.858, "feet"),
  23108. name: "Dick",
  23109. image: {
  23110. source: "./media/characters/kayda/dick.svg"
  23111. }
  23112. },
  23113. },
  23114. [
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(28, "feet"),
  23118. default: true
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23124. {
  23125. front: {
  23126. height: math.unit(10 + 11 / 12, "feet"),
  23127. weight: math.unit(1400, "lb"),
  23128. name: "Front",
  23129. image: {
  23130. source: "./media/characters/brian/front.svg",
  23131. extra: 737 / 692,
  23132. bottom: 55.4 / 785
  23133. }
  23134. },
  23135. },
  23136. [
  23137. {
  23138. name: "Normal",
  23139. height: math.unit(10 + 11 / 12, "feet"),
  23140. default: true
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(5 + 8 / 12, "feet"),
  23149. weight: math.unit(140, "lb"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/khemri/front.svg",
  23153. extra: 4780 / 4059,
  23154. bottom: 80.1 / 4859.25
  23155. }
  23156. },
  23157. },
  23158. [
  23159. {
  23160. name: "Micro",
  23161. height: math.unit(6, "inches")
  23162. },
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(5 + 8 / 12, "feet"),
  23166. default: true
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23172. {
  23173. front: {
  23174. height: math.unit(13, "feet"),
  23175. weight: math.unit(1700, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/felix-braveheart/front.svg",
  23179. extra: 1222 / 1157,
  23180. bottom: 53.2 / 1280
  23181. }
  23182. },
  23183. back: {
  23184. height: math.unit(13, "feet"),
  23185. weight: math.unit(1700, "lb"),
  23186. name: "Back",
  23187. image: {
  23188. source: "./media/characters/felix-braveheart/back.svg",
  23189. extra: 1277 / 1203,
  23190. bottom: 50.2 / 1327
  23191. }
  23192. },
  23193. feral: {
  23194. height: math.unit(6, "feet"),
  23195. weight: math.unit(400, "lb"),
  23196. name: "Feral",
  23197. image: {
  23198. source: "./media/characters/felix-braveheart/feral.svg",
  23199. extra: 682 / 625,
  23200. bottom: 6.9 / 688
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(13, "feet"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23214. {
  23215. side: {
  23216. height: math.unit(5 + 11 / 12, "feet"),
  23217. weight: math.unit(1400, "lb"),
  23218. name: "Side",
  23219. image: {
  23220. source: "./media/characters/shadow-blade/side.svg",
  23221. extra: 1726 / 1267,
  23222. bottom: 58.4 / 1785
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(5 + 11 / 12, "feet"),
  23230. default: true
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23236. {
  23237. front: {
  23238. height: math.unit(1 + 6 / 12, "feet"),
  23239. weight: math.unit(25, "lb"),
  23240. name: "Front",
  23241. image: {
  23242. source: "./media/characters/karla-halldor/front.svg",
  23243. extra: 1459 / 1383,
  23244. bottom: 12 / 1472
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(1 + 6 / 12, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(6 + 2 / 12, "feet"),
  23261. weight: math.unit(160, "lb"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/ariam/front.svg",
  23265. extra: 714 / 617,
  23266. bottom: 23.4 / 737,
  23267. }
  23268. },
  23269. squatting: {
  23270. height: math.unit(4.1, "feet"),
  23271. weight: math.unit(160, "lb"),
  23272. name: "Squatting",
  23273. image: {
  23274. source: "./media/characters/ariam/squatting.svg",
  23275. extra: 2617 / 2112,
  23276. bottom: 61.2 / 2681,
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(6 + 2 / 12, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Normal+",
  23288. height: math.unit(4, "meters")
  23289. },
  23290. {
  23291. name: "Macro",
  23292. height: math.unit(50, "meters")
  23293. },
  23294. {
  23295. name: "Macro+",
  23296. height: math.unit(100, "meters")
  23297. },
  23298. {
  23299. name: "Megamacro",
  23300. height: math.unit(20, "km")
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23306. {
  23307. front: {
  23308. height: math.unit(1.67, "meters"),
  23309. weight: math.unit(140, "lb"),
  23310. name: "Front",
  23311. image: {
  23312. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23313. extra: 438 / 410,
  23314. bottom: 0.75 / 439
  23315. }
  23316. },
  23317. },
  23318. [
  23319. {
  23320. name: "Shrunken",
  23321. height: math.unit(7.6, "cm")
  23322. },
  23323. {
  23324. name: "Human Scale",
  23325. height: math.unit(1.67, "meters")
  23326. },
  23327. {
  23328. name: "Wolxi Scale",
  23329. height: math.unit(36.7, "meters"),
  23330. default: true
  23331. },
  23332. ]
  23333. ))
  23334. characterMakers.push(() => makeCharacter(
  23335. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23336. {
  23337. front: {
  23338. height: math.unit(1.73, "meters"),
  23339. weight: math.unit(240, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/izue-two-mothers/front.svg",
  23343. extra: 469 / 437,
  23344. bottom: 1.24 / 470.6
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Shrunken",
  23351. height: math.unit(7.86, "cm")
  23352. },
  23353. {
  23354. name: "Human Scale",
  23355. height: math.unit(1.73, "meters")
  23356. },
  23357. {
  23358. name: "Wolxi Scale",
  23359. height: math.unit(38, "meters"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(1.55, "meters"),
  23369. weight: math.unit(120, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/teeku-love-shack/front.svg",
  23373. extra: 387 / 362,
  23374. bottom: 1.51 / 388
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Shrunken",
  23381. height: math.unit(7, "cm")
  23382. },
  23383. {
  23384. name: "Human Scale",
  23385. height: math.unit(1.55, "meters")
  23386. },
  23387. {
  23388. name: "Wolxi Scale",
  23389. height: math.unit(34.1, "meters"),
  23390. default: true
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23396. {
  23397. front: {
  23398. height: math.unit(1.83, "meters"),
  23399. weight: math.unit(135, "lb"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/dejma-the-red/front.svg",
  23403. extra: 480 / 458,
  23404. bottom: 1.8 / 482
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Shrunken",
  23411. height: math.unit(8.3, "cm")
  23412. },
  23413. {
  23414. name: "Human Scale",
  23415. height: math.unit(1.83, "meters")
  23416. },
  23417. {
  23418. name: "Wolxi Scale",
  23419. height: math.unit(40, "meters"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23426. {
  23427. front: {
  23428. height: math.unit(1.78, "meters"),
  23429. weight: math.unit(65, "kg"),
  23430. name: "Front",
  23431. image: {
  23432. source: "./media/characters/aki/front.svg",
  23433. extra: 452 / 415
  23434. }
  23435. },
  23436. frontNsfw: {
  23437. height: math.unit(1.78, "meters"),
  23438. weight: math.unit(65, "kg"),
  23439. name: "Front (NSFW)",
  23440. image: {
  23441. source: "./media/characters/aki/front-nsfw.svg",
  23442. extra: 452 / 415
  23443. }
  23444. },
  23445. back: {
  23446. height: math.unit(1.78, "meters"),
  23447. weight: math.unit(65, "kg"),
  23448. name: "Back",
  23449. image: {
  23450. source: "./media/characters/aki/back.svg",
  23451. extra: 452 / 415
  23452. }
  23453. },
  23454. rump: {
  23455. height: math.unit(2.05, "feet"),
  23456. name: "Rump",
  23457. image: {
  23458. source: "./media/characters/aki/rump.svg"
  23459. }
  23460. },
  23461. dick: {
  23462. height: math.unit(0.95, "feet"),
  23463. name: "Dick",
  23464. image: {
  23465. source: "./media/characters/aki/dick.svg"
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Micro",
  23472. height: math.unit(15, "cm")
  23473. },
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(178, "cm"),
  23477. default: true
  23478. },
  23479. {
  23480. name: "Macro",
  23481. height: math.unit(214, "m")
  23482. },
  23483. {
  23484. name: "Macro+",
  23485. height: math.unit(534, "m")
  23486. },
  23487. ]
  23488. ))
  23489. characterMakers.push(() => makeCharacter(
  23490. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23491. {
  23492. front: {
  23493. height: math.unit(5 + 5 / 12, "feet"),
  23494. weight: math.unit(120, "lb"),
  23495. name: "Front",
  23496. image: {
  23497. source: "./media/characters/ari/front.svg",
  23498. extra: 714.5 / 682,
  23499. bottom: 8 / 722.5
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(5 + 5 / 12, "feet")
  23507. },
  23508. {
  23509. name: "Macro",
  23510. height: math.unit(100, "feet"),
  23511. default: true
  23512. },
  23513. {
  23514. name: "Megamacro",
  23515. height: math.unit(100, "miles")
  23516. },
  23517. {
  23518. name: "Gigamacro",
  23519. height: math.unit(80000, "miles")
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23525. {
  23526. side: {
  23527. height: math.unit(9, "feet"),
  23528. weight: math.unit(400, "kg"),
  23529. name: "Side",
  23530. image: {
  23531. source: "./media/characters/bolt/side.svg",
  23532. extra: 1126 / 896,
  23533. bottom: 60 / 1187.3,
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Micro",
  23540. height: math.unit(5, "inches")
  23541. },
  23542. {
  23543. name: "Normal",
  23544. height: math.unit(9, "feet"),
  23545. default: true
  23546. },
  23547. {
  23548. name: "Macro",
  23549. height: math.unit(700, "feet")
  23550. },
  23551. {
  23552. name: "Max Size",
  23553. height: math.unit(1.52e22, "yottameters")
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(4.53, "meters"),
  23562. weight: math.unit(3, "tons"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/draekon-sylviar/front.svg",
  23566. extra: 1228 / 1068,
  23567. bottom: 41 / 1270
  23568. }
  23569. },
  23570. tail: {
  23571. height: math.unit(1.772, "meter"),
  23572. name: "Tail",
  23573. image: {
  23574. source: "./media/characters/draekon-sylviar/tail.svg"
  23575. }
  23576. },
  23577. head: {
  23578. height: math.unit(1.331, "meter"),
  23579. name: "Head",
  23580. image: {
  23581. source: "./media/characters/draekon-sylviar/head.svg"
  23582. }
  23583. },
  23584. hand: {
  23585. height: math.unit(0.564, "meter"),
  23586. name: "Hand",
  23587. image: {
  23588. source: "./media/characters/draekon-sylviar/hand.svg"
  23589. }
  23590. },
  23591. foot: {
  23592. height: math.unit(0.621, "meter"),
  23593. name: "Foot",
  23594. image: {
  23595. source: "./media/characters/draekon-sylviar/foot.svg",
  23596. bottom: 32 / 324
  23597. }
  23598. },
  23599. dick: {
  23600. height: math.unit(61, "cm"),
  23601. name: "Dick",
  23602. image: {
  23603. source: "./media/characters/draekon-sylviar/dick.svg"
  23604. }
  23605. },
  23606. dickseparated: {
  23607. height: math.unit(61, "cm"),
  23608. name: "Dick-separated",
  23609. image: {
  23610. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Small",
  23617. height: math.unit(4.53 / 2, "meters"),
  23618. default: true
  23619. },
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(4.53, "meters"),
  23623. default: true
  23624. },
  23625. {
  23626. name: "Large",
  23627. height: math.unit(4.53 * 2, "meters"),
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(6 + 2 / 12, "feet"),
  23636. weight: math.unit(180, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/brawler/front.svg",
  23640. extra: 3301 / 3027,
  23641. bottom: 138 / 3439
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(6 + 2 / 12, "feet"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(11, "feet"),
  23658. weight: math.unit(1000, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/alex/front.svg",
  23662. bottom: 44.5 / 620
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Micro",
  23669. height: math.unit(5, "inches")
  23670. },
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(11, "feet"),
  23674. default: true
  23675. },
  23676. {
  23677. name: "Macro",
  23678. height: math.unit(9.5e9, "feet")
  23679. },
  23680. {
  23681. name: "Max Size",
  23682. height: math.unit(1.4e283, "yottameters")
  23683. },
  23684. ]
  23685. ))
  23686. characterMakers.push(() => makeCharacter(
  23687. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23688. {
  23689. female: {
  23690. height: math.unit(29.9, "m"),
  23691. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23692. name: "Female",
  23693. image: {
  23694. source: "./media/characters/zenari/female.svg",
  23695. extra: 3281.6 / 3217,
  23696. bottom: 72.2 / 3353
  23697. }
  23698. },
  23699. male: {
  23700. height: math.unit(27.7, "m"),
  23701. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23702. name: "Male",
  23703. image: {
  23704. source: "./media/characters/zenari/male.svg",
  23705. extra: 3008 / 2991,
  23706. bottom: 54.6 / 3069
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(29.7, "meters"),
  23714. default: true
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23720. {
  23721. female: {
  23722. height: math.unit(23.8, "m"),
  23723. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23724. name: "Female",
  23725. image: {
  23726. source: "./media/characters/mactarian/female.svg",
  23727. extra: 2662 / 2569,
  23728. bottom: 73 / 2736
  23729. }
  23730. },
  23731. male: {
  23732. height: math.unit(23.8, "m"),
  23733. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23734. name: "Male",
  23735. image: {
  23736. source: "./media/characters/mactarian/male.svg",
  23737. extra: 2673 / 2600,
  23738. bottom: 76 / 2750
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Macro",
  23745. height: math.unit(23.8, "meters"),
  23746. default: true
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23752. {
  23753. female: {
  23754. height: math.unit(19.3, "m"),
  23755. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23756. name: "Female",
  23757. image: {
  23758. source: "./media/characters/umok/female.svg",
  23759. extra: 2186 / 2078,
  23760. bottom: 87 / 2277
  23761. }
  23762. },
  23763. male: {
  23764. height: math.unit(19.5, "m"),
  23765. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23766. name: "Male",
  23767. image: {
  23768. source: "./media/characters/umok/male.svg",
  23769. extra: 2233 / 2140,
  23770. bottom: 24.4 / 2258
  23771. }
  23772. },
  23773. },
  23774. [
  23775. {
  23776. name: "Macro",
  23777. height: math.unit(19.3, "meters"),
  23778. default: true
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23784. {
  23785. female: {
  23786. height: math.unit(26.15, "m"),
  23787. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23788. name: "Female",
  23789. image: {
  23790. source: "./media/characters/joraxian/female.svg",
  23791. extra: 2912 / 2824,
  23792. bottom: 36 / 2956
  23793. }
  23794. },
  23795. male: {
  23796. height: math.unit(25.4, "m"),
  23797. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23798. name: "Male",
  23799. image: {
  23800. source: "./media/characters/joraxian/male.svg",
  23801. extra: 2877 / 2721,
  23802. bottom: 82 / 2967
  23803. }
  23804. },
  23805. },
  23806. [
  23807. {
  23808. name: "Macro",
  23809. height: math.unit(26.15, "meters"),
  23810. default: true
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23816. {
  23817. female: {
  23818. height: math.unit(21.6, "m"),
  23819. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23820. name: "Female",
  23821. image: {
  23822. source: "./media/characters/sthara/female.svg",
  23823. extra: 2516 / 2347,
  23824. bottom: 21.5 / 2537
  23825. }
  23826. },
  23827. male: {
  23828. height: math.unit(24, "m"),
  23829. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23830. name: "Male",
  23831. image: {
  23832. source: "./media/characters/sthara/male.svg",
  23833. extra: 2732 / 2607,
  23834. bottom: 23 / 2732
  23835. }
  23836. },
  23837. },
  23838. [
  23839. {
  23840. name: "Macro",
  23841. height: math.unit(21.6, "meters"),
  23842. default: true
  23843. },
  23844. ]
  23845. ))
  23846. characterMakers.push(() => makeCharacter(
  23847. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23848. {
  23849. front: {
  23850. height: math.unit(6 + 4 / 12, "feet"),
  23851. weight: math.unit(175, "lb"),
  23852. name: "Front",
  23853. image: {
  23854. source: "./media/characters/luka-bryzant/front.svg",
  23855. extra: 311 / 289,
  23856. bottom: 4 / 315
  23857. }
  23858. },
  23859. back: {
  23860. height: math.unit(6 + 4 / 12, "feet"),
  23861. weight: math.unit(175, "lb"),
  23862. name: "Back",
  23863. image: {
  23864. source: "./media/characters/luka-bryzant/back.svg",
  23865. extra: 311 / 289,
  23866. bottom: 3.8 / 313.7
  23867. }
  23868. },
  23869. },
  23870. [
  23871. {
  23872. name: "Micro",
  23873. height: math.unit(10, "inches")
  23874. },
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(6 + 4 / 12, "feet"),
  23878. default: true
  23879. },
  23880. {
  23881. name: "Large",
  23882. height: math.unit(12, "feet")
  23883. },
  23884. ]
  23885. ))
  23886. characterMakers.push(() => makeCharacter(
  23887. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23888. {
  23889. front: {
  23890. height: math.unit(5 + 7 / 12, "feet"),
  23891. weight: math.unit(185, "lb"),
  23892. name: "Front",
  23893. image: {
  23894. source: "./media/characters/aman-aquila/front.svg",
  23895. extra: 1013 / 976,
  23896. bottom: 45.6 / 1057
  23897. }
  23898. },
  23899. side: {
  23900. height: math.unit(5 + 7 / 12, "feet"),
  23901. weight: math.unit(185, "lb"),
  23902. name: "Side",
  23903. image: {
  23904. source: "./media/characters/aman-aquila/side.svg",
  23905. extra: 1054 / 1011,
  23906. bottom: 15 / 1070
  23907. }
  23908. },
  23909. back: {
  23910. height: math.unit(5 + 7 / 12, "feet"),
  23911. weight: math.unit(185, "lb"),
  23912. name: "Back",
  23913. image: {
  23914. source: "./media/characters/aman-aquila/back.svg",
  23915. extra: 1026 / 970,
  23916. bottom: 12 / 1039
  23917. }
  23918. },
  23919. head: {
  23920. height: math.unit(1.211, "feet"),
  23921. name: "Head",
  23922. image: {
  23923. source: "./media/characters/aman-aquila/head.svg",
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Minimicro",
  23930. height: math.unit(0.057, "inches")
  23931. },
  23932. {
  23933. name: "Micro",
  23934. height: math.unit(7, "inches")
  23935. },
  23936. {
  23937. name: "Mini",
  23938. height: math.unit(3 + 7 / 12, "feet")
  23939. },
  23940. {
  23941. name: "Normal",
  23942. height: math.unit(5 + 7 / 12, "feet"),
  23943. default: true
  23944. },
  23945. {
  23946. name: "Macro",
  23947. height: math.unit(157 + 7 / 12, "feet")
  23948. },
  23949. {
  23950. name: "Megamacro",
  23951. height: math.unit(1557 + 7 / 12, "feet")
  23952. },
  23953. {
  23954. name: "Gigamacro",
  23955. height: math.unit(15557 + 7 / 12, "feet")
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23961. {
  23962. front: {
  23963. height: math.unit(3 + 2 / 12, "inches"),
  23964. weight: math.unit(0.3, "ounces"),
  23965. name: "Front",
  23966. image: {
  23967. source: "./media/characters/hiphae/front.svg",
  23968. extra: 1931 / 1683,
  23969. bottom: 24 / 1955
  23970. }
  23971. },
  23972. },
  23973. [
  23974. {
  23975. name: "Normal",
  23976. height: math.unit(3 + 1 / 2, "inches"),
  23977. default: true
  23978. },
  23979. ]
  23980. ))
  23981. characterMakers.push(() => makeCharacter(
  23982. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23983. {
  23984. front: {
  23985. height: math.unit(5 + 10 / 12, "feet"),
  23986. weight: math.unit(165, "lb"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/nicky/front.svg",
  23990. extra: 3144 / 2886,
  23991. bottom: 45.6 / 3192
  23992. }
  23993. },
  23994. back: {
  23995. height: math.unit(5 + 10 / 12, "feet"),
  23996. weight: math.unit(165, "lb"),
  23997. name: "Back",
  23998. image: {
  23999. source: "./media/characters/nicky/back.svg",
  24000. extra: 3055 / 2804,
  24001. bottom: 28.4 / 3087
  24002. }
  24003. },
  24004. frontclothed: {
  24005. height: math.unit(5 + 10 / 12, "feet"),
  24006. weight: math.unit(165, "lb"),
  24007. name: "Front-clothed",
  24008. image: {
  24009. source: "./media/characters/nicky/front-clothed.svg",
  24010. extra: 3184.9 / 2926.9,
  24011. bottom: 86.5 / 3239.9
  24012. }
  24013. },
  24014. foot: {
  24015. height: math.unit(1.16, "feet"),
  24016. name: "Foot",
  24017. image: {
  24018. source: "./media/characters/nicky/foot.svg"
  24019. }
  24020. },
  24021. feet: {
  24022. height: math.unit(1.34, "feet"),
  24023. name: "Feet",
  24024. image: {
  24025. source: "./media/characters/nicky/feet.svg"
  24026. }
  24027. },
  24028. maw: {
  24029. height: math.unit(0.9, "feet"),
  24030. name: "Maw",
  24031. image: {
  24032. source: "./media/characters/nicky/maw.svg"
  24033. }
  24034. },
  24035. },
  24036. [
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(5 + 10 / 12, "feet"),
  24040. default: true
  24041. },
  24042. {
  24043. name: "Macro",
  24044. height: math.unit(60, "feet")
  24045. },
  24046. {
  24047. name: "Megamacro",
  24048. height: math.unit(1, "mile")
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24054. {
  24055. side: {
  24056. height: math.unit(10, "feet"),
  24057. weight: math.unit(600, "lb"),
  24058. name: "Side",
  24059. image: {
  24060. source: "./media/characters/blair/side.svg",
  24061. bottom: 16.6 / 475,
  24062. extra: 458 / 431
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Micro",
  24069. height: math.unit(8, "inches")
  24070. },
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(10, "feet"),
  24074. default: true
  24075. },
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(180, "feet")
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24084. {
  24085. front: {
  24086. height: math.unit(5 + 4 / 12, "feet"),
  24087. weight: math.unit(125, "lb"),
  24088. name: "Front",
  24089. image: {
  24090. source: "./media/characters/fisher/front.svg",
  24091. extra: 444 / 390,
  24092. bottom: 2 / 444.8
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Micro",
  24099. height: math.unit(4, "inches")
  24100. },
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(5 + 4 / 12, "feet"),
  24104. default: true
  24105. },
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(100, "feet")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(6.71, "feet"),
  24117. weight: math.unit(200, "lb"),
  24118. capacity: math.unit(1000000, "people"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/gliss/front.svg",
  24122. extra: 2347 / 2231,
  24123. bottom: 113 / 2462
  24124. }
  24125. },
  24126. hammerspaceSize: {
  24127. height: math.unit(6.71 * 717, "feet"),
  24128. weight: math.unit(200, "lb"),
  24129. capacity: math.unit(1000000, "people"),
  24130. name: "Hammerspace Size",
  24131. image: {
  24132. source: "./media/characters/gliss/front.svg",
  24133. extra: 2347 / 2231,
  24134. bottom: 113 / 2462
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(6.71, "feet"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24148. {
  24149. side: {
  24150. height: math.unit(1.44, "m"),
  24151. weight: math.unit(80, "kg"),
  24152. name: "Side",
  24153. image: {
  24154. source: "./media/characters/dune-anderson/side.svg",
  24155. bottom: 49 / 1426
  24156. }
  24157. },
  24158. },
  24159. [
  24160. {
  24161. name: "Wolf-sized",
  24162. height: math.unit(1.44, "meters")
  24163. },
  24164. {
  24165. name: "Normal",
  24166. height: math.unit(5.05, "meters"),
  24167. default: true
  24168. },
  24169. {
  24170. name: "Big",
  24171. height: math.unit(14.4, "meters")
  24172. },
  24173. {
  24174. name: "Huge",
  24175. height: math.unit(144, "meters")
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24181. {
  24182. front: {
  24183. height: math.unit(7, "feet"),
  24184. weight: math.unit(425, "lb"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/hind/front.svg",
  24188. extra: 2091 / 1860,
  24189. bottom: 129 / 2220
  24190. }
  24191. },
  24192. back: {
  24193. height: math.unit(7, "feet"),
  24194. weight: math.unit(425, "lb"),
  24195. name: "Back",
  24196. image: {
  24197. source: "./media/characters/hind/back.svg",
  24198. extra: 2091 / 1860,
  24199. bottom: 24.6 / 2309
  24200. }
  24201. },
  24202. tail: {
  24203. height: math.unit(2.8, "feet"),
  24204. name: "Tail",
  24205. image: {
  24206. source: "./media/characters/hind/tail.svg"
  24207. }
  24208. },
  24209. head: {
  24210. height: math.unit(2.55, "feet"),
  24211. name: "Head",
  24212. image: {
  24213. source: "./media/characters/hind/head.svg"
  24214. }
  24215. },
  24216. },
  24217. [
  24218. {
  24219. name: "XS",
  24220. height: math.unit(0.7, "feet")
  24221. },
  24222. {
  24223. name: "Normal",
  24224. height: math.unit(7, "feet"),
  24225. default: true
  24226. },
  24227. {
  24228. name: "XL",
  24229. height: math.unit(70, "feet")
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24235. {
  24236. front: {
  24237. height: math.unit(6, "feet"),
  24238. weight: math.unit(150, "lb"),
  24239. name: "Front",
  24240. image: {
  24241. source: "./media/characters/dylan-skaven/front.svg",
  24242. extra: 2318 / 2063,
  24243. bottom: 93.4 / 2410
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Nano",
  24250. height: math.unit(1, "mm")
  24251. },
  24252. {
  24253. name: "Micro",
  24254. height: math.unit(1, "cm")
  24255. },
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(2.1, "meters"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(7 + 5 / 12, "feet"),
  24268. weight: math.unit(357, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/solex-draconov/front.svg",
  24272. extra: 1993 / 1865,
  24273. bottom: 117 / 2111
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Natural Height",
  24280. height: math.unit(7 + 5 / 12, "feet"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Macro",
  24285. height: math.unit(350, "feet")
  24286. },
  24287. {
  24288. name: "Macro+",
  24289. height: math.unit(1000, "feet")
  24290. },
  24291. {
  24292. name: "Megamacro",
  24293. height: math.unit(20, "km")
  24294. },
  24295. {
  24296. name: "Megamacro+",
  24297. height: math.unit(1000, "km")
  24298. },
  24299. {
  24300. name: "Gigamacro",
  24301. height: math.unit(2.5, "Gm")
  24302. },
  24303. {
  24304. name: "Teramacro",
  24305. height: math.unit(15, "Tm")
  24306. },
  24307. {
  24308. name: "Galactic",
  24309. height: math.unit(30, "Zm")
  24310. },
  24311. {
  24312. name: "Universal",
  24313. height: math.unit(21000, "Ym")
  24314. },
  24315. {
  24316. name: "Omniversal",
  24317. height: math.unit(9.861e50, "Ym")
  24318. },
  24319. {
  24320. name: "Existential",
  24321. height: math.unit(1e300, "meters")
  24322. },
  24323. ]
  24324. ))
  24325. characterMakers.push(() => makeCharacter(
  24326. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24327. {
  24328. side: {
  24329. height: math.unit(25, "feet"),
  24330. weight: math.unit(90000, "lb"),
  24331. name: "Side",
  24332. image: {
  24333. source: "./media/characters/mandarax/side.svg",
  24334. extra: 614 / 332,
  24335. bottom: 55 / 630
  24336. }
  24337. },
  24338. head: {
  24339. height: math.unit(11.4, "feet"),
  24340. name: "Head",
  24341. image: {
  24342. source: "./media/characters/mandarax/head.svg"
  24343. }
  24344. },
  24345. belly: {
  24346. height: math.unit(33, "feet"),
  24347. name: "Belly",
  24348. capacity: math.unit(500, "people"),
  24349. image: {
  24350. source: "./media/characters/mandarax/belly.svg"
  24351. }
  24352. },
  24353. dick: {
  24354. height: math.unit(8.46, "feet"),
  24355. name: "Dick",
  24356. image: {
  24357. source: "./media/characters/mandarax/dick.svg"
  24358. }
  24359. },
  24360. top: {
  24361. height: math.unit(28, "meters"),
  24362. name: "Top",
  24363. image: {
  24364. source: "./media/characters/mandarax/top.svg"
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(25, "feet"),
  24372. default: true
  24373. },
  24374. ]
  24375. ))
  24376. characterMakers.push(() => makeCharacter(
  24377. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24378. {
  24379. front: {
  24380. height: math.unit(5, "feet"),
  24381. weight: math.unit(90, "lb"),
  24382. name: "Front",
  24383. image: {
  24384. source: "./media/characters/pixil/front.svg",
  24385. extra: 2000 / 1618,
  24386. bottom: 12.3 / 2011
  24387. }
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(5, "feet"),
  24394. default: true
  24395. },
  24396. {
  24397. name: "Megamacro",
  24398. height: math.unit(10, "miles"),
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(7 + 2 / 12, "feet"),
  24407. weight: math.unit(200, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/angel/front.svg",
  24411. extra: 1830 / 1737,
  24412. bottom: 22.6 / 1854,
  24413. }
  24414. },
  24415. },
  24416. [
  24417. {
  24418. name: "Normal",
  24419. height: math.unit(7 + 2 / 12, "feet"),
  24420. default: true
  24421. },
  24422. {
  24423. name: "Macro",
  24424. height: math.unit(1000, "feet")
  24425. },
  24426. {
  24427. name: "Megamacro",
  24428. height: math.unit(2, "miles")
  24429. },
  24430. {
  24431. name: "Gigamacro",
  24432. height: math.unit(20, "earths")
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(5, "feet"),
  24441. weight: math.unit(180, "lb"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/mekana/front.svg",
  24445. extra: 1671 / 1605,
  24446. bottom: 3.5 / 1691
  24447. }
  24448. },
  24449. side: {
  24450. height: math.unit(5, "feet"),
  24451. weight: math.unit(180, "lb"),
  24452. name: "Side",
  24453. image: {
  24454. source: "./media/characters/mekana/side.svg",
  24455. extra: 1671 / 1605,
  24456. bottom: 3.5 / 1691
  24457. }
  24458. },
  24459. back: {
  24460. height: math.unit(5, "feet"),
  24461. weight: math.unit(180, "lb"),
  24462. name: "Back",
  24463. image: {
  24464. source: "./media/characters/mekana/back.svg",
  24465. extra: 1671 / 1605,
  24466. bottom: 3.5 / 1691
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(5, "feet"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24480. {
  24481. front: {
  24482. height: math.unit(4 + 6 / 12, "feet"),
  24483. weight: math.unit(80, "lb"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/pixie/front.svg",
  24487. extra: 1924 / 1825,
  24488. bottom: 22.4 / 1946
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(4 + 6 / 12, "feet"),
  24496. default: true
  24497. },
  24498. {
  24499. name: "Macro",
  24500. height: math.unit(40, "feet")
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(2.1, "meters"),
  24509. weight: math.unit(200, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/the-lascivious/front.svg",
  24513. extra: 1 / 0.893,
  24514. bottom: 3.5 / 573.7
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Human Scale",
  24521. height: math.unit(2.1, "meters")
  24522. },
  24523. {
  24524. name: "Wolxi Scale",
  24525. height: math.unit(46.2, "m"),
  24526. default: true
  24527. },
  24528. {
  24529. name: "Boinker of Buildings",
  24530. height: math.unit(10, "km")
  24531. },
  24532. {
  24533. name: "Shagger of Skyscrapers",
  24534. height: math.unit(40, "km")
  24535. },
  24536. {
  24537. name: "Banger of Boroughs",
  24538. height: math.unit(4000, "km")
  24539. },
  24540. {
  24541. name: "Screwer of States",
  24542. height: math.unit(100000, "km")
  24543. },
  24544. {
  24545. name: "Pounder of Planets",
  24546. height: math.unit(2000000, "km")
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(6, "feet"),
  24555. weight: math.unit(150, "lb"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/aj/front.svg",
  24559. extra: 2039 / 1562,
  24560. bottom: 40 / 2079
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Normal",
  24567. height: math.unit(11 + 6 / 12, "feet"),
  24568. default: true
  24569. },
  24570. {
  24571. name: "Megamacro",
  24572. height: math.unit(60, "megameters")
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24578. {
  24579. side: {
  24580. height: math.unit(31 + 8 / 12, "feet"),
  24581. weight: math.unit(75000, "kg"),
  24582. name: "Side",
  24583. image: {
  24584. source: "./media/characters/koros/side.svg",
  24585. extra: 1442 / 1297,
  24586. bottom: 122.7 / 1562
  24587. }
  24588. },
  24589. dicksKingsCrown: {
  24590. height: math.unit(6, "feet"),
  24591. name: "Dicks (King's Crown)",
  24592. image: {
  24593. source: "./media/characters/koros/dicks-kings-crown.svg"
  24594. }
  24595. },
  24596. dicksTailSet: {
  24597. height: math.unit(3, "feet"),
  24598. name: "Dicks (Tail Set)",
  24599. image: {
  24600. source: "./media/characters/koros/dicks-tail-set.svg"
  24601. }
  24602. },
  24603. dickCumming: {
  24604. height: math.unit(7.98, "feet"),
  24605. name: "Dick (Cumming)",
  24606. image: {
  24607. source: "./media/characters/koros/dick-cumming.svg"
  24608. }
  24609. },
  24610. dicksBack: {
  24611. height: math.unit(5.9, "feet"),
  24612. name: "Dicks (Back)",
  24613. image: {
  24614. source: "./media/characters/koros/dicks-back.svg"
  24615. }
  24616. },
  24617. dicksFront: {
  24618. height: math.unit(3.72, "feet"),
  24619. name: "Dicks (Front)",
  24620. image: {
  24621. source: "./media/characters/koros/dicks-front.svg"
  24622. }
  24623. },
  24624. dicksPeeking: {
  24625. height: math.unit(3.0, "feet"),
  24626. name: "Dicks (Peeking)",
  24627. image: {
  24628. source: "./media/characters/koros/dicks-peeking.svg"
  24629. }
  24630. },
  24631. eye: {
  24632. height: math.unit(1.7, "feet"),
  24633. name: "Eye",
  24634. image: {
  24635. source: "./media/characters/koros/eye.svg"
  24636. }
  24637. },
  24638. headFront: {
  24639. height: math.unit(11.69, "feet"),
  24640. name: "Head (Front)",
  24641. image: {
  24642. source: "./media/characters/koros/head-front.svg"
  24643. }
  24644. },
  24645. headSide: {
  24646. height: math.unit(14, "feet"),
  24647. name: "Head (Side)",
  24648. image: {
  24649. source: "./media/characters/koros/head-side.svg"
  24650. }
  24651. },
  24652. leg: {
  24653. height: math.unit(17, "feet"),
  24654. name: "Leg",
  24655. image: {
  24656. source: "./media/characters/koros/leg.svg"
  24657. }
  24658. },
  24659. mawSide: {
  24660. height: math.unit(12.8, "feet"),
  24661. name: "Maw (Side)",
  24662. image: {
  24663. source: "./media/characters/koros/maw-side.svg"
  24664. }
  24665. },
  24666. mawSpitting: {
  24667. height: math.unit(17, "feet"),
  24668. name: "Maw (Spitting)",
  24669. image: {
  24670. source: "./media/characters/koros/maw-spitting.svg"
  24671. }
  24672. },
  24673. slit: {
  24674. height: math.unit(2.8, "feet"),
  24675. name: "Slit",
  24676. image: {
  24677. source: "./media/characters/koros/slit.svg"
  24678. }
  24679. },
  24680. stomach: {
  24681. height: math.unit(6.8, "feet"),
  24682. capacity: math.unit(20, "people"),
  24683. name: "Stomach",
  24684. image: {
  24685. source: "./media/characters/koros/stomach.svg"
  24686. }
  24687. },
  24688. wingspanBottom: {
  24689. height: math.unit(114, "feet"),
  24690. name: "Wingspan (Bottom)",
  24691. image: {
  24692. source: "./media/characters/koros/wingspan-bottom.svg"
  24693. }
  24694. },
  24695. wingspanTop: {
  24696. height: math.unit(104, "feet"),
  24697. name: "Wingspan (Top)",
  24698. image: {
  24699. source: "./media/characters/koros/wingspan-top.svg"
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(31 + 8 / 12, "feet"),
  24707. default: true
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(18 + 5 / 12, "feet"),
  24716. weight: math.unit(3750, "kg"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/vexx/front.svg",
  24720. extra: 426 / 396,
  24721. bottom: 31.5 / 458
  24722. }
  24723. },
  24724. maw: {
  24725. height: math.unit(6, "feet"),
  24726. name: "Maw",
  24727. image: {
  24728. source: "./media/characters/vexx/maw.svg"
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(18 + 5 / 12, "feet"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(17 + 6 / 12, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/baadra/front.svg",
  24749. extra: 3137 / 2890,
  24750. bottom: 168.4 / 3305
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(17 + 6 / 12, "feet"),
  24755. weight: math.unit(150, "lb"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/baadra/back.svg",
  24759. extra: 3142 / 2890,
  24760. bottom: 220 / 3371
  24761. }
  24762. },
  24763. head: {
  24764. height: math.unit(5.45, "feet"),
  24765. name: "Head",
  24766. image: {
  24767. source: "./media/characters/baadra/head.svg"
  24768. }
  24769. },
  24770. headAngry: {
  24771. height: math.unit(4.95, "feet"),
  24772. name: "Head (Angry)",
  24773. image: {
  24774. source: "./media/characters/baadra/head-angry.svg"
  24775. }
  24776. },
  24777. headOpen: {
  24778. height: math.unit(6, "feet"),
  24779. name: "Head (Open)",
  24780. image: {
  24781. source: "./media/characters/baadra/head-open.svg"
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Normal",
  24788. height: math.unit(17 + 6 / 12, "feet"),
  24789. default: true
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(7 + 3 / 12, "feet"),
  24798. weight: math.unit(180, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/juri/front.svg",
  24802. extra: 1401 / 1237,
  24803. bottom: 18.5 / 1418
  24804. }
  24805. },
  24806. side: {
  24807. height: math.unit(7 + 3 / 12, "feet"),
  24808. weight: math.unit(180, "lb"),
  24809. name: "Side",
  24810. image: {
  24811. source: "./media/characters/juri/side.svg",
  24812. extra: 1424 / 1242,
  24813. bottom: 18.5 / 1447
  24814. }
  24815. },
  24816. sitting: {
  24817. height: math.unit(6, "feet"),
  24818. weight: math.unit(180, "lb"),
  24819. name: "Sitting",
  24820. image: {
  24821. source: "./media/characters/juri/sitting.svg",
  24822. extra: 1270 / 1143,
  24823. bottom: 100 / 1343
  24824. }
  24825. },
  24826. back: {
  24827. height: math.unit(7 + 3 / 12, "feet"),
  24828. weight: math.unit(180, "lb"),
  24829. name: "Back",
  24830. image: {
  24831. source: "./media/characters/juri/back.svg",
  24832. extra: 1377 / 1240,
  24833. bottom: 23.7 / 1405
  24834. }
  24835. },
  24836. maw: {
  24837. height: math.unit(2.8, "feet"),
  24838. name: "Maw",
  24839. image: {
  24840. source: "./media/characters/juri/maw.svg"
  24841. }
  24842. },
  24843. stomach: {
  24844. height: math.unit(0.89, "feet"),
  24845. capacity: math.unit(4, "liters"),
  24846. name: "Stomach",
  24847. image: {
  24848. source: "./media/characters/juri/stomach.svg"
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(7 + 3 / 12, "feet"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24862. {
  24863. fox: {
  24864. height: math.unit(5 + 6 / 12, "feet"),
  24865. weight: math.unit(140, "lb"),
  24866. name: "Fox",
  24867. image: {
  24868. source: "./media/characters/maxene-sita/fox.svg",
  24869. extra: 146 / 138,
  24870. bottom: 2.1 / 148.19
  24871. }
  24872. },
  24873. foxLaying: {
  24874. height: math.unit(1.70, "feet"),
  24875. weight: math.unit(140, "lb"),
  24876. name: "Fox (Laying)",
  24877. image: {
  24878. source: "./media/characters/maxene-sita/fox-laying.svg",
  24879. extra: 910 / 572,
  24880. bottom: 71 / 981
  24881. }
  24882. },
  24883. kitsune: {
  24884. height: math.unit(10, "feet"),
  24885. weight: math.unit(800, "lb"),
  24886. name: "Kitsune",
  24887. image: {
  24888. source: "./media/characters/maxene-sita/kitsune.svg",
  24889. extra: 185 / 176,
  24890. bottom: 4.7 / 189.9
  24891. }
  24892. },
  24893. hellhound: {
  24894. height: math.unit(10, "feet"),
  24895. weight: math.unit(700, "lb"),
  24896. name: "Hellhound",
  24897. image: {
  24898. source: "./media/characters/maxene-sita/hellhound.svg",
  24899. extra: 1600 / 1545,
  24900. bottom: 81 / 1681
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(5 + 6 / 12, "feet"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24914. {
  24915. front: {
  24916. height: math.unit(3 + 4 / 12, "feet"),
  24917. weight: math.unit(70, "lb"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/maia/front.svg",
  24921. extra: 227 / 219.5,
  24922. bottom: 40 / 267
  24923. }
  24924. },
  24925. back: {
  24926. height: math.unit(3 + 4 / 12, "feet"),
  24927. weight: math.unit(70, "lb"),
  24928. name: "Back",
  24929. image: {
  24930. source: "./media/characters/maia/back.svg",
  24931. extra: 237 / 225
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(3 + 4 / 12, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(5 + 10 / 12, "feet"),
  24948. weight: math.unit(197, "lb"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/jabaro/front.svg",
  24952. extra: 225 / 216,
  24953. bottom: 5.06 / 230
  24954. }
  24955. },
  24956. back: {
  24957. height: math.unit(5 + 10 / 12, "feet"),
  24958. weight: math.unit(197, "lb"),
  24959. name: "Back",
  24960. image: {
  24961. source: "./media/characters/jabaro/back.svg",
  24962. extra: 225 / 219,
  24963. bottom: 1.9 / 227
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(5 + 10 / 12, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24977. {
  24978. front: {
  24979. height: math.unit(5 + 8 / 12, "feet"),
  24980. weight: math.unit(139, "lb"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/risa/front.svg",
  24984. extra: 270 / 260,
  24985. bottom: 11.2 / 282
  24986. }
  24987. },
  24988. back: {
  24989. height: math.unit(5 + 8 / 12, "feet"),
  24990. weight: math.unit(139, "lb"),
  24991. name: "Back",
  24992. image: {
  24993. source: "./media/characters/risa/back.svg",
  24994. extra: 264 / 255,
  24995. bottom: 4 / 268
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Normal",
  25002. height: math.unit(5 + 8 / 12, "feet"),
  25003. default: true
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25009. {
  25010. front: {
  25011. height: math.unit(2 + 11 / 12, "feet"),
  25012. weight: math.unit(30, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/weatley/front.svg",
  25016. bottom: 10.7 / 414,
  25017. extra: 403.5 / 362
  25018. }
  25019. },
  25020. back: {
  25021. height: math.unit(2 + 11 / 12, "feet"),
  25022. weight: math.unit(30, "lb"),
  25023. name: "Back",
  25024. image: {
  25025. source: "./media/characters/weatley/back.svg",
  25026. bottom: 10.7 / 414,
  25027. extra: 403.5 / 362
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(2 + 11 / 12, "feet"),
  25035. default: true
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(5 + 2 / 12, "feet"),
  25044. weight: math.unit(50, "kg"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/mercury-crescent/front.svg",
  25048. extra: 1088 / 1033,
  25049. bottom: 18.9 / 1109
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(5 + 2 / 12, "feet"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(2, "feet"),
  25066. weight: math.unit(15, "kg"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/diamond-jones/front.svg",
  25070. bottom: 16 / 568
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(2, "feet"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25084. {
  25085. front: {
  25086. height: math.unit(3, "feet"),
  25087. weight: math.unit(30, "kg"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/sweet-bit/front.svg",
  25091. extra: 675 / 567,
  25092. bottom: 27.7 / 703
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(3, "feet"),
  25100. default: true
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25106. {
  25107. side: {
  25108. height: math.unit(9.178, "feet"),
  25109. weight: math.unit(500, "lb"),
  25110. name: "Side",
  25111. image: {
  25112. source: "./media/characters/umbrazen/side.svg",
  25113. extra: 1730 / 1473,
  25114. bottom: 34.6 / 1765
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Normal",
  25121. height: math.unit(9.178, "feet"),
  25122. default: true
  25123. },
  25124. ]
  25125. ))
  25126. characterMakers.push(() => makeCharacter(
  25127. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25128. {
  25129. front: {
  25130. height: math.unit(10, "feet"),
  25131. weight: math.unit(750, "lb"),
  25132. name: "Front",
  25133. image: {
  25134. source: "./media/characters/arlist/front.svg",
  25135. extra: 961 / 778,
  25136. bottom: 6.2 / 986
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Normal",
  25143. height: math.unit(10, "feet"),
  25144. default: true
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(5 + 1 / 12, "feet"),
  25153. weight: math.unit(110, "lb"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/aradel/front.svg",
  25157. extra: 324 / 303,
  25158. bottom: 3.6 / 329.4
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Normal",
  25165. height: math.unit(5 + 1 / 12, "feet"),
  25166. default: true
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(3 + 8 / 12, "feet"),
  25175. weight: math.unit(50, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/serryn/front.svg",
  25179. extra: 1792 / 1656,
  25180. bottom: 43.5 / 1840
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(3 + 8 / 12, "feet"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Xavier Thyme" },
  25194. {
  25195. front: {
  25196. height: math.unit(7 + 10 / 12, "feet"),
  25197. weight: math.unit(255, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/xavier-thyme/front.svg",
  25201. extra: 3733 / 3642,
  25202. bottom: 131 / 3869
  25203. }
  25204. },
  25205. frontRaven: {
  25206. height: math.unit(7 + 10 / 12, "feet"),
  25207. weight: math.unit(255, "lb"),
  25208. name: "Front (Raven)",
  25209. image: {
  25210. source: "./media/characters/xavier-thyme/front-raven.svg",
  25211. extra: 4385 / 3642,
  25212. bottom: 131 / 4517
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Normal",
  25219. height: math.unit(7 + 10 / 12, "feet"),
  25220. default: true
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(1.6, "m"),
  25229. weight: math.unit(50, "kg"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/kiki/front.svg",
  25233. extra: 4682 / 3610,
  25234. bottom: 115 / 4777
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Normal",
  25241. height: math.unit(1.6, "meters"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(50, "m"),
  25251. weight: math.unit(500, "tonnes"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/ryoko/front.svg",
  25255. extra: 4632 / 3926,
  25256. bottom: 193 / 4823
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Normal",
  25263. height: math.unit(50, "meters"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(30, "m"),
  25273. weight: math.unit(22, "tonnes"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/elio/front.svg",
  25277. extra: 4582 / 3720,
  25278. bottom: 236 / 4828
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Normal",
  25285. height: math.unit(30, "meters"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(6 + 3 / 12, "feet"),
  25295. weight: math.unit(120, "lb"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/azura/front.svg",
  25299. extra: 1149 / 1135,
  25300. bottom: 45 / 1194
  25301. }
  25302. },
  25303. frontClothed: {
  25304. height: math.unit(6 + 3 / 12, "feet"),
  25305. weight: math.unit(120, "lb"),
  25306. name: "Front (Clothed)",
  25307. image: {
  25308. source: "./media/characters/azura/front-clothed.svg",
  25309. extra: 1149 / 1135,
  25310. bottom: 45 / 1194
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(6 + 3 / 12, "feet"),
  25318. default: true
  25319. },
  25320. {
  25321. name: "Macro",
  25322. height: math.unit(20 + 6 / 12, "feet")
  25323. },
  25324. {
  25325. name: "Megamacro",
  25326. height: math.unit(12, "miles")
  25327. },
  25328. {
  25329. name: "Gigamacro",
  25330. height: math.unit(10000, "miles")
  25331. },
  25332. {
  25333. name: "Teramacro",
  25334. height: math.unit(900000, "miles")
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25340. {
  25341. front: {
  25342. height: math.unit(12, "feet"),
  25343. weight: math.unit(1, "ton"),
  25344. capacity: math.unit(660000, "gallons"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/zeus/front.svg",
  25348. extra: 5005 / 4717,
  25349. bottom: 363 / 5388
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(12, "feet")
  25357. },
  25358. {
  25359. name: "Preferred Size",
  25360. height: math.unit(0.5, "miles"),
  25361. default: true
  25362. },
  25363. {
  25364. name: "Giga Horse",
  25365. height: math.unit(300, "miles")
  25366. },
  25367. {
  25368. name: "Riding Planets",
  25369. height: math.unit(30, "megameters")
  25370. },
  25371. {
  25372. name: "Cosmic Giant",
  25373. height: math.unit(3, "zettameters")
  25374. },
  25375. {
  25376. name: "Breeding God",
  25377. height: math.unit(9.92e22, "yottameters")
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25383. {
  25384. side: {
  25385. height: math.unit(9, "feet"),
  25386. weight: math.unit(1500, "kg"),
  25387. name: "Side",
  25388. image: {
  25389. source: "./media/characters/fang/side.svg",
  25390. extra: 924 / 866,
  25391. bottom: 47.5 / 972.3
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(9, "feet"),
  25399. default: true
  25400. },
  25401. {
  25402. name: "Macro",
  25403. height: math.unit(75 + 6 / 12, "feet")
  25404. },
  25405. {
  25406. name: "Teramacro",
  25407. height: math.unit(50000, "miles")
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(10, "feet"),
  25416. weight: math.unit(2, "tons"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/rekhit/front.svg",
  25420. extra: 2796 / 2590,
  25421. bottom: 225 / 3022
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(10, "feet"),
  25429. default: true
  25430. },
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(500, "feet")
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Dahlia Verrick" },
  25439. {
  25440. front: {
  25441. height: math.unit(7 + 6.451 / 12, "feet"),
  25442. weight: math.unit(310, "lb"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/dahlia-verrick/front.svg",
  25446. extra: 1488 / 1365,
  25447. bottom: 6.2 / 1495
  25448. }
  25449. },
  25450. back: {
  25451. height: math.unit(7 + 6.451 / 12, "feet"),
  25452. weight: math.unit(310, "lb"),
  25453. name: "Back",
  25454. image: {
  25455. source: "./media/characters/dahlia-verrick/back.svg",
  25456. extra: 1472 / 1351,
  25457. bottom: 5.28 / 1477
  25458. }
  25459. },
  25460. frontBusiness: {
  25461. height: math.unit(7 + 6.451 / 12, "feet"),
  25462. weight: math.unit(200, "lb"),
  25463. name: "Front (Business)",
  25464. image: {
  25465. source: "./media/characters/dahlia-verrick/front-business.svg",
  25466. extra: 1478 / 1381,
  25467. bottom: 5.5 / 1484
  25468. }
  25469. },
  25470. frontCasual: {
  25471. height: math.unit(7 + 6.451 / 12, "feet"),
  25472. weight: math.unit(200, "lb"),
  25473. name: "Front (Casual)",
  25474. image: {
  25475. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25476. extra: 1478 / 1381,
  25477. bottom: 5.5 / 1484
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Travel-Sized",
  25484. height: math.unit(7.45, "inches")
  25485. },
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(7 + 6.451 / 12, "feet"),
  25489. default: true
  25490. },
  25491. {
  25492. name: "Hitting the Town",
  25493. height: math.unit(37 + 8 / 12, "feet")
  25494. },
  25495. {
  25496. name: "Stomp in the Suburbs",
  25497. height: math.unit(964 + 9.728 / 12, "feet")
  25498. },
  25499. {
  25500. name: "Sit on the City",
  25501. height: math.unit(61747 + 10.592 / 12, "feet")
  25502. },
  25503. {
  25504. name: "Glomp the Globe",
  25505. height: math.unit(252919327 + 4.832 / 12, "feet")
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(6 + 4 / 12, "feet"),
  25514. weight: math.unit(320, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/balina-mahigan/front.svg",
  25518. extra: 447 / 428,
  25519. bottom: 18 / 466
  25520. }
  25521. },
  25522. back: {
  25523. height: math.unit(6 + 4 / 12, "feet"),
  25524. weight: math.unit(320, "lb"),
  25525. name: "Back",
  25526. image: {
  25527. source: "./media/characters/balina-mahigan/back.svg",
  25528. extra: 445 / 428,
  25529. bottom: 4.07 / 448
  25530. }
  25531. },
  25532. arm: {
  25533. height: math.unit(1.88, "feet"),
  25534. name: "Arm",
  25535. image: {
  25536. source: "./media/characters/balina-mahigan/arm.svg"
  25537. }
  25538. },
  25539. backPort: {
  25540. height: math.unit(0.685, "feet"),
  25541. name: "Back Port",
  25542. image: {
  25543. source: "./media/characters/balina-mahigan/back-port.svg"
  25544. }
  25545. },
  25546. hoofpaw: {
  25547. height: math.unit(1.41, "feet"),
  25548. name: "Hoofpaw",
  25549. image: {
  25550. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25551. }
  25552. },
  25553. leftHandBack: {
  25554. height: math.unit(0.938, "feet"),
  25555. name: "Left Hand (Back)",
  25556. image: {
  25557. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25558. }
  25559. },
  25560. leftHandFront: {
  25561. height: math.unit(0.938, "feet"),
  25562. name: "Left Hand (Front)",
  25563. image: {
  25564. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25565. }
  25566. },
  25567. rightHandBack: {
  25568. height: math.unit(0.95, "feet"),
  25569. name: "Right Hand (Back)",
  25570. image: {
  25571. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25572. }
  25573. },
  25574. rightHandFront: {
  25575. height: math.unit(0.95, "feet"),
  25576. name: "Right Hand (Front)",
  25577. image: {
  25578. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(6 + 4 / 12, "feet"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(6, "feet"),
  25595. weight: math.unit(320, "lb"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/balina-mejeri/front.svg",
  25599. extra: 517 / 488,
  25600. bottom: 44.2 / 561
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(6 + 4 / 12, "feet")
  25608. },
  25609. {
  25610. name: "Business",
  25611. height: math.unit(155, "feet"),
  25612. default: true
  25613. },
  25614. ]
  25615. ))
  25616. characterMakers.push(() => makeCharacter(
  25617. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25618. {
  25619. kneeling: {
  25620. height: math.unit(6 + 4 / 12, "feet"),
  25621. weight: math.unit(300 * 20, "lb"),
  25622. name: "Kneeling",
  25623. image: {
  25624. source: "./media/characters/balbarian/kneeling.svg",
  25625. extra: 922 / 862,
  25626. bottom: 42.4 / 965
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(6 + 4 / 12, "feet")
  25634. },
  25635. {
  25636. name: "Treasured",
  25637. height: math.unit(18 + 9 / 12, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Macro",
  25642. height: math.unit(900, "feet")
  25643. },
  25644. ]
  25645. ))
  25646. characterMakers.push(() => makeCharacter(
  25647. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25648. {
  25649. front: {
  25650. height: math.unit(6 + 4 / 12, "feet"),
  25651. weight: math.unit(325, "lb"),
  25652. name: "Front",
  25653. image: {
  25654. source: "./media/characters/balina-amarini/front.svg",
  25655. extra: 415 / 403,
  25656. bottom: 19 / 433.4
  25657. }
  25658. },
  25659. back: {
  25660. height: math.unit(6 + 4 / 12, "feet"),
  25661. weight: math.unit(325, "lb"),
  25662. name: "Back",
  25663. image: {
  25664. source: "./media/characters/balina-amarini/back.svg",
  25665. extra: 415 / 403,
  25666. bottom: 13.5 / 432
  25667. }
  25668. },
  25669. overdrive: {
  25670. height: math.unit(6 + 4 / 12, "feet"),
  25671. weight: math.unit(400, "lb"),
  25672. name: "Overdrive",
  25673. image: {
  25674. source: "./media/characters/balina-amarini/overdrive.svg",
  25675. extra: 269 / 259,
  25676. bottom: 12 / 282
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Boom",
  25683. height: math.unit(9 + 10 / 12, "feet"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Macro",
  25688. height: math.unit(280, "feet")
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25694. {
  25695. goddess: {
  25696. height: math.unit(600, "feet"),
  25697. weight: math.unit(2000000, "tons"),
  25698. name: "Goddess",
  25699. image: {
  25700. source: "./media/characters/lady-kubwa/goddess.svg",
  25701. extra: 1240.5 / 1223,
  25702. bottom: 22 / 1263
  25703. }
  25704. },
  25705. goddesser: {
  25706. height: math.unit(900, "feet"),
  25707. weight: math.unit(20000000, "lb"),
  25708. name: "Goddess-er",
  25709. image: {
  25710. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25711. extra: 899 / 888,
  25712. bottom: 12.6 / 912
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Macro",
  25719. height: math.unit(600, "feet"),
  25720. default: true
  25721. },
  25722. {
  25723. name: "Megamacro",
  25724. height: math.unit(250, "miles")
  25725. },
  25726. ]
  25727. ))
  25728. characterMakers.push(() => makeCharacter(
  25729. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25730. {
  25731. front: {
  25732. height: math.unit(7 + 7 / 12, "feet"),
  25733. weight: math.unit(250, "lb"),
  25734. name: "Front",
  25735. image: {
  25736. source: "./media/characters/tala-grovehorn/front.svg",
  25737. extra: 2636 / 2525,
  25738. bottom: 147 / 2781
  25739. }
  25740. },
  25741. back: {
  25742. height: math.unit(7 + 7 / 12, "feet"),
  25743. weight: math.unit(250, "lb"),
  25744. name: "Back",
  25745. image: {
  25746. source: "./media/characters/tala-grovehorn/back.svg",
  25747. extra: 2635 / 2539,
  25748. bottom: 100 / 2732.8
  25749. }
  25750. },
  25751. mouth: {
  25752. height: math.unit(1.15, "feet"),
  25753. name: "Mouth",
  25754. image: {
  25755. source: "./media/characters/tala-grovehorn/mouth.svg"
  25756. }
  25757. },
  25758. dick: {
  25759. height: math.unit(2.36, "feet"),
  25760. name: "Dick",
  25761. image: {
  25762. source: "./media/characters/tala-grovehorn/dick.svg"
  25763. }
  25764. },
  25765. slit: {
  25766. height: math.unit(0.61, "feet"),
  25767. name: "Slit",
  25768. image: {
  25769. source: "./media/characters/tala-grovehorn/slit.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(7 + 7 / 12, "feet"),
  25781. weight: math.unit(225, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/epona/front.svg",
  25785. extra: 2445 / 2290,
  25786. bottom: 251 / 2696
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(7 + 7 / 12, "feet"),
  25791. weight: math.unit(225, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/epona/back.svg",
  25795. extra: 2546 / 2408,
  25796. bottom: 44 / 2589
  25797. }
  25798. },
  25799. genitals: {
  25800. height: math.unit(1.5, "feet"),
  25801. name: "Genitals",
  25802. image: {
  25803. source: "./media/characters/epona/genitals.svg"
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(7 + 7 / 12, "feet")
  25811. },
  25812. ]
  25813. ))
  25814. characterMakers.push(() => makeCharacter(
  25815. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25816. {
  25817. front: {
  25818. height: math.unit(7, "feet"),
  25819. weight: math.unit(518, "lb"),
  25820. name: "Front",
  25821. image: {
  25822. source: "./media/characters/avia-bloodbourn/front.svg",
  25823. extra: 1466 / 1350,
  25824. bottom: 65 / 1527
  25825. }
  25826. },
  25827. },
  25828. [
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(9.35, "feet"),
  25836. weight: math.unit(600, "lb"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/amera/front.svg",
  25840. extra: 891 / 818,
  25841. bottom: 30 / 922.7
  25842. }
  25843. },
  25844. back: {
  25845. height: math.unit(9.35, "feet"),
  25846. weight: math.unit(600, "lb"),
  25847. name: "Back",
  25848. image: {
  25849. source: "./media/characters/amera/back.svg",
  25850. extra: 876 / 824,
  25851. bottom: 6.8 / 884
  25852. }
  25853. },
  25854. dick: {
  25855. height: math.unit(2.14, "feet"),
  25856. name: "Dick",
  25857. image: {
  25858. source: "./media/characters/amera/dick.svg"
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Normal",
  25865. height: math.unit(9.35, "feet"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25872. {
  25873. kneeling: {
  25874. height: math.unit(3 + 4 / 12, "feet"),
  25875. weight: math.unit(90, "lb"),
  25876. name: "Kneeling",
  25877. image: {
  25878. source: "./media/characters/rosewen/kneeling.svg",
  25879. extra: 1835 / 1571,
  25880. bottom: 27.7 / 1862
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Normal",
  25887. height: math.unit(3 + 4 / 12, "feet"),
  25888. default: true
  25889. },
  25890. ]
  25891. ))
  25892. characterMakers.push(() => makeCharacter(
  25893. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25894. {
  25895. front: {
  25896. height: math.unit(5 + 10 / 12, "feet"),
  25897. weight: math.unit(200, "lb"),
  25898. name: "Front",
  25899. image: {
  25900. source: "./media/characters/sabah/front.svg",
  25901. extra: 849 / 763,
  25902. bottom: 33.9 / 881
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(5 + 10 / 12, "feet"),
  25910. default: true
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25916. {
  25917. front: {
  25918. height: math.unit(3 + 5 / 12, "feet"),
  25919. weight: math.unit(40, "kg"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/purple-flame/front.svg",
  25923. extra: 1577 / 1412,
  25924. bottom: 97 / 1694
  25925. }
  25926. },
  25927. frontDressed: {
  25928. height: math.unit(3 + 5 / 12, "feet"),
  25929. weight: math.unit(40, "kg"),
  25930. name: "Front (Dressed)",
  25931. image: {
  25932. source: "./media/characters/purple-flame/front-dressed.svg",
  25933. extra: 1577 / 1412,
  25934. bottom: 97 / 1694
  25935. }
  25936. },
  25937. headphones: {
  25938. height: math.unit(0.85, "feet"),
  25939. name: "Headphones",
  25940. image: {
  25941. source: "./media/characters/purple-flame/headphones.svg"
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Really Small",
  25948. height: math.unit(5, "cm")
  25949. },
  25950. {
  25951. name: "Micro",
  25952. height: math.unit(1 + 5 / 12, "feet")
  25953. },
  25954. {
  25955. name: "Normal",
  25956. height: math.unit(3 + 5 / 12, "feet"),
  25957. default: true
  25958. },
  25959. {
  25960. name: "Minimacro",
  25961. height: math.unit(125, "feet")
  25962. },
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(0.5, "miles")
  25966. },
  25967. {
  25968. name: "Megamacro",
  25969. height: math.unit(50, "miles")
  25970. },
  25971. {
  25972. name: "Gigantic",
  25973. height: math.unit(750, "miles")
  25974. },
  25975. {
  25976. name: "Planetary",
  25977. height: math.unit(15000, "miles")
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(14, "feet"),
  25986. weight: math.unit(959, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/arsenal/front.svg",
  25990. extra: 2357 / 2157,
  25991. bottom: 93 / 2458
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Normal",
  25998. height: math.unit(14, "feet"),
  25999. default: true
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(6, "feet"),
  26008. weight: math.unit(150, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/adira/front.svg",
  26012. extra: 1078 / 1029,
  26013. bottom: 87 / 1166
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Micro",
  26020. height: math.unit(4, "inches"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Macro",
  26025. height: math.unit(50, "feet")
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26031. {
  26032. front: {
  26033. height: math.unit(16, "feet"),
  26034. weight: math.unit(1000, "lb"),
  26035. name: "Front",
  26036. image: {
  26037. source: "./media/characters/grim/front.svg",
  26038. extra: 622 / 614,
  26039. bottom: 18.1 / 642
  26040. }
  26041. },
  26042. back: {
  26043. height: math.unit(16, "feet"),
  26044. weight: math.unit(1000, "lb"),
  26045. name: "Back",
  26046. image: {
  26047. source: "./media/characters/grim/back.svg",
  26048. extra: 610.6 / 602,
  26049. bottom: 40.8 / 652
  26050. }
  26051. },
  26052. hunched: {
  26053. height: math.unit(9.75, "feet"),
  26054. weight: math.unit(1000, "lb"),
  26055. name: "Hunched",
  26056. image: {
  26057. source: "./media/characters/grim/hunched.svg",
  26058. extra: 304 / 297,
  26059. bottom: 35.4 / 394
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(16, "feet"),
  26067. default: true
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(2.3, "meters"),
  26076. weight: math.unit(300, "lb"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/sinja/front-sfw.svg",
  26080. extra: 1393 / 1294,
  26081. bottom: 70 / 1463
  26082. }
  26083. },
  26084. frontNsfw: {
  26085. height: math.unit(2.3, "meters"),
  26086. weight: math.unit(300, "lb"),
  26087. name: "Front (NSFW)",
  26088. image: {
  26089. source: "./media/characters/sinja/front-nsfw.svg",
  26090. extra: 1393 / 1294,
  26091. bottom: 70 / 1463
  26092. }
  26093. },
  26094. back: {
  26095. height: math.unit(2.3, "meters"),
  26096. weight: math.unit(300, "lb"),
  26097. name: "Back",
  26098. image: {
  26099. source: "./media/characters/sinja/back.svg",
  26100. extra: 1393 / 1294,
  26101. bottom: 70 / 1463
  26102. }
  26103. },
  26104. head: {
  26105. height: math.unit(1.771, "feet"),
  26106. name: "Head",
  26107. image: {
  26108. source: "./media/characters/sinja/head.svg"
  26109. }
  26110. },
  26111. slit: {
  26112. height: math.unit(0.8, "feet"),
  26113. name: "Slit",
  26114. image: {
  26115. source: "./media/characters/sinja/slit.svg"
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(2.3, "meters")
  26123. },
  26124. {
  26125. name: "Macro",
  26126. height: math.unit(91, "meters"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Megamacro",
  26131. height: math.unit(91440, "meters")
  26132. },
  26133. {
  26134. name: "Gigamacro",
  26135. height: math.unit(60960000, "meters")
  26136. },
  26137. {
  26138. name: "Teramacro",
  26139. height: math.unit(9144000000, "meters")
  26140. },
  26141. ]
  26142. ))
  26143. characterMakers.push(() => makeCharacter(
  26144. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26145. {
  26146. front: {
  26147. height: math.unit(1.7, "meters"),
  26148. weight: math.unit(130, "lb"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/kyu/front.svg",
  26152. extra: 415 / 395,
  26153. bottom: 5 / 420
  26154. }
  26155. },
  26156. head: {
  26157. height: math.unit(1.75, "feet"),
  26158. name: "Head",
  26159. image: {
  26160. source: "./media/characters/kyu/head.svg"
  26161. }
  26162. },
  26163. foot: {
  26164. height: math.unit(0.81, "feet"),
  26165. name: "Foot",
  26166. image: {
  26167. source: "./media/characters/kyu/foot.svg"
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(1.7, "meters")
  26175. },
  26176. {
  26177. name: "Macro",
  26178. height: math.unit(131, "feet"),
  26179. default: true
  26180. },
  26181. {
  26182. name: "Megamacro",
  26183. height: math.unit(91440, "meters")
  26184. },
  26185. {
  26186. name: "Gigamacro",
  26187. height: math.unit(60960000, "meters")
  26188. },
  26189. {
  26190. name: "Teramacro",
  26191. height: math.unit(9144000000, "meters")
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(7 + 1 / 12, "feet"),
  26200. weight: math.unit(250, "lb"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/joey/front.svg",
  26204. extra: 1791 / 1537,
  26205. bottom: 28 / 1816
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Micro",
  26212. height: math.unit(3, "inches")
  26213. },
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(7 + 1 / 12, "feet"),
  26217. default: true
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26223. {
  26224. front: {
  26225. height: math.unit(165, "cm"),
  26226. weight: math.unit(140, "lb"),
  26227. name: "Front",
  26228. image: {
  26229. source: "./media/characters/sam-evans/front.svg",
  26230. extra: 3417 / 3230,
  26231. bottom: 41.3 / 3417
  26232. }
  26233. },
  26234. frontSixTails: {
  26235. height: math.unit(165, "cm"),
  26236. weight: math.unit(140, "lb"),
  26237. name: "Front-six-tails",
  26238. image: {
  26239. source: "./media/characters/sam-evans/front-six-tails.svg",
  26240. extra: 3417 / 3230,
  26241. bottom: 41.3 / 3417
  26242. }
  26243. },
  26244. back: {
  26245. height: math.unit(165, "cm"),
  26246. weight: math.unit(140, "lb"),
  26247. name: "Back",
  26248. image: {
  26249. source: "./media/characters/sam-evans/back.svg",
  26250. extra: 3227 / 3032,
  26251. bottom: 6.8 / 3234
  26252. }
  26253. },
  26254. face: {
  26255. height: math.unit(0.68, "feet"),
  26256. name: "Face",
  26257. image: {
  26258. source: "./media/characters/sam-evans/face.svg"
  26259. }
  26260. },
  26261. },
  26262. [
  26263. {
  26264. name: "Normal",
  26265. height: math.unit(165, "cm"),
  26266. default: true
  26267. },
  26268. {
  26269. name: "Macro",
  26270. height: math.unit(100, "meters")
  26271. },
  26272. {
  26273. name: "Macro+",
  26274. height: math.unit(800, "meters")
  26275. },
  26276. {
  26277. name: "Macro++",
  26278. height: math.unit(3, "km")
  26279. },
  26280. {
  26281. name: "Macro+++",
  26282. height: math.unit(30, "km")
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(10, "feet"),
  26291. weight: math.unit(750, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/juliet-a/front.svg",
  26295. extra: 1766 / 1720,
  26296. bottom: 43 / 1809
  26297. }
  26298. },
  26299. back: {
  26300. height: math.unit(10, "feet"),
  26301. weight: math.unit(750, "lb"),
  26302. name: "Back",
  26303. image: {
  26304. source: "./media/characters/juliet-a/back.svg",
  26305. extra: 1781 / 1734,
  26306. bottom: 35 / 1810,
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(10, "feet"),
  26314. default: true
  26315. },
  26316. {
  26317. name: "Dragon Form",
  26318. height: math.unit(250, "feet")
  26319. },
  26320. {
  26321. name: "Macro",
  26322. height: math.unit(1000, "feet")
  26323. },
  26324. {
  26325. name: "Megamacro",
  26326. height: math.unit(10000, "feet")
  26327. }
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26332. {
  26333. regular: {
  26334. height: math.unit(7 + 3 / 12, "feet"),
  26335. weight: math.unit(260, "lb"),
  26336. name: "Regular",
  26337. image: {
  26338. source: "./media/characters/wild/regular.svg",
  26339. extra: 97.45 / 92,
  26340. bottom: 6.8 / 104.3
  26341. }
  26342. },
  26343. biggums: {
  26344. height: math.unit(8 + 6 / 12, "feet"),
  26345. weight: math.unit(425, "lb"),
  26346. name: "Biggums",
  26347. image: {
  26348. source: "./media/characters/wild/biggums.svg",
  26349. extra: 97.45 / 92,
  26350. bottom: 7.5 / 132.34
  26351. }
  26352. },
  26353. mawRegular: {
  26354. height: math.unit(1.24, "feet"),
  26355. name: "Maw (Regular)",
  26356. image: {
  26357. source: "./media/characters/wild/maw.svg"
  26358. }
  26359. },
  26360. mawBiggums: {
  26361. height: math.unit(1.47, "feet"),
  26362. name: "Maw (Biggums)",
  26363. image: {
  26364. source: "./media/characters/wild/maw.svg"
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(7 + 3 / 12, "feet"),
  26372. default: true
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26378. {
  26379. front: {
  26380. height: math.unit(2.5, "meters"),
  26381. weight: math.unit(200, "kg"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/vidar/front.svg",
  26385. extra: 2994 / 2795,
  26386. bottom: 56 / 3061
  26387. }
  26388. },
  26389. back: {
  26390. height: math.unit(2.5, "meters"),
  26391. weight: math.unit(200, "kg"),
  26392. name: "Back",
  26393. image: {
  26394. source: "./media/characters/vidar/back.svg",
  26395. extra: 3131 / 2928,
  26396. bottom: 13.5 / 3141.5
  26397. }
  26398. },
  26399. feral: {
  26400. height: math.unit(2.5, "meters"),
  26401. weight: math.unit(2000, "kg"),
  26402. name: "Feral",
  26403. image: {
  26404. source: "./media/characters/vidar/feral.svg",
  26405. extra: 2790 / 1765,
  26406. bottom: 6 / 2796
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(2.5, "meters"),
  26414. default: true
  26415. },
  26416. {
  26417. name: "Macro",
  26418. height: math.unit(100, "meters")
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(5 + 9 / 12, "feet"),
  26427. weight: math.unit(120, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/ash/front.svg",
  26431. extra: 2189 / 1961,
  26432. bottom: 5.2 / 2194
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(5 + 9 / 12, "feet"),
  26440. default: true
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(9, "feet"),
  26449. weight: math.unit(10000, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/gygabite/front.svg",
  26453. bottom: 31.7 / 537.8,
  26454. extra: 505 / 370
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(9, "feet"),
  26462. default: true
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26468. {
  26469. front: {
  26470. height: math.unit(12, "feet"),
  26471. weight: math.unit(35000, "lb"),
  26472. name: "Front",
  26473. image: {
  26474. source: "./media/characters/p0tat0/front.svg",
  26475. extra: 1065 / 921,
  26476. bottom: 55.7 / 1121.25
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Normal",
  26483. height: math.unit(12, "feet"),
  26484. default: true
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(6.5, "feet"),
  26493. weight: math.unit(800, "lb"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/dusk/side.svg",
  26497. extra: 615 / 373,
  26498. bottom: 53 / 664
  26499. }
  26500. },
  26501. sitting: {
  26502. height: math.unit(7, "feet"),
  26503. weight: math.unit(800, "lb"),
  26504. name: "Sitting",
  26505. image: {
  26506. source: "./media/characters/dusk/sitting.svg",
  26507. extra: 753 / 425,
  26508. bottom: 33 / 774
  26509. }
  26510. },
  26511. head: {
  26512. height: math.unit(6.1, "feet"),
  26513. name: "Head",
  26514. image: {
  26515. source: "./media/characters/dusk/head.svg"
  26516. }
  26517. },
  26518. },
  26519. [
  26520. {
  26521. name: "Normal",
  26522. height: math.unit(7, "feet"),
  26523. default: true
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26529. {
  26530. front: {
  26531. height: math.unit(15, "feet"),
  26532. weight: math.unit(7000, "lb"),
  26533. name: "Front",
  26534. image: {
  26535. source: "./media/characters/jay-direwolf/front.svg",
  26536. extra: 1810 / 1732,
  26537. bottom: 66 / 1892
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(15, "feet"),
  26545. default: true
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(4 + 9 / 12, "feet"),
  26554. weight: math.unit(130, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/anchovie/front.svg",
  26558. extra: 382 / 350,
  26559. bottom: 25 / 409
  26560. }
  26561. },
  26562. back: {
  26563. height: math.unit(4 + 9 / 12, "feet"),
  26564. weight: math.unit(130, "lb"),
  26565. name: "Back",
  26566. image: {
  26567. source: "./media/characters/anchovie/back.svg",
  26568. extra: 385 / 352,
  26569. bottom: 16.6 / 402
  26570. }
  26571. },
  26572. frontDressed: {
  26573. height: math.unit(4 + 9 / 12, "feet"),
  26574. weight: math.unit(130, "lb"),
  26575. name: "Front (Dressed)",
  26576. image: {
  26577. source: "./media/characters/anchovie/front-dressed.svg",
  26578. extra: 382 / 350,
  26579. bottom: 25 / 409
  26580. }
  26581. },
  26582. backDressed: {
  26583. height: math.unit(4 + 9 / 12, "feet"),
  26584. weight: math.unit(130, "lb"),
  26585. name: "Back (Dressed)",
  26586. image: {
  26587. source: "./media/characters/anchovie/back-dressed.svg",
  26588. extra: 385 / 352,
  26589. bottom: 16.6 / 402
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Micro",
  26596. height: math.unit(6.4, "inches")
  26597. },
  26598. {
  26599. name: "Normal",
  26600. height: math.unit(4 + 9 / 12, "feet"),
  26601. default: true
  26602. },
  26603. ]
  26604. ))
  26605. characterMakers.push(() => makeCharacter(
  26606. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26607. {
  26608. front: {
  26609. height: math.unit(2, "meters"),
  26610. weight: math.unit(180, "lb"),
  26611. name: "Front",
  26612. image: {
  26613. source: "./media/characters/acidrenamon/front.svg",
  26614. extra: 987 / 890,
  26615. bottom: 22.8 / 1009
  26616. }
  26617. },
  26618. back: {
  26619. height: math.unit(2, "meters"),
  26620. weight: math.unit(180, "lb"),
  26621. name: "Back",
  26622. image: {
  26623. source: "./media/characters/acidrenamon/back.svg",
  26624. extra: 983 / 891,
  26625. bottom: 8.4 / 992
  26626. }
  26627. },
  26628. head: {
  26629. height: math.unit(1.92, "feet"),
  26630. name: "Head",
  26631. image: {
  26632. source: "./media/characters/acidrenamon/head.svg"
  26633. }
  26634. },
  26635. rump: {
  26636. height: math.unit(1.72, "feet"),
  26637. name: "Rump",
  26638. image: {
  26639. source: "./media/characters/acidrenamon/rump.svg"
  26640. }
  26641. },
  26642. tail: {
  26643. height: math.unit(4.2, "feet"),
  26644. name: "Tail",
  26645. image: {
  26646. source: "./media/characters/acidrenamon/tail.svg"
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(2, "meters"),
  26654. default: true
  26655. },
  26656. {
  26657. name: "Minimacro",
  26658. height: math.unit(7, "meters")
  26659. },
  26660. {
  26661. name: "Macro",
  26662. height: math.unit(200, "meters")
  26663. },
  26664. {
  26665. name: "Gigamacro",
  26666. height: math.unit(0.2, "earths")
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(6, "feet"),
  26675. weight: math.unit(150, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/kenzie-lee/front.svg",
  26679. extra: 1525 / 1465,
  26680. bottom: 45 / 1570
  26681. }
  26682. },
  26683. side: {
  26684. height: math.unit(6, "feet"),
  26685. weight: math.unit(150, "lb"),
  26686. name: "Side",
  26687. image: {
  26688. source: "./media/characters/kenzie-lee/side.svg",
  26689. extra: 5505 / 5383,
  26690. bottom: 60 / 5573
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(152, "feet"),
  26698. default: true
  26699. },
  26700. {
  26701. name: "Megamacro",
  26702. height: math.unit(7, "miles")
  26703. },
  26704. {
  26705. name: "Gigamacro",
  26706. height: math.unit(8000, "miles")
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26712. {
  26713. side: {
  26714. height: math.unit(6, "feet"),
  26715. weight: math.unit(150, "lb"),
  26716. name: "Side",
  26717. image: {
  26718. source: "./media/characters/withers/side.svg",
  26719. extra: 1830 / 1728,
  26720. bottom: 96 / 1927
  26721. }
  26722. },
  26723. front: {
  26724. height: math.unit(6, "feet"),
  26725. weight: math.unit(150, "lb"),
  26726. name: "Front",
  26727. image: {
  26728. source: "./media/characters/withers/front.svg",
  26729. extra: 1514 / 1438,
  26730. bottom: 118 / 1632
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Macro",
  26737. height: math.unit(168, "feet"),
  26738. default: true
  26739. },
  26740. {
  26741. name: "Megamacro",
  26742. height: math.unit(15, "miles")
  26743. }
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(6 + 7 / 12, "feet"),
  26751. weight: math.unit(250, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/nemoskii/front.svg",
  26755. extra: 2270 / 1734,
  26756. bottom: 86 / 2354
  26757. }
  26758. },
  26759. back: {
  26760. height: math.unit(6 + 7 / 12, "feet"),
  26761. weight: math.unit(250, "lb"),
  26762. name: "Back",
  26763. image: {
  26764. source: "./media/characters/nemoskii/back.svg",
  26765. extra: 1845 / 1788,
  26766. bottom: 10.5 / 1852
  26767. }
  26768. },
  26769. head: {
  26770. height: math.unit(1.31, "feet"),
  26771. name: "Head",
  26772. image: {
  26773. source: "./media/characters/nemoskii/head.svg"
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(6 + 7 / 12, "feet"),
  26781. default: true
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26787. {
  26788. front: {
  26789. height: math.unit(1, "mile"),
  26790. weight: math.unit(265261.9, "lb"),
  26791. name: "Front",
  26792. image: {
  26793. source: "./media/characters/shui/front.svg",
  26794. extra: 1633 / 1564,
  26795. bottom: 91.5 / 1726
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Macro",
  26802. height: math.unit(1, "mile"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(12 + 6 / 12, "feet"),
  26812. weight: math.unit(1342, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/arokh-takakura/front.svg",
  26816. extra: 1089 / 1043,
  26817. bottom: 77.4 / 1176.7
  26818. }
  26819. },
  26820. back: {
  26821. height: math.unit(12 + 6 / 12, "feet"),
  26822. weight: math.unit(1342, "lb"),
  26823. name: "Back",
  26824. image: {
  26825. source: "./media/characters/arokh-takakura/back.svg",
  26826. extra: 1046 / 1019,
  26827. bottom: 102 / 1150
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Big",
  26834. height: math.unit(12 + 6 / 12, "feet"),
  26835. default: true
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(5 + 6 / 12, "feet"),
  26844. weight: math.unit(150, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/theo/front.svg",
  26848. extra: 1184 / 1131,
  26849. bottom: 7.4 / 1191
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Micro",
  26856. height: math.unit(5, "inches")
  26857. },
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(5 + 6 / 12, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(5 + 9 / 12, "feet"),
  26870. weight: math.unit(130, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/cecelia-swift/front.svg",
  26874. extra: 502 / 484,
  26875. bottom: 23 / 523
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(5 + 9 / 12, "feet"),
  26880. weight: math.unit(130, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/cecelia-swift/back.svg",
  26884. extra: 499 / 485,
  26885. bottom: 12 / 511
  26886. }
  26887. },
  26888. head: {
  26889. height: math.unit(0.90, "feet"),
  26890. name: "Head",
  26891. image: {
  26892. source: "./media/characters/cecelia-swift/head.svg"
  26893. }
  26894. },
  26895. rump: {
  26896. height: math.unit(1.75, "feet"),
  26897. name: "Rump",
  26898. image: {
  26899. source: "./media/characters/cecelia-swift/rump.svg"
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(5 + 9 / 12, "feet"),
  26907. default: true
  26908. },
  26909. {
  26910. name: "Big",
  26911. height: math.unit(50, "feet")
  26912. },
  26913. {
  26914. name: "Macro",
  26915. height: math.unit(100, "feet")
  26916. },
  26917. {
  26918. name: "Macro+",
  26919. height: math.unit(500, "feet")
  26920. },
  26921. {
  26922. name: "Macro++",
  26923. height: math.unit(1000, "feet")
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(6, "feet"),
  26932. weight: math.unit(150, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/kaunan/front.svg",
  26936. extra: 2890 / 2523,
  26937. bottom: 49 / 2939
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Macro",
  26944. height: math.unit(150, "feet"),
  26945. default: true
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(175, "cm"),
  26954. weight: math.unit(60, "kg"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/fei/front.svg",
  26958. extra: 2581 / 2400,
  26959. bottom: 82.2 / 2663
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Mortal",
  26966. height: math.unit(175, "cm")
  26967. },
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(3500, "m"),
  26971. default: true
  26972. },
  26973. {
  26974. name: "Stroll",
  26975. height: math.unit(17.5, "km")
  26976. },
  26977. {
  26978. name: "Showoff",
  26979. height: math.unit(175, "km")
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(7, "feet"),
  26988. weight: math.unit(1000, "kg"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/edrax/front.svg",
  26992. extra: 2838 / 2550,
  26993. bottom: 130 / 2968
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Small",
  27000. height: math.unit(7, "feet")
  27001. },
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(1500, "meters")
  27005. },
  27006. {
  27007. name: "Mega",
  27008. height: math.unit(12000000, "km"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Megamacro",
  27013. height: math.unit(10600000, "lightyears")
  27014. },
  27015. {
  27016. name: "Hypermacro",
  27017. height: math.unit(256, "yottameters")
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(10, "feet"),
  27026. weight: math.unit(750, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/clove/front.svg",
  27030. extra: 2031 / 1860,
  27031. bottom: 47.8 / 2080
  27032. }
  27033. },
  27034. back: {
  27035. height: math.unit(10, "feet"),
  27036. weight: math.unit(750, "lb"),
  27037. name: "Back",
  27038. image: {
  27039. source: "./media/characters/clove/back.svg",
  27040. extra: 2025 / 1859,
  27041. bottom: 46 / 2071
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(10, "feet")
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27054. {
  27055. front: {
  27056. height: math.unit(4, "feet"),
  27057. weight: math.unit(50, "lb"),
  27058. name: "Front",
  27059. image: {
  27060. source: "./media/characters/alex-rabbit/front.svg",
  27061. extra: 507 / 458,
  27062. bottom: 18.5 / 527
  27063. }
  27064. },
  27065. back: {
  27066. height: math.unit(4, "feet"),
  27067. weight: math.unit(50, "lb"),
  27068. name: "Back",
  27069. image: {
  27070. source: "./media/characters/alex-rabbit/back.svg",
  27071. extra: 502 / 460,
  27072. bottom: 18.9 / 521
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(4, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(1 + 3 / 12, "feet"),
  27089. weight: math.unit(80, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/zander-rose/front.svg",
  27093. extra: 916 / 797,
  27094. bottom: 17 / 933
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(1 + 3 / 12, "feet"),
  27099. weight: math.unit(80, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/zander-rose/back.svg",
  27103. extra: 903 / 779,
  27104. bottom: 31 / 934
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(1 + 3 / 12, "feet"),
  27112. default: true
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27118. {
  27119. anthro: {
  27120. height: math.unit(6, "feet"),
  27121. weight: math.unit(150, "lb"),
  27122. name: "Anthro",
  27123. image: {
  27124. source: "./media/characters/razz/anthro.svg",
  27125. extra: 1437 / 1343,
  27126. bottom: 48 / 1485
  27127. }
  27128. },
  27129. feral: {
  27130. height: math.unit(6, "feet"),
  27131. weight: math.unit(150, "lb"),
  27132. name: "Feral",
  27133. image: {
  27134. source: "./media/characters/razz/feral.svg",
  27135. extra: 2569 / 1385,
  27136. bottom: 95 / 2664
  27137. }
  27138. },
  27139. },
  27140. [
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(6, "feet"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(9 + 4 / 12, "feet"),
  27153. weight: math.unit(500, "lb"),
  27154. name: "Front",
  27155. image: {
  27156. source: "./media/characters/morrigan/front.svg",
  27157. extra: 2707 / 2579,
  27158. bottom: 156 / 2863
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(9 + 4 / 12, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(5, "stories"),
  27175. weight: math.unit(4000, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/jenene/front.svg",
  27179. extra: 1780 / 1710,
  27180. bottom: 57 / 1837
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5, "stories"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(6, "feet"),
  27197. weight: math.unit(150, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/vix-archaser/front.svg",
  27201. extra: 2767 / 2562,
  27202. bottom: 36 / 2803
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Micro",
  27209. height: math.unit(1, "foot")
  27210. },
  27211. {
  27212. name: "Normal",
  27213. height: math.unit(6 + 5 / 12, "feet")
  27214. },
  27215. {
  27216. name: "Minimacro",
  27217. height: math.unit(500, "feet")
  27218. },
  27219. {
  27220. name: "Macro",
  27221. height: math.unit(4, "miles")
  27222. },
  27223. {
  27224. name: "Megamacro",
  27225. height: math.unit(250, "miles"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "Gigamacro",
  27230. height: math.unit(1, "universe")
  27231. },
  27232. {
  27233. name: "Endgame",
  27234. height: math.unit(100, "multiverses")
  27235. }
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27240. {
  27241. taurSfw: {
  27242. height: math.unit(10, "meters"),
  27243. weight: math.unit(17500, "kg"),
  27244. name: "Taur",
  27245. image: {
  27246. source: "./media/characters/faey/taur-sfw.svg",
  27247. extra: 1200 / 968,
  27248. bottom: 41 / 1241
  27249. }
  27250. },
  27251. chestmaw: {
  27252. height: math.unit(2.01, "meters"),
  27253. name: "Chestmaw",
  27254. image: {
  27255. source: "./media/characters/faey/chestmaw.svg"
  27256. }
  27257. },
  27258. foot: {
  27259. height: math.unit(2.43, "meters"),
  27260. name: "Foot",
  27261. image: {
  27262. source: "./media/characters/faey/foot.svg"
  27263. }
  27264. },
  27265. jaws: {
  27266. height: math.unit(1.66, "meters"),
  27267. name: "Jaws",
  27268. image: {
  27269. source: "./media/characters/faey/jaws.svg"
  27270. }
  27271. },
  27272. tongues: {
  27273. height: math.unit(2.01, "meters"),
  27274. name: "Tongues",
  27275. image: {
  27276. source: "./media/characters/faey/tongues.svg"
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Small",
  27283. height: math.unit(10, "meters"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Big",
  27288. height: math.unit(500000, "km")
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(7, "feet"),
  27297. weight: math.unit(275, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/roku/front.svg",
  27301. extra: 903 / 878,
  27302. bottom: 37 / 940
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(7, "feet"),
  27310. default: true
  27311. },
  27312. {
  27313. name: "Macro",
  27314. height: math.unit(500, "feet")
  27315. },
  27316. {
  27317. name: "Megamacro",
  27318. height: math.unit(200, "miles")
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27324. {
  27325. front: {
  27326. height: math.unit(6 + 2 / 12, "feet"),
  27327. weight: math.unit(150, "lb"),
  27328. name: "Front",
  27329. image: {
  27330. source: "./media/characters/lira/front.svg",
  27331. extra: 1727 / 1605,
  27332. bottom: 26 / 1753
  27333. }
  27334. },
  27335. back: {
  27336. height: math.unit(6 + 2 / 12, "feet"),
  27337. weight: math.unit(150, "lb"),
  27338. name: "Back",
  27339. image: {
  27340. source: "./media/characters/lira/back.svg",
  27341. extra: 1713 / 159,
  27342. bottom: 20 / 1733
  27343. }
  27344. },
  27345. hand: {
  27346. height: math.unit(0.75, "feet"),
  27347. name: "Hand",
  27348. image: {
  27349. source: "./media/characters/lira/hand.svg"
  27350. }
  27351. },
  27352. maw: {
  27353. height: math.unit(0.65, "feet"),
  27354. name: "Maw",
  27355. image: {
  27356. source: "./media/characters/lira/maw.svg"
  27357. }
  27358. },
  27359. pawDigi: {
  27360. height: math.unit(1.6, "feet"),
  27361. name: "Paw Digi",
  27362. image: {
  27363. source: "./media/characters/lira/paw-digi.svg"
  27364. }
  27365. },
  27366. pawPlanti: {
  27367. height: math.unit(1.4, "feet"),
  27368. name: "Paw Planti",
  27369. image: {
  27370. source: "./media/characters/lira/paw-planti.svg"
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "Normal",
  27377. height: math.unit(6 + 2 / 12, "feet"),
  27378. default: true
  27379. },
  27380. {
  27381. name: "Macro",
  27382. height: math.unit(100, "feet")
  27383. },
  27384. {
  27385. name: "Macro²",
  27386. height: math.unit(1600, "feet")
  27387. },
  27388. {
  27389. name: "Planetary",
  27390. height: math.unit(20, "earths")
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(6, "feet"),
  27399. weight: math.unit(150, "lb"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/hadjet/front.svg",
  27403. extra: 1480 / 1346,
  27404. bottom: 26 / 1506
  27405. }
  27406. },
  27407. frontNsfw: {
  27408. height: math.unit(6, "feet"),
  27409. weight: math.unit(150, "lb"),
  27410. name: "Front (NSFW)",
  27411. image: {
  27412. source: "./media/characters/hadjet/front-nsfw.svg",
  27413. extra: 1440 / 1358,
  27414. bottom: 52 / 1492
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(10, "stories"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Megamacro",
  27426. height: math.unit(1.5, "miles")
  27427. },
  27428. {
  27429. name: "Megamacro+",
  27430. height: math.unit(5, "miles")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27436. {
  27437. side: {
  27438. height: math.unit(106, "feet"),
  27439. weight: math.unit(500, "tonnes"),
  27440. name: "Side",
  27441. image: {
  27442. source: "./media/characters/kodran/side.svg",
  27443. extra: 553 / 480,
  27444. bottom: 33 / 586
  27445. }
  27446. },
  27447. front: {
  27448. height: math.unit(132, "feet"),
  27449. weight: math.unit(500, "tonnes"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/kodran/front.svg",
  27453. extra: 667 / 643,
  27454. bottom: 42 / 709
  27455. }
  27456. },
  27457. flying: {
  27458. height: math.unit(350, "feet"),
  27459. weight: math.unit(500, "tonnes"),
  27460. name: "Flying",
  27461. image: {
  27462. source: "./media/characters/kodran/flying.svg"
  27463. }
  27464. },
  27465. foot: {
  27466. height: math.unit(33, "feet"),
  27467. name: "Foot",
  27468. image: {
  27469. source: "./media/characters/kodran/foot.svg"
  27470. }
  27471. },
  27472. footFront: {
  27473. height: math.unit(19, "feet"),
  27474. name: "Foot (Front)",
  27475. image: {
  27476. source: "./media/characters/kodran/foot-front.svg",
  27477. extra: 261 / 261,
  27478. bottom: 91 / 352
  27479. }
  27480. },
  27481. headFront: {
  27482. height: math.unit(53, "feet"),
  27483. name: "Head (Front)",
  27484. image: {
  27485. source: "./media/characters/kodran/head-front.svg"
  27486. }
  27487. },
  27488. headSide: {
  27489. height: math.unit(65, "feet"),
  27490. name: "Head (Side)",
  27491. image: {
  27492. source: "./media/characters/kodran/head-side.svg"
  27493. }
  27494. },
  27495. throat: {
  27496. height: math.unit(79, "feet"),
  27497. name: "Throat",
  27498. image: {
  27499. source: "./media/characters/kodran/throat.svg"
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Large",
  27506. height: math.unit(106, "feet"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27513. {
  27514. side: {
  27515. height: math.unit(11, "feet"),
  27516. weight: math.unit(150, "lb"),
  27517. name: "Side",
  27518. image: {
  27519. source: "./media/characters/pyxaron/side.svg",
  27520. extra: 305 / 195,
  27521. bottom: 17 / 322
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Normal",
  27528. height: math.unit(11, "feet")
  27529. },
  27530. ]
  27531. ))
  27532. characterMakers.push(() => makeCharacter(
  27533. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27534. {
  27535. front: {
  27536. height: math.unit(6, "feet"),
  27537. weight: math.unit(150, "lb"),
  27538. name: "Front",
  27539. image: {
  27540. source: "./media/characters/meep/front.svg",
  27541. extra: 88 / 80,
  27542. bottom: 6 / 94
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Fun Sized",
  27549. height: math.unit(2, "inches"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Friend Sized",
  27554. height: math.unit(8, "inches")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(15, "feet"),
  27563. weight: math.unit(2500, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/holly-rabbit/front.svg",
  27567. extra: 1433 / 1233,
  27568. bottom: 125 / 1558
  27569. }
  27570. },
  27571. dick: {
  27572. height: math.unit(4.6, "feet"),
  27573. name: "Dick",
  27574. image: {
  27575. source: "./media/characters/holly-rabbit/dick.svg"
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Normal",
  27582. height: math.unit(15, "feet"),
  27583. default: true
  27584. },
  27585. {
  27586. name: "Macro",
  27587. height: math.unit(250, "feet")
  27588. },
  27589. {
  27590. name: "Macro+",
  27591. height: math.unit(2500, "feet")
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(3.02, "meters"),
  27600. weight: math.unit(500, "kg"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/drena/front.svg",
  27604. extra: 282 / 243,
  27605. bottom: 8 / 290
  27606. }
  27607. },
  27608. side: {
  27609. height: math.unit(3.02, "meters"),
  27610. weight: math.unit(500, "kg"),
  27611. name: "Side",
  27612. image: {
  27613. source: "./media/characters/drena/side.svg",
  27614. extra: 280 / 245,
  27615. bottom: 10 / 290
  27616. }
  27617. },
  27618. back: {
  27619. height: math.unit(3.02, "meters"),
  27620. weight: math.unit(500, "kg"),
  27621. name: "Back",
  27622. image: {
  27623. source: "./media/characters/drena/back.svg",
  27624. extra: 278 / 243,
  27625. bottom: 2 / 280
  27626. }
  27627. },
  27628. foot: {
  27629. height: math.unit(0.75, "meters"),
  27630. name: "Foot",
  27631. image: {
  27632. source: "./media/characters/drena/foot.svg"
  27633. }
  27634. },
  27635. maw: {
  27636. height: math.unit(0.82, "meters"),
  27637. name: "Maw",
  27638. image: {
  27639. source: "./media/characters/drena/maw.svg"
  27640. }
  27641. },
  27642. rump: {
  27643. height: math.unit(0.93, "meters"),
  27644. name: "Rump",
  27645. image: {
  27646. source: "./media/characters/drena/rump.svg"
  27647. }
  27648. },
  27649. },
  27650. [
  27651. {
  27652. name: "Normal",
  27653. height: math.unit(3.02, "meters"),
  27654. default: true
  27655. },
  27656. ]
  27657. ))
  27658. characterMakers.push(() => makeCharacter(
  27659. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27660. {
  27661. front: {
  27662. height: math.unit(6 + 4 / 12, "feet"),
  27663. weight: math.unit(250, "lb"),
  27664. name: "Front",
  27665. image: {
  27666. source: "./media/characters/remmyzilla/front.svg",
  27667. extra: 4033 / 3588,
  27668. bottom: 123 / 4156
  27669. }
  27670. },
  27671. back: {
  27672. height: math.unit(6 + 4 / 12, "feet"),
  27673. weight: math.unit(250, "lb"),
  27674. name: "Back",
  27675. image: {
  27676. source: "./media/characters/remmyzilla/back.svg",
  27677. extra: 2687 / 2555,
  27678. bottom: 48 / 2735
  27679. }
  27680. },
  27681. frontFancy: {
  27682. height: math.unit(6 + 4 / 12, "feet"),
  27683. weight: math.unit(250, "lb"),
  27684. name: "Front (Fancy)",
  27685. image: {
  27686. source: "./media/characters/remmyzilla/front-fancy.svg",
  27687. extra: 4119 / 3419,
  27688. bottom: 237 / 4356
  27689. }
  27690. },
  27691. paw: {
  27692. height: math.unit(1.73, "feet"),
  27693. name: "Paw",
  27694. image: {
  27695. source: "./media/characters/remmyzilla/paw.svg"
  27696. }
  27697. },
  27698. maw: {
  27699. height: math.unit(1.73, "feet"),
  27700. name: "Maw",
  27701. image: {
  27702. source: "./media/characters/remmyzilla/maw.svg"
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Normal",
  27709. height: math.unit(6 + 4 / 12, "feet")
  27710. },
  27711. {
  27712. name: "Minimacro",
  27713. height: math.unit(12 + 8 / 12, "feet")
  27714. },
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(640, "feet"),
  27718. default: true
  27719. },
  27720. {
  27721. name: "Megamacro",
  27722. height: math.unit(6400, "feet")
  27723. },
  27724. {
  27725. name: "Gigamacro",
  27726. height: math.unit(64000, "miles")
  27727. },
  27728. ]
  27729. ))
  27730. characterMakers.push(() => makeCharacter(
  27731. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27732. {
  27733. front: {
  27734. height: math.unit(2.5, "meters"),
  27735. weight: math.unit(300, "lb"),
  27736. name: "Front",
  27737. image: {
  27738. source: "./media/characters/lawrence/front.svg",
  27739. extra: 357 / 335,
  27740. bottom: 30 / 387
  27741. }
  27742. },
  27743. back: {
  27744. height: math.unit(2.5, "meters"),
  27745. weight: math.unit(300, "lb"),
  27746. name: "Back",
  27747. image: {
  27748. source: "./media/characters/lawrence/back.svg",
  27749. extra: 357 / 338,
  27750. bottom: 16 / 373
  27751. }
  27752. },
  27753. head: {
  27754. height: math.unit(0.9, "meter"),
  27755. name: "Head",
  27756. image: {
  27757. source: "./media/characters/lawrence/head.svg"
  27758. }
  27759. },
  27760. maw: {
  27761. height: math.unit(0.7, "meter"),
  27762. name: "Maw",
  27763. image: {
  27764. source: "./media/characters/lawrence/maw.svg"
  27765. }
  27766. },
  27767. footBottom: {
  27768. height: math.unit(0.5, "meter"),
  27769. name: "Foot (Bottom)",
  27770. image: {
  27771. source: "./media/characters/lawrence/foot-bottom.svg"
  27772. }
  27773. },
  27774. footTop: {
  27775. height: math.unit(0.5, "meter"),
  27776. name: "Foot (Top)",
  27777. image: {
  27778. source: "./media/characters/lawrence/foot-top.svg"
  27779. }
  27780. },
  27781. },
  27782. [
  27783. {
  27784. name: "Normal",
  27785. height: math.unit(2.5, "meters"),
  27786. default: true
  27787. },
  27788. {
  27789. name: "Macro",
  27790. height: math.unit(95, "meters")
  27791. },
  27792. {
  27793. name: "Megamacro",
  27794. height: math.unit(150, "km")
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27800. {
  27801. front: {
  27802. height: math.unit(4.2, "meters"),
  27803. name: "Front",
  27804. image: {
  27805. source: "./media/characters/sydney/front.svg",
  27806. extra: 1323 / 1277,
  27807. bottom: 111 / 1434
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(4.2, "meters")
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27820. {
  27821. back: {
  27822. height: math.unit(201, "feet"),
  27823. name: "Back",
  27824. image: {
  27825. source: "./media/characters/jessica/back.svg",
  27826. extra: 273 / 259,
  27827. bottom: 7 / 280
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(201, "feet"),
  27835. default: true
  27836. },
  27837. {
  27838. name: "Megamacro",
  27839. height: math.unit(8, "miles")
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27845. {
  27846. side: {
  27847. height: math.unit(320, "cm"),
  27848. name: "Side",
  27849. image: {
  27850. source: "./media/characters/victoria/side.svg",
  27851. extra: 778 / 346,
  27852. bottom: 56 / 834
  27853. }
  27854. },
  27855. maw: {
  27856. height: math.unit(5.9, "feet"),
  27857. name: "Maw",
  27858. image: {
  27859. source: "./media/characters/victoria/maw.svg"
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(320, "cm"),
  27867. default: true
  27868. },
  27869. ]
  27870. ))
  27871. characterMakers.push(() => makeCharacter(
  27872. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27873. {
  27874. front: {
  27875. height: math.unit(5 + 6 / 12, "feet"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/cat/front.svg",
  27879. extra: 1374 / 1257,
  27880. bottom: 59 / 1433
  27881. }
  27882. },
  27883. back: {
  27884. height: math.unit(5 + 6 / 12, "feet"),
  27885. name: "Back",
  27886. image: {
  27887. source: "./media/characters/cat/back.svg",
  27888. extra: 1337 / 1226,
  27889. bottom: 34 / 1371
  27890. }
  27891. },
  27892. taur: {
  27893. height: math.unit(7, "feet"),
  27894. name: "Taur",
  27895. image: {
  27896. source: "./media/characters/cat/taur.svg",
  27897. extra: 1345 / 1231,
  27898. bottom: 66 / 1411
  27899. }
  27900. },
  27901. lucario: {
  27902. height: math.unit(4, "feet"),
  27903. name: "Lucario",
  27904. image: {
  27905. source: "./media/characters/cat/lucario.svg",
  27906. extra: 1470 / 1318,
  27907. bottom: 65 / 1535
  27908. }
  27909. },
  27910. megaLucario: {
  27911. height: math.unit(4, "feet"),
  27912. name: "Mega Lucario",
  27913. image: {
  27914. source: "./media/characters/cat/mega-lucario.svg",
  27915. extra: 1515 / 1319,
  27916. bottom: 63 / 1578
  27917. }
  27918. },
  27919. nickit: {
  27920. height: math.unit(2, "feet"),
  27921. name: "Nickit",
  27922. image: {
  27923. source: "./media/characters/cat/nickit.svg",
  27924. extra: 1980 / 1585,
  27925. bottom: 102 / 2082
  27926. }
  27927. },
  27928. lopunnyFront: {
  27929. height: math.unit(5, "feet"),
  27930. name: "Lopunny (Front)",
  27931. image: {
  27932. source: "./media/characters/cat/lopunny-front.svg",
  27933. extra: 1782 / 1469,
  27934. bottom: 38 / 1820
  27935. }
  27936. },
  27937. lopunnyBack: {
  27938. height: math.unit(5, "feet"),
  27939. name: "Lopunny (Back)",
  27940. image: {
  27941. source: "./media/characters/cat/lopunny-back.svg",
  27942. extra: 1660 / 1490,
  27943. bottom: 25 / 1685
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Really small",
  27950. height: math.unit(1, "nm")
  27951. },
  27952. {
  27953. name: "Micro",
  27954. height: math.unit(5, "inches")
  27955. },
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(5 + 6 / 12, "feet"),
  27959. default: true
  27960. },
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(50, "feet")
  27964. },
  27965. {
  27966. name: "Macro+",
  27967. height: math.unit(150, "feet")
  27968. },
  27969. {
  27970. name: "Megamacro",
  27971. height: math.unit(100, "miles")
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(63.4, "meters"),
  27980. weight: math.unit(3.28349e+6, "kilograms"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/kirina-violet/front.svg",
  27984. extra: 2812 / 2725,
  27985. bottom: 0 / 2812
  27986. }
  27987. },
  27988. back: {
  27989. height: math.unit(63.4, "meters"),
  27990. weight: math.unit(3.28349e+6, "kilograms"),
  27991. name: "Back",
  27992. image: {
  27993. source: "./media/characters/kirina-violet/back.svg",
  27994. extra: 2812 / 2725,
  27995. bottom: 0 / 2812
  27996. }
  27997. },
  27998. mouth: {
  27999. height: math.unit(4.35, "meters"),
  28000. name: "Mouth",
  28001. image: {
  28002. source: "./media/characters/kirina-violet/mouth.svg"
  28003. }
  28004. },
  28005. paw: {
  28006. height: math.unit(5.6, "meters"),
  28007. name: "Paw",
  28008. image: {
  28009. source: "./media/characters/kirina-violet/paw.svg"
  28010. }
  28011. },
  28012. tail: {
  28013. height: math.unit(18, "meters"),
  28014. name: "Tail",
  28015. image: {
  28016. source: "./media/characters/kirina-violet/tail.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Macro",
  28023. height: math.unit(63.4, "meters"),
  28024. default: true
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(60, "feet"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/cat-gigachu/front.svg",
  28036. extra: 1024 / 780,
  28037. bottom: 23 / 1047
  28038. }
  28039. },
  28040. back: {
  28041. height: math.unit(60, "feet"),
  28042. name: "Back",
  28043. image: {
  28044. source: "./media/characters/cat-gigachu/back.svg",
  28045. extra: 1024 / 780,
  28046. bottom: 23 / 1047
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Dynamax",
  28053. height: math.unit(60, "feet"),
  28054. default: true
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(6, "feet"),
  28063. weight: math.unit(150, "lb"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/sfaiyan/front.svg",
  28067. extra: 999 / 978,
  28068. bottom: 5 / 1004
  28069. }
  28070. },
  28071. },
  28072. [
  28073. {
  28074. name: "Normal",
  28075. height: math.unit(1.82, "meters")
  28076. },
  28077. {
  28078. name: "Giant",
  28079. height: math.unit(2.27, "km"),
  28080. default: true
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28086. {
  28087. front: {
  28088. height: math.unit(179, "cm"),
  28089. weight: math.unit(100, "kg"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/raunehkeli/front.svg",
  28093. extra: 1934 / 1926,
  28094. bottom: 0 / 1934
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(179, "cm")
  28102. },
  28103. {
  28104. name: "Maximum",
  28105. height: math.unit(575, "meters"),
  28106. default: true
  28107. },
  28108. ]
  28109. ))
  28110. characterMakers.push(() => makeCharacter(
  28111. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28112. {
  28113. front: {
  28114. height: math.unit(6, "feet"),
  28115. weight: math.unit(150, "lb"),
  28116. name: "Front",
  28117. image: {
  28118. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28119. extra: 2625 / 2518,
  28120. bottom: 60 / 2685
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(6 + 2 / 12, "feet"),
  28128. default: true
  28129. },
  28130. {
  28131. name: "Macro",
  28132. height: math.unit(1180, "feet")
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(5 + 6 / 12, "feet"),
  28141. weight: math.unit(108, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/lilith-zott/front.svg",
  28145. extra: 2510 / 2238,
  28146. bottom: 100 / 2610
  28147. }
  28148. },
  28149. frontDressed: {
  28150. height: math.unit(5 + 6 / 12, "feet"),
  28151. weight: math.unit(108, "lb"),
  28152. name: "Front (Dressed)",
  28153. image: {
  28154. source: "./media/characters/lilith-zott/front-dressed.svg",
  28155. extra: 2510 / 2238,
  28156. bottom: 100 / 2610
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(5 + 6 / 12, "feet")
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(200, "feet"),
  28168. default: true
  28169. },
  28170. {
  28171. name: "Macro+",
  28172. height: math.unit(1030, "feet")
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(6, "feet"),
  28181. weight: math.unit(150, "lb"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28185. extra: 2567 / 2435,
  28186. bottom: 39 / 2606
  28187. }
  28188. },
  28189. frontSuper: {
  28190. height: math.unit(6, "feet"),
  28191. name: "Front (Super)",
  28192. image: {
  28193. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28194. extra: 2567 / 2435,
  28195. bottom: 39 / 2606
  28196. }
  28197. },
  28198. },
  28199. [
  28200. {
  28201. name: "Normal",
  28202. height: math.unit(5 + 10 / 12, "feet")
  28203. },
  28204. {
  28205. name: "Macro",
  28206. height: math.unit(220, "feet"),
  28207. default: true
  28208. },
  28209. {
  28210. name: "Macro+",
  28211. height: math.unit(1100, "feet")
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(100, "miles"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/sona/front.svg",
  28223. extra: 2433 / 2201,
  28224. bottom: 53 / 2486
  28225. }
  28226. },
  28227. foot: {
  28228. height: math.unit(16.1, "miles"),
  28229. name: "Foot",
  28230. image: {
  28231. source: "./media/characters/sona/foot.svg"
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Macro",
  28238. height: math.unit(100, "miles"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(6, "feet"),
  28248. weight: math.unit(150, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/bailey/front.svg",
  28252. extra: 1778 / 1724,
  28253. bottom: 30 / 1808
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Micro",
  28260. height: math.unit(4, "inches")
  28261. },
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(5 + 5 / 12, "feet"),
  28265. default: true
  28266. },
  28267. {
  28268. name: "Macro",
  28269. height: math.unit(250, "feet")
  28270. },
  28271. {
  28272. name: "Megamacro",
  28273. height: math.unit(100, "miles")
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(5 + 2 / 12, "feet"),
  28282. weight: math.unit(120, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/snaps/front.svg",
  28286. extra: 2370 / 2177,
  28287. bottom: 48 / 2418
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(5 + 2 / 12, "feet"),
  28292. weight: math.unit(120, "lb"),
  28293. name: "Back",
  28294. image: {
  28295. source: "./media/characters/snaps/back.svg",
  28296. extra: 2408 / 2258,
  28297. bottom: 15 / 2423
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Micro",
  28304. height: math.unit(9, "inches")
  28305. },
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(5 + 2 / 12, "feet"),
  28309. default: true
  28310. },
  28311. {
  28312. name: "Mini Macro",
  28313. height: math.unit(10, "feet")
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28319. {
  28320. front: {
  28321. height: math.unit(1.8, "meters"),
  28322. weight: math.unit(85, "kg"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/azteck/front.svg",
  28326. extra: 2815 / 2625,
  28327. bottom: 89 / 2904
  28328. }
  28329. },
  28330. back: {
  28331. height: math.unit(1.8, "meters"),
  28332. weight: math.unit(85, "kg"),
  28333. name: "Back",
  28334. image: {
  28335. source: "./media/characters/azteck/back.svg",
  28336. extra: 2856 / 2648,
  28337. bottom: 85 / 2941
  28338. }
  28339. },
  28340. frontDressed: {
  28341. height: math.unit(1.8, "meters"),
  28342. weight: math.unit(85, "kg"),
  28343. name: "Front (Dressed)",
  28344. image: {
  28345. source: "./media/characters/azteck/front-dressed.svg",
  28346. extra: 2147 / 2003,
  28347. bottom: 68 / 2215
  28348. }
  28349. },
  28350. head: {
  28351. height: math.unit(0.47, "meters"),
  28352. weight: math.unit(85, "kg"),
  28353. name: "Head",
  28354. image: {
  28355. source: "./media/characters/azteck/head.svg"
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Bite sized",
  28362. height: math.unit(16, "cm")
  28363. },
  28364. {
  28365. name: "Normal",
  28366. height: math.unit(1.8, "meters"),
  28367. default: true
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28373. {
  28374. front: {
  28375. height: math.unit(6, "feet"),
  28376. weight: math.unit(150, "lb"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/pidge/front.svg",
  28380. extra: 620 / 588,
  28381. bottom: 9 / 629
  28382. }
  28383. },
  28384. back: {
  28385. height: math.unit(6, "feet"),
  28386. weight: math.unit(150, "lb"),
  28387. name: "Back",
  28388. image: {
  28389. source: "./media/characters/pidge/back.svg",
  28390. extra: 620 / 588,
  28391. bottom: 9 / 629
  28392. }
  28393. },
  28394. },
  28395. [
  28396. {
  28397. name: "Macro",
  28398. height: math.unit(1, "mile"),
  28399. default: true
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(6, "feet"),
  28408. weight: math.unit(150, "lb"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/en/front.svg",
  28412. extra: 1697 / 1563,
  28413. bottom: 103 / 1800
  28414. }
  28415. },
  28416. back: {
  28417. height: math.unit(6, "feet"),
  28418. weight: math.unit(150, "lb"),
  28419. name: "Back",
  28420. image: {
  28421. source: "./media/characters/en/back.svg",
  28422. extra: 1700 / 1570,
  28423. bottom: 51 / 1751
  28424. }
  28425. },
  28426. frontDressed: {
  28427. height: math.unit(6, "feet"),
  28428. weight: math.unit(150, "lb"),
  28429. name: "Front (Dressed)",
  28430. image: {
  28431. source: "./media/characters/en/front-dressed.svg",
  28432. extra: 1697 / 1563,
  28433. bottom: 103 / 1800
  28434. }
  28435. },
  28436. backDressed: {
  28437. height: math.unit(6, "feet"),
  28438. weight: math.unit(150, "lb"),
  28439. name: "Back (Dressed)",
  28440. image: {
  28441. source: "./media/characters/en/back-dressed.svg",
  28442. extra: 1700 / 1570,
  28443. bottom: 51 / 1751
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Macro",
  28450. height: math.unit(210, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(6, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/haze-orris/front.svg",
  28464. extra: 3975 / 3525,
  28465. bottom: 137 / 4112
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Micro",
  28472. height: math.unit(150, "mm"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(6, "feet"),
  28482. weight: math.unit(150, "lb"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/casselene-yaro/front.svg",
  28486. extra: 4721 / 4541,
  28487. bottom: 82 / 4803
  28488. }
  28489. },
  28490. back: {
  28491. height: math.unit(6, "feet"),
  28492. weight: math.unit(150, "lb"),
  28493. name: "Back",
  28494. image: {
  28495. source: "./media/characters/casselene-yaro/back.svg",
  28496. extra: 4569 / 4377,
  28497. bottom: 69 / 4638
  28498. }
  28499. },
  28500. frontDressed: {
  28501. height: math.unit(6, "feet"),
  28502. weight: math.unit(150, "lb"),
  28503. name: "Front-dressed",
  28504. image: {
  28505. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28506. extra: 4721 / 4541,
  28507. bottom: 82 / 4803
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Macro",
  28514. height: math.unit(190, "feet")
  28515. },
  28516. ]
  28517. ))
  28518. characterMakers.push(() => makeCharacter(
  28519. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28520. {
  28521. front: {
  28522. height: math.unit(6, "feet"),
  28523. weight: math.unit(150, "lb"),
  28524. name: "Front",
  28525. image: {
  28526. source: "./media/characters/myra-rue-delore/front.svg",
  28527. extra: 1340 / 1308,
  28528. bottom: 67 / 1407
  28529. }
  28530. },
  28531. back: {
  28532. height: math.unit(6, "feet"),
  28533. weight: math.unit(150, "lb"),
  28534. name: "Back",
  28535. image: {
  28536. source: "./media/characters/myra-rue-delore/back.svg",
  28537. extra: 1341 / 1310,
  28538. bottom: 40 / 1381
  28539. }
  28540. },
  28541. frontDressed: {
  28542. height: math.unit(6, "feet"),
  28543. weight: math.unit(150, "lb"),
  28544. name: "Front (Dressed)",
  28545. image: {
  28546. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28547. extra: 1340 / 1308,
  28548. bottom: 67 / 1407
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Macro",
  28555. height: math.unit(150, "feet")
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(10, "feet"),
  28564. weight: math.unit(15015, "lb"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/fem!plat/front.svg",
  28568. extra: 2799 / 2604,
  28569. bottom: 149 / 2948
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(10, "feet"),
  28577. default: true
  28578. },
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(100, "feet")
  28582. },
  28583. {
  28584. name: "Megamacro",
  28585. height: math.unit(1000, "feet")
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28591. {
  28592. front: {
  28593. height: math.unit(15 + 5 / 12, "feet"),
  28594. weight: math.unit(4600, "lb"),
  28595. name: "Front",
  28596. image: {
  28597. source: "./media/characters/neapolitan-ananassa/front.svg",
  28598. extra: 2903 / 2736,
  28599. bottom: 0 / 2903
  28600. }
  28601. },
  28602. side: {
  28603. height: math.unit(15 + 5 / 12, "feet"),
  28604. weight: math.unit(4600, "lb"),
  28605. name: "Side",
  28606. image: {
  28607. source: "./media/characters/neapolitan-ananassa/side.svg",
  28608. extra: 2925 / 2719,
  28609. bottom: 0 / 2925
  28610. }
  28611. },
  28612. back: {
  28613. height: math.unit(15 + 5 / 12, "feet"),
  28614. weight: math.unit(4600, "lb"),
  28615. name: "Back",
  28616. image: {
  28617. source: "./media/characters/neapolitan-ananassa/back.svg",
  28618. extra: 2903 / 2736,
  28619. bottom: 0 / 2903
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(15 + 5 / 12, "feet"),
  28627. default: true
  28628. },
  28629. {
  28630. name: "Post-Millenium",
  28631. height: math.unit(35 + 5 / 12, "feet")
  28632. },
  28633. {
  28634. name: "Post-Era",
  28635. height: math.unit(450 + 5 / 12, "feet")
  28636. },
  28637. ]
  28638. ))
  28639. characterMakers.push(() => makeCharacter(
  28640. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28641. {
  28642. front: {
  28643. height: math.unit(300, "meters"),
  28644. weight: math.unit(125000, "tonnes"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/pazuzu/front.svg",
  28648. extra: 877 / 794,
  28649. bottom: 47 / 924
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Macro",
  28656. height: math.unit(300, "meters"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28663. {
  28664. side: {
  28665. height: math.unit(10 + 7 / 12, "feet"),
  28666. weight: math.unit(2.5, "tons"),
  28667. name: "Side",
  28668. image: {
  28669. source: "./media/characters/aasha/side.svg",
  28670. extra: 1345 / 1245,
  28671. bottom: 111 / 1456
  28672. }
  28673. },
  28674. back: {
  28675. height: math.unit(10 + 7 / 12, "feet"),
  28676. weight: math.unit(2.5, "tons"),
  28677. name: "Back",
  28678. image: {
  28679. source: "./media/characters/aasha/back.svg",
  28680. extra: 1133 / 1057,
  28681. bottom: 257 / 1390
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(10 + 7 / 12, "feet"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(6 + 3 / 12, "feet"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/nevan/front.svg",
  28701. extra: 704 / 704,
  28702. bottom: 28 / 732
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(6 + 3 / 12, "feet"),
  28707. name: "Back",
  28708. image: {
  28709. source: "./media/characters/nevan/back.svg",
  28710. extra: 714 / 714,
  28711. bottom: 21 / 735
  28712. }
  28713. },
  28714. frontFlaccid: {
  28715. height: math.unit(6 + 3 / 12, "feet"),
  28716. name: "Front (Flaccid)",
  28717. image: {
  28718. source: "./media/characters/nevan/front-flaccid.svg",
  28719. extra: 704 / 704,
  28720. bottom: 28 / 732
  28721. }
  28722. },
  28723. frontErect: {
  28724. height: math.unit(6 + 3 / 12, "feet"),
  28725. name: "Front (Erect)",
  28726. image: {
  28727. source: "./media/characters/nevan/front-erect.svg",
  28728. extra: 704 / 704,
  28729. bottom: 28 / 732
  28730. }
  28731. },
  28732. backFlaccid: {
  28733. height: math.unit(6 + 3 / 12, "feet"),
  28734. name: "Back (Flaccid)",
  28735. image: {
  28736. source: "./media/characters/nevan/back-flaccid.svg",
  28737. extra: 714 / 714,
  28738. bottom: 21 / 735
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(6 + 3 / 12, "feet"),
  28746. default: true
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(4, "feet"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/arhan/front.svg",
  28758. extra: 3368 / 3133,
  28759. bottom: 0 / 3368
  28760. }
  28761. },
  28762. side: {
  28763. height: math.unit(4, "feet"),
  28764. name: "Side",
  28765. image: {
  28766. source: "./media/characters/arhan/side.svg",
  28767. extra: 3347 / 3105,
  28768. bottom: 0 / 3347
  28769. }
  28770. },
  28771. tongue: {
  28772. height: math.unit(1.42, "feet"),
  28773. name: "Tongue",
  28774. image: {
  28775. source: "./media/characters/arhan/tongue.svg"
  28776. }
  28777. },
  28778. head: {
  28779. height: math.unit(0.85, "feet"),
  28780. name: "Head",
  28781. image: {
  28782. source: "./media/characters/arhan/head.svg"
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(4, "feet"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(5 + 7.5 / 12, "feet"),
  28799. weight: math.unit(120, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/digi-duncan/front.svg",
  28803. extra: 330 / 326,
  28804. bottom: 16 / 346
  28805. }
  28806. },
  28807. side: {
  28808. height: math.unit(5 + 7.5 / 12, "feet"),
  28809. weight: math.unit(120, "lb"),
  28810. name: "Side",
  28811. image: {
  28812. source: "./media/characters/digi-duncan/side.svg",
  28813. extra: 341 / 337,
  28814. bottom: 1 / 342
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(5 + 7.5 / 12, "feet"),
  28819. weight: math.unit(120, "lb"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/digi-duncan/back.svg",
  28823. extra: 330 / 326,
  28824. bottom: 12 / 342
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Speck",
  28831. height: math.unit(0.25, "mm")
  28832. },
  28833. {
  28834. name: "Micro",
  28835. height: math.unit(5, "mm")
  28836. },
  28837. {
  28838. name: "Tiny",
  28839. height: math.unit(0.5, "inches"),
  28840. default: true
  28841. },
  28842. {
  28843. name: "Human",
  28844. height: math.unit(5 + 7.5 / 12, "feet")
  28845. },
  28846. {
  28847. name: "Minigiant",
  28848. height: math.unit(8 + 5.25, "feet")
  28849. },
  28850. {
  28851. name: "Giant",
  28852. height: math.unit(2000, "feet")
  28853. },
  28854. {
  28855. name: "Mega",
  28856. height: math.unit(371.1, "miles")
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(2, "meters"),
  28865. weight: math.unit(350, "kg"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28869. extra: 898 / 838,
  28870. bottom: 9 / 907
  28871. }
  28872. },
  28873. },
  28874. [
  28875. {
  28876. name: "Micro",
  28877. height: math.unit(8, "meters")
  28878. },
  28879. {
  28880. name: "Normal",
  28881. height: math.unit(50, "meters"),
  28882. default: true
  28883. },
  28884. {
  28885. name: "Macro",
  28886. height: math.unit(500, "meters")
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(6 + 6 / 12, "feet"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/khardesh/front.svg",
  28898. extra: 888 / 797,
  28899. bottom: 25 / 913
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(6 + 6 / 12, "feet"),
  28907. default: true
  28908. },
  28909. {
  28910. name: "Normal+",
  28911. height: math.unit(4, "meters")
  28912. },
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(50, "meters")
  28916. },
  28917. {
  28918. name: "Macro+",
  28919. height: math.unit(100, "meters")
  28920. },
  28921. {
  28922. name: "Megamacro",
  28923. height: math.unit(20, "km")
  28924. },
  28925. ]
  28926. ))
  28927. characterMakers.push(() => makeCharacter(
  28928. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28929. {
  28930. front: {
  28931. height: math.unit(6, "feet"),
  28932. weight: math.unit(150, "lb"),
  28933. name: "Front",
  28934. image: {
  28935. source: "./media/characters/kosho/front.svg",
  28936. extra: 1847 / 1847,
  28937. bottom: 86 / 1933
  28938. }
  28939. },
  28940. },
  28941. [
  28942. {
  28943. name: "Second-stage micro",
  28944. height: math.unit(0.5, "inches")
  28945. },
  28946. {
  28947. name: "First-stage micro",
  28948. height: math.unit(6, "inches")
  28949. },
  28950. {
  28951. name: "Normal",
  28952. height: math.unit(6, "feet"),
  28953. default: true
  28954. },
  28955. {
  28956. name: "First-stage macro",
  28957. height: math.unit(72, "feet")
  28958. },
  28959. {
  28960. name: "Second-stage macro",
  28961. height: math.unit(864, "feet")
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28967. {
  28968. normal: {
  28969. height: math.unit(4 + 6 / 12, "feet"),
  28970. name: "Normal",
  28971. image: {
  28972. source: "./media/characters/hydra/normal.svg",
  28973. extra: 2833 / 2634,
  28974. bottom: 68 / 2901
  28975. }
  28976. },
  28977. smol: {
  28978. height: math.unit(0.705, "inches"),
  28979. name: "Smol",
  28980. image: {
  28981. source: "./media/characters/hydra/smol.svg",
  28982. extra: 2715 / 2540,
  28983. bottom: 0 / 2715
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(4 + 6 / 12, "feet"),
  28991. default: true
  28992. }
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28997. {
  28998. front: {
  28999. height: math.unit(0.6, "cm"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/daz/front.svg",
  29003. extra: 1682 / 1164,
  29004. bottom: 42 / 1724
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Normal",
  29011. height: math.unit(0.6, "cm"),
  29012. default: true
  29013. },
  29014. ]
  29015. ))
  29016. characterMakers.push(() => makeCharacter(
  29017. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29018. {
  29019. front: {
  29020. height: math.unit(6, "feet"),
  29021. weight: math.unit(235, "lb"),
  29022. name: "Front",
  29023. image: {
  29024. source: "./media/characters/theo-pangolin/front.svg",
  29025. extra: 1996 / 1969,
  29026. bottom: 115 / 2111
  29027. }
  29028. },
  29029. back: {
  29030. height: math.unit(6, "feet"),
  29031. weight: math.unit(235, "lb"),
  29032. name: "Back",
  29033. image: {
  29034. source: "./media/characters/theo-pangolin/back.svg",
  29035. extra: 1979 / 1979,
  29036. bottom: 40 / 2019
  29037. }
  29038. },
  29039. feral: {
  29040. height: math.unit(2, "feet"),
  29041. weight: math.unit(30, "lb"),
  29042. name: "Feral",
  29043. image: {
  29044. source: "./media/characters/theo-pangolin/feral.svg",
  29045. extra: 803 / 791,
  29046. bottom: 181 / 984
  29047. }
  29048. },
  29049. footFive: {
  29050. height: math.unit(1.43, "feet"),
  29051. name: "Foot (Five Toes)",
  29052. image: {
  29053. source: "./media/characters/theo-pangolin/foot-five.svg"
  29054. }
  29055. },
  29056. footFour: {
  29057. height: math.unit(1.43, "feet"),
  29058. name: "Foot (Four Toes)",
  29059. image: {
  29060. source: "./media/characters/theo-pangolin/foot-four.svg"
  29061. }
  29062. },
  29063. handFour: {
  29064. height: math.unit(0.81, "feet"),
  29065. name: "Hand (Four Fingers)",
  29066. image: {
  29067. source: "./media/characters/theo-pangolin/hand-four.svg"
  29068. }
  29069. },
  29070. handThree: {
  29071. height: math.unit(0.81, "feet"),
  29072. name: "Hand (Three Fingers)",
  29073. image: {
  29074. source: "./media/characters/theo-pangolin/hand-three.svg"
  29075. }
  29076. },
  29077. headFront: {
  29078. height: math.unit(1.37, "feet"),
  29079. name: "Head (Front)",
  29080. image: {
  29081. source: "./media/characters/theo-pangolin/head-front.svg"
  29082. }
  29083. },
  29084. headSide: {
  29085. height: math.unit(1.43, "feet"),
  29086. name: "Head (Side)",
  29087. image: {
  29088. source: "./media/characters/theo-pangolin/head-side.svg"
  29089. }
  29090. },
  29091. tongue: {
  29092. height: math.unit(2.29, "feet"),
  29093. name: "Tongue",
  29094. image: {
  29095. source: "./media/characters/theo-pangolin/tongue.svg"
  29096. }
  29097. },
  29098. },
  29099. [
  29100. {
  29101. name: "Normal",
  29102. height: math.unit(6, "feet")
  29103. },
  29104. {
  29105. name: "Macro",
  29106. height: math.unit(400, "feet"),
  29107. default: true
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(6, "inches"),
  29116. weight: math.unit(0.036, "kg"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/renée/front.svg",
  29120. extra: 900 / 886,
  29121. bottom: 8 / 908
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Nano",
  29128. height: math.unit(1, "nm")
  29129. },
  29130. {
  29131. name: "Micro",
  29132. height: math.unit(1, "mm")
  29133. },
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(6, "inches")
  29137. },
  29138. {
  29139. name: "Macro",
  29140. height: math.unit(2000, "feet"),
  29141. default: true
  29142. },
  29143. {
  29144. name: "Megamacro",
  29145. height: math.unit(2, "km")
  29146. },
  29147. {
  29148. name: "Gigamacro",
  29149. height: math.unit(2000, "km")
  29150. },
  29151. {
  29152. name: "Teramacro",
  29153. height: math.unit(250000, "km")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(4, "meters"),
  29162. weight: math.unit(150, "kg"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/caledvwlch/front.svg",
  29166. extra: 1760 / 1551,
  29167. bottom: 28 / 1788
  29168. }
  29169. },
  29170. side: {
  29171. height: math.unit(4, "meters"),
  29172. weight: math.unit(150, "kg"),
  29173. name: "Side",
  29174. image: {
  29175. source: "./media/characters/caledvwlch/side.svg",
  29176. extra: 1605 / 1536,
  29177. bottom: 31 / 1636
  29178. }
  29179. },
  29180. back: {
  29181. height: math.unit(4, "meters"),
  29182. weight: math.unit(150, "kg"),
  29183. name: "Back",
  29184. image: {
  29185. source: "./media/characters/caledvwlch/back.svg",
  29186. extra: 1635 / 1565,
  29187. bottom: 27 / 1662
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "\"Incognito\"",
  29194. height: math.unit(4, "meters")
  29195. },
  29196. {
  29197. name: "Small rampage",
  29198. height: math.unit(600, "meters")
  29199. },
  29200. {
  29201. name: "Mega",
  29202. height: math.unit(30, "km")
  29203. },
  29204. {
  29205. name: "Home-size",
  29206. height: math.unit(50, "km"),
  29207. default: true
  29208. },
  29209. {
  29210. name: "Giga",
  29211. height: math.unit(300, "km")
  29212. },
  29213. {
  29214. name: "Lounging",
  29215. height: math.unit(11000, "km")
  29216. },
  29217. {
  29218. name: "Planet snacking",
  29219. height: math.unit(2000000, "km")
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29225. {
  29226. front: {
  29227. height: math.unit(6, "feet"),
  29228. weight: math.unit(215, "lb"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/sapphire-svell/front.svg",
  29232. extra: 495 / 455,
  29233. bottom: 20 / 515
  29234. }
  29235. },
  29236. back: {
  29237. height: math.unit(6, "feet"),
  29238. weight: math.unit(216, "lb"),
  29239. name: "Back",
  29240. image: {
  29241. source: "./media/characters/sapphire-svell/back.svg",
  29242. extra: 497 / 477,
  29243. bottom: 7 / 504
  29244. }
  29245. },
  29246. maw: {
  29247. height: math.unit(1.57, "feet"),
  29248. name: "Maw",
  29249. image: {
  29250. source: "./media/characters/sapphire-svell/maw.svg"
  29251. }
  29252. },
  29253. foot: {
  29254. height: math.unit(1.07, "feet"),
  29255. name: "Foot",
  29256. image: {
  29257. source: "./media/characters/sapphire-svell/foot.svg"
  29258. }
  29259. },
  29260. toering: {
  29261. height: math.unit(1.7, "inch"),
  29262. name: "Toering",
  29263. image: {
  29264. source: "./media/characters/sapphire-svell/toering.svg"
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Normal",
  29271. height: math.unit(300, "feet"),
  29272. default: true
  29273. },
  29274. {
  29275. name: "Augmented",
  29276. height: math.unit(1250, "feet")
  29277. },
  29278. {
  29279. name: "Unleashed",
  29280. height: math.unit(3000, "feet")
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29286. {
  29287. side: {
  29288. height: math.unit(2 + 3 / 12, "feet"),
  29289. weight: math.unit(110, "lb"),
  29290. name: "Side",
  29291. image: {
  29292. source: "./media/characters/glitch-flux/side.svg",
  29293. extra: 997 / 805,
  29294. bottom: 20 / 1017
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(2 + 3 / 12, "feet"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(4, "meters"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/mid/front.svg",
  29314. extra: 507 / 476,
  29315. bottom: 17 / 524
  29316. }
  29317. },
  29318. back: {
  29319. height: math.unit(4, "meters"),
  29320. name: "Back",
  29321. image: {
  29322. source: "./media/characters/mid/back.svg",
  29323. extra: 519 / 487,
  29324. bottom: 7 / 526
  29325. }
  29326. },
  29327. stuck: {
  29328. height: math.unit(2.2, "meters"),
  29329. name: "Stuck",
  29330. image: {
  29331. source: "./media/characters/mid/stuck.svg",
  29332. extra: 1951 / 1869,
  29333. bottom: 88 / 2039
  29334. }
  29335. }
  29336. },
  29337. [
  29338. {
  29339. name: "Normal",
  29340. height: math.unit(4, "meters"),
  29341. default: true
  29342. },
  29343. {
  29344. name: "Big",
  29345. height: math.unit(10, "meters")
  29346. },
  29347. {
  29348. name: "Macro",
  29349. height: math.unit(800, "meters")
  29350. },
  29351. {
  29352. name: "Megamacro",
  29353. height: math.unit(100, "km")
  29354. },
  29355. {
  29356. name: "Overgrown",
  29357. height: math.unit(1, "parsec")
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(2.5, "meters"),
  29366. weight: math.unit(225, "kg"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/iris/front.svg",
  29370. extra: 3348 / 3251,
  29371. bottom: 205 / 3553
  29372. }
  29373. },
  29374. maw: {
  29375. height: math.unit(0.56, "meter"),
  29376. name: "Maw",
  29377. image: {
  29378. source: "./media/characters/iris/maw.svg"
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Mewter cat",
  29385. height: math.unit(1.2, "meters")
  29386. },
  29387. {
  29388. name: "Minimacro",
  29389. height: math.unit(2.5, "meters"),
  29390. default: true
  29391. },
  29392. {
  29393. name: "Macro",
  29394. height: math.unit(180, "meters")
  29395. },
  29396. {
  29397. name: "Megamacro",
  29398. height: math.unit(2746, "meters")
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(6, "feet"),
  29407. weight: math.unit(135, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/axel/front.svg",
  29411. extra: 908 / 908,
  29412. bottom: 58 / 966
  29413. }
  29414. },
  29415. side: {
  29416. height: math.unit(6, "feet"),
  29417. weight: math.unit(135, "lb"),
  29418. name: "Side",
  29419. image: {
  29420. source: "./media/characters/axel/side.svg",
  29421. extra: 958 / 958,
  29422. bottom: 11 / 969
  29423. }
  29424. },
  29425. back: {
  29426. height: math.unit(6, "feet"),
  29427. weight: math.unit(135, "lb"),
  29428. name: "Back",
  29429. image: {
  29430. source: "./media/characters/axel/back.svg",
  29431. extra: 887 / 887,
  29432. bottom: 34 / 921
  29433. }
  29434. },
  29435. head: {
  29436. height: math.unit(1.07, "feet"),
  29437. name: "Head",
  29438. image: {
  29439. source: "./media/characters/axel/head.svg"
  29440. }
  29441. },
  29442. beak: {
  29443. height: math.unit(1.4, "feet"),
  29444. name: "Beak",
  29445. image: {
  29446. source: "./media/characters/axel/beak.svg"
  29447. }
  29448. },
  29449. beakSide: {
  29450. height: math.unit(1.4, "feet"),
  29451. name: "Beak Side",
  29452. image: {
  29453. source: "./media/characters/axel/beak-side.svg"
  29454. }
  29455. },
  29456. sheath: {
  29457. height: math.unit(0.5, "feet"),
  29458. name: "Sheath",
  29459. image: {
  29460. source: "./media/characters/axel/sheath.svg"
  29461. }
  29462. },
  29463. dick: {
  29464. height: math.unit(0.98, "feet"),
  29465. name: "Dick",
  29466. image: {
  29467. source: "./media/characters/axel/dick.svg"
  29468. }
  29469. },
  29470. },
  29471. [
  29472. {
  29473. name: "Macro",
  29474. height: math.unit(68, "meters"),
  29475. default: true
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(3.5, "meters"),
  29484. weight: math.unit(1200, "kg"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/joanna/front.svg",
  29488. extra: 1596 / 1488,
  29489. bottom: 29 / 1625
  29490. }
  29491. },
  29492. back: {
  29493. height: math.unit(3.5, "meters"),
  29494. weight: math.unit(1200, "kg"),
  29495. name: "Back",
  29496. image: {
  29497. source: "./media/characters/joanna/back.svg",
  29498. extra: 1594 / 1495,
  29499. bottom: 26 / 1620
  29500. }
  29501. },
  29502. frontShorts: {
  29503. height: math.unit(3.5, "meters"),
  29504. weight: math.unit(1200, "kg"),
  29505. name: "Front (Shorts)",
  29506. image: {
  29507. source: "./media/characters/joanna/front-shorts.svg",
  29508. extra: 1596 / 1488,
  29509. bottom: 29 / 1625
  29510. }
  29511. },
  29512. frontBiker: {
  29513. height: math.unit(3.5, "meters"),
  29514. weight: math.unit(1200, "kg"),
  29515. name: "Front (Biker)",
  29516. image: {
  29517. source: "./media/characters/joanna/front-biker.svg",
  29518. extra: 1596 / 1488,
  29519. bottom: 29 / 1625
  29520. }
  29521. },
  29522. backBiker: {
  29523. height: math.unit(3.5, "meters"),
  29524. weight: math.unit(1200, "kg"),
  29525. name: "Back (Biker)",
  29526. image: {
  29527. source: "./media/characters/joanna/back-biker.svg",
  29528. extra: 1594 / 1495,
  29529. bottom: 88 / 1682
  29530. }
  29531. },
  29532. bikeLeft: {
  29533. height: math.unit(2.4, "meters"),
  29534. weight: math.unit(1600, "kg"),
  29535. name: "Bike (Left)",
  29536. image: {
  29537. source: "./media/characters/joanna/bike-left.svg",
  29538. extra: 720 / 720,
  29539. bottom: 8 / 728
  29540. }
  29541. },
  29542. bikeRight: {
  29543. height: math.unit(2.4, "meters"),
  29544. weight: math.unit(1600, "kg"),
  29545. name: "Bike (Right)",
  29546. image: {
  29547. source: "./media/characters/joanna/bike-right.svg",
  29548. extra: 720 / 720,
  29549. bottom: 8 / 728
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Incognito",
  29556. height: math.unit(3.5, "meters")
  29557. },
  29558. {
  29559. name: "Casual Big",
  29560. height: math.unit(200, "meters")
  29561. },
  29562. {
  29563. name: "Macro",
  29564. height: math.unit(600, "meters")
  29565. },
  29566. {
  29567. name: "Original",
  29568. height: math.unit(20, "km"),
  29569. default: true
  29570. },
  29571. {
  29572. name: "Giga",
  29573. height: math.unit(400, "km")
  29574. },
  29575. {
  29576. name: "Lounging",
  29577. height: math.unit(1500, "km")
  29578. },
  29579. {
  29580. name: "Planetary",
  29581. height: math.unit(200000, "km")
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29587. {
  29588. front: {
  29589. height: math.unit(6, "feet"),
  29590. weight: math.unit(150, "lb"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/hugo-sigil/front.svg",
  29594. extra: 522 / 500,
  29595. bottom: 2 / 524
  29596. }
  29597. },
  29598. back: {
  29599. height: math.unit(6, "feet"),
  29600. weight: math.unit(150, "lb"),
  29601. name: "Back",
  29602. image: {
  29603. source: "./media/characters/hugo-sigil/back.svg",
  29604. extra: 519 / 495,
  29605. bottom: 5 / 524
  29606. }
  29607. },
  29608. maw: {
  29609. height: math.unit(1.4, "feet"),
  29610. weight: math.unit(150, "lb"),
  29611. name: "Maw",
  29612. image: {
  29613. source: "./media/characters/hugo-sigil/maw.svg"
  29614. }
  29615. },
  29616. feet: {
  29617. height: math.unit(1.56, "feet"),
  29618. weight: math.unit(150, "lb"),
  29619. name: "Feet",
  29620. image: {
  29621. source: "./media/characters/hugo-sigil/feet.svg",
  29622. extra: 177 / 177,
  29623. bottom: 12 / 189
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(6, "feet")
  29631. },
  29632. {
  29633. name: "Macro",
  29634. height: math.unit(200, "feet"),
  29635. default: true
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29641. {
  29642. front: {
  29643. height: math.unit(6, "feet"),
  29644. weight: math.unit(150, "lb"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/peri/front.svg",
  29648. extra: 2354 / 2233,
  29649. bottom: 49 / 2403
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Really Small",
  29656. height: math.unit(1, "nm")
  29657. },
  29658. {
  29659. name: "Micro",
  29660. height: math.unit(4, "inches")
  29661. },
  29662. {
  29663. name: "Normal",
  29664. height: math.unit(7, "inches"),
  29665. default: true
  29666. },
  29667. {
  29668. name: "Macro",
  29669. height: math.unit(400, "feet")
  29670. },
  29671. {
  29672. name: "Megamacro",
  29673. height: math.unit(100, "miles")
  29674. },
  29675. ]
  29676. ))
  29677. characterMakers.push(() => makeCharacter(
  29678. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29679. {
  29680. frontSlim: {
  29681. height: math.unit(7, "feet"),
  29682. name: "Front (Slim)",
  29683. image: {
  29684. source: "./media/characters/issilora/front-slim.svg",
  29685. extra: 529 / 449,
  29686. bottom: 53 / 582
  29687. }
  29688. },
  29689. sideSlim: {
  29690. height: math.unit(7, "feet"),
  29691. name: "Side (Slim)",
  29692. image: {
  29693. source: "./media/characters/issilora/side-slim.svg",
  29694. extra: 570 / 480,
  29695. bottom: 30 / 600
  29696. }
  29697. },
  29698. backSlim: {
  29699. height: math.unit(7, "feet"),
  29700. name: "Back (Slim)",
  29701. image: {
  29702. source: "./media/characters/issilora/back-slim.svg",
  29703. extra: 537 / 455,
  29704. bottom: 46 / 583
  29705. }
  29706. },
  29707. frontBuff: {
  29708. height: math.unit(7, "feet"),
  29709. name: "Front (Buff)",
  29710. image: {
  29711. source: "./media/characters/issilora/front-buff.svg",
  29712. extra: 2310 / 2035,
  29713. bottom: 335 / 2645
  29714. }
  29715. },
  29716. head: {
  29717. height: math.unit(1.94, "feet"),
  29718. name: "Head",
  29719. image: {
  29720. source: "./media/characters/issilora/head.svg"
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Minimum",
  29727. height: math.unit(7, "feet")
  29728. },
  29729. {
  29730. name: "Comfortable",
  29731. height: math.unit(17, "feet")
  29732. },
  29733. {
  29734. name: "Fun Size",
  29735. height: math.unit(47, "feet")
  29736. },
  29737. {
  29738. name: "Natural Macro",
  29739. height: math.unit(137, "feet"),
  29740. default: true
  29741. },
  29742. {
  29743. name: "Maximum Kaiju",
  29744. height: math.unit(397, "feet")
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29750. {
  29751. front: {
  29752. height: math.unit(50 + 9/12, "feet"),
  29753. weight: math.unit(32.8, "tons"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/irb'iiritaahn/front.svg",
  29757. extra: 1878/1826,
  29758. bottom: 326/2204
  29759. }
  29760. },
  29761. back: {
  29762. height: math.unit(50 + 9/12, "feet"),
  29763. weight: math.unit(32.8, "tons"),
  29764. name: "Back",
  29765. image: {
  29766. source: "./media/characters/irb'iiritaahn/back.svg",
  29767. extra: 2052/2018,
  29768. bottom: 152/2204
  29769. }
  29770. },
  29771. head: {
  29772. height: math.unit(12.86, "feet"),
  29773. name: "Head",
  29774. image: {
  29775. source: "./media/characters/irb'iiritaahn/head.svg"
  29776. }
  29777. },
  29778. maw: {
  29779. height: math.unit(9.66, "feet"),
  29780. name: "Maw",
  29781. image: {
  29782. source: "./media/characters/irb'iiritaahn/maw.svg"
  29783. }
  29784. },
  29785. frontDick: {
  29786. height: math.unit(8.78461, "feet"),
  29787. name: "Front Dick",
  29788. image: {
  29789. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29790. }
  29791. },
  29792. rearDick: {
  29793. height: math.unit(8.78461, "feet"),
  29794. name: "Rear Dick",
  29795. image: {
  29796. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29797. }
  29798. },
  29799. rearDickUnfolded: {
  29800. height: math.unit(8.78, "feet"),
  29801. name: "Rear Dick (Unfolded)",
  29802. image: {
  29803. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29804. }
  29805. },
  29806. wings: {
  29807. height: math.unit(43, "feet"),
  29808. name: "Wings",
  29809. image: {
  29810. source: "./media/characters/irb'iiritaahn/wings.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Macro",
  29817. height: math.unit(50 + 9/12, "feet"),
  29818. default: true
  29819. },
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29824. {
  29825. front: {
  29826. height: math.unit(205, "cm"),
  29827. weight: math.unit(102, "kg"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/irbisgreif/front.svg",
  29831. extra: 785/706,
  29832. bottom: 13/798
  29833. }
  29834. },
  29835. back: {
  29836. height: math.unit(205, "cm"),
  29837. weight: math.unit(102, "kg"),
  29838. name: "Back",
  29839. image: {
  29840. source: "./media/characters/irbisgreif/back.svg",
  29841. extra: 713/701,
  29842. bottom: 26/739
  29843. }
  29844. },
  29845. frontDressed: {
  29846. height: math.unit(216, "cm"),
  29847. weight: math.unit(102, "kg"),
  29848. name: "Front-dressed",
  29849. image: {
  29850. source: "./media/characters/irbisgreif/front-dressed.svg",
  29851. extra: 902/776,
  29852. bottom: 14/916
  29853. }
  29854. },
  29855. sideDressed: {
  29856. height: math.unit(195, "cm"),
  29857. weight: math.unit(102, "kg"),
  29858. name: "Side-dressed",
  29859. image: {
  29860. source: "./media/characters/irbisgreif/side-dressed.svg",
  29861. extra: 788/688,
  29862. bottom: 21/809
  29863. }
  29864. },
  29865. backDressed: {
  29866. height: math.unit(216, "cm"),
  29867. weight: math.unit(102, "kg"),
  29868. name: "Back-dressed",
  29869. image: {
  29870. source: "./media/characters/irbisgreif/back-dressed.svg",
  29871. extra: 901/783,
  29872. bottom: 10/911
  29873. }
  29874. },
  29875. dick: {
  29876. height: math.unit(0.49, "feet"),
  29877. name: "Dick",
  29878. image: {
  29879. source: "./media/characters/irbisgreif/dick.svg"
  29880. }
  29881. },
  29882. wingTop: {
  29883. height: math.unit(1.93 , "feet"),
  29884. name: "Wing-top",
  29885. image: {
  29886. source: "./media/characters/irbisgreif/wing-top.svg"
  29887. }
  29888. },
  29889. wingBottom: {
  29890. height: math.unit(1.93 , "feet"),
  29891. name: "Wing-bottom",
  29892. image: {
  29893. source: "./media/characters/irbisgreif/wing-bottom.svg"
  29894. }
  29895. },
  29896. },
  29897. [
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(2 + 7/12, "feet"),
  29901. default: true
  29902. },
  29903. ]
  29904. ))
  29905. //characters
  29906. function makeCharacters() {
  29907. const results = [];
  29908. characterMakers.forEach(character => {
  29909. results.push(character());
  29910. });
  29911. return results;
  29912. }