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

32775 строки
822 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.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. }
  1468. //species
  1469. function getSpeciesInfo(speciesList) {
  1470. let result = new Set();
  1471. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1472. result.add(entry)
  1473. });
  1474. return Array.from(result);
  1475. };
  1476. function getSpeciesInfoHelper(species) {
  1477. if (!speciesData[species]) {
  1478. console.warn(species + " doesn't exist");
  1479. return [];
  1480. }
  1481. if (speciesData[species].parents) {
  1482. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1483. } else {
  1484. return [species];
  1485. }
  1486. }
  1487. characterMakers.push(() => makeCharacter(
  1488. {
  1489. name: "Fen",
  1490. species: ["crux"],
  1491. description: {
  1492. title: "Bio",
  1493. text: "Very furry. Sheds on everything."
  1494. },
  1495. tags: [
  1496. "anthro",
  1497. "goo"
  1498. ]
  1499. },
  1500. {
  1501. back: {
  1502. height: math.unit(2.2428, "meter"),
  1503. weight: math.unit(124.738, "kg"),
  1504. name: "Back",
  1505. image: {
  1506. source: "./media/characters/fen/back.svg",
  1507. extra: 2024 / 1867,
  1508. bottom: 13 / 2037
  1509. },
  1510. info: {
  1511. description: {
  1512. mode: "append",
  1513. text: "\n\nHe is not currently looking at you."
  1514. }
  1515. }
  1516. },
  1517. full: {
  1518. height: math.unit(1.34, "meter"),
  1519. weight: math.unit(225, "kg"),
  1520. name: "Full",
  1521. image: {
  1522. source: "./media/characters/fen/full.svg"
  1523. },
  1524. info: {
  1525. description: {
  1526. mode: "append",
  1527. text: "\n\nMunch."
  1528. }
  1529. }
  1530. },
  1531. kneeling: {
  1532. height: math.unit(5.4, "feet"),
  1533. weight: math.unit(124.738, "kg"),
  1534. name: "Kneeling",
  1535. image: {
  1536. source: "./media/characters/fen/kneeling.svg",
  1537. extra: 563 / 507
  1538. }
  1539. },
  1540. goo: {
  1541. height: math.unit(2.8, "feet"),
  1542. weight: math.unit(125, "kg"),
  1543. capacity: math.unit(1, "people"),
  1544. name: "Goo",
  1545. image: {
  1546. source: "./media/characters/fen/goo.svg",
  1547. bottom: 116 / 613
  1548. }
  1549. },
  1550. lounging: {
  1551. height: math.unit(6.5, "feet"),
  1552. weight: math.unit(125, "kg"),
  1553. name: "Lounging",
  1554. image: {
  1555. source: "./media/characters/fen/lounging.svg"
  1556. }
  1557. },
  1558. },
  1559. [
  1560. {
  1561. name: "Normal",
  1562. height: math.unit(2.2428, "meter")
  1563. },
  1564. {
  1565. name: "Big",
  1566. height: math.unit(12, "feet")
  1567. },
  1568. {
  1569. name: "Minimacro",
  1570. height: math.unit(40, "feet"),
  1571. default: true,
  1572. info: {
  1573. description: {
  1574. mode: "append",
  1575. text: "\n\nTOO DAMN BIG"
  1576. }
  1577. }
  1578. },
  1579. {
  1580. name: "Macro",
  1581. height: math.unit(100, "feet"),
  1582. info: {
  1583. description: {
  1584. mode: "append",
  1585. text: "\n\nTOO DAMN BIG"
  1586. }
  1587. }
  1588. },
  1589. {
  1590. name: "Macro+",
  1591. height: math.unit(300, "feet")
  1592. },
  1593. {
  1594. name: "Megamacro",
  1595. height: math.unit(2, "miles")
  1596. }
  1597. ]
  1598. ))
  1599. characterMakers.push(() => makeCharacter(
  1600. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1601. {
  1602. front: {
  1603. height: math.unit(183, "cm"),
  1604. weight: math.unit(80, "kg"),
  1605. name: "Front",
  1606. image: {
  1607. source: "./media/characters/sofia-fluttertail/front.svg",
  1608. bottom: 0.01,
  1609. extra: 2154 / 2081
  1610. }
  1611. },
  1612. frontAlt: {
  1613. height: math.unit(183, "cm"),
  1614. weight: math.unit(80, "kg"),
  1615. name: "Front (alt)",
  1616. image: {
  1617. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1618. }
  1619. },
  1620. back: {
  1621. height: math.unit(183, "cm"),
  1622. weight: math.unit(80, "kg"),
  1623. name: "Back",
  1624. image: {
  1625. source: "./media/characters/sofia-fluttertail/back.svg"
  1626. }
  1627. },
  1628. kneeling: {
  1629. height: math.unit(125, "cm"),
  1630. weight: math.unit(80, "kg"),
  1631. name: "Kneeling",
  1632. image: {
  1633. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1634. extra: 1033 / 977,
  1635. bottom: 23.7 / 1057
  1636. }
  1637. },
  1638. maw: {
  1639. height: math.unit(183 / 5, "cm"),
  1640. name: "Maw",
  1641. image: {
  1642. source: "./media/characters/sofia-fluttertail/maw.svg"
  1643. }
  1644. },
  1645. mawcloseup: {
  1646. height: math.unit(183 / 5 * 0.41, "cm"),
  1647. name: "Maw (Closeup)",
  1648. image: {
  1649. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1650. }
  1651. },
  1652. paws: {
  1653. height: math.unit(1.17, "feet"),
  1654. name: "Paws",
  1655. image: {
  1656. source: "./media/characters/sofia-fluttertail/paws.svg",
  1657. extra: 851 / 851,
  1658. bottom: 17 / 868
  1659. }
  1660. },
  1661. },
  1662. [
  1663. {
  1664. name: "Normal",
  1665. height: math.unit(1.83, "meter")
  1666. },
  1667. {
  1668. name: "Size Thief",
  1669. height: math.unit(18, "feet")
  1670. },
  1671. {
  1672. name: "50 Foot Collie",
  1673. height: math.unit(50, "feet")
  1674. },
  1675. {
  1676. name: "Macro",
  1677. height: math.unit(96, "feet"),
  1678. default: true
  1679. },
  1680. {
  1681. name: "Megamerger",
  1682. height: math.unit(650, "feet")
  1683. },
  1684. ]
  1685. ))
  1686. characterMakers.push(() => makeCharacter(
  1687. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1688. {
  1689. front: {
  1690. height: math.unit(7, "feet"),
  1691. weight: math.unit(100, "kg"),
  1692. name: "Front",
  1693. image: {
  1694. source: "./media/characters/march/front.svg",
  1695. extra: 1,
  1696. bottom: 0.015
  1697. }
  1698. },
  1699. foot: {
  1700. height: math.unit(0.9, "feet"),
  1701. name: "Foot",
  1702. image: {
  1703. source: "./media/characters/march/foot.svg"
  1704. }
  1705. },
  1706. },
  1707. [
  1708. {
  1709. name: "Normal",
  1710. height: math.unit(7.9, "feet")
  1711. },
  1712. {
  1713. name: "Macro",
  1714. height: math.unit(220, "meters")
  1715. },
  1716. {
  1717. name: "Megamacro",
  1718. height: math.unit(2.98, "km"),
  1719. default: true
  1720. },
  1721. {
  1722. name: "Gigamacro",
  1723. height: math.unit(15963, "km")
  1724. },
  1725. {
  1726. name: "Teramacro",
  1727. height: math.unit(2980000000, "km")
  1728. },
  1729. {
  1730. name: "Examacro",
  1731. height: math.unit(250, "parsecs")
  1732. },
  1733. ]
  1734. ))
  1735. characterMakers.push(() => makeCharacter(
  1736. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1737. {
  1738. front: {
  1739. height: math.unit(6, "feet"),
  1740. weight: math.unit(60, "kg"),
  1741. name: "Front",
  1742. image: {
  1743. source: "./media/characters/noir/front.svg",
  1744. extra: 1,
  1745. bottom: 0.032
  1746. }
  1747. },
  1748. },
  1749. [
  1750. {
  1751. name: "Normal",
  1752. height: math.unit(6.6, "feet")
  1753. },
  1754. {
  1755. name: "Macro",
  1756. height: math.unit(500, "feet")
  1757. },
  1758. {
  1759. name: "Megamacro",
  1760. height: math.unit(2.5, "km"),
  1761. default: true
  1762. },
  1763. {
  1764. name: "Gigamacro",
  1765. height: math.unit(22500, "km")
  1766. },
  1767. {
  1768. name: "Teramacro",
  1769. height: math.unit(2500000000, "km")
  1770. },
  1771. {
  1772. name: "Examacro",
  1773. height: math.unit(200, "parsecs")
  1774. },
  1775. ]
  1776. ))
  1777. characterMakers.push(() => makeCharacter(
  1778. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1779. {
  1780. front: {
  1781. height: math.unit(7, "feet"),
  1782. weight: math.unit(100, "kg"),
  1783. name: "Front",
  1784. image: {
  1785. source: "./media/characters/okuri/front.svg",
  1786. extra: 1,
  1787. bottom: 0.037
  1788. }
  1789. },
  1790. back: {
  1791. height: math.unit(7, "feet"),
  1792. weight: math.unit(100, "kg"),
  1793. name: "Back",
  1794. image: {
  1795. source: "./media/characters/okuri/back.svg",
  1796. extra: 1,
  1797. bottom: 0.007
  1798. }
  1799. },
  1800. },
  1801. [
  1802. {
  1803. name: "Megamacro",
  1804. height: math.unit(100, "miles"),
  1805. default: true
  1806. },
  1807. ]
  1808. ))
  1809. characterMakers.push(() => makeCharacter(
  1810. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1811. {
  1812. front: {
  1813. height: math.unit(7, "feet"),
  1814. weight: math.unit(100, "kg"),
  1815. name: "Front",
  1816. image: {
  1817. source: "./media/characters/manny/front.svg",
  1818. extra: 1,
  1819. bottom: 0.06
  1820. }
  1821. },
  1822. back: {
  1823. height: math.unit(7, "feet"),
  1824. weight: math.unit(100, "kg"),
  1825. name: "Back",
  1826. image: {
  1827. source: "./media/characters/manny/back.svg",
  1828. extra: 1,
  1829. bottom: 0.014
  1830. }
  1831. },
  1832. },
  1833. [
  1834. {
  1835. name: "Normal",
  1836. height: math.unit(7, "feet"),
  1837. },
  1838. {
  1839. name: "Macro",
  1840. height: math.unit(78, "feet"),
  1841. default: true
  1842. },
  1843. {
  1844. name: "Macro+",
  1845. height: math.unit(300, "meters")
  1846. },
  1847. {
  1848. name: "Macro++",
  1849. height: math.unit(2400, "meters")
  1850. },
  1851. {
  1852. name: "Megamacro",
  1853. height: math.unit(5167, "meters")
  1854. },
  1855. {
  1856. name: "Gigamacro",
  1857. height: math.unit(41769, "miles")
  1858. },
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1863. {
  1864. front: {
  1865. height: math.unit(7, "feet"),
  1866. weight: math.unit(100, "kg"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/adake/front-1.svg"
  1870. }
  1871. },
  1872. frontAlt: {
  1873. height: math.unit(7, "feet"),
  1874. weight: math.unit(100, "kg"),
  1875. name: "Front (Alt)",
  1876. image: {
  1877. source: "./media/characters/adake/front-2.svg",
  1878. extra: 1,
  1879. bottom: 0.01
  1880. }
  1881. },
  1882. back: {
  1883. height: math.unit(7, "feet"),
  1884. weight: math.unit(100, "kg"),
  1885. name: "Back",
  1886. image: {
  1887. source: "./media/characters/adake/back.svg",
  1888. }
  1889. },
  1890. kneel: {
  1891. height: math.unit(5.385, "feet"),
  1892. weight: math.unit(100, "kg"),
  1893. name: "Kneeling",
  1894. image: {
  1895. source: "./media/characters/adake/kneel.svg",
  1896. bottom: 0.052
  1897. }
  1898. },
  1899. },
  1900. [
  1901. {
  1902. name: "Normal",
  1903. height: math.unit(7, "feet"),
  1904. },
  1905. {
  1906. name: "Macro",
  1907. height: math.unit(78, "feet"),
  1908. default: true
  1909. },
  1910. {
  1911. name: "Macro+",
  1912. height: math.unit(300, "meters")
  1913. },
  1914. {
  1915. name: "Macro++",
  1916. height: math.unit(2400, "meters")
  1917. },
  1918. {
  1919. name: "Megamacro",
  1920. height: math.unit(5167, "meters")
  1921. },
  1922. {
  1923. name: "Gigamacro",
  1924. height: math.unit(41769, "miles")
  1925. },
  1926. ]
  1927. ))
  1928. characterMakers.push(() => makeCharacter(
  1929. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1930. {
  1931. front: {
  1932. height: math.unit(1.65, "meters"),
  1933. weight: math.unit(50, "kg"),
  1934. name: "Front",
  1935. image: {
  1936. source: "./media/characters/elijah/front.svg",
  1937. extra: 858 / 830,
  1938. bottom: 95.5 / 953.8559
  1939. }
  1940. },
  1941. back: {
  1942. height: math.unit(1.65, "meters"),
  1943. weight: math.unit(50, "kg"),
  1944. name: "Back",
  1945. image: {
  1946. source: "./media/characters/elijah/back.svg",
  1947. extra: 895 / 850,
  1948. bottom: 5.3 / 897.956
  1949. }
  1950. },
  1951. frontNsfw: {
  1952. height: math.unit(1.65, "meters"),
  1953. weight: math.unit(50, "kg"),
  1954. name: "Front (NSFW)",
  1955. image: {
  1956. source: "./media/characters/elijah/front-nsfw.svg",
  1957. extra: 858 / 830,
  1958. bottom: 95.5 / 953.8559
  1959. }
  1960. },
  1961. backNsfw: {
  1962. height: math.unit(1.65, "meters"),
  1963. weight: math.unit(50, "kg"),
  1964. name: "Back (NSFW)",
  1965. image: {
  1966. source: "./media/characters/elijah/back-nsfw.svg",
  1967. extra: 895 / 850,
  1968. bottom: 5.3 / 897.956
  1969. }
  1970. },
  1971. dick: {
  1972. height: math.unit(1, "feet"),
  1973. name: "Dick",
  1974. image: {
  1975. source: "./media/characters/elijah/dick.svg"
  1976. }
  1977. },
  1978. beakOpen: {
  1979. height: math.unit(1.25, "feet"),
  1980. name: "Beak (Open)",
  1981. image: {
  1982. source: "./media/characters/elijah/beak-open.svg"
  1983. }
  1984. },
  1985. beakShut: {
  1986. height: math.unit(1.25, "feet"),
  1987. name: "Beak (Shut)",
  1988. image: {
  1989. source: "./media/characters/elijah/beak-shut.svg"
  1990. }
  1991. },
  1992. footFlexing: {
  1993. height: math.unit(1.61, "feet"),
  1994. name: "Foot (Flexing)",
  1995. image: {
  1996. source: "./media/characters/elijah/foot-flexing.svg"
  1997. }
  1998. },
  1999. footStepping: {
  2000. height: math.unit(1.44, "feet"),
  2001. name: "Foot (Stepping)",
  2002. image: {
  2003. source: "./media/characters/elijah/foot-stepping.svg"
  2004. }
  2005. },
  2006. plantigradeLeg: {
  2007. height: math.unit(2.34, "feet"),
  2008. name: "Plantigrade Leg",
  2009. image: {
  2010. source: "./media/characters/elijah/plantigrade-leg.svg"
  2011. }
  2012. },
  2013. plantigradeFootLeft: {
  2014. height: math.unit(0.9, "feet"),
  2015. name: "Plantigrade Foot (Left)",
  2016. image: {
  2017. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2018. }
  2019. },
  2020. plantigradeFootRight: {
  2021. height: math.unit(0.9, "feet"),
  2022. name: "Plantigrade Foot (Right)",
  2023. image: {
  2024. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Normal",
  2031. height: math.unit(1.65, "meters")
  2032. },
  2033. {
  2034. name: "Macro",
  2035. height: math.unit(55, "meters"),
  2036. default: true
  2037. },
  2038. {
  2039. name: "Macro+",
  2040. height: math.unit(105, "meters")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(11, "feet"),
  2049. weight: math.unit(80, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/rai/front.svg",
  2053. extra: 1,
  2054. bottom: 0.03
  2055. }
  2056. },
  2057. side: {
  2058. height: math.unit(11, "feet"),
  2059. weight: math.unit(80, "kg"),
  2060. name: "Side",
  2061. image: {
  2062. source: "./media/characters/rai/side.svg"
  2063. }
  2064. },
  2065. back: {
  2066. height: math.unit(11, "feet"),
  2067. weight: math.unit(80, "lb"),
  2068. name: "Back",
  2069. image: {
  2070. source: "./media/characters/rai/back.svg",
  2071. extra: 1,
  2072. bottom: 0.01
  2073. }
  2074. },
  2075. feral: {
  2076. height: math.unit(11, "feet"),
  2077. weight: math.unit(800, "lb"),
  2078. name: "Feral",
  2079. image: {
  2080. source: "./media/characters/rai/feral.svg",
  2081. extra: 1050 / 659,
  2082. bottom: 0.07
  2083. }
  2084. },
  2085. dragon: {
  2086. height: math.unit(23, "feet"),
  2087. weight: math.unit(50000, "lb"),
  2088. name: "Dragon",
  2089. image: {
  2090. source: "./media/characters/rai/dragon.svg",
  2091. extra: 2498 / 2030,
  2092. bottom: 85.2 / 2584
  2093. }
  2094. },
  2095. maw: {
  2096. height: math.unit(6 / 3.81416, "feet"),
  2097. name: "Maw",
  2098. image: {
  2099. source: "./media/characters/rai/maw.svg"
  2100. }
  2101. },
  2102. },
  2103. [
  2104. {
  2105. name: "Normal",
  2106. height: math.unit(11, "feet")
  2107. },
  2108. {
  2109. name: "Macro",
  2110. height: math.unit(302, "feet"),
  2111. default: true
  2112. },
  2113. ]
  2114. ))
  2115. characterMakers.push(() => makeCharacter(
  2116. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2117. {
  2118. frontDressed: {
  2119. height: math.unit(216, "feet"),
  2120. weight: math.unit(7000000, "lb"),
  2121. name: "Front (Dressed)",
  2122. image: {
  2123. source: "./media/characters/jazzy/front-dressed.svg",
  2124. extra: 2738 / 2651,
  2125. bottom: 41.8 / 2786
  2126. }
  2127. },
  2128. backDressed: {
  2129. height: math.unit(216, "feet"),
  2130. weight: math.unit(7000000, "lb"),
  2131. name: "Back (Dressed)",
  2132. image: {
  2133. source: "./media/characters/jazzy/back-dressed.svg",
  2134. extra: 2775 / 2673,
  2135. bottom: 36.8 / 2817
  2136. }
  2137. },
  2138. front: {
  2139. height: math.unit(216, "feet"),
  2140. weight: math.unit(7000000, "lb"),
  2141. name: "Front",
  2142. image: {
  2143. source: "./media/characters/jazzy/front.svg",
  2144. extra: 2738 / 2651,
  2145. bottom: 41.8 / 2786
  2146. }
  2147. },
  2148. back: {
  2149. height: math.unit(216, "feet"),
  2150. weight: math.unit(7000000, "lb"),
  2151. name: "Back",
  2152. image: {
  2153. source: "./media/characters/jazzy/back.svg",
  2154. extra: 2775 / 2673,
  2155. bottom: 36.8 / 2817
  2156. }
  2157. },
  2158. maw: {
  2159. height: math.unit(20, "feet"),
  2160. name: "Maw",
  2161. image: {
  2162. source: "./media/characters/jazzy/maw.svg"
  2163. }
  2164. },
  2165. paws: {
  2166. height: math.unit(27.5, "feet"),
  2167. name: "Paws",
  2168. image: {
  2169. source: "./media/characters/jazzy/paws.svg"
  2170. }
  2171. },
  2172. eye: {
  2173. height: math.unit(4.4, "feet"),
  2174. name: "Eye",
  2175. image: {
  2176. source: "./media/characters/jazzy/eye.svg"
  2177. }
  2178. },
  2179. droneOffense: {
  2180. height: math.unit(9.5, "inches"),
  2181. name: "Drone (Offense)",
  2182. image: {
  2183. source: "./media/characters/jazzy/drone-offense.svg"
  2184. }
  2185. },
  2186. droneRecon: {
  2187. height: math.unit(9.5, "inches"),
  2188. name: "Drone (Recon)",
  2189. image: {
  2190. source: "./media/characters/jazzy/drone-recon.svg"
  2191. }
  2192. },
  2193. droneDefense: {
  2194. height: math.unit(9.5, "inches"),
  2195. name: "Drone (Defense)",
  2196. image: {
  2197. source: "./media/characters/jazzy/drone-defense.svg"
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(216, "feet"),
  2205. default: true
  2206. },
  2207. ]
  2208. ))
  2209. characterMakers.push(() => makeCharacter(
  2210. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2211. {
  2212. front: {
  2213. height: math.unit(7, "feet"),
  2214. weight: math.unit(80, "kg"),
  2215. name: "Front",
  2216. image: {
  2217. source: "./media/characters/flamm/front.svg",
  2218. extra: 1794 / 1677,
  2219. bottom: 31.7 / 1828.5
  2220. }
  2221. },
  2222. },
  2223. [
  2224. {
  2225. name: "Normal",
  2226. height: math.unit(9.5, "feet")
  2227. },
  2228. {
  2229. name: "Macro",
  2230. height: math.unit(200, "feet"),
  2231. default: true
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(5 + 3/12, "feet"),
  2240. weight: math.unit(60, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/zephiro/front.svg",
  2244. extra: 2309 / 2162,
  2245. bottom: 0.069
  2246. }
  2247. },
  2248. side: {
  2249. height: math.unit(5 + 3/12, "feet"),
  2250. weight: math.unit(60, "kg"),
  2251. name: "Side",
  2252. image: {
  2253. source: "./media/characters/zephiro/side.svg",
  2254. extra: 2403 / 2279,
  2255. bottom: 0.015
  2256. }
  2257. },
  2258. back: {
  2259. height: math.unit(5 + 3/12, "feet"),
  2260. weight: math.unit(60, "kg"),
  2261. name: "Back",
  2262. image: {
  2263. source: "./media/characters/zephiro/back.svg",
  2264. extra: 2373 / 2244,
  2265. bottom: 0.013
  2266. }
  2267. },
  2268. hand: {
  2269. height: math.unit(0.68, "feet"),
  2270. name: "Hand",
  2271. image: {
  2272. source: "./media/characters/zephiro/hand.svg"
  2273. }
  2274. },
  2275. paw: {
  2276. height: math.unit(1, "feet"),
  2277. name: "Paw",
  2278. image: {
  2279. source: "./media/characters/zephiro/paw.svg"
  2280. }
  2281. },
  2282. beans: {
  2283. height: math.unit(0.93, "feet"),
  2284. name: "Beans",
  2285. image: {
  2286. source: "./media/characters/zephiro/beans.svg"
  2287. }
  2288. },
  2289. },
  2290. [
  2291. {
  2292. name: "Micro",
  2293. height: math.unit(3, "inches")
  2294. },
  2295. {
  2296. name: "Normal",
  2297. height: math.unit(5 + 3 / 12, "feet"),
  2298. default: true
  2299. },
  2300. {
  2301. name: "Macro",
  2302. height: math.unit(118, "feet")
  2303. },
  2304. ]
  2305. ))
  2306. characterMakers.push(() => makeCharacter(
  2307. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2308. {
  2309. front: {
  2310. height: math.unit(5, "feet"),
  2311. weight: math.unit(90, "kg"),
  2312. name: "Front",
  2313. image: {
  2314. source: "./media/characters/fory/front.svg",
  2315. extra: 2862 / 2674,
  2316. bottom: 180 / 3043.8
  2317. }
  2318. },
  2319. back: {
  2320. height: math.unit(5, "feet"),
  2321. weight: math.unit(90, "kg"),
  2322. name: "Back",
  2323. image: {
  2324. source: "./media/characters/fory/back.svg",
  2325. extra: 2962 / 2791,
  2326. bottom: 106 / 3071.8
  2327. }
  2328. },
  2329. foot: {
  2330. height: math.unit(2.14, "feet"),
  2331. name: "Foot",
  2332. image: {
  2333. source: "./media/characters/fory/foot.svg"
  2334. }
  2335. },
  2336. },
  2337. [
  2338. {
  2339. name: "Normal",
  2340. height: math.unit(5, "feet")
  2341. },
  2342. {
  2343. name: "Macro",
  2344. height: math.unit(50, "feet"),
  2345. default: true
  2346. },
  2347. {
  2348. name: "Megamacro",
  2349. height: math.unit(10, "miles")
  2350. },
  2351. {
  2352. name: "Gigamacro",
  2353. height: math.unit(5, "earths")
  2354. },
  2355. ]
  2356. ))
  2357. characterMakers.push(() => makeCharacter(
  2358. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2359. {
  2360. front: {
  2361. height: math.unit(7, "feet"),
  2362. weight: math.unit(90, "kg"),
  2363. name: "Front",
  2364. image: {
  2365. source: "./media/characters/kurrikage/front.svg",
  2366. extra: 1,
  2367. bottom: 0.035
  2368. }
  2369. },
  2370. back: {
  2371. height: math.unit(7, "feet"),
  2372. weight: math.unit(90, "lb"),
  2373. name: "Back",
  2374. image: {
  2375. source: "./media/characters/kurrikage/back.svg"
  2376. }
  2377. },
  2378. paw: {
  2379. height: math.unit(1.5, "feet"),
  2380. name: "Paw",
  2381. image: {
  2382. source: "./media/characters/kurrikage/paw.svg"
  2383. }
  2384. },
  2385. staff: {
  2386. height: math.unit(6.7, "feet"),
  2387. name: "Staff",
  2388. image: {
  2389. source: "./media/characters/kurrikage/staff.svg"
  2390. }
  2391. },
  2392. peek: {
  2393. height: math.unit(1.05, "feet"),
  2394. name: "Peeking",
  2395. image: {
  2396. source: "./media/characters/kurrikage/peek.svg",
  2397. bottom: 0.08
  2398. }
  2399. },
  2400. },
  2401. [
  2402. {
  2403. name: "Normal",
  2404. height: math.unit(12, "feet"),
  2405. default: true
  2406. },
  2407. {
  2408. name: "Big",
  2409. height: math.unit(20, "feet")
  2410. },
  2411. {
  2412. name: "Macro",
  2413. height: math.unit(500, "feet")
  2414. },
  2415. {
  2416. name: "Megamacro",
  2417. height: math.unit(20, "miles")
  2418. },
  2419. ]
  2420. ))
  2421. characterMakers.push(() => makeCharacter(
  2422. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2423. {
  2424. front: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(75, "kg"),
  2427. name: "Front",
  2428. image: {
  2429. source: "./media/characters/shingo/front.svg",
  2430. extra: 706/681,
  2431. bottom: 11/717
  2432. }
  2433. },
  2434. frontAlt: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(75, "kg"),
  2437. name: "Front (Alt)",
  2438. image: {
  2439. source: "./media/characters/shingo/front-alt.svg",
  2440. extra: 3511 / 3338,
  2441. bottom: 0.005
  2442. }
  2443. },
  2444. paw: {
  2445. height: math.unit(1, "feet"),
  2446. name: "Paw",
  2447. image: {
  2448. source: "./media/characters/shingo/paw.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Micro",
  2455. height: math.unit(4, "inches")
  2456. },
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(6, "feet"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Macro",
  2464. height: math.unit(108, "feet")
  2465. },
  2466. {
  2467. name: "Macro+",
  2468. height: math.unit(1500, "feet")
  2469. },
  2470. ]
  2471. ))
  2472. characterMakers.push(() => makeCharacter(
  2473. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2474. {
  2475. side: {
  2476. height: math.unit(6, "feet"),
  2477. weight: math.unit(75, "kg"),
  2478. name: "Side",
  2479. image: {
  2480. source: "./media/characters/aigey/side.svg"
  2481. }
  2482. },
  2483. },
  2484. [
  2485. {
  2486. name: "Macro",
  2487. height: math.unit(200, "feet"),
  2488. default: true
  2489. },
  2490. {
  2491. name: "Megamacro",
  2492. height: math.unit(100, "miles")
  2493. },
  2494. ]
  2495. )
  2496. )
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(5 + 5 / 12, "feet"),
  2502. weight: math.unit(75, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/natasha/front.svg",
  2506. extra: 859 / 824,
  2507. bottom: 23 / 879.6
  2508. }
  2509. },
  2510. frontNsfw: {
  2511. height: math.unit(5 + 5 / 12, "feet"),
  2512. weight: math.unit(75, "kg"),
  2513. name: "Front (NSFW)",
  2514. image: {
  2515. source: "./media/characters/natasha/front-nsfw.svg",
  2516. extra: 859 / 824,
  2517. bottom: 23 / 879.6
  2518. }
  2519. },
  2520. frontErect: {
  2521. height: math.unit(5 + 5 / 12, "feet"),
  2522. weight: math.unit(75, "kg"),
  2523. name: "Front (Erect)",
  2524. image: {
  2525. source: "./media/characters/natasha/front-erect.svg",
  2526. extra: 859 / 824,
  2527. bottom: 23 / 879.6
  2528. }
  2529. },
  2530. back: {
  2531. height: math.unit(5 + 5 / 12, "feet"),
  2532. weight: math.unit(75, "kg"),
  2533. name: "Back",
  2534. image: {
  2535. source: "./media/characters/natasha/back.svg",
  2536. extra: 887.9 / 852.6,
  2537. bottom: 9.7 / 896.4
  2538. }
  2539. },
  2540. backAlt: {
  2541. height: math.unit(5 + 5 / 12, "feet"),
  2542. weight: math.unit(75, "kg"),
  2543. name: "Back (Alt)",
  2544. image: {
  2545. source: "./media/characters/natasha/back-alt.svg",
  2546. extra: 1236.7 / 1192,
  2547. bottom: 22.3 / 1258.2
  2548. }
  2549. },
  2550. dick: {
  2551. height: math.unit(1.772, "feet"),
  2552. name: "Dick",
  2553. image: {
  2554. source: "./media/characters/natasha/dick.svg"
  2555. }
  2556. },
  2557. paw: {
  2558. height: math.unit(0.250, "meters"),
  2559. name: "Paw",
  2560. image: {
  2561. source: "./media/characters/natasha/paw.svg"
  2562. }
  2563. },
  2564. },
  2565. [
  2566. {
  2567. name: "Normal",
  2568. height: math.unit(5 + 5 / 12, "feet")
  2569. },
  2570. {
  2571. name: "Large",
  2572. height: math.unit(12, "feet")
  2573. },
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(100, "feet"),
  2577. default: true
  2578. },
  2579. {
  2580. name: "Macro+",
  2581. height: math.unit(260, "feet")
  2582. },
  2583. {
  2584. name: "Macro++",
  2585. height: math.unit(1, "mile")
  2586. },
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2591. {
  2592. front: {
  2593. height: math.unit(6, "feet"),
  2594. weight: math.unit(75, "kg"),
  2595. name: "Front",
  2596. image: {
  2597. source: "./media/characters/malik/front.svg"
  2598. }
  2599. },
  2600. side: {
  2601. height: math.unit(6, "feet"),
  2602. weight: math.unit(75, "kg"),
  2603. name: "Side",
  2604. image: {
  2605. source: "./media/characters/malik/side.svg",
  2606. extra: 1.1539
  2607. }
  2608. },
  2609. back: {
  2610. height: math.unit(6, "feet"),
  2611. weight: math.unit(75, "kg"),
  2612. name: "Back",
  2613. image: {
  2614. source: "./media/characters/malik/back.svg"
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Macro",
  2621. height: math.unit(156, "feet"),
  2622. default: true
  2623. },
  2624. {
  2625. name: "Macro+",
  2626. height: math.unit(1188, "feet")
  2627. },
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2632. {
  2633. front: {
  2634. height: math.unit(6, "feet"),
  2635. weight: math.unit(75, "kg"),
  2636. name: "Front",
  2637. image: {
  2638. source: "./media/characters/sefer/front.svg",
  2639. extra: 848 / 659,
  2640. bottom: 28.3 / 876.442
  2641. }
  2642. },
  2643. back: {
  2644. height: math.unit(6, "feet"),
  2645. weight: math.unit(75, "kg"),
  2646. name: "Back",
  2647. image: {
  2648. source: "./media/characters/sefer/back.svg",
  2649. extra: 864 / 695,
  2650. bottom: 10 / 871
  2651. }
  2652. },
  2653. frontDressed: {
  2654. height: math.unit(6, "feet"),
  2655. weight: math.unit(75, "kg"),
  2656. name: "Front (Dressed)",
  2657. image: {
  2658. source: "./media/characters/sefer/front-dressed.svg",
  2659. extra: 839 / 653,
  2660. bottom: 37.6 / 878
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Normal",
  2667. height: math.unit(6, "feet"),
  2668. default: true
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2674. {
  2675. body: {
  2676. height: math.unit(2.2428, "meter"),
  2677. weight: math.unit(124.738, "kg"),
  2678. name: "Body",
  2679. image: {
  2680. extra: 1225 / 1050,
  2681. source: "./media/characters/north/front.svg"
  2682. }
  2683. }
  2684. },
  2685. [
  2686. {
  2687. name: "Micro",
  2688. height: math.unit(4, "inches")
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(63, "meters")
  2693. },
  2694. {
  2695. name: "Megamacro",
  2696. height: math.unit(101, "miles"),
  2697. default: true
  2698. }
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2703. {
  2704. angled: {
  2705. height: math.unit(4, "meter"),
  2706. weight: math.unit(150, "kg"),
  2707. name: "Angled",
  2708. image: {
  2709. source: "./media/characters/talan/angled-sfw.svg",
  2710. bottom: 29 / 3734
  2711. }
  2712. },
  2713. angledNsfw: {
  2714. height: math.unit(4, "meter"),
  2715. weight: math.unit(150, "kg"),
  2716. name: "Angled (NSFW)",
  2717. image: {
  2718. source: "./media/characters/talan/angled-nsfw.svg",
  2719. bottom: 29 / 3734
  2720. }
  2721. },
  2722. frontNsfw: {
  2723. height: math.unit(4, "meter"),
  2724. weight: math.unit(150, "kg"),
  2725. name: "Front (NSFW)",
  2726. image: {
  2727. source: "./media/characters/talan/front-nsfw.svg",
  2728. bottom: 29 / 3734
  2729. }
  2730. },
  2731. sideNsfw: {
  2732. height: math.unit(4, "meter"),
  2733. weight: math.unit(150, "kg"),
  2734. name: "Side (NSFW)",
  2735. image: {
  2736. source: "./media/characters/talan/side-nsfw.svg",
  2737. bottom: 29 / 3734
  2738. }
  2739. },
  2740. back: {
  2741. height: math.unit(4, "meter"),
  2742. weight: math.unit(150, "kg"),
  2743. name: "Back",
  2744. image: {
  2745. source: "./media/characters/talan/back.svg"
  2746. }
  2747. },
  2748. dickBottom: {
  2749. height: math.unit(0.621, "meter"),
  2750. name: "Dick (Bottom)",
  2751. image: {
  2752. source: "./media/characters/talan/dick-bottom.svg"
  2753. }
  2754. },
  2755. dickTop: {
  2756. height: math.unit(0.621, "meter"),
  2757. name: "Dick (Top)",
  2758. image: {
  2759. source: "./media/characters/talan/dick-top.svg"
  2760. }
  2761. },
  2762. dickSide: {
  2763. height: math.unit(0.305, "meter"),
  2764. name: "Dick (Side)",
  2765. image: {
  2766. source: "./media/characters/talan/dick-side.svg"
  2767. }
  2768. },
  2769. dickFront: {
  2770. height: math.unit(0.305, "meter"),
  2771. name: "Dick (Front)",
  2772. image: {
  2773. source: "./media/characters/talan/dick-front.svg"
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(4, "meters")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(100, "meters")
  2785. },
  2786. {
  2787. name: "Megamacro",
  2788. height: math.unit(2, "miles"),
  2789. default: true
  2790. },
  2791. {
  2792. name: "Gigamacro",
  2793. height: math.unit(5000, "miles")
  2794. },
  2795. {
  2796. name: "Teramacro",
  2797. height: math.unit(100, "parsecs")
  2798. }
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2803. {
  2804. front: {
  2805. height: math.unit(2, "meter"),
  2806. weight: math.unit(90, "kg"),
  2807. name: "Front",
  2808. image: {
  2809. source: "./media/characters/gael'rathus/front.svg"
  2810. }
  2811. },
  2812. frontAlt: {
  2813. height: math.unit(2, "meter"),
  2814. weight: math.unit(90, "kg"),
  2815. name: "Front (alt)",
  2816. image: {
  2817. source: "./media/characters/gael'rathus/front-alt.svg"
  2818. }
  2819. },
  2820. frontAlt2: {
  2821. height: math.unit(2, "meter"),
  2822. weight: math.unit(90, "kg"),
  2823. name: "Front (alt 2)",
  2824. image: {
  2825. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2826. }
  2827. }
  2828. },
  2829. [
  2830. {
  2831. name: "Normal",
  2832. height: math.unit(9, "feet"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Large",
  2837. height: math.unit(25, "feet")
  2838. },
  2839. {
  2840. name: "Macro",
  2841. height: math.unit(0.25, "miles")
  2842. },
  2843. {
  2844. name: "Megamacro",
  2845. height: math.unit(10, "miles")
  2846. }
  2847. ]
  2848. ))
  2849. characterMakers.push(() => makeCharacter(
  2850. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2851. {
  2852. side: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(140, "kg"),
  2855. name: "Side",
  2856. image: {
  2857. source: "./media/characters/sosha/side.svg",
  2858. bottom: 0.042
  2859. }
  2860. },
  2861. },
  2862. [
  2863. {
  2864. name: "Normal",
  2865. height: math.unit(12, "feet"),
  2866. default: true
  2867. }
  2868. ]
  2869. ))
  2870. characterMakers.push(() => makeCharacter(
  2871. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2872. {
  2873. side: {
  2874. height: math.unit(5 + 5 / 12, "feet"),
  2875. weight: math.unit(170, "kg"),
  2876. name: "Side",
  2877. image: {
  2878. source: "./media/characters/runnola/side.svg",
  2879. extra: 741 / 448,
  2880. bottom: 0.05
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Small",
  2887. height: math.unit(3, "feet")
  2888. },
  2889. {
  2890. name: "Normal",
  2891. height: math.unit(5 + 5 / 12, "feet"),
  2892. default: true
  2893. },
  2894. {
  2895. name: "Big",
  2896. height: math.unit(10, "feet")
  2897. },
  2898. ]
  2899. ))
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2902. {
  2903. front: {
  2904. height: math.unit(2, "meter"),
  2905. weight: math.unit(50, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/kurribird/front.svg",
  2909. bottom: 0.015
  2910. }
  2911. },
  2912. frontAlt: {
  2913. height: math.unit(1.5, "meter"),
  2914. weight: math.unit(50, "kg"),
  2915. name: "Front (Alt)",
  2916. image: {
  2917. source: "./media/characters/kurribird/front-alt.svg",
  2918. extra: 1.45
  2919. }
  2920. },
  2921. },
  2922. [
  2923. {
  2924. name: "Normal",
  2925. height: math.unit(7, "feet")
  2926. },
  2927. {
  2928. name: "Big",
  2929. height: math.unit(12, "feet"),
  2930. default: true
  2931. },
  2932. {
  2933. name: "Macro",
  2934. height: math.unit(1500, "feet")
  2935. },
  2936. {
  2937. name: "Megamacro",
  2938. height: math.unit(2, "miles")
  2939. }
  2940. ]
  2941. ))
  2942. characterMakers.push(() => makeCharacter(
  2943. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2944. {
  2945. front: {
  2946. height: math.unit(2, "meter"),
  2947. weight: math.unit(80, "kg"),
  2948. name: "Front",
  2949. image: {
  2950. source: "./media/characters/elbial/front.svg",
  2951. extra: 1643 / 1556,
  2952. bottom: 60.2 / 1696
  2953. }
  2954. },
  2955. side: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(80, "kg"),
  2958. name: "Side",
  2959. image: {
  2960. source: "./media/characters/elbial/side.svg",
  2961. extra: 1630 / 1565,
  2962. bottom: 71.5 / 1697
  2963. }
  2964. },
  2965. back: {
  2966. height: math.unit(2, "meter"),
  2967. weight: math.unit(80, "kg"),
  2968. name: "Back",
  2969. image: {
  2970. source: "./media/characters/elbial/back.svg",
  2971. extra: 1668 / 1595,
  2972. bottom: 5.6 / 1672
  2973. }
  2974. },
  2975. frontDressed: {
  2976. height: math.unit(2, "meter"),
  2977. weight: math.unit(80, "kg"),
  2978. name: "Front (Dressed)",
  2979. image: {
  2980. source: "./media/characters/elbial/front-dressed.svg",
  2981. extra: 1653 / 1584,
  2982. bottom: 57 / 1708
  2983. }
  2984. },
  2985. genitals: {
  2986. height: math.unit(2 / 3.367, "meter"),
  2987. name: "Genitals",
  2988. image: {
  2989. source: "./media/characters/elbial/genitals.svg"
  2990. }
  2991. },
  2992. },
  2993. [
  2994. {
  2995. name: "Large",
  2996. height: math.unit(100, "feet")
  2997. },
  2998. {
  2999. name: "Macro",
  3000. height: math.unit(500, "feet"),
  3001. default: true
  3002. },
  3003. {
  3004. name: "Megamacro",
  3005. height: math.unit(10, "miles")
  3006. },
  3007. {
  3008. name: "Gigamacro",
  3009. height: math.unit(25000, "miles")
  3010. },
  3011. {
  3012. name: "Full-Size",
  3013. height: math.unit(8000000, "gigaparsecs")
  3014. }
  3015. ]
  3016. ))
  3017. characterMakers.push(() => makeCharacter(
  3018. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3019. {
  3020. front: {
  3021. height: math.unit(2, "meter"),
  3022. weight: math.unit(60, "kg"),
  3023. name: "Front",
  3024. image: {
  3025. source: "./media/characters/noah/front.svg"
  3026. }
  3027. },
  3028. talons: {
  3029. height: math.unit(0.315, "meter"),
  3030. name: "Talons",
  3031. image: {
  3032. source: "./media/characters/noah/talons.svg"
  3033. }
  3034. }
  3035. },
  3036. [
  3037. {
  3038. name: "Large",
  3039. height: math.unit(50, "feet")
  3040. },
  3041. {
  3042. name: "Macro",
  3043. height: math.unit(750, "feet"),
  3044. default: true
  3045. },
  3046. {
  3047. name: "Megamacro",
  3048. height: math.unit(50, "miles")
  3049. },
  3050. {
  3051. name: "Gigamacro",
  3052. height: math.unit(100000, "miles")
  3053. },
  3054. {
  3055. name: "Full-Size",
  3056. height: math.unit(3000000000, "miles")
  3057. }
  3058. ]
  3059. ))
  3060. characterMakers.push(() => makeCharacter(
  3061. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3062. {
  3063. front: {
  3064. height: math.unit(2, "meter"),
  3065. weight: math.unit(80, "kg"),
  3066. name: "Front",
  3067. image: {
  3068. source: "./media/characters/natalya/front.svg"
  3069. }
  3070. },
  3071. back: {
  3072. height: math.unit(2, "meter"),
  3073. weight: math.unit(80, "kg"),
  3074. name: "Back",
  3075. image: {
  3076. source: "./media/characters/natalya/back.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Normal",
  3083. height: math.unit(150, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Megamacro",
  3088. height: math.unit(5, "miles")
  3089. },
  3090. {
  3091. name: "Full-Size",
  3092. height: math.unit(600, "kiloparsecs")
  3093. }
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3098. {
  3099. front: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(50, "kg"),
  3102. name: "Front",
  3103. image: {
  3104. source: "./media/characters/erestrebah/front.svg",
  3105. extra: 208 / 193,
  3106. bottom: 0.055
  3107. }
  3108. },
  3109. back: {
  3110. height: math.unit(2, "meter"),
  3111. weight: math.unit(50, "kg"),
  3112. name: "Back",
  3113. image: {
  3114. source: "./media/characters/erestrebah/back.svg",
  3115. extra: 1.3
  3116. }
  3117. }
  3118. },
  3119. [
  3120. {
  3121. name: "Normal",
  3122. height: math.unit(10, "feet")
  3123. },
  3124. {
  3125. name: "Large",
  3126. height: math.unit(50, "feet"),
  3127. default: true
  3128. },
  3129. {
  3130. name: "Macro",
  3131. height: math.unit(300, "feet")
  3132. },
  3133. {
  3134. name: "Macro+",
  3135. height: math.unit(750, "feet")
  3136. },
  3137. {
  3138. name: "Megamacro",
  3139. height: math.unit(3, "miles")
  3140. }
  3141. ]
  3142. ))
  3143. characterMakers.push(() => makeCharacter(
  3144. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3145. {
  3146. front: {
  3147. height: math.unit(2, "meter"),
  3148. weight: math.unit(80, "kg"),
  3149. name: "Front",
  3150. image: {
  3151. source: "./media/characters/jennifer/front.svg",
  3152. bottom: 0.11,
  3153. extra: 1.16
  3154. }
  3155. },
  3156. frontAlt: {
  3157. height: math.unit(2, "meter"),
  3158. weight: math.unit(80, "kg"),
  3159. name: "Front (Alt)",
  3160. image: {
  3161. source: "./media/characters/jennifer/front-alt.svg"
  3162. }
  3163. }
  3164. },
  3165. [
  3166. {
  3167. name: "Canon Height",
  3168. height: math.unit(120, "feet"),
  3169. default: true
  3170. },
  3171. {
  3172. name: "Macro+",
  3173. height: math.unit(300, "feet")
  3174. },
  3175. {
  3176. name: "Megamacro",
  3177. height: math.unit(20000, "feet")
  3178. }
  3179. ]
  3180. ))
  3181. characterMakers.push(() => makeCharacter(
  3182. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3183. {
  3184. front: {
  3185. height: math.unit(2, "meter"),
  3186. weight: math.unit(50, "kg"),
  3187. name: "Front",
  3188. image: {
  3189. source: "./media/characters/kalista/front.svg",
  3190. extra: 1947 / 1700,
  3191. bottom: 76.6 / 1412.98
  3192. }
  3193. },
  3194. back: {
  3195. height: math.unit(2, "meter"),
  3196. weight: math.unit(50, "kg"),
  3197. name: "Back",
  3198. image: {
  3199. source: "./media/characters/kalista/back.svg",
  3200. extra: 1366 / 1156,
  3201. bottom: 33.9 / 1362.78
  3202. }
  3203. }
  3204. },
  3205. [
  3206. {
  3207. name: "Uncomfortably Small",
  3208. height: math.unit(10, "feet")
  3209. },
  3210. {
  3211. name: "Small",
  3212. height: math.unit(30, "feet")
  3213. },
  3214. {
  3215. name: "Macro",
  3216. height: math.unit(100, "feet"),
  3217. default: true
  3218. },
  3219. {
  3220. name: "Macro+",
  3221. height: math.unit(2000, "feet")
  3222. },
  3223. {
  3224. name: "True Form",
  3225. height: math.unit(8924, "miles")
  3226. }
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(120, "kg"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/ggv/front.svg"
  3238. }
  3239. },
  3240. side: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(120, "kg"),
  3243. name: "Side",
  3244. image: {
  3245. source: "./media/characters/ggv/side.svg"
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Extremely Puny",
  3252. height: math.unit(9 + 5 / 12, "feet")
  3253. },
  3254. {
  3255. name: "Horribly Small",
  3256. height: math.unit(47.7, "miles"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Reasonably Sized",
  3261. height: math.unit(25000, "parsecs")
  3262. },
  3263. {
  3264. name: "Slightly Uncompressed",
  3265. height: math.unit(7.77e31, "parsecs")
  3266. },
  3267. {
  3268. name: "Omniversal",
  3269. height: math.unit(1e300, "meters")
  3270. },
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(75, "lb"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/napalm/front.svg"
  3282. }
  3283. },
  3284. back: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(75, "lb"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/napalm/back.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Standard",
  3296. height: math.unit(55, "feet"),
  3297. default: true
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(7 + 5 / 6, "feet"),
  3306. weight: math.unit(325, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/asana/front.svg",
  3310. extra: 1133 / 1060,
  3311. bottom: 15.2 / 1148.6
  3312. }
  3313. },
  3314. back: {
  3315. height: math.unit(7 + 5 / 6, "feet"),
  3316. weight: math.unit(325, "lb"),
  3317. name: "Back",
  3318. image: {
  3319. source: "./media/characters/asana/back.svg",
  3320. extra: 1114 / 1043,
  3321. bottom: 5 / 1120
  3322. }
  3323. },
  3324. dressedDark: {
  3325. height: math.unit(7 + 5 / 6, "feet"),
  3326. weight: math.unit(325, "lb"),
  3327. name: "Dressed (Dark)",
  3328. image: {
  3329. source: "./media/characters/asana/dressed-dark.svg",
  3330. extra: 1133 / 1060,
  3331. bottom: 15.2 / 1148.6
  3332. }
  3333. },
  3334. dressedLight: {
  3335. height: math.unit(7 + 5 / 6, "feet"),
  3336. weight: math.unit(325, "lb"),
  3337. name: "Dressed (Light)",
  3338. image: {
  3339. source: "./media/characters/asana/dressed-light.svg",
  3340. extra: 1133 / 1060,
  3341. bottom: 15.2 / 1148.6
  3342. }
  3343. },
  3344. },
  3345. [
  3346. {
  3347. name: "Standard",
  3348. height: math.unit(7 + 5 / 6, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Large",
  3353. height: math.unit(10, "meters")
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(2500, "meters")
  3358. },
  3359. {
  3360. name: "Megamacro",
  3361. height: math.unit(5e6, "meters")
  3362. },
  3363. {
  3364. name: "Examacro",
  3365. height: math.unit(5e12, "lightyears")
  3366. },
  3367. {
  3368. name: "Max Size",
  3369. height: math.unit(1e31, "lightyears")
  3370. }
  3371. ]
  3372. ))
  3373. characterMakers.push(() => makeCharacter(
  3374. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3375. {
  3376. front: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(60, "kg"),
  3379. name: "Front",
  3380. image: {
  3381. source: "./media/characters/ebony/front.svg",
  3382. bottom: 0.03,
  3383. extra: 1045 / 810 + 0.03
  3384. }
  3385. },
  3386. side: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(60, "kg"),
  3389. name: "Side",
  3390. image: {
  3391. source: "./media/characters/ebony/side.svg",
  3392. bottom: 0.03,
  3393. extra: 1045 / 810 + 0.03
  3394. }
  3395. },
  3396. back: {
  3397. height: math.unit(2, "meter"),
  3398. weight: math.unit(60, "kg"),
  3399. name: "Back",
  3400. image: {
  3401. source: "./media/characters/ebony/back.svg",
  3402. bottom: 0.01,
  3403. extra: 1045 / 810 + 0.01
  3404. }
  3405. },
  3406. },
  3407. [
  3408. // TODO check why I did this lol
  3409. {
  3410. name: "Standard",
  3411. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3412. default: true
  3413. },
  3414. {
  3415. name: "Macro",
  3416. height: math.unit(200, "feet")
  3417. },
  3418. {
  3419. name: "Gigamacro",
  3420. height: math.unit(13000, "km")
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3426. {
  3427. front: {
  3428. height: math.unit(6, "feet"),
  3429. weight: math.unit(175, "lb"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/mountain/front.svg",
  3433. extra: 972 / 955,
  3434. bottom: 64 / 1036.6
  3435. }
  3436. },
  3437. back: {
  3438. height: math.unit(6, "feet"),
  3439. weight: math.unit(175, "lb"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/mountain/back.svg",
  3443. extra: 970 / 950,
  3444. bottom: 28.25 / 999
  3445. }
  3446. },
  3447. },
  3448. [
  3449. {
  3450. name: "Large",
  3451. height: math.unit(20, "meters")
  3452. },
  3453. {
  3454. name: "Macro",
  3455. height: math.unit(300, "meters")
  3456. },
  3457. {
  3458. name: "Gigamacro",
  3459. height: math.unit(10000, "km"),
  3460. default: true
  3461. },
  3462. {
  3463. name: "Examacro",
  3464. height: math.unit(10e9, "lightyears")
  3465. }
  3466. ]
  3467. ))
  3468. characterMakers.push(() => makeCharacter(
  3469. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3470. {
  3471. front: {
  3472. height: math.unit(8, "feet"),
  3473. weight: math.unit(500, "lb"),
  3474. name: "Front",
  3475. image: {
  3476. source: "./media/characters/rick/front.svg"
  3477. }
  3478. }
  3479. },
  3480. [
  3481. {
  3482. name: "Normal",
  3483. height: math.unit(8, "feet"),
  3484. default: true
  3485. },
  3486. {
  3487. name: "Macro",
  3488. height: math.unit(5, "km")
  3489. }
  3490. ]
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3494. {
  3495. front: {
  3496. height: math.unit(8, "feet"),
  3497. weight: math.unit(120, "lb"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/ona/front.svg"
  3501. }
  3502. },
  3503. frontAlt: {
  3504. height: math.unit(8, "feet"),
  3505. weight: math.unit(120, "lb"),
  3506. name: "Front (Alt)",
  3507. image: {
  3508. source: "./media/characters/ona/front-alt.svg"
  3509. }
  3510. },
  3511. back: {
  3512. height: math.unit(8, "feet"),
  3513. weight: math.unit(120, "lb"),
  3514. name: "Back",
  3515. image: {
  3516. source: "./media/characters/ona/back.svg"
  3517. }
  3518. },
  3519. foot: {
  3520. height: math.unit(1.1, "feet"),
  3521. name: "Foot",
  3522. image: {
  3523. source: "./media/characters/ona/foot.svg"
  3524. }
  3525. }
  3526. },
  3527. [
  3528. {
  3529. name: "Megamacro",
  3530. height: math.unit(70, "km"),
  3531. default: true
  3532. },
  3533. {
  3534. name: "Gigamacro",
  3535. height: math.unit(681818, "miles")
  3536. },
  3537. {
  3538. name: "Examacro",
  3539. height: math.unit(3800000, "lightyears")
  3540. },
  3541. ]
  3542. ))
  3543. characterMakers.push(() => makeCharacter(
  3544. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3545. {
  3546. front: {
  3547. height: math.unit(12, "feet"),
  3548. weight: math.unit(3000, "lb"),
  3549. name: "Front",
  3550. image: {
  3551. source: "./media/characters/mech/front.svg",
  3552. extra: 2900 / 2770,
  3553. bottom: 110 / 3010
  3554. }
  3555. },
  3556. back: {
  3557. height: math.unit(12, "feet"),
  3558. weight: math.unit(3000, "lb"),
  3559. name: "Back",
  3560. image: {
  3561. source: "./media/characters/mech/back.svg",
  3562. extra: 3011 / 2890,
  3563. bottom: 94 / 3105
  3564. }
  3565. },
  3566. maw: {
  3567. height: math.unit(3.07, "feet"),
  3568. name: "Maw",
  3569. image: {
  3570. source: "./media/characters/mech/maw.svg"
  3571. }
  3572. },
  3573. head: {
  3574. height: math.unit(2.82, "feet"),
  3575. name: "Head",
  3576. image: {
  3577. source: "./media/characters/mech/head.svg"
  3578. }
  3579. },
  3580. dick: {
  3581. height: math.unit(1.43, "feet"),
  3582. name: "Dick",
  3583. image: {
  3584. source: "./media/characters/mech/dick.svg"
  3585. }
  3586. },
  3587. },
  3588. [
  3589. {
  3590. name: "Normal",
  3591. height: math.unit(12, "feet")
  3592. },
  3593. {
  3594. name: "Macro",
  3595. height: math.unit(300, "feet"),
  3596. default: true
  3597. },
  3598. {
  3599. name: "Macro+",
  3600. height: math.unit(1500, "feet")
  3601. },
  3602. ]
  3603. ))
  3604. characterMakers.push(() => makeCharacter(
  3605. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3606. {
  3607. front: {
  3608. height: math.unit(1.3, "meter"),
  3609. weight: math.unit(30, "kg"),
  3610. name: "Front",
  3611. image: {
  3612. source: "./media/characters/gregory/front.svg",
  3613. }
  3614. }
  3615. },
  3616. [
  3617. {
  3618. name: "Normal",
  3619. height: math.unit(1.3, "meter"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro",
  3624. height: math.unit(20, "meter")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2.8, "meter"),
  3633. weight: math.unit(200, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/elory/front.svg",
  3637. }
  3638. }
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(2.8, "meter"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Macro",
  3648. height: math.unit(38, "meter")
  3649. }
  3650. ]
  3651. ))
  3652. characterMakers.push(() => makeCharacter(
  3653. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3654. {
  3655. front: {
  3656. height: math.unit(470, "feet"),
  3657. weight: math.unit(924, "tons"),
  3658. name: "Front",
  3659. image: {
  3660. source: "./media/characters/angelpatamon/front.svg",
  3661. }
  3662. }
  3663. },
  3664. [
  3665. {
  3666. name: "Normal",
  3667. height: math.unit(470, "feet"),
  3668. default: true
  3669. },
  3670. {
  3671. name: "Deity Size I",
  3672. height: math.unit(28651.2, "km")
  3673. },
  3674. {
  3675. name: "Deity Size II",
  3676. height: math.unit(171907.2, "km")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3682. {
  3683. side: {
  3684. height: math.unit(7.2, "meter"),
  3685. weight: math.unit(8.2, "tons"),
  3686. name: "Side",
  3687. image: {
  3688. source: "./media/characters/cryae/side.svg",
  3689. extra: 3500 / 1500
  3690. }
  3691. }
  3692. },
  3693. [
  3694. {
  3695. name: "Normal",
  3696. height: math.unit(7.2, "meter"),
  3697. default: true
  3698. }
  3699. ]
  3700. ))
  3701. characterMakers.push(() => makeCharacter(
  3702. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3703. {
  3704. front: {
  3705. height: math.unit(6, "feet"),
  3706. weight: math.unit(175, "lb"),
  3707. name: "Front",
  3708. image: {
  3709. source: "./media/characters/xera/front.svg",
  3710. extra: 2377 / 1972,
  3711. bottom: 75.5 / 2452
  3712. }
  3713. },
  3714. side: {
  3715. height: math.unit(6, "feet"),
  3716. weight: math.unit(175, "lb"),
  3717. name: "Side",
  3718. image: {
  3719. source: "./media/characters/xera/side.svg",
  3720. extra: 2345 / 2019,
  3721. bottom: 39.7 / 2384
  3722. }
  3723. },
  3724. back: {
  3725. height: math.unit(6, "feet"),
  3726. weight: math.unit(175, "lb"),
  3727. name: "Back",
  3728. image: {
  3729. source: "./media/characters/xera/back.svg",
  3730. extra: 2095 / 1984,
  3731. bottom: 67 / 2166
  3732. }
  3733. },
  3734. },
  3735. [
  3736. {
  3737. name: "Small",
  3738. height: math.unit(10, "feet")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(500, "meters"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Macro+",
  3747. height: math.unit(10, "km")
  3748. },
  3749. {
  3750. name: "Gigamacro",
  3751. height: math.unit(25000, "km")
  3752. },
  3753. {
  3754. name: "Teramacro",
  3755. height: math.unit(3e6, "km")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(6, "feet"),
  3764. weight: math.unit(175, "lb"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/nebula/front.svg",
  3768. extra: 2566 / 2362,
  3769. bottom: 81 / 2644
  3770. }
  3771. }
  3772. },
  3773. [
  3774. {
  3775. name: "Small",
  3776. height: math.unit(4.5, "meters")
  3777. },
  3778. {
  3779. name: "Macro",
  3780. height: math.unit(1500, "meters"),
  3781. default: true
  3782. },
  3783. {
  3784. name: "Megamacro",
  3785. height: math.unit(150, "km")
  3786. },
  3787. {
  3788. name: "Gigamacro",
  3789. height: math.unit(27000, "km")
  3790. }
  3791. ]
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3795. {
  3796. front: {
  3797. height: math.unit(6, "feet"),
  3798. weight: math.unit(225, "lb"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/abysgar/front.svg"
  3802. }
  3803. }
  3804. },
  3805. [
  3806. {
  3807. name: "Small",
  3808. height: math.unit(4.5, "meters")
  3809. },
  3810. {
  3811. name: "Macro",
  3812. height: math.unit(1250, "meters"),
  3813. default: true
  3814. },
  3815. {
  3816. name: "Megamacro",
  3817. height: math.unit(125, "km")
  3818. },
  3819. {
  3820. name: "Gigamacro",
  3821. height: math.unit(26000, "km")
  3822. }
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(180, "lb"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/yakuz/front.svg"
  3834. }
  3835. }
  3836. },
  3837. [
  3838. {
  3839. name: "Small",
  3840. height: math.unit(5, "meters")
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(1500, "meters"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Megamacro",
  3849. height: math.unit(200, "km")
  3850. },
  3851. {
  3852. name: "Gigamacro",
  3853. height: math.unit(100000, "km")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(6, "feet"),
  3862. weight: math.unit(175, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/mirova/front.svg",
  3866. extra: 3334 / 3071,
  3867. bottom: 42 / 3375.6
  3868. }
  3869. }
  3870. },
  3871. [
  3872. {
  3873. name: "Small",
  3874. height: math.unit(5, "meters")
  3875. },
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(900, "meters"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(135, "km")
  3884. },
  3885. {
  3886. name: "Gigamacro",
  3887. height: math.unit(20000, "km")
  3888. }
  3889. ]
  3890. ))
  3891. characterMakers.push(() => makeCharacter(
  3892. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3893. {
  3894. side: {
  3895. height: math.unit(28.35, "feet"),
  3896. weight: math.unit(99.75, "tons"),
  3897. name: "Side",
  3898. image: {
  3899. source: "./media/characters/asana-mech/side.svg",
  3900. extra: 923 / 699,
  3901. bottom: 50 / 975
  3902. }
  3903. },
  3904. chaingun: {
  3905. height: math.unit(7, "feet"),
  3906. weight: math.unit(2400, "lb"),
  3907. name: "Chaingun",
  3908. image: {
  3909. source: "./media/characters/asana-mech/chaingun.svg"
  3910. }
  3911. },
  3912. laser: {
  3913. height: math.unit(7.12, "feet"),
  3914. weight: math.unit(2000, "lb"),
  3915. name: "Laser",
  3916. image: {
  3917. source: "./media/characters/asana-mech/laser.svg"
  3918. }
  3919. },
  3920. },
  3921. [
  3922. {
  3923. name: "Normal",
  3924. height: math.unit(28.35, "feet"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "Macro",
  3929. height: math.unit(2500, "feet")
  3930. },
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(25, "miles")
  3934. },
  3935. {
  3936. name: "Examacro",
  3937. height: math.unit(6e8, "lightyears")
  3938. },
  3939. ]
  3940. ))
  3941. characterMakers.push(() => makeCharacter(
  3942. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3943. {
  3944. front: {
  3945. height: math.unit(5, "meters"),
  3946. weight: math.unit(1000, "kg"),
  3947. name: "Front",
  3948. image: {
  3949. source: "./media/characters/asche/front.svg",
  3950. extra: 1258 / 1190,
  3951. bottom: 47 / 1305
  3952. }
  3953. },
  3954. frontUnderwear: {
  3955. height: math.unit(5, "meters"),
  3956. weight: math.unit(1000, "kg"),
  3957. name: "Front (Underwear)",
  3958. image: {
  3959. source: "./media/characters/asche/front-underwear.svg",
  3960. extra: 1258 / 1190,
  3961. bottom: 47 / 1305
  3962. }
  3963. },
  3964. frontDressed: {
  3965. height: math.unit(5, "meters"),
  3966. weight: math.unit(1000, "kg"),
  3967. name: "Front (Dressed)",
  3968. image: {
  3969. source: "./media/characters/asche/front-dressed.svg",
  3970. extra: 1258 / 1190,
  3971. bottom: 47 / 1305
  3972. }
  3973. },
  3974. frontArmor: {
  3975. height: math.unit(5, "meters"),
  3976. weight: math.unit(1000, "kg"),
  3977. name: "Front (Armored)",
  3978. image: {
  3979. source: "./media/characters/asche/front-armored.svg",
  3980. extra: 1374 / 1308,
  3981. bottom: 23 / 1397
  3982. }
  3983. },
  3984. mp724: {
  3985. height: math.unit(0.96, "meters"),
  3986. weight: math.unit(38, "kg"),
  3987. name: "H&K MP724",
  3988. image: {
  3989. source: "./media/characters/asche/h&k-mp724.svg"
  3990. }
  3991. },
  3992. side: {
  3993. height: math.unit(5, "meters"),
  3994. weight: math.unit(1000, "kg"),
  3995. name: "Side",
  3996. image: {
  3997. source: "./media/characters/asche/side.svg",
  3998. extra: 1717 / 1609,
  3999. bottom: 0.005
  4000. }
  4001. },
  4002. back: {
  4003. height: math.unit(5, "meters"),
  4004. weight: math.unit(1000, "kg"),
  4005. name: "Back",
  4006. image: {
  4007. source: "./media/characters/asche/back.svg",
  4008. extra: 1570 / 1501
  4009. }
  4010. },
  4011. },
  4012. [
  4013. {
  4014. name: "DEFCON 5",
  4015. height: math.unit(5, "meters")
  4016. },
  4017. {
  4018. name: "DEFCON 4",
  4019. height: math.unit(500, "meters"),
  4020. default: true
  4021. },
  4022. {
  4023. name: "DEFCON 3",
  4024. height: math.unit(5, "km")
  4025. },
  4026. {
  4027. name: "DEFCON 2",
  4028. height: math.unit(500, "km")
  4029. },
  4030. {
  4031. name: "DEFCON 1",
  4032. height: math.unit(500000, "km")
  4033. },
  4034. {
  4035. name: "DEFCON 0",
  4036. height: math.unit(3, "gigaparsecs")
  4037. },
  4038. ]
  4039. ))
  4040. characterMakers.push(() => makeCharacter(
  4041. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4042. {
  4043. front: {
  4044. height: math.unit(2, "meters"),
  4045. weight: math.unit(76, "kg"),
  4046. name: "Front",
  4047. image: {
  4048. source: "./media/characters/gale/front.svg"
  4049. }
  4050. },
  4051. frontAlt1: {
  4052. height: math.unit(2, "meters"),
  4053. weight: math.unit(76, "kg"),
  4054. name: "Front (Alt 1)",
  4055. image: {
  4056. source: "./media/characters/gale/front-alt-1.svg"
  4057. }
  4058. },
  4059. frontAlt2: {
  4060. height: math.unit(2, "meters"),
  4061. weight: math.unit(76, "kg"),
  4062. name: "Front (Alt 2)",
  4063. image: {
  4064. source: "./media/characters/gale/front-alt-2.svg"
  4065. }
  4066. },
  4067. },
  4068. [
  4069. {
  4070. name: "Normal",
  4071. height: math.unit(7, "feet")
  4072. },
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(150, "feet"),
  4076. default: true
  4077. },
  4078. {
  4079. name: "Macro+",
  4080. height: math.unit(300, "feet")
  4081. },
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4086. {
  4087. front: {
  4088. height: math.unit(2, "meters"),
  4089. weight: math.unit(76, "kg"),
  4090. name: "Front",
  4091. image: {
  4092. source: "./media/characters/draylen/front.svg"
  4093. }
  4094. }
  4095. },
  4096. [
  4097. {
  4098. name: "Macro",
  4099. height: math.unit(150, "feet"),
  4100. default: true
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(7 + 9 / 12, "feet"),
  4109. weight: math.unit(379, "lbs"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/chez/front.svg"
  4113. }
  4114. },
  4115. side: {
  4116. height: math.unit(7 + 9 / 12, "feet"),
  4117. weight: math.unit(379, "lbs"),
  4118. name: "Side",
  4119. image: {
  4120. source: "./media/characters/chez/side.svg"
  4121. }
  4122. }
  4123. },
  4124. [
  4125. {
  4126. name: "Normal",
  4127. height: math.unit(7 + 9 / 12, "feet"),
  4128. default: true
  4129. },
  4130. {
  4131. name: "God King",
  4132. height: math.unit(9750000, "meters")
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(6, "feet"),
  4141. weight: math.unit(275, "lbs"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/kaylum/front.svg",
  4145. bottom: 0.01,
  4146. extra: 1166 / 1031
  4147. }
  4148. },
  4149. frontWingless: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(275, "lbs"),
  4152. name: "Front (Wingless)",
  4153. image: {
  4154. source: "./media/characters/kaylum/front-wingless.svg",
  4155. bottom: 0.01,
  4156. extra: 1117 / 1031
  4157. }
  4158. }
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(3.05, "meters")
  4164. },
  4165. {
  4166. name: "Master",
  4167. height: math.unit(5.5, "meters")
  4168. },
  4169. {
  4170. name: "Rampage",
  4171. height: math.unit(19, "meters")
  4172. },
  4173. {
  4174. name: "Macro Lite",
  4175. height: math.unit(37, "meters")
  4176. },
  4177. {
  4178. name: "Hyper Predator",
  4179. height: math.unit(61, "meters")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(138, "meters"),
  4184. default: true
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(6, "feet"),
  4193. weight: math.unit(150, "lbs"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/geta/front.svg"
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Micro",
  4203. height: math.unit(3, "inches"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Normal",
  4208. height: math.unit(5 + 5 / 12, "feet")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(300, "lbs"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/tyrnn/front.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Main Height",
  4227. height: math.unit(355, "feet"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "Fave. Height",
  4232. height: math.unit(2400, "feet")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(6, "feet"),
  4241. weight: math.unit(300, "lbs"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/appledectomy/front.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(2500, "feet")
  4252. },
  4253. {
  4254. name: "Megamacro",
  4255. height: math.unit(50, "miles"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(5000, "miles")
  4261. },
  4262. {
  4263. name: "Teramacro",
  4264. height: math.unit(250000, "miles")
  4265. },
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(6, "feet"),
  4273. weight: math.unit(200, "lbs"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/vulpes/front.svg",
  4277. extra: 573 / 543,
  4278. bottom: 0.033
  4279. }
  4280. },
  4281. side: {
  4282. height: math.unit(6, "feet"),
  4283. weight: math.unit(200, "lbs"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/vulpes/side.svg",
  4287. extra: 577 / 549,
  4288. bottom: 11 / 588
  4289. }
  4290. },
  4291. back: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(200, "lbs"),
  4294. name: "Back",
  4295. image: {
  4296. source: "./media/characters/vulpes/back.svg",
  4297. extra: 573 / 549,
  4298. bottom: 20 / 593
  4299. }
  4300. },
  4301. feet: {
  4302. height: math.unit(1.276, "feet"),
  4303. name: "Feet",
  4304. image: {
  4305. source: "./media/characters/vulpes/feet.svg"
  4306. }
  4307. },
  4308. maw: {
  4309. height: math.unit(1.18, "feet"),
  4310. name: "Maw",
  4311. image: {
  4312. source: "./media/characters/vulpes/maw.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Micro",
  4319. height: math.unit(2, "inches")
  4320. },
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(6.3, "feet")
  4324. },
  4325. {
  4326. name: "Macro",
  4327. height: math.unit(850, "feet")
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(7500, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Gigamacro",
  4336. height: math.unit(570000, "miles")
  4337. }
  4338. ]
  4339. ))
  4340. characterMakers.push(() => makeCharacter(
  4341. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4342. {
  4343. front: {
  4344. height: math.unit(6, "feet"),
  4345. weight: math.unit(210, "lbs"),
  4346. name: "Front",
  4347. image: {
  4348. source: "./media/characters/rain-fallen/front.svg"
  4349. }
  4350. },
  4351. side: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(210, "lbs"),
  4354. name: "Side",
  4355. image: {
  4356. source: "./media/characters/rain-fallen/side.svg"
  4357. }
  4358. },
  4359. back: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(210, "lbs"),
  4362. name: "Back",
  4363. image: {
  4364. source: "./media/characters/rain-fallen/back.svg"
  4365. }
  4366. },
  4367. feral: {
  4368. height: math.unit(9, "feet"),
  4369. weight: math.unit(700, "lbs"),
  4370. name: "Feral",
  4371. image: {
  4372. source: "./media/characters/rain-fallen/feral.svg"
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Meddling with Mortals",
  4379. height: math.unit(8 + 8/12, "feet")
  4380. },
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(5, "meter")
  4384. },
  4385. {
  4386. name: "Macro",
  4387. height: math.unit(150, "meter"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Megamacro",
  4392. height: math.unit(278e6, "meter")
  4393. },
  4394. {
  4395. name: "Gigamacro",
  4396. height: math.unit(2e9, "meter")
  4397. },
  4398. {
  4399. name: "Teramacro",
  4400. height: math.unit(8e12, "meter")
  4401. },
  4402. {
  4403. name: "Devourer",
  4404. height: math.unit(14, "zettameters")
  4405. },
  4406. {
  4407. name: "Scarlet King",
  4408. height: math.unit(18, "yottameters")
  4409. },
  4410. {
  4411. name: "Void",
  4412. height: math.unit(6.66e66, "yottameters")
  4413. }
  4414. ]
  4415. ))
  4416. characterMakers.push(() => makeCharacter(
  4417. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4418. {
  4419. standing: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(180, "lbs"),
  4422. name: "Standing",
  4423. image: {
  4424. source: "./media/characters/zaakira/standing.svg"
  4425. }
  4426. },
  4427. laying: {
  4428. height: math.unit(3, "feet"),
  4429. weight: math.unit(180, "lbs"),
  4430. name: "Laying",
  4431. image: {
  4432. source: "./media/characters/zaakira/laying.svg"
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(12, "feet")
  4440. },
  4441. {
  4442. name: "Macro",
  4443. height: math.unit(279, "feet"),
  4444. default: true
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4450. {
  4451. femSfw: {
  4452. height: math.unit(8, "feet"),
  4453. weight: math.unit(350, "lb"),
  4454. name: "Fem",
  4455. image: {
  4456. source: "./media/characters/sigvald/fem-sfw.svg",
  4457. extra: 182 / 164,
  4458. bottom: 8.7 / 190.5
  4459. }
  4460. },
  4461. femNsfw: {
  4462. height: math.unit(8, "feet"),
  4463. weight: math.unit(350, "lb"),
  4464. name: "Fem (NSFW)",
  4465. image: {
  4466. source: "./media/characters/sigvald/fem-nsfw.svg",
  4467. extra: 182 / 164,
  4468. bottom: 8.7 / 190.5
  4469. }
  4470. },
  4471. maleNsfw: {
  4472. height: math.unit(8, "feet"),
  4473. weight: math.unit(350, "lb"),
  4474. name: "Male (NSFW)",
  4475. image: {
  4476. source: "./media/characters/sigvald/male-nsfw.svg",
  4477. extra: 182 / 164,
  4478. bottom: 8.7 / 190.5
  4479. }
  4480. },
  4481. hermNsfw: {
  4482. height: math.unit(8, "feet"),
  4483. weight: math.unit(350, "lb"),
  4484. name: "Herm (NSFW)",
  4485. image: {
  4486. source: "./media/characters/sigvald/herm-nsfw.svg",
  4487. extra: 182 / 164,
  4488. bottom: 8.7 / 190.5
  4489. }
  4490. },
  4491. dick: {
  4492. height: math.unit(2.36, "feet"),
  4493. name: "Dick",
  4494. image: {
  4495. source: "./media/characters/sigvald/dick.svg"
  4496. }
  4497. },
  4498. eye: {
  4499. height: math.unit(0.31, "feet"),
  4500. name: "Eye",
  4501. image: {
  4502. source: "./media/characters/sigvald/eye.svg"
  4503. }
  4504. },
  4505. mouth: {
  4506. height: math.unit(0.92, "feet"),
  4507. name: "Mouth",
  4508. image: {
  4509. source: "./media/characters/sigvald/mouth.svg"
  4510. }
  4511. },
  4512. paws: {
  4513. height: math.unit(2.2, "feet"),
  4514. name: "Paws",
  4515. image: {
  4516. source: "./media/characters/sigvald/paws.svg"
  4517. }
  4518. }
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(8, "feet")
  4524. },
  4525. {
  4526. name: "Large",
  4527. height: math.unit(12, "feet")
  4528. },
  4529. {
  4530. name: "Larger",
  4531. height: math.unit(20, "feet")
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(150, "feet")
  4536. },
  4537. {
  4538. name: "Macro+",
  4539. height: math.unit(200, "feet"),
  4540. default: true
  4541. },
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4546. {
  4547. side: {
  4548. height: math.unit(12, "feet"),
  4549. weight: math.unit(2000, "kg"),
  4550. name: "Side",
  4551. image: {
  4552. source: "./media/characters/scott/side.svg",
  4553. extra: 754 / 724,
  4554. bottom: 0.069
  4555. }
  4556. },
  4557. upright: {
  4558. height: math.unit(12, "feet"),
  4559. weight: math.unit(2000, "kg"),
  4560. name: "Upright",
  4561. image: {
  4562. source: "./media/characters/scott/upright.svg",
  4563. extra: 3881 / 3722,
  4564. bottom: 0.05
  4565. }
  4566. },
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(12, "feet"),
  4572. default: true
  4573. },
  4574. ]
  4575. ))
  4576. characterMakers.push(() => makeCharacter(
  4577. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4578. {
  4579. side: {
  4580. height: math.unit(8, "meters"),
  4581. weight: math.unit(84755, "lbs"),
  4582. name: "Side",
  4583. image: {
  4584. source: "./media/characters/tobias/side.svg",
  4585. extra: 1474 / 1096,
  4586. bottom: 38.9 / 1513.1235
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "Normal",
  4593. height: math.unit(8, "meters"),
  4594. default: true
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4600. {
  4601. front: {
  4602. height: math.unit(5.5, "feet"),
  4603. weight: math.unit(400, "lbs"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/kieran/front.svg",
  4607. extra: 2694 / 2364,
  4608. bottom: 217 / 2908
  4609. }
  4610. },
  4611. side: {
  4612. height: math.unit(5.5, "feet"),
  4613. weight: math.unit(400, "lbs"),
  4614. name: "Side",
  4615. image: {
  4616. source: "./media/characters/kieran/side.svg",
  4617. extra: 875 / 777,
  4618. bottom: 84.6 / 959
  4619. }
  4620. },
  4621. },
  4622. [
  4623. {
  4624. name: "Normal",
  4625. height: math.unit(5.5, "feet"),
  4626. default: true
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4632. {
  4633. side: {
  4634. height: math.unit(2, "meters"),
  4635. weight: math.unit(70, "kg"),
  4636. name: "Side",
  4637. image: {
  4638. source: "./media/characters/sanya/side.svg",
  4639. bottom: 0.02,
  4640. extra: 1.02
  4641. }
  4642. },
  4643. },
  4644. [
  4645. {
  4646. name: "Small",
  4647. height: math.unit(2, "meters")
  4648. },
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(3, "meters")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(16, "meters"),
  4656. default: true
  4657. },
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(2, "meters"),
  4665. weight: math.unit(120, "kg"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/miranda/front.svg",
  4669. extra: 195 / 185,
  4670. bottom: 10.9 / 206.5
  4671. }
  4672. },
  4673. back: {
  4674. height: math.unit(2, "meters"),
  4675. weight: math.unit(120, "kg"),
  4676. name: "Back",
  4677. image: {
  4678. source: "./media/characters/miranda/back.svg",
  4679. extra: 201 / 193,
  4680. bottom: 2.3 / 203.7
  4681. }
  4682. },
  4683. },
  4684. [
  4685. {
  4686. name: "Normal",
  4687. height: math.unit(10, "feet"),
  4688. default: true
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "James", species: ["deer"], tags: ["anthro"] },
  4694. {
  4695. side: {
  4696. height: math.unit(2, "meters"),
  4697. weight: math.unit(100, "kg"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/james/front.svg",
  4701. extra: 10 / 8.5
  4702. }
  4703. },
  4704. },
  4705. [
  4706. {
  4707. name: "Normal",
  4708. height: math.unit(8.5, "feet"),
  4709. default: true
  4710. }
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4715. {
  4716. side: {
  4717. height: math.unit(9.5, "feet"),
  4718. weight: math.unit(2500, "lbs"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/heather/side.svg"
  4722. }
  4723. },
  4724. },
  4725. [
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(9.5, "feet"),
  4729. default: true
  4730. }
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4735. {
  4736. side: {
  4737. height: math.unit(6.5, "feet"),
  4738. weight: math.unit(400, "lbs"),
  4739. name: "Side",
  4740. image: {
  4741. source: "./media/characters/lukas/side.svg",
  4742. extra: 7.25 / 6.5
  4743. }
  4744. },
  4745. },
  4746. [
  4747. {
  4748. name: "Normal",
  4749. height: math.unit(6.5, "feet"),
  4750. default: true
  4751. }
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4756. {
  4757. side: {
  4758. height: math.unit(5, "feet"),
  4759. weight: math.unit(3000, "lbs"),
  4760. name: "Side",
  4761. image: {
  4762. source: "./media/characters/louise/side.svg"
  4763. }
  4764. },
  4765. },
  4766. [
  4767. {
  4768. name: "Normal",
  4769. height: math.unit(5, "feet"),
  4770. default: true
  4771. }
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4776. {
  4777. side: {
  4778. height: math.unit(6, "feet"),
  4779. weight: math.unit(150, "lbs"),
  4780. name: "Side",
  4781. image: {
  4782. source: "./media/characters/ramona/side.svg"
  4783. }
  4784. },
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(5.3, "meters"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "Macro",
  4794. height: math.unit(20, "stories")
  4795. },
  4796. {
  4797. name: "Macro+",
  4798. height: math.unit(50, "stories")
  4799. },
  4800. ]
  4801. ))
  4802. characterMakers.push(() => makeCharacter(
  4803. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4804. {
  4805. standing: {
  4806. height: math.unit(5.75, "feet"),
  4807. weight: math.unit(160, "lbs"),
  4808. name: "Standing",
  4809. image: {
  4810. source: "./media/characters/deerpuff/standing.svg",
  4811. extra: 682 / 624
  4812. }
  4813. },
  4814. sitting: {
  4815. height: math.unit(5.75 / 1.79, "feet"),
  4816. weight: math.unit(160, "lbs"),
  4817. name: "Sitting",
  4818. image: {
  4819. source: "./media/characters/deerpuff/sitting.svg",
  4820. bottom: 44 / 400,
  4821. extra: 1
  4822. }
  4823. },
  4824. taurLaying: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(400, "lbs"),
  4827. name: "Taur (Laying)",
  4828. image: {
  4829. source: "./media/characters/deerpuff/taur-laying.svg"
  4830. }
  4831. },
  4832. },
  4833. [
  4834. {
  4835. name: "Puffball",
  4836. height: math.unit(6, "inches")
  4837. },
  4838. {
  4839. name: "Normalpuff",
  4840. height: math.unit(5.75, "feet")
  4841. },
  4842. {
  4843. name: "Macropuff",
  4844. height: math.unit(1500, "feet"),
  4845. default: true
  4846. },
  4847. {
  4848. name: "Megapuff",
  4849. height: math.unit(500, "miles")
  4850. },
  4851. {
  4852. name: "Gigapuff",
  4853. height: math.unit(250000, "miles")
  4854. },
  4855. {
  4856. name: "Omegapuff",
  4857. height: math.unit(1000, "lightyears")
  4858. },
  4859. ]
  4860. ))
  4861. characterMakers.push(() => makeCharacter(
  4862. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4863. {
  4864. stomping: {
  4865. height: math.unit(6, "feet"),
  4866. weight: math.unit(170, "lbs"),
  4867. name: "Stomping",
  4868. image: {
  4869. source: "./media/characters/vivian/stomping.svg"
  4870. }
  4871. },
  4872. sitting: {
  4873. height: math.unit(6 / 1.75, "feet"),
  4874. weight: math.unit(170, "lbs"),
  4875. name: "Sitting",
  4876. image: {
  4877. source: "./media/characters/vivian/sitting.svg",
  4878. bottom: 1 / 6.4,
  4879. extra: 1,
  4880. }
  4881. },
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(7, "feet"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(10, "stories")
  4892. },
  4893. {
  4894. name: "Macro+",
  4895. height: math.unit(30, "stories")
  4896. },
  4897. {
  4898. name: "Megamacro",
  4899. height: math.unit(10, "miles")
  4900. },
  4901. {
  4902. name: "Megamacro+",
  4903. height: math.unit(2750000, "meters")
  4904. },
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(160, "lbs"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/prince/front.svg",
  4916. extra: 3400 / 3000
  4917. }
  4918. },
  4919. jumping: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(160, "lbs"),
  4922. name: "Jumping",
  4923. image: {
  4924. source: "./media/characters/prince/jump.svg",
  4925. extra: 2555 / 2134
  4926. }
  4927. },
  4928. },
  4929. [
  4930. {
  4931. name: "Normal",
  4932. height: math.unit(7.75, "feet"),
  4933. default: true
  4934. },
  4935. {
  4936. name: "Not cute",
  4937. height: math.unit(17, "feet")
  4938. },
  4939. {
  4940. name: "I said NOT",
  4941. height: math.unit(91, "feet")
  4942. },
  4943. {
  4944. name: "Please stop",
  4945. height: math.unit(560, "feet")
  4946. },
  4947. {
  4948. name: "What have you done",
  4949. height: math.unit(2200, "feet")
  4950. },
  4951. {
  4952. name: "Deer God",
  4953. height: math.unit(3.6, "miles")
  4954. },
  4955. ]
  4956. ))
  4957. characterMakers.push(() => makeCharacter(
  4958. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4959. {
  4960. standing: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(300, "lbs"),
  4963. name: "Standing",
  4964. image: {
  4965. source: "./media/characters/psymon/standing.svg",
  4966. extra: 1888 / 1810,
  4967. bottom: 0.05
  4968. }
  4969. },
  4970. slithering: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(300, "lbs"),
  4973. name: "Slithering",
  4974. image: {
  4975. source: "./media/characters/psymon/slithering.svg",
  4976. extra: 1330 / 1224
  4977. }
  4978. },
  4979. slitheringAlt: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(300, "lbs"),
  4982. name: "Slithering (Alt)",
  4983. image: {
  4984. source: "./media/characters/psymon/slithering-alt.svg",
  4985. extra: 1330 / 1224
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(11.25, "feet"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Large",
  4997. height: math.unit(27, "feet")
  4998. },
  4999. {
  5000. name: "Giant",
  5001. height: math.unit(87, "feet")
  5002. },
  5003. {
  5004. name: "Macro",
  5005. height: math.unit(365, "feet")
  5006. },
  5007. {
  5008. name: "Megamacro",
  5009. height: math.unit(3, "miles")
  5010. },
  5011. {
  5012. name: "World Serpent",
  5013. height: math.unit(8000, "miles")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5019. {
  5020. front: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(180, "lbs"),
  5023. name: "Front",
  5024. image: {
  5025. source: "./media/characters/daimos/front.svg",
  5026. extra: 4160 / 3897,
  5027. bottom: 0.021
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(8, "feet"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Big Dog",
  5039. height: math.unit(22, "feet")
  5040. },
  5041. {
  5042. name: "Macro",
  5043. height: math.unit(127, "feet")
  5044. },
  5045. {
  5046. name: "Megamacro",
  5047. height: math.unit(3600, "feet")
  5048. },
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5053. {
  5054. side: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(180, "lbs"),
  5057. name: "Side",
  5058. image: {
  5059. source: "./media/characters/blake/side.svg",
  5060. extra: 1212 / 1120,
  5061. bottom: 0.05
  5062. }
  5063. },
  5064. crouched: {
  5065. height: math.unit(6 * 0.57, "feet"),
  5066. weight: math.unit(180, "lbs"),
  5067. name: "Crouched",
  5068. image: {
  5069. source: "./media/characters/blake/crouched.svg",
  5070. extra: 840 / 587,
  5071. bottom: 0.04
  5072. }
  5073. },
  5074. bent: {
  5075. height: math.unit(6 * 0.75, "feet"),
  5076. weight: math.unit(180, "lbs"),
  5077. name: "Bent",
  5078. image: {
  5079. source: "./media/characters/blake/bent.svg",
  5080. extra: 592 / 544,
  5081. bottom: 0.035
  5082. }
  5083. },
  5084. },
  5085. [
  5086. {
  5087. name: "Normal",
  5088. height: math.unit(8 + 1 / 6, "feet"),
  5089. default: true
  5090. },
  5091. {
  5092. name: "Big Backside",
  5093. height: math.unit(37, "feet")
  5094. },
  5095. {
  5096. name: "Subway Shredder",
  5097. height: math.unit(72, "feet")
  5098. },
  5099. {
  5100. name: "City Carver",
  5101. height: math.unit(1675, "feet")
  5102. },
  5103. {
  5104. name: "Tectonic Tweaker",
  5105. height: math.unit(2300, "miles")
  5106. },
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(180, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/guisetto/front.svg",
  5118. extra: 856 / 817,
  5119. bottom: 0.06
  5120. }
  5121. },
  5122. airborne: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(180, "lbs"),
  5125. name: "Airborne",
  5126. image: {
  5127. source: "./media/characters/guisetto/airborne.svg",
  5128. extra: 584 / 525
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(10 + 11 / 12, "feet"),
  5136. default: true
  5137. },
  5138. {
  5139. name: "Large",
  5140. height: math.unit(35, "feet")
  5141. },
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(475, "feet")
  5145. },
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5150. {
  5151. front: {
  5152. height: math.unit(6, "feet"),
  5153. weight: math.unit(180, "lbs"),
  5154. name: "Front",
  5155. image: {
  5156. source: "./media/characters/luxor/front.svg",
  5157. extra: 2940 / 2152
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(180, "lbs"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/luxor/back.svg",
  5166. extra: 1083 / 960
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(5 + 5 / 6, "feet"),
  5174. default: true
  5175. },
  5176. {
  5177. name: "Lamp",
  5178. height: math.unit(50, "feet")
  5179. },
  5180. {
  5181. name: "Lämp",
  5182. height: math.unit(300, "feet")
  5183. },
  5184. {
  5185. name: "The sun is a lamp",
  5186. height: math.unit(250000, "miles")
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(50, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/huoyan/front.svg"
  5199. }
  5200. },
  5201. side: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(180, "lbs"),
  5204. name: "Side",
  5205. image: {
  5206. source: "./media/characters/huoyan/side.svg"
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Chef",
  5213. height: math.unit(9, "feet")
  5214. },
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(65, "feet"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Macro",
  5222. height: math.unit(780, "feet")
  5223. },
  5224. {
  5225. name: "Flaming Mountain",
  5226. height: math.unit(4.8, "miles")
  5227. },
  5228. {
  5229. name: "Celestial",
  5230. height: math.unit(765000, "miles")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(5 + 3 / 4, "feet"),
  5239. weight: math.unit(120, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/tails/front.svg"
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(5 + 3 / 4, "feet"),
  5250. default: true
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(4, "feet"),
  5259. weight: math.unit(50, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/rainy/front.svg"
  5263. }
  5264. }
  5265. },
  5266. [
  5267. {
  5268. name: "Macro",
  5269. height: math.unit(800, "feet"),
  5270. default: true
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(150, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/rainier/front.svg"
  5283. }
  5284. }
  5285. },
  5286. [
  5287. {
  5288. name: "Micro",
  5289. height: math.unit(2, "mm"),
  5290. default: true
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(180, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/andy/front.svg"
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(8, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Macro",
  5314. height: math.unit(1000, "feet")
  5315. },
  5316. {
  5317. name: "Megamacro",
  5318. height: math.unit(5, "miles")
  5319. },
  5320. {
  5321. name: "Gigamacro",
  5322. height: math.unit(5000, "miles")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5328. {
  5329. front: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(210, "lbs"),
  5332. name: "Front",
  5333. image: {
  5334. source: "./media/characters/cimmaron/front-sfw.svg",
  5335. extra: 701 / 676,
  5336. bottom: 0.046
  5337. }
  5338. },
  5339. back: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(210, "lbs"),
  5342. name: "Back",
  5343. image: {
  5344. source: "./media/characters/cimmaron/back-sfw.svg",
  5345. extra: 701 / 676,
  5346. bottom: 0.046
  5347. }
  5348. },
  5349. frontNsfw: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(210, "lbs"),
  5352. name: "Front (NSFW)",
  5353. image: {
  5354. source: "./media/characters/cimmaron/front-nsfw.svg",
  5355. extra: 701 / 676,
  5356. bottom: 0.046
  5357. }
  5358. },
  5359. backNsfw: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(210, "lbs"),
  5362. name: "Back (NSFW)",
  5363. image: {
  5364. source: "./media/characters/cimmaron/back-nsfw.svg",
  5365. extra: 701 / 676,
  5366. bottom: 0.046
  5367. }
  5368. },
  5369. dick: {
  5370. height: math.unit(1.714, "feet"),
  5371. name: "Dick",
  5372. image: {
  5373. source: "./media/characters/cimmaron/dick.svg"
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(6, "feet"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Macro Mayor",
  5385. height: math.unit(350, "meters")
  5386. },
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(200, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/akari/front.svg",
  5398. extra: 962 / 901,
  5399. bottom: 0.04
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Micro",
  5406. height: math.unit(5, "inches"),
  5407. default: true
  5408. },
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(7, "feet")
  5412. },
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(140, "lbs"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/cynosura/front.svg",
  5424. extra: 896 / 847
  5425. }
  5426. },
  5427. back: {
  5428. height: math.unit(6, "feet"),
  5429. weight: math.unit(140, "lbs"),
  5430. name: "Back",
  5431. image: {
  5432. source: "./media/characters/cynosura/back.svg",
  5433. extra: 1365 / 1250
  5434. }
  5435. },
  5436. },
  5437. [
  5438. {
  5439. name: "Micro",
  5440. height: math.unit(4, "inches")
  5441. },
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(5.75, "feet"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Tall",
  5449. height: math.unit(10, "feet")
  5450. },
  5451. {
  5452. name: "Big",
  5453. height: math.unit(20, "feet")
  5454. },
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(50, "feet")
  5458. },
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5463. {
  5464. front: {
  5465. height: math.unit(6, "feet"),
  5466. weight: math.unit(170, "lbs"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/gin/front.svg",
  5470. extra: 1.053,
  5471. bottom: 0.025
  5472. }
  5473. },
  5474. foot: {
  5475. height: math.unit(6 / 4.25, "feet"),
  5476. name: "Foot",
  5477. image: {
  5478. source: "./media/characters/gin/foot.svg"
  5479. }
  5480. },
  5481. sole: {
  5482. height: math.unit(6 / 4.40, "feet"),
  5483. name: "Sole",
  5484. image: {
  5485. source: "./media/characters/gin/sole.svg"
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(13 + 2 / 12, "feet")
  5493. },
  5494. {
  5495. name: "Macro",
  5496. height: math.unit(1500, "feet")
  5497. },
  5498. {
  5499. name: "Megamacro",
  5500. height: math.unit(200, "miles"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Gigamacro",
  5505. height: math.unit(500, "megameters")
  5506. },
  5507. {
  5508. name: "Teramacro",
  5509. height: math.unit(15, "lightyears")
  5510. }
  5511. ]
  5512. ))
  5513. characterMakers.push(() => makeCharacter(
  5514. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5515. {
  5516. front: {
  5517. height: math.unit(6 + 1 / 6, "feet"),
  5518. weight: math.unit(178, "lbs"),
  5519. name: "Front",
  5520. image: {
  5521. source: "./media/characters/guy/front.svg"
  5522. }
  5523. }
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(6 + 1 / 6, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Large",
  5533. height: math.unit(25 + 7 / 12, "feet")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(60 + 9 / 12, "feet")
  5538. },
  5539. {
  5540. name: "Macro+",
  5541. height: math.unit(246, "feet")
  5542. },
  5543. {
  5544. name: "Macro++",
  5545. height: math.unit(878, "feet")
  5546. }
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(9, "feet"),
  5554. weight: math.unit(800, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/tiberius/front.svg",
  5558. extra: 2295 / 2071
  5559. }
  5560. },
  5561. back: {
  5562. height: math.unit(9, "feet"),
  5563. weight: math.unit(800, "lbs"),
  5564. name: "Back",
  5565. image: {
  5566. source: "./media/characters/tiberius/back.svg",
  5567. extra: 2373 / 2160
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(9, "feet"),
  5575. default: true
  5576. }
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5581. {
  5582. front: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(600, "lbs"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/surgo/front.svg",
  5588. extra: 3591 / 2227
  5589. }
  5590. },
  5591. back: {
  5592. height: math.unit(6, "feet"),
  5593. weight: math.unit(600, "lbs"),
  5594. name: "Back",
  5595. image: {
  5596. source: "./media/characters/surgo/back.svg",
  5597. extra: 3557 / 2228
  5598. }
  5599. },
  5600. laying: {
  5601. height: math.unit(6 * 0.85, "feet"),
  5602. weight: math.unit(600, "lbs"),
  5603. name: "Laying",
  5604. image: {
  5605. source: "./media/characters/surgo/laying.svg"
  5606. }
  5607. },
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(6, "feet"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5619. {
  5620. side: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(150, "lbs"),
  5623. name: "Side",
  5624. image: {
  5625. source: "./media/characters/cibus/side.svg",
  5626. extra: 800 / 400
  5627. }
  5628. },
  5629. },
  5630. [
  5631. {
  5632. name: "Normal",
  5633. height: math.unit(6, "feet"),
  5634. default: true
  5635. }
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(240, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/nibbles/front.svg"
  5647. }
  5648. },
  5649. side: {
  5650. height: math.unit(6, "feet"),
  5651. weight: math.unit(240, "lbs"),
  5652. name: "Side",
  5653. image: {
  5654. source: "./media/characters/nibbles/side.svg"
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(9, "feet"),
  5662. default: true
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5668. {
  5669. side: {
  5670. height: math.unit(5 + 1 / 6, "feet"),
  5671. weight: math.unit(130, "lbs"),
  5672. name: "Side",
  5673. image: {
  5674. source: "./media/characters/rikky/side.svg",
  5675. extra: 851 / 801
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(5 + 1 / 6, "feet")
  5683. },
  5684. {
  5685. name: "Macro",
  5686. height: math.unit(152, "feet"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Megamacro",
  5691. height: math.unit(7, "miles")
  5692. }
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5697. {
  5698. side: {
  5699. height: math.unit(370, "cm"),
  5700. weight: math.unit(350, "lbs"),
  5701. name: "Side",
  5702. image: {
  5703. source: "./media/characters/malfressa/side.svg"
  5704. }
  5705. },
  5706. walking: {
  5707. height: math.unit(370, "cm"),
  5708. weight: math.unit(350, "lbs"),
  5709. name: "Walking",
  5710. image: {
  5711. source: "./media/characters/malfressa/walking.svg"
  5712. }
  5713. },
  5714. feral: {
  5715. height: math.unit(2500, "cm"),
  5716. weight: math.unit(100000, "lbs"),
  5717. name: "Feral",
  5718. image: {
  5719. source: "./media/characters/malfressa/feral.svg",
  5720. extra: 2108 / 837,
  5721. bottom: 0.02
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(370, "cm")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(300, "meters"),
  5733. default: true
  5734. }
  5735. ]
  5736. ))
  5737. characterMakers.push(() => makeCharacter(
  5738. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5739. {
  5740. front: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(60, "kg"),
  5743. name: "Front",
  5744. image: {
  5745. source: "./media/characters/jaro/front.svg"
  5746. }
  5747. },
  5748. back: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(60, "kg"),
  5751. name: "Back",
  5752. image: {
  5753. source: "./media/characters/jaro/back.svg"
  5754. }
  5755. },
  5756. },
  5757. [
  5758. {
  5759. name: "Micro",
  5760. height: math.unit(7, "inches")
  5761. },
  5762. {
  5763. name: "Normal",
  5764. height: math.unit(5.5, "feet"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Minimacro",
  5769. height: math.unit(20, "feet")
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(200, "meters")
  5774. }
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5779. {
  5780. front: {
  5781. height: math.unit(6, "feet"),
  5782. weight: math.unit(195, "lb"),
  5783. name: "Front",
  5784. image: {
  5785. source: "./media/characters/rogue/front.svg"
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(90, "feet"),
  5793. default: true
  5794. },
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(5 + 8 / 12, "feet"),
  5802. weight: math.unit(140, "lb"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/piper/front.svg",
  5806. extra: 3948/3655,
  5807. bottom: 0/3948
  5808. }
  5809. },
  5810. },
  5811. [
  5812. {
  5813. name: "Micro",
  5814. height: math.unit(2, "inches")
  5815. },
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(5 + 8 / 12, "feet")
  5819. },
  5820. {
  5821. name: "Macro",
  5822. height: math.unit(250, "feet"),
  5823. default: true
  5824. },
  5825. {
  5826. name: "Megamacro",
  5827. height: math.unit(7, "miles")
  5828. },
  5829. ]
  5830. ))
  5831. characterMakers.push(() => makeCharacter(
  5832. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5833. {
  5834. front: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(220, "lb"),
  5837. name: "Front",
  5838. image: {
  5839. source: "./media/characters/gemini/front.svg"
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(220, "lb"),
  5845. name: "Back",
  5846. image: {
  5847. source: "./media/characters/gemini/back.svg"
  5848. }
  5849. },
  5850. kneeling: {
  5851. height: math.unit(6 / 1.5, "feet"),
  5852. weight: math.unit(220, "lb"),
  5853. name: "Kneeling",
  5854. image: {
  5855. source: "./media/characters/gemini/kneeling.svg",
  5856. bottom: 0.02
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Macro",
  5863. height: math.unit(300, "meters"),
  5864. default: true
  5865. },
  5866. {
  5867. name: "Megamacro",
  5868. height: math.unit(6900, "meters")
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5874. {
  5875. anthro: {
  5876. height: math.unit(2.35, "meters"),
  5877. weight: math.unit(73, "kg"),
  5878. name: "Anthro",
  5879. image: {
  5880. source: "./media/characters/alicia/anthro.svg",
  5881. extra: 2571 / 2385,
  5882. bottom: 75 / 2648
  5883. }
  5884. },
  5885. paw: {
  5886. height: math.unit(1.32, "feet"),
  5887. name: "Paw",
  5888. image: {
  5889. source: "./media/characters/alicia/paw.svg"
  5890. }
  5891. },
  5892. feral: {
  5893. height: math.unit(1.69, "meters"),
  5894. weight: math.unit(73, "kg"),
  5895. name: "Feral",
  5896. image: {
  5897. source: "./media/characters/alicia/feral.svg",
  5898. extra: 2123 / 1715,
  5899. bottom: 222 / 2349
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(2.35, "meters")
  5907. },
  5908. {
  5909. name: "Macro",
  5910. height: math.unit(60, "meters"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Megamacro",
  5915. height: math.unit(10000, "kilometers")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(7, "feet"),
  5924. weight: math.unit(250, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/archy/front.svg"
  5928. }
  5929. }
  5930. },
  5931. [
  5932. {
  5933. name: "Micro",
  5934. height: math.unit(1, "inch")
  5935. },
  5936. {
  5937. name: "Shorty",
  5938. height: math.unit(5, "feet")
  5939. },
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(7, "feet")
  5943. },
  5944. {
  5945. name: "Macro",
  5946. height: math.unit(600, "meters"),
  5947. default: true
  5948. },
  5949. {
  5950. name: "Megamacro",
  5951. height: math.unit(1, "mile")
  5952. },
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(1.65, "meters"),
  5960. weight: math.unit(74, "kg"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/berri/front.svg",
  5964. extra: 857 / 837,
  5965. bottom: 18 / 877
  5966. }
  5967. },
  5968. bum: {
  5969. height: math.unit(1.46, "feet"),
  5970. name: "Bum",
  5971. image: {
  5972. source: "./media/characters/berri/bum.svg"
  5973. }
  5974. },
  5975. mouth: {
  5976. height: math.unit(0.44, "feet"),
  5977. name: "Mouth",
  5978. image: {
  5979. source: "./media/characters/berri/mouth.svg"
  5980. }
  5981. },
  5982. paw: {
  5983. height: math.unit(0.826, "feet"),
  5984. name: "Paw",
  5985. image: {
  5986. source: "./media/characters/berri/paw.svg"
  5987. }
  5988. },
  5989. },
  5990. [
  5991. {
  5992. name: "Normal",
  5993. height: math.unit(1.65, "meters")
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(60, "m"),
  5998. default: true
  5999. },
  6000. {
  6001. name: "Megamacro",
  6002. height: math.unit(9.213, "km")
  6003. },
  6004. {
  6005. name: "Planet Eater",
  6006. height: math.unit(489, "megameters")
  6007. },
  6008. {
  6009. name: "Teramacro",
  6010. height: math.unit(2471635000000, "meters")
  6011. },
  6012. {
  6013. name: "Examacro",
  6014. height: math.unit(8.0624e+26, "meters")
  6015. }
  6016. ]
  6017. ))
  6018. characterMakers.push(() => makeCharacter(
  6019. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6020. {
  6021. front: {
  6022. height: math.unit(1.72, "meters"),
  6023. weight: math.unit(68, "kg"),
  6024. name: "Front",
  6025. image: {
  6026. source: "./media/characters/lexi/front.svg"
  6027. }
  6028. }
  6029. },
  6030. [
  6031. {
  6032. name: "Very Smol",
  6033. height: math.unit(10, "mm")
  6034. },
  6035. {
  6036. name: "Micro",
  6037. height: math.unit(6.8, "cm"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(1.72, "m")
  6043. }
  6044. ]
  6045. ))
  6046. characterMakers.push(() => makeCharacter(
  6047. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6048. {
  6049. front: {
  6050. height: math.unit(1.69, "meters"),
  6051. weight: math.unit(68, "kg"),
  6052. name: "Front",
  6053. image: {
  6054. source: "./media/characters/martin/front.svg",
  6055. extra: 596 / 581
  6056. }
  6057. }
  6058. },
  6059. [
  6060. {
  6061. name: "Micro",
  6062. height: math.unit(6.85, "cm"),
  6063. default: true
  6064. },
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(1.69, "m")
  6068. }
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(1.69, "meters"),
  6076. weight: math.unit(68, "kg"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/juno/front.svg"
  6080. }
  6081. }
  6082. },
  6083. [
  6084. {
  6085. name: "Micro",
  6086. height: math.unit(7, "cm")
  6087. },
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(1.89, "m")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(353, "meters"),
  6095. default: true
  6096. }
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(1.93, "meters"),
  6104. weight: math.unit(83, "kg"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/samantha/front.svg"
  6108. }
  6109. },
  6110. frontClothed: {
  6111. height: math.unit(1.93, "meters"),
  6112. weight: math.unit(83, "kg"),
  6113. name: "Front (Clothed)",
  6114. image: {
  6115. source: "./media/characters/samantha/front-clothed.svg"
  6116. }
  6117. },
  6118. back: {
  6119. height: math.unit(1.93, "meters"),
  6120. weight: math.unit(83, "kg"),
  6121. name: "Back",
  6122. image: {
  6123. source: "./media/characters/samantha/back.svg"
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(1.93, "m")
  6131. },
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(74, "meters"),
  6135. default: true
  6136. },
  6137. {
  6138. name: "Macro+",
  6139. height: math.unit(223, "meters"),
  6140. },
  6141. {
  6142. name: "Megamacro",
  6143. height: math.unit(8381, "meters"),
  6144. },
  6145. {
  6146. name: "Megamacro+",
  6147. height: math.unit(12000, "kilometers")
  6148. },
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6153. {
  6154. front: {
  6155. height: math.unit(1.92, "meters"),
  6156. weight: math.unit(80, "kg"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/dr-clay/front.svg"
  6160. }
  6161. },
  6162. frontClothed: {
  6163. height: math.unit(1.92, "meters"),
  6164. weight: math.unit(80, "kg"),
  6165. name: "Front (Clothed)",
  6166. image: {
  6167. source: "./media/characters/dr-clay/front-clothed.svg"
  6168. }
  6169. }
  6170. },
  6171. [
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(1.92, "m")
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(214, "meters"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Macro+",
  6183. height: math.unit(12.237, "meters"),
  6184. },
  6185. {
  6186. name: "Megamacro",
  6187. height: math.unit(557, "megameters"),
  6188. },
  6189. {
  6190. name: "Unimaginable",
  6191. height: math.unit(120e9, "lightyears")
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6197. {
  6198. front: {
  6199. height: math.unit(2, "meters"),
  6200. weight: math.unit(80, "kg"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6204. }
  6205. }
  6206. },
  6207. [
  6208. {
  6209. name: "Teramacro",
  6210. height: math.unit(500000, "lightyears"),
  6211. default: true
  6212. },
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6217. {
  6218. front: {
  6219. height: math.unit(2, "meters"),
  6220. weight: math.unit(150, "kg"),
  6221. name: "Front",
  6222. image: {
  6223. source: "./media/characters/vemus/front.svg",
  6224. extra: 2384 / 2084,
  6225. bottom: 0.0123
  6226. }
  6227. }
  6228. },
  6229. [
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(3.75, "meters"),
  6233. default: true
  6234. },
  6235. {
  6236. name: "Big",
  6237. height: math.unit(8, "meters")
  6238. },
  6239. {
  6240. name: "Macro",
  6241. height: math.unit(100, "meters")
  6242. },
  6243. {
  6244. name: "Macro+",
  6245. height: math.unit(1500, "meters")
  6246. },
  6247. {
  6248. name: "Stellar",
  6249. height: math.unit(14e8, "meters")
  6250. },
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(2, "meters"),
  6258. weight: math.unit(70, "kg"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/beherit/front.svg",
  6262. extra: 1408 / 1242
  6263. }
  6264. }
  6265. },
  6266. [
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(6, "feet")
  6270. },
  6271. {
  6272. name: "Lorg",
  6273. height: math.unit(25, "feet"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Lorger",
  6278. height: math.unit(75, "feet")
  6279. },
  6280. {
  6281. name: "Macro",
  6282. height: math.unit(200, "meters")
  6283. },
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6288. {
  6289. front: {
  6290. height: math.unit(2, "meters"),
  6291. weight: math.unit(150, "kg"),
  6292. name: "Front",
  6293. image: {
  6294. source: "./media/characters/everett/front.svg",
  6295. extra: 2038 / 1737,
  6296. bottom: 0.03
  6297. }
  6298. },
  6299. paw: {
  6300. height: math.unit(2 / 3.6, "meters"),
  6301. name: "Paw",
  6302. image: {
  6303. source: "./media/characters/everett/paw.svg"
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(15, "feet"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Lorg",
  6315. height: math.unit(70, "feet"),
  6316. default: true
  6317. },
  6318. {
  6319. name: "Lorger",
  6320. height: math.unit(250, "feet")
  6321. },
  6322. {
  6323. name: "Macro",
  6324. height: math.unit(500, "meters")
  6325. },
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6330. {
  6331. front: {
  6332. height: math.unit(2, "meters"),
  6333. weight: math.unit(86, "kg"),
  6334. name: "Front",
  6335. image: {
  6336. source: "./media/characters/rose/front.svg",
  6337. extra: 350/335,
  6338. bottom: 10/360
  6339. }
  6340. },
  6341. frontAlt: {
  6342. height: math.unit(1.6, "meters"),
  6343. weight: math.unit(86, "kg"),
  6344. name: "Front (Alt)",
  6345. image: {
  6346. source: "./media/characters/rose/front-alt.svg",
  6347. extra: 299/283,
  6348. bottom: 3/302
  6349. }
  6350. },
  6351. plush: {
  6352. height: math.unit(2, "meters"),
  6353. weight: math.unit(86/3, "kg"),
  6354. name: "Plush",
  6355. image: {
  6356. source: "./media/characters/rose/plush.svg",
  6357. extra: 361/337,
  6358. bottom: 11/372
  6359. }
  6360. },
  6361. },
  6362. [
  6363. {
  6364. name: "Mini-Micro",
  6365. height: math.unit(1, "cm")
  6366. },
  6367. {
  6368. name: "Micro",
  6369. height: math.unit(3.5, "inches"),
  6370. default: true
  6371. },
  6372. {
  6373. name: "Normal",
  6374. height: math.unit(6 + 1 / 6, "feet")
  6375. },
  6376. {
  6377. name: "Mini-Macro",
  6378. height: math.unit(9 + 10 / 12, "feet")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6384. {
  6385. front: {
  6386. height: math.unit(2, "meters"),
  6387. weight: math.unit(350, "lbs"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/regal/front.svg"
  6391. }
  6392. },
  6393. back: {
  6394. height: math.unit(2, "meters"),
  6395. weight: math.unit(350, "lbs"),
  6396. name: "Back",
  6397. image: {
  6398. source: "./media/characters/regal/back.svg"
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(350, "feet"),
  6406. default: true
  6407. }
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6412. {
  6413. front: {
  6414. height: math.unit(4 + 11 / 12, "feet"),
  6415. weight: math.unit(100, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/opal/front.svg"
  6419. }
  6420. },
  6421. frontAlt: {
  6422. height: math.unit(4 + 11 / 12, "feet"),
  6423. weight: math.unit(100, "lbs"),
  6424. name: "Front (Alt)",
  6425. image: {
  6426. source: "./media/characters/opal/front-alt.svg"
  6427. }
  6428. },
  6429. },
  6430. [
  6431. {
  6432. name: "Small",
  6433. height: math.unit(4 + 11 / 12, "feet")
  6434. },
  6435. {
  6436. name: "Normal",
  6437. height: math.unit(20, "feet"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(120, "feet")
  6443. },
  6444. {
  6445. name: "Megamacro",
  6446. height: math.unit(80, "miles")
  6447. },
  6448. {
  6449. name: "True Size",
  6450. height: math.unit(100000, "lightyears")
  6451. },
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(6, "feet"),
  6459. weight: math.unit(200, "lbs"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/vector-wuff/front.svg"
  6463. }
  6464. }
  6465. },
  6466. [
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(2.8, "meters")
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(450, "meters"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Megamacro",
  6478. height: math.unit(15, "kilometers")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(256, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/dannik/front.svg"
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Macro",
  6497. height: math.unit(69.57, "meters"),
  6498. default: true
  6499. },
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6504. {
  6505. front: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(120, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/azura-saharah/front.svg"
  6511. }
  6512. },
  6513. back: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(120, "lbs"),
  6516. name: "Back",
  6517. image: {
  6518. source: "./media/characters/azura-saharah/back.svg"
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(100, "feet"),
  6526. default: true
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6532. {
  6533. side: {
  6534. height: math.unit(5 + 4 / 12, "feet"),
  6535. weight: math.unit(163, "lbs"),
  6536. name: "Side",
  6537. image: {
  6538. source: "./media/characters/kennedy/side.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Standard Doggo",
  6545. height: math.unit(5 + 4 / 12, "feet")
  6546. },
  6547. {
  6548. name: "Big Doggo",
  6549. height: math.unit(25 + 3 / 12, "feet"),
  6550. default: true
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(90, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/odi-lunar/front.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Micro",
  6569. height: math.unit(3, "inches"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(5.5, "feet")
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6580. {
  6581. back: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(220, "lbs"),
  6584. name: "Back",
  6585. image: {
  6586. source: "./media/characters/mandake/back.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(7, "feet"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(78, "feet")
  6599. },
  6600. {
  6601. name: "Macro+",
  6602. height: math.unit(300, "meters")
  6603. },
  6604. {
  6605. name: "Macro++",
  6606. height: math.unit(2400, "feet")
  6607. },
  6608. {
  6609. name: "Megamacro",
  6610. height: math.unit(5167, "meters")
  6611. },
  6612. {
  6613. name: "Gigamacro",
  6614. height: math.unit(41769, "miles")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(120, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/yozey/front.svg"
  6627. }
  6628. },
  6629. frontAlt: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(120, "lbs"),
  6632. name: "Front (Alt)",
  6633. image: {
  6634. source: "./media/characters/yozey/front-alt.svg"
  6635. }
  6636. },
  6637. side: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(120, "lbs"),
  6640. name: "Side",
  6641. image: {
  6642. source: "./media/characters/yozey/side.svg"
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Micro",
  6649. height: math.unit(3, "inches"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(6, "feet")
  6655. }
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6660. {
  6661. front: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(103, "lbs"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/valeska-voss/front.svg"
  6667. }
  6668. }
  6669. },
  6670. [
  6671. {
  6672. name: "Mini-Sized Sub",
  6673. height: math.unit(3.1, "inches")
  6674. },
  6675. {
  6676. name: "Mid-Sized Sub",
  6677. height: math.unit(6.2, "inches")
  6678. },
  6679. {
  6680. name: "Full-Sized Sub",
  6681. height: math.unit(9.3, "inches")
  6682. },
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(5 + 2 / 12, "foot"),
  6686. default: true
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(160, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/gene-zeta/front.svg",
  6699. extra: 3006 / 2826,
  6700. bottom: 182 / 3188
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Micro",
  6707. height: math.unit(6, "inches")
  6708. },
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(5 + 11 / 12, "foot"),
  6712. default: true
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(140, "feet")
  6717. },
  6718. {
  6719. name: "Supercharged",
  6720. height: math.unit(2500, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6726. {
  6727. front: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(350, "lbs"),
  6730. name: "Front",
  6731. image: {
  6732. source: "./media/characters/razinox/front.svg",
  6733. extra: 1686 / 1548,
  6734. bottom: 28.2 / 1868
  6735. }
  6736. },
  6737. back: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(350, "lbs"),
  6740. name: "Back",
  6741. image: {
  6742. source: "./media/characters/razinox/back.svg",
  6743. extra: 1660 / 1590,
  6744. bottom: 15 / 1665
  6745. }
  6746. },
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(10 + 8 / 12, "foot")
  6752. },
  6753. {
  6754. name: "Minimacro",
  6755. height: math.unit(15, "foot")
  6756. },
  6757. {
  6758. name: "Macro",
  6759. height: math.unit(60, "foot"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Megamacro",
  6764. height: math.unit(5, "miles")
  6765. },
  6766. {
  6767. name: "Gigamacro",
  6768. height: math.unit(6000, "miles")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6774. {
  6775. front: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(150, "lbs"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/cobalt/front.svg"
  6781. }
  6782. }
  6783. },
  6784. [
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(8 + 1 / 12, "foot")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(111, "foot"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Supracosmic",
  6796. height: math.unit(1e42, "feet")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(140, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/amanda/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Micro",
  6815. height: math.unit(5, "inches"),
  6816. default: true
  6817. },
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(2.75, "meters"),
  6825. weight: math.unit(1200, "lb"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/teal/front.svg",
  6829. extra: 2463 / 2320,
  6830. bottom: 166 / 2629
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(2.75, "meters"),
  6835. weight: math.unit(1200, "lb"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/teal/back.svg",
  6839. extra: 2580 / 2489,
  6840. bottom: 151 / 2731
  6841. }
  6842. },
  6843. sitting: {
  6844. height: math.unit(1.9, "meters"),
  6845. weight: math.unit(1200, "lb"),
  6846. name: "Sitting",
  6847. image: {
  6848. source: "./media/characters/teal/sitting.svg",
  6849. extra: 623 / 590,
  6850. bottom: 121 / 744
  6851. }
  6852. },
  6853. standing: {
  6854. height: math.unit(2.75, "meters"),
  6855. weight: math.unit(1200, "lb"),
  6856. name: "Standing",
  6857. image: {
  6858. source: "./media/characters/teal/standing.svg",
  6859. extra: 923 / 893,
  6860. bottom: 60 / 983
  6861. }
  6862. },
  6863. stretching: {
  6864. height: math.unit(3.65, "meters"),
  6865. weight: math.unit(1200, "lb"),
  6866. name: "Stretching",
  6867. image: {
  6868. source: "./media/characters/teal/stretching.svg",
  6869. extra: 1276 / 1244,
  6870. bottom: 0 / 1276
  6871. }
  6872. },
  6873. legged: {
  6874. height: math.unit(1.3, "meters"),
  6875. weight: math.unit(100, "lb"),
  6876. name: "Legged",
  6877. image: {
  6878. source: "./media/characters/teal/legged.svg",
  6879. extra: 462 / 437,
  6880. bottom: 24 / 486
  6881. }
  6882. },
  6883. naga: {
  6884. height: math.unit(5.4, "meters"),
  6885. weight: math.unit(4000, "lb"),
  6886. name: "Naga",
  6887. image: {
  6888. source: "./media/characters/teal/naga.svg",
  6889. extra: 1902 / 1858,
  6890. bottom: 0 / 1902
  6891. }
  6892. },
  6893. hand: {
  6894. height: math.unit(0.52, "meters"),
  6895. name: "Hand",
  6896. image: {
  6897. source: "./media/characters/teal/hand.svg"
  6898. }
  6899. },
  6900. maw: {
  6901. height: math.unit(0.43, "meters"),
  6902. name: "Maw",
  6903. image: {
  6904. source: "./media/characters/teal/maw.svg"
  6905. }
  6906. },
  6907. slit: {
  6908. height: math.unit(0.25, "meters"),
  6909. name: "Slit",
  6910. image: {
  6911. source: "./media/characters/teal/slit.svg"
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Normal",
  6918. height: math.unit(2.75, "meters"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Macro",
  6923. height: math.unit(300, "feet")
  6924. },
  6925. {
  6926. name: "Macro+",
  6927. height: math.unit(2000, "feet")
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6933. {
  6934. frontCat: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(180, "lbs"),
  6937. name: "Front (Cat)",
  6938. image: {
  6939. source: "./media/characters/ravin-amulet/front-cat.svg"
  6940. }
  6941. },
  6942. frontCatAlt: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(180, "lbs"),
  6945. name: "Front (Alt, Cat)",
  6946. image: {
  6947. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6948. }
  6949. },
  6950. frontWerewolf: {
  6951. height: math.unit(6 * 1.2, "feet"),
  6952. weight: math.unit(225, "lbs"),
  6953. name: "Front (Werewolf)",
  6954. image: {
  6955. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6956. }
  6957. },
  6958. backWerewolf: {
  6959. height: math.unit(6 * 1.2, "feet"),
  6960. weight: math.unit(225, "lbs"),
  6961. name: "Back (Werewolf)",
  6962. image: {
  6963. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Nano",
  6970. height: math.unit(1, "micrometer")
  6971. },
  6972. {
  6973. name: "Micro",
  6974. height: math.unit(1, "inch")
  6975. },
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(6, "feet"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(60, "feet")
  6984. }
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(165, "lbs"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/fluoresce/front.svg"
  6996. }
  6997. }
  6998. },
  6999. [
  7000. {
  7001. name: "Micro",
  7002. height: math.unit(6, "cm")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(5 + 7 / 12, "feet"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(56, "feet")
  7012. },
  7013. {
  7014. name: "Megamacro",
  7015. height: math.unit(1.9, "miles")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(9 + 6 / 12, "feet"),
  7024. weight: math.unit(523, "lbs"),
  7025. name: "Side",
  7026. image: {
  7027. source: "./media/characters/aurora/side.svg"
  7028. }
  7029. }
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(9 + 6 / 12, "feet")
  7035. },
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(96, "feet"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro+",
  7043. height: math.unit(243, "feet")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(194, "cm"),
  7052. weight: math.unit(90, "kg"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/ranek/front.svg"
  7056. }
  7057. },
  7058. side: {
  7059. height: math.unit(194, "cm"),
  7060. weight: math.unit(90, "kg"),
  7061. name: "Side",
  7062. image: {
  7063. source: "./media/characters/ranek/side.svg"
  7064. }
  7065. },
  7066. back: {
  7067. height: math.unit(194, "cm"),
  7068. weight: math.unit(90, "kg"),
  7069. name: "Back",
  7070. image: {
  7071. source: "./media/characters/ranek/back.svg"
  7072. }
  7073. },
  7074. feral: {
  7075. height: math.unit(30, "cm"),
  7076. weight: math.unit(1.6, "lbs"),
  7077. name: "Feral",
  7078. image: {
  7079. source: "./media/characters/ranek/feral.svg"
  7080. }
  7081. },
  7082. },
  7083. [
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(194, "cm"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(100, "meters")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(5 + 6 / 12, "feet"),
  7100. weight: math.unit(153, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/andrew-cooper/front.svg"
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Nano",
  7110. height: math.unit(1, "mm")
  7111. },
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(2, "inches")
  7115. },
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(5 + 6 / 12, "feet"),
  7119. default: true
  7120. }
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(180, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/akane-sato/front.svg",
  7132. extra: 1219 / 1140
  7133. }
  7134. },
  7135. back: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(180, "lbs"),
  7138. name: "Back",
  7139. image: {
  7140. source: "./media/characters/akane-sato/back.svg",
  7141. extra: 1219 / 1170
  7142. }
  7143. },
  7144. },
  7145. [
  7146. {
  7147. name: "Normal",
  7148. height: math.unit(2.5, "meters")
  7149. },
  7150. {
  7151. name: "Macro",
  7152. height: math.unit(250, "meters"),
  7153. default: true
  7154. },
  7155. {
  7156. name: "Megamacro",
  7157. height: math.unit(25, "km")
  7158. },
  7159. ]
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(6, "feet"),
  7166. weight: math.unit(65, "kg"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/rook/front.svg",
  7170. extra: 960 / 950
  7171. }
  7172. }
  7173. },
  7174. [
  7175. {
  7176. name: "Normal",
  7177. height: math.unit(8.8, "feet")
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(88, "feet"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Megamacro",
  7186. height: math.unit(8, "miles")
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(12 + 2 / 12, "feet"),
  7195. weight: math.unit(808, "lbs"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/prodigy/front.svg"
  7199. }
  7200. }
  7201. },
  7202. [
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(12 + 2 / 12, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(143, "feet")
  7211. },
  7212. {
  7213. name: "Macro+",
  7214. height: math.unit(400, "feet")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(6, "feet"),
  7223. weight: math.unit(225, "lbs"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/daniel/front.svg"
  7227. }
  7228. },
  7229. leaning: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(225, "lbs"),
  7232. name: "Leaning",
  7233. image: {
  7234. source: "./media/characters/daniel/leaning.svg"
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(1000, "feet"),
  7242. default: true
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(88, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/chiros/front.svg",
  7255. extra: 306 / 226
  7256. }
  7257. },
  7258. side: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(88, "lbs"),
  7261. name: "Side",
  7262. image: {
  7263. source: "./media/characters/chiros/side.svg",
  7264. extra: 306 / 226
  7265. }
  7266. },
  7267. },
  7268. [
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(6, "cm"),
  7272. default: true
  7273. },
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7278. {
  7279. front: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(100, "lbs"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/selka/front.svg",
  7285. extra: 947 / 887
  7286. }
  7287. }
  7288. },
  7289. [
  7290. {
  7291. name: "Normal",
  7292. height: math.unit(5, "cm"),
  7293. default: true
  7294. },
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(8 + 3 / 12, "feet"),
  7302. weight: math.unit(424, "lbs"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/verin/front.svg",
  7306. extra: 1845 / 1550
  7307. }
  7308. },
  7309. frontArmored: {
  7310. height: math.unit(8 + 3 / 12, "feet"),
  7311. weight: math.unit(424, "lbs"),
  7312. name: "Front (Armored)",
  7313. image: {
  7314. source: "./media/characters/verin/front-armor.svg",
  7315. extra: 1845 / 1550,
  7316. bottom: 0.01
  7317. }
  7318. },
  7319. back: {
  7320. height: math.unit(8 + 3 / 12, "feet"),
  7321. weight: math.unit(424, "lbs"),
  7322. name: "Back",
  7323. image: {
  7324. source: "./media/characters/verin/back.svg",
  7325. bottom: 0.1,
  7326. extra: 1
  7327. }
  7328. },
  7329. foot: {
  7330. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7331. name: "Foot",
  7332. image: {
  7333. source: "./media/characters/verin/foot.svg"
  7334. }
  7335. },
  7336. },
  7337. [
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(8 + 3 / 12, "feet")
  7341. },
  7342. {
  7343. name: "Minimacro",
  7344. height: math.unit(21, "feet"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(626, "feet")
  7350. },
  7351. ]
  7352. ))
  7353. characterMakers.push(() => makeCharacter(
  7354. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7355. {
  7356. front: {
  7357. height: math.unit(2.718, "meters"),
  7358. weight: math.unit(150, "lbs"),
  7359. name: "Front",
  7360. image: {
  7361. source: "./media/characters/sovrim-terraquian/front.svg"
  7362. }
  7363. },
  7364. back: {
  7365. height: math.unit(2.718, "meters"),
  7366. weight: math.unit(150, "lbs"),
  7367. name: "Back",
  7368. image: {
  7369. source: "./media/characters/sovrim-terraquian/back.svg"
  7370. }
  7371. }
  7372. },
  7373. [
  7374. {
  7375. name: "Micro",
  7376. height: math.unit(2, "inches")
  7377. },
  7378. {
  7379. name: "Small",
  7380. height: math.unit(1, "meter")
  7381. },
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(Math.E, "meters"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(20, "meters")
  7390. },
  7391. {
  7392. name: "Macro+",
  7393. height: math.unit(400, "meters")
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(7, "feet"),
  7402. weight: math.unit(489, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/reece-silvermane/front.svg",
  7406. bottom: 0.02,
  7407. extra: 1
  7408. }
  7409. },
  7410. },
  7411. [
  7412. {
  7413. name: "Macro",
  7414. height: math.unit(1.5, "miles"),
  7415. default: true
  7416. },
  7417. ]
  7418. ))
  7419. characterMakers.push(() => makeCharacter(
  7420. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7421. {
  7422. front: {
  7423. height: math.unit(6, "feet"),
  7424. weight: math.unit(78, "kg"),
  7425. name: "Front",
  7426. image: {
  7427. source: "./media/characters/kane/front.svg",
  7428. extra: 978 / 899
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(2.1, "m"),
  7436. },
  7437. {
  7438. name: "Macro",
  7439. height: math.unit(1, "km"),
  7440. default: true
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(200, "kg"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/tegon/front.svg",
  7453. bottom: 0.01,
  7454. extra: 1
  7455. }
  7456. },
  7457. },
  7458. [
  7459. {
  7460. name: "Micro",
  7461. height: math.unit(1, "inch")
  7462. },
  7463. {
  7464. name: "Normal",
  7465. height: math.unit(6 + 3 / 12, "feet"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Macro",
  7470. height: math.unit(300, "feet")
  7471. },
  7472. {
  7473. name: "Megamacro",
  7474. height: math.unit(69, "miles")
  7475. },
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7480. {
  7481. side: {
  7482. height: math.unit(6, "feet"),
  7483. weight: math.unit(2304, "lbs"),
  7484. name: "Side",
  7485. image: {
  7486. source: "./media/characters/arcturax/side.svg",
  7487. extra: 790 / 376,
  7488. bottom: 0.01
  7489. }
  7490. },
  7491. },
  7492. [
  7493. {
  7494. name: "Micro",
  7495. height: math.unit(2, "inch")
  7496. },
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(6, "feet")
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(39, "feet"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Megamacro",
  7508. height: math.unit(7, "miles")
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(50, "lbs"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/sentri/front.svg",
  7521. extra: 1750 / 1570,
  7522. bottom: 0.025
  7523. }
  7524. },
  7525. frontAlt: {
  7526. height: math.unit(6, "feet"),
  7527. weight: math.unit(50, "lbs"),
  7528. name: "Front (Alt)",
  7529. image: {
  7530. source: "./media/characters/sentri/front-alt.svg",
  7531. extra: 1750 / 1570,
  7532. bottom: 0.025
  7533. }
  7534. },
  7535. },
  7536. [
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(15, "feet"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(2500, "feet")
  7545. }
  7546. ]
  7547. ))
  7548. characterMakers.push(() => makeCharacter(
  7549. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7550. {
  7551. front: {
  7552. height: math.unit(5 + 8 / 12, "feet"),
  7553. weight: math.unit(130, "lbs"),
  7554. name: "Front",
  7555. image: {
  7556. source: "./media/characters/corvin/front.svg",
  7557. extra: 1803 / 1629
  7558. }
  7559. },
  7560. frontShirt: {
  7561. height: math.unit(5 + 8 / 12, "feet"),
  7562. weight: math.unit(130, "lbs"),
  7563. name: "Front (Shirt)",
  7564. image: {
  7565. source: "./media/characters/corvin/front-shirt.svg",
  7566. extra: 1803 / 1629
  7567. }
  7568. },
  7569. frontPoncho: {
  7570. height: math.unit(5 + 8 / 12, "feet"),
  7571. weight: math.unit(130, "lbs"),
  7572. name: "Front (Poncho)",
  7573. image: {
  7574. source: "./media/characters/corvin/front-poncho.svg",
  7575. extra: 1803 / 1629
  7576. }
  7577. },
  7578. side: {
  7579. height: math.unit(5 + 8 / 12, "feet"),
  7580. weight: math.unit(130, "lbs"),
  7581. name: "Side",
  7582. image: {
  7583. source: "./media/characters/corvin/side.svg",
  7584. extra: 1012 / 945
  7585. }
  7586. },
  7587. back: {
  7588. height: math.unit(5 + 8 / 12, "feet"),
  7589. weight: math.unit(130, "lbs"),
  7590. name: "Back",
  7591. image: {
  7592. source: "./media/characters/corvin/back.svg",
  7593. extra: 1803 / 1629
  7594. }
  7595. },
  7596. },
  7597. [
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(3, "inches")
  7601. },
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(5 + 8 / 12, "feet")
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(300, "feet"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Megamacro",
  7613. height: math.unit(500, "miles")
  7614. }
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(135, "lbs"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/q/front.svg",
  7626. extra: 854 / 752,
  7627. bottom: 0.005
  7628. }
  7629. },
  7630. back: {
  7631. height: math.unit(6, "feet"),
  7632. weight: math.unit(130, "lbs"),
  7633. name: "Back",
  7634. image: {
  7635. source: "./media/characters/q/back.svg",
  7636. extra: 854 / 752
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(90, "feet"),
  7644. default: true
  7645. },
  7646. {
  7647. name: "Extra Macro",
  7648. height: math.unit(300, "feet"),
  7649. },
  7650. {
  7651. name: "BIG WALF",
  7652. height: math.unit(750, "feet"),
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(150, "lbs"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/carley/front.svg",
  7665. extra: 3927 / 3540,
  7666. bottom: 29.2 / 735
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(6 + 3 / 12, "feet")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(185, "feet"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(8, "miles"),
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(3, "feet"),
  7691. weight: math.unit(28, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/citrine/front.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(3, "feet"),
  7702. default: true
  7703. }
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7708. {
  7709. front: {
  7710. height: math.unit(14, "feet"),
  7711. weight: math.unit(1450, "kg"),
  7712. capacity: math.unit(15, "people"),
  7713. name: "Front",
  7714. image: {
  7715. source: "./media/characters/aura-starwind/front.svg",
  7716. extra: 1455 / 1335
  7717. }
  7718. },
  7719. side: {
  7720. height: math.unit(14, "feet"),
  7721. weight: math.unit(1450, "kg"),
  7722. capacity: math.unit(15, "people"),
  7723. name: "Side",
  7724. image: {
  7725. source: "./media/characters/aura-starwind/side.svg",
  7726. extra: 1654 / 1497
  7727. }
  7728. },
  7729. taur: {
  7730. height: math.unit(18, "feet"),
  7731. weight: math.unit(5500, "kg"),
  7732. capacity: math.unit(50, "people"),
  7733. name: "Taur",
  7734. image: {
  7735. source: "./media/characters/aura-starwind/taur.svg",
  7736. extra: 1760 / 1650
  7737. }
  7738. },
  7739. feral: {
  7740. height: math.unit(46, "feet"),
  7741. weight: math.unit(25000, "kg"),
  7742. capacity: math.unit(120, "people"),
  7743. name: "Feral",
  7744. image: {
  7745. source: "./media/characters/aura-starwind/feral.svg"
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(14, "feet"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(50, "meters")
  7758. },
  7759. {
  7760. name: "Megamacro",
  7761. height: math.unit(5000, "meters")
  7762. },
  7763. {
  7764. name: "Gigamacro",
  7765. height: math.unit(100000, "kilometers")
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7771. {
  7772. front: {
  7773. height: math.unit(2 + 7 / 12, "feet"),
  7774. weight: math.unit(32, "lbs"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/rivet/front.svg",
  7778. extra: 1716 / 1658,
  7779. bottom: 0.03
  7780. }
  7781. },
  7782. foot: {
  7783. height: math.unit(0.551, "feet"),
  7784. name: "Rivet's Foot",
  7785. image: {
  7786. source: "./media/characters/rivet/foot.svg"
  7787. },
  7788. rename: true
  7789. }
  7790. },
  7791. [
  7792. {
  7793. name: "Micro",
  7794. height: math.unit(1.5, "inches"),
  7795. },
  7796. {
  7797. name: "Normal",
  7798. height: math.unit(2 + 7 / 12, "feet"),
  7799. default: true
  7800. },
  7801. {
  7802. name: "Macro",
  7803. height: math.unit(85, "feet")
  7804. },
  7805. {
  7806. name: "Megamacro",
  7807. height: math.unit(2.2, "km")
  7808. }
  7809. ]
  7810. ))
  7811. characterMakers.push(() => makeCharacter(
  7812. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7813. {
  7814. front: {
  7815. height: math.unit(5 + 9 / 12, "feet"),
  7816. weight: math.unit(150, "lbs"),
  7817. name: "Front",
  7818. image: {
  7819. source: "./media/characters/coffee/front.svg",
  7820. extra: 3666 / 3032,
  7821. bottom: 0.04
  7822. }
  7823. },
  7824. foot: {
  7825. height: math.unit(1.29, "feet"),
  7826. name: "Foot",
  7827. image: {
  7828. source: "./media/characters/coffee/foot.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Micro",
  7835. height: math.unit(2, "inches"),
  7836. },
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(5 + 9 / 12, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(800, "feet")
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(25, "miles")
  7849. }
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(200, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/chari-gal/front.svg",
  7861. extra: 1568 / 1385,
  7862. bottom: 0.047
  7863. }
  7864. },
  7865. gigantamax: {
  7866. height: math.unit(6 * 16, "feet"),
  7867. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7868. name: "Gigantamax",
  7869. image: {
  7870. source: "./media/characters/chari-gal/gigantamax.svg",
  7871. extra: 1124 / 888,
  7872. bottom: 0.03
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(5 + 7 / 12, "feet")
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(200, "feet"),
  7884. default: true
  7885. }
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(6, "feet"),
  7893. weight: math.unit(150, "lbs"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/nova/front.svg",
  7897. extra: 5000 / 4722,
  7898. bottom: 0.02
  7899. }
  7900. }
  7901. },
  7902. [
  7903. {
  7904. name: "Micro-",
  7905. height: math.unit(0.8, "inches")
  7906. },
  7907. {
  7908. name: "Micro",
  7909. height: math.unit(2, "inches"),
  7910. default: true
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(3 + 1 / 12, "feet"),
  7919. weight: math.unit(21.7, "lbs"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/argent/front.svg",
  7923. extra: 1471 / 1331,
  7924. bottom: 100.8 / 1575.5
  7925. }
  7926. }
  7927. },
  7928. [
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(2, "inches")
  7932. },
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(3 + 1 / 12, "feet"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(120, "feet")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7946. {
  7947. lamp: {
  7948. height: math.unit(7 * 1559 / 989, "feet"),
  7949. name: "Magic Lamp",
  7950. image: {
  7951. source: "./media/characters/mira-al-cul/lamp.svg",
  7952. extra: 1617 / 1559
  7953. }
  7954. },
  7955. front: {
  7956. height: math.unit(7, "feet"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/mira-al-cul/front.svg",
  7960. extra: 1044 / 990
  7961. }
  7962. },
  7963. },
  7964. [
  7965. {
  7966. name: "Heavily Restricted",
  7967. height: math.unit(7 * 1559 / 989, "feet")
  7968. },
  7969. {
  7970. name: "Freshly Freed",
  7971. height: math.unit(50 * 1559 / 989, "feet")
  7972. },
  7973. {
  7974. name: "World Encompassing",
  7975. height: math.unit(10000 * 1559 / 989, "miles")
  7976. },
  7977. {
  7978. name: "Galactic",
  7979. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7980. },
  7981. {
  7982. name: "Palmed Universe",
  7983. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Multiversal Matriarch",
  7988. height: math.unit(8.87e10, "yottameters")
  7989. },
  7990. {
  7991. name: "Void Mother",
  7992. height: math.unit(3.14e110, "yottaparsecs")
  7993. },
  7994. {
  7995. name: "Toying with Transcendence",
  7996. height: math.unit(1e307, "meters")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8002. {
  8003. front: {
  8004. height: math.unit(17 + 1 / 12, "feet"),
  8005. weight: math.unit(476.2 * 5, "lbs"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/kuro-shi-uchū/front.svg",
  8009. extra: 2329 / 1835,
  8010. bottom: 0.02
  8011. }
  8012. },
  8013. },
  8014. [
  8015. {
  8016. name: "Micro",
  8017. height: math.unit(2, "inches")
  8018. },
  8019. {
  8020. name: "Normal",
  8021. height: math.unit(12, "meters")
  8022. },
  8023. {
  8024. name: "Planetary",
  8025. height: math.unit(0.00929, "AU"),
  8026. default: true
  8027. },
  8028. {
  8029. name: "Universal",
  8030. height: math.unit(20, "gigaparsecs")
  8031. },
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8036. {
  8037. front: {
  8038. height: math.unit(5 + 2 / 12, "feet"),
  8039. weight: math.unit(120, "lbs"),
  8040. name: "Front",
  8041. image: {
  8042. source: "./media/characters/katherine/front.svg",
  8043. extra: 2075 / 1969
  8044. }
  8045. },
  8046. dress: {
  8047. height: math.unit(5 + 2 / 12, "feet"),
  8048. weight: math.unit(120, "lbs"),
  8049. name: "Dress",
  8050. image: {
  8051. source: "./media/characters/katherine/dress.svg",
  8052. extra: 2258 / 2064
  8053. }
  8054. },
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(1, "inches"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Normal",
  8064. height: math.unit(5 + 2 / 12, "feet")
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(100, "meters")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(80, "miles")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(7 + 8 / 12, "feet"),
  8081. weight: math.unit(250, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/yevis/front.svg",
  8085. extra: 1938 / 1755
  8086. }
  8087. }
  8088. },
  8089. [
  8090. {
  8091. name: "Mortal",
  8092. height: math.unit(7 + 8 / 12, "feet")
  8093. },
  8094. {
  8095. name: "Battle",
  8096. height: math.unit(25 + 11 / 12, "feet")
  8097. },
  8098. {
  8099. name: "Wrath",
  8100. height: math.unit(1654 + 11 / 12, "feet")
  8101. },
  8102. {
  8103. name: "Planet Destroyer",
  8104. height: math.unit(12000, "miles")
  8105. },
  8106. {
  8107. name: "Galaxy Conqueror",
  8108. height: math.unit(1.45, "zettameters"),
  8109. default: true
  8110. },
  8111. {
  8112. name: "Universal War",
  8113. height: math.unit(184, "gigaparsecs")
  8114. },
  8115. {
  8116. name: "Eternity War",
  8117. height: math.unit(1.98e55, "yottaparsecs")
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(5 + 8 / 12, "feet"),
  8126. weight: math.unit(63, "kg"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/xavier/front.svg",
  8130. extra: 944 / 883
  8131. }
  8132. },
  8133. frontStretch: {
  8134. height: math.unit(5 + 8 / 12, "feet"),
  8135. weight: math.unit(63, "kg"),
  8136. name: "Stretching",
  8137. image: {
  8138. source: "./media/characters/xavier/front-stretch.svg",
  8139. extra: 962 / 820
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(5 + 8 / 12, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(100, "meters"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "McLargeHuge",
  8155. height: math.unit(10, "miles")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(5 + 5 / 12, "feet"),
  8164. weight: math.unit(150, "lb"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/joshii/front.svg",
  8168. extra: 765 / 653,
  8169. bottom: 51 / 816
  8170. }
  8171. },
  8172. foot: {
  8173. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8174. name: "Foot",
  8175. image: {
  8176. source: "./media/characters/joshii/foot.svg"
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Micro",
  8183. height: math.unit(2, "inches"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Normal",
  8188. height: math.unit(5 + 5 / 12, "feet")
  8189. },
  8190. {
  8191. name: "Macro",
  8192. height: math.unit(785, "feet")
  8193. },
  8194. {
  8195. name: "Megamacro",
  8196. height: math.unit(24.5, "miles")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(150, "lb"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/goddess-elizabeth/front.svg",
  8209. extra: 1800 / 1525,
  8210. bottom: 0.005
  8211. }
  8212. },
  8213. foot: {
  8214. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8215. name: "Foot",
  8216. image: {
  8217. source: "./media/characters/goddess-elizabeth/foot.svg"
  8218. }
  8219. },
  8220. mouth: {
  8221. height: math.unit(6, "feet"),
  8222. name: "Mouth",
  8223. image: {
  8224. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8225. }
  8226. },
  8227. },
  8228. [
  8229. {
  8230. name: "Micro",
  8231. height: math.unit(12, "feet")
  8232. },
  8233. {
  8234. name: "Normal",
  8235. height: math.unit(80, "miles"),
  8236. default: true
  8237. },
  8238. {
  8239. name: "Macro",
  8240. height: math.unit(15000, "parsecs")
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8246. {
  8247. front: {
  8248. height: math.unit(5 + 9 / 12, "feet"),
  8249. weight: math.unit(144, "lb"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/kara/front.svg"
  8253. }
  8254. },
  8255. feet: {
  8256. height: math.unit(6 / 6.765, "feet"),
  8257. name: "Kara's Feet",
  8258. rename: true,
  8259. image: {
  8260. source: "./media/characters/kara/feet.svg"
  8261. }
  8262. },
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(5 + 9 / 12, "feet")
  8268. },
  8269. {
  8270. name: "Macro",
  8271. height: math.unit(174, "feet"),
  8272. default: true
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(18, "feet"),
  8281. weight: math.unit(4050, "lb"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/tyrone/front.svg",
  8285. extra: 2405 / 2270,
  8286. bottom: 182 / 2587
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Normal",
  8293. height: math.unit(18, "feet"),
  8294. default: true
  8295. },
  8296. {
  8297. name: "Macro",
  8298. height: math.unit(300, "feet")
  8299. },
  8300. {
  8301. name: "Megamacro",
  8302. height: math.unit(15, "km")
  8303. },
  8304. {
  8305. name: "Gigamacro",
  8306. height: math.unit(500, "km")
  8307. },
  8308. {
  8309. name: "Teramacro",
  8310. height: math.unit(0.5, "gigameters")
  8311. },
  8312. {
  8313. name: "Omnimacro",
  8314. height: math.unit(1e252, "yottauniverse")
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(7 + 8 / 12, "feet"),
  8323. weight: math.unit(120, "lb"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/danny/front.svg",
  8327. extra: 1490 / 1350
  8328. }
  8329. },
  8330. back: {
  8331. height: math.unit(7 + 8 / 12, "feet"),
  8332. weight: math.unit(120, "lb"),
  8333. name: "Back",
  8334. image: {
  8335. source: "./media/characters/danny/back.svg",
  8336. extra: 1490 / 1350
  8337. }
  8338. },
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(7 + 8 / 12, "feet"),
  8344. default: true
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(3.5, "inches"),
  8353. weight: math.unit(19, "grams"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/mallow/front.svg",
  8357. extra: 471 / 431
  8358. }
  8359. },
  8360. back: {
  8361. height: math.unit(3.5, "inches"),
  8362. weight: math.unit(19, "grams"),
  8363. name: "Back",
  8364. image: {
  8365. source: "./media/characters/mallow/back.svg",
  8366. extra: 471 / 431
  8367. }
  8368. },
  8369. },
  8370. [
  8371. {
  8372. name: "Normal",
  8373. height: math.unit(3.5, "inches"),
  8374. default: true
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(9, "feet"),
  8383. weight: math.unit(230, "kg"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/starry-aqua/front.svg"
  8387. }
  8388. },
  8389. back: {
  8390. height: math.unit(9, "feet"),
  8391. weight: math.unit(230, "kg"),
  8392. name: "Back",
  8393. image: {
  8394. source: "./media/characters/starry-aqua/back.svg"
  8395. }
  8396. },
  8397. hand: {
  8398. height: math.unit(9 * 0.1168, "feet"),
  8399. name: "Hand",
  8400. image: {
  8401. source: "./media/characters/starry-aqua/hand.svg"
  8402. }
  8403. },
  8404. foot: {
  8405. height: math.unit(9 * 0.18, "feet"),
  8406. name: "Foot",
  8407. image: {
  8408. source: "./media/characters/starry-aqua/foot.svg"
  8409. }
  8410. }
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(3, "inches")
  8416. },
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(9, "feet")
  8420. },
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(300, "feet"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "Megamacro",
  8428. height: math.unit(3200, "feet")
  8429. }
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(230, "lb"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/luka/front.svg",
  8441. extra: 1,
  8442. bottom: 0.025
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(12 + 8 / 12, "feet"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Minimacro",
  8454. height: math.unit(20, "feet")
  8455. },
  8456. {
  8457. name: "Macro",
  8458. height: math.unit(250, "feet")
  8459. },
  8460. {
  8461. name: "Megamacro",
  8462. height: math.unit(5, "miles")
  8463. },
  8464. {
  8465. name: "Gigamacro",
  8466. height: math.unit(8000, "miles")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(150, "lb"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/natalie-nightring/front.svg",
  8479. extra: 1,
  8480. bottom: 0.06
  8481. }
  8482. },
  8483. },
  8484. [
  8485. {
  8486. name: "Uh Oh",
  8487. height: math.unit(0.1, "mm")
  8488. },
  8489. {
  8490. name: "Small",
  8491. height: math.unit(3, "inches")
  8492. },
  8493. {
  8494. name: "Human Scale",
  8495. height: math.unit(6, "feet")
  8496. },
  8497. {
  8498. name: "Librarian",
  8499. height: math.unit(50, "feet"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "Immense",
  8504. height: math.unit(200, "miles")
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(6, "feet"),
  8513. weight: math.unit(180, "lbs"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/danni-rosie/front.svg",
  8517. extra: 1260 / 1128,
  8518. bottom: 0.022
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Micro",
  8525. height: math.unit(2, "inches"),
  8526. default: true
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(5 + 9 / 12, "feet"),
  8535. weight: math.unit(220, "lb"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/samantha-kruse/front.svg",
  8539. extra: (985 / 935),
  8540. bottom: 0.03
  8541. }
  8542. },
  8543. frontUndressed: {
  8544. height: math.unit(5 + 9 / 12, "feet"),
  8545. weight: math.unit(220, "lb"),
  8546. name: "Front (Undressed)",
  8547. image: {
  8548. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8549. extra: (973 / 923),
  8550. bottom: 0.025
  8551. }
  8552. },
  8553. fat: {
  8554. height: math.unit(5 + 9 / 12, "feet"),
  8555. weight: math.unit(900, "lb"),
  8556. name: "Front (Fat)",
  8557. image: {
  8558. source: "./media/characters/samantha-kruse/fat.svg",
  8559. extra: 2688 / 2561
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(5 + 9 / 12, "feet"),
  8567. default: true
  8568. }
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8573. {
  8574. back: {
  8575. height: math.unit(5 + 4 / 12, "feet"),
  8576. weight: math.unit(4963, "lb"),
  8577. name: "Back",
  8578. image: {
  8579. source: "./media/characters/amelia-rosie/back.svg",
  8580. extra: 1113 / 963,
  8581. bottom: 0.01
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Level 0",
  8588. height: math.unit(5 + 4 / 12, "feet")
  8589. },
  8590. {
  8591. name: "Level 1",
  8592. height: math.unit(164597, "feet"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Level 2",
  8597. height: math.unit(956243, "miles")
  8598. },
  8599. {
  8600. name: "Level 3",
  8601. height: math.unit(29421709423, "miles")
  8602. },
  8603. {
  8604. name: "Level 4",
  8605. height: math.unit(154, "lightyears")
  8606. },
  8607. {
  8608. name: "Level 5",
  8609. height: math.unit(4738272, "lightyears")
  8610. },
  8611. {
  8612. name: "Level 6",
  8613. height: math.unit(145787152896, "lightyears")
  8614. },
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(5 + 11 / 12, "feet"),
  8622. weight: math.unit(65, "kg"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/rook-kitara/front.svg",
  8626. extra: 1347 / 1274,
  8627. bottom: 0.005
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Totally Unfair",
  8634. height: math.unit(1.8, "mm")
  8635. },
  8636. {
  8637. name: "Lap Rookie",
  8638. height: math.unit(1.4, "feet")
  8639. },
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(5 + 11 / 12, "feet"),
  8643. default: true
  8644. },
  8645. {
  8646. name: "How Did This Happen",
  8647. height: math.unit(80, "miles")
  8648. }
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(7, "feet"),
  8656. weight: math.unit(300, "lb"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/pisces/front.svg",
  8660. extra: 2255 / 2115,
  8661. bottom: 0.03
  8662. }
  8663. },
  8664. back: {
  8665. height: math.unit(7, "feet"),
  8666. weight: math.unit(300, "lb"),
  8667. name: "Back",
  8668. image: {
  8669. source: "./media/characters/pisces/back.svg",
  8670. extra: 2146 / 2055,
  8671. bottom: 0.04
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(7, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Swimming Pool",
  8683. height: math.unit(12.2, "meters")
  8684. },
  8685. {
  8686. name: "Olympic Swimming Pool",
  8687. height: math.unit(56.3, "meters")
  8688. },
  8689. {
  8690. name: "Lake Superior",
  8691. height: math.unit(93900, "meters")
  8692. },
  8693. {
  8694. name: "Mediterranean Sea",
  8695. height: math.unit(644457, "meters")
  8696. },
  8697. {
  8698. name: "World's Oceans",
  8699. height: math.unit(4567491, "meters")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(2.3, "meters"),
  8708. weight: math.unit(120, "kg"),
  8709. name: "Front",
  8710. image: {
  8711. source: "./media/characters/zelas/front.svg"
  8712. }
  8713. },
  8714. side: {
  8715. height: math.unit(2.3, "meters"),
  8716. weight: math.unit(120, "kg"),
  8717. name: "Side",
  8718. image: {
  8719. source: "./media/characters/zelas/side.svg"
  8720. }
  8721. },
  8722. back: {
  8723. height: math.unit(2.3, "meters"),
  8724. weight: math.unit(120, "kg"),
  8725. name: "Back",
  8726. image: {
  8727. source: "./media/characters/zelas/back.svg"
  8728. }
  8729. },
  8730. foot: {
  8731. height: math.unit(1.116, "feet"),
  8732. name: "Foot",
  8733. image: {
  8734. source: "./media/characters/zelas/foot.svg"
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(2.3, "meters")
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(30, "meters"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(1, "inch"),
  8755. weight: math.unit(0.21, "grams"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/talbot/front.svg",
  8759. extra: 594 / 544
  8760. }
  8761. },
  8762. },
  8763. [
  8764. {
  8765. name: "Micro",
  8766. height: math.unit(1, "inch"),
  8767. default: true
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8773. {
  8774. front: {
  8775. height: math.unit(3 + 3 / 12, "feet"),
  8776. weight: math.unit(51.8, "lb"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/fliss/front.svg",
  8780. extra: 840 / 640
  8781. }
  8782. },
  8783. },
  8784. [
  8785. {
  8786. name: "Teeny Tiny",
  8787. height: math.unit(1, "mm")
  8788. },
  8789. {
  8790. name: "Small",
  8791. height: math.unit(1, "inch"),
  8792. default: true
  8793. },
  8794. {
  8795. name: "Standard Sylveon",
  8796. height: math.unit(3 + 3 / 12, "feet")
  8797. },
  8798. {
  8799. name: "Large Nuisance",
  8800. height: math.unit(33, "feet")
  8801. },
  8802. {
  8803. name: "City Filler",
  8804. height: math.unit(3000, "feet")
  8805. },
  8806. {
  8807. name: "New Horizon",
  8808. height: math.unit(6000, "miles")
  8809. },
  8810. ]
  8811. ))
  8812. characterMakers.push(() => makeCharacter(
  8813. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8814. {
  8815. front: {
  8816. height: math.unit(5, "cm"),
  8817. weight: math.unit(1.94, "g"),
  8818. name: "Front",
  8819. image: {
  8820. source: "./media/characters/fleta/front.svg",
  8821. extra: 835 / 803
  8822. }
  8823. },
  8824. back: {
  8825. height: math.unit(5, "cm"),
  8826. weight: math.unit(1.94, "g"),
  8827. name: "Back",
  8828. image: {
  8829. source: "./media/characters/fleta/back.svg",
  8830. extra: 835 / 803
  8831. }
  8832. },
  8833. },
  8834. [
  8835. {
  8836. name: "Micro",
  8837. height: math.unit(5, "cm"),
  8838. default: true
  8839. },
  8840. ]
  8841. ))
  8842. characterMakers.push(() => makeCharacter(
  8843. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8844. {
  8845. front: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(225, "lb"),
  8848. name: "Front",
  8849. image: {
  8850. source: "./media/characters/dominic/front.svg",
  8851. extra: 1770 / 1620,
  8852. bottom: 0.025
  8853. }
  8854. },
  8855. back: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(225, "lb"),
  8858. name: "Back",
  8859. image: {
  8860. source: "./media/characters/dominic/back.svg",
  8861. extra: 1745 / 1620,
  8862. bottom: 0.065
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Nano",
  8869. height: math.unit(0.1, "mm")
  8870. },
  8871. {
  8872. name: "Micro-",
  8873. height: math.unit(1, "mm")
  8874. },
  8875. {
  8876. name: "Micro",
  8877. height: math.unit(4, "inches")
  8878. },
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(6 + 4 / 12, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Macro",
  8886. height: math.unit(115, "feet")
  8887. },
  8888. {
  8889. name: "Macro+",
  8890. height: math.unit(955, "feet")
  8891. },
  8892. {
  8893. name: "Megamacro",
  8894. height: math.unit(8990, "feet")
  8895. },
  8896. {
  8897. name: "Gigmacro",
  8898. height: math.unit(9310, "miles")
  8899. },
  8900. {
  8901. name: "Teramacro",
  8902. height: math.unit(1567005010, "miles")
  8903. },
  8904. {
  8905. name: "Examacro",
  8906. height: math.unit(1425, "parsecs")
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(400, "feet"),
  8915. weight: math.unit(44444444, "lb"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/major-colonel/front.svg"
  8919. }
  8920. },
  8921. back: {
  8922. height: math.unit(400, "feet"),
  8923. weight: math.unit(44444444, "lb"),
  8924. name: "Back",
  8925. image: {
  8926. source: "./media/characters/major-colonel/back.svg"
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(400, "feet"),
  8934. default: true
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8940. {
  8941. catFront: {
  8942. height: math.unit(6, "feet"),
  8943. weight: math.unit(120, "lb"),
  8944. name: "Front (Cat Side)",
  8945. image: {
  8946. source: "./media/characters/axel-lycan/cat-front.svg",
  8947. extra: 430 / 402,
  8948. bottom: 43 / 472.35
  8949. }
  8950. },
  8951. catBack: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(120, "lb"),
  8954. name: "Back (Cat Side)",
  8955. image: {
  8956. source: "./media/characters/axel-lycan/cat-back.svg",
  8957. extra: 447 / 419,
  8958. bottom: 23.3 / 469
  8959. }
  8960. },
  8961. wolfFront: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(120, "lb"),
  8964. name: "Front (Wolf Side)",
  8965. image: {
  8966. source: "./media/characters/axel-lycan/wolf-front.svg",
  8967. extra: 485 / 456,
  8968. bottom: 19 / 504
  8969. }
  8970. },
  8971. wolfBack: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(120, "lb"),
  8974. name: "Back (Wolf Side)",
  8975. image: {
  8976. source: "./media/characters/axel-lycan/wolf-back.svg",
  8977. extra: 475 / 438,
  8978. bottom: 39.2 / 514
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Macro",
  8985. height: math.unit(1, "km"),
  8986. default: true
  8987. },
  8988. ]
  8989. ))
  8990. characterMakers.push(() => makeCharacter(
  8991. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8992. {
  8993. front: {
  8994. height: math.unit(5 + 9 / 12, "feet"),
  8995. weight: math.unit(175, "lb"),
  8996. name: "Front",
  8997. image: {
  8998. source: "./media/characters/vanrel-hyena/front.svg",
  8999. extra: 1086 / 1010,
  9000. bottom: 0.04
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Normal",
  9007. height: math.unit(5 + 9 / 12, "feet"),
  9008. default: true
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(103, "lb"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/abbott-absol/front.svg",
  9021. extra: 2010 / 1842
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Megamicro",
  9028. height: math.unit(0.1, "mm")
  9029. },
  9030. {
  9031. name: "Micro",
  9032. height: math.unit(1, "inch")
  9033. },
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(6, "feet"),
  9037. default: true
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(264, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/hector/front.svg",
  9050. extra: 2280 / 2130,
  9051. bottom: 0.07
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(12.25, "foot"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Macro",
  9063. height: math.unit(160, "feet")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(150, "lb"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/sal/front.svg",
  9076. extra: 1846 / 1699,
  9077. bottom: 0.04
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Megamacro",
  9084. height: math.unit(10, "miles"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9091. {
  9092. front: {
  9093. height: math.unit(3, "meters"),
  9094. weight: math.unit(450, "kg"),
  9095. name: "front",
  9096. image: {
  9097. source: "./media/characters/ranger/front.svg",
  9098. extra: 2401 / 2243,
  9099. bottom: 0.05
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Normal",
  9106. height: math.unit(3, "meters"),
  9107. default: true
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(14, "feet"),
  9116. weight: math.unit(800, "kg"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/theresa/front.svg",
  9120. extra: 3575 / 3346,
  9121. bottom: 0.03
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(14, "feet"),
  9129. default: true
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9135. {
  9136. front: {
  9137. height: math.unit(6, "feet"),
  9138. weight: math.unit(3, "kg"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/ine/front.svg",
  9142. extra: 678 / 539,
  9143. bottom: 0.023
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(2.265, "feet"),
  9151. default: true
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(5, "feet"),
  9160. weight: math.unit(30, "kg"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/vial/front.svg",
  9164. extra: 1365 / 1277,
  9165. bottom: 0.04
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(5, "feet"),
  9173. default: true
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9179. {
  9180. side: {
  9181. height: math.unit(3.4, "meters"),
  9182. weight: math.unit(1000, "lb"),
  9183. name: "Side",
  9184. image: {
  9185. source: "./media/characters/rovoska/side.svg",
  9186. extra: 4403 / 1515
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(3.4, "meters"),
  9194. default: true
  9195. },
  9196. ]
  9197. ))
  9198. characterMakers.push(() => makeCharacter(
  9199. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9200. {
  9201. front: {
  9202. height: math.unit(8, "feet"),
  9203. weight: math.unit(315, "lb"),
  9204. name: "Front",
  9205. image: {
  9206. source: "./media/characters/gunner-rotthbauer/front.svg"
  9207. }
  9208. },
  9209. back: {
  9210. height: math.unit(8, "feet"),
  9211. weight: math.unit(315, "lb"),
  9212. name: "Back",
  9213. image: {
  9214. source: "./media/characters/gunner-rotthbauer/back.svg"
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Micro",
  9221. height: math.unit(3.5, "inches")
  9222. },
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(8, "feet"),
  9226. default: true
  9227. },
  9228. {
  9229. name: "Macro",
  9230. height: math.unit(250, "feet")
  9231. },
  9232. {
  9233. name: "Megamacro",
  9234. height: math.unit(1, "AU")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(5 + 5 / 12, "feet"),
  9243. weight: math.unit(140, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/allatia/front.svg",
  9247. extra: 1227 / 1180,
  9248. bottom: 0.027
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(5 + 5 / 12, "feet")
  9256. },
  9257. {
  9258. name: "Macro",
  9259. height: math.unit(250, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Megamacro",
  9264. height: math.unit(8, "miles")
  9265. }
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(6, "feet"),
  9273. weight: math.unit(120, "lb"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/tene/front.svg",
  9277. extra: 1728 / 1578,
  9278. bottom: 0.022
  9279. }
  9280. },
  9281. stomping: {
  9282. height: math.unit(2.025, "meters"),
  9283. weight: math.unit(120, "lb"),
  9284. name: "Stomping",
  9285. image: {
  9286. source: "./media/characters/tene/stomping.svg",
  9287. extra: 938 / 873,
  9288. bottom: 0.01
  9289. }
  9290. },
  9291. sitting: {
  9292. height: math.unit(1, "meter"),
  9293. weight: math.unit(120, "lb"),
  9294. name: "Sitting",
  9295. image: {
  9296. source: "./media/characters/tene/sitting.svg",
  9297. extra: 437 / 415,
  9298. bottom: 0.1
  9299. }
  9300. },
  9301. feral: {
  9302. height: math.unit(3.9, "feet"),
  9303. weight: math.unit(250, "lb"),
  9304. name: "Feral",
  9305. image: {
  9306. source: "./media/characters/tene/feral.svg",
  9307. extra: 717 / 458,
  9308. bottom: 0.179
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(6, "feet")
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(300, "feet"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(5, "miles")
  9325. },
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9330. {
  9331. side: {
  9332. height: math.unit(6, "feet"),
  9333. name: "Side",
  9334. image: {
  9335. source: "./media/characters/evander/side.svg",
  9336. extra: 877 / 477
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Normal",
  9343. height: math.unit(0.83, "meters"),
  9344. default: true
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(12, "feet"),
  9353. weight: math.unit(1000, "lb"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9357. extra: 1762 / 1611
  9358. }
  9359. },
  9360. back: {
  9361. height: math.unit(12, "feet"),
  9362. weight: math.unit(1000, "lb"),
  9363. name: "Back",
  9364. image: {
  9365. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9366. extra: 1762 / 1611
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(12, "feet"),
  9374. default: true
  9375. },
  9376. {
  9377. name: "Kaiju",
  9378. height: math.unit(150, "feet")
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9384. {
  9385. front: {
  9386. height: math.unit(6, "feet"),
  9387. weight: math.unit(150, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/zero-alurus/front.svg"
  9391. }
  9392. },
  9393. back: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(150, "lb"),
  9396. name: "Back",
  9397. image: {
  9398. source: "./media/characters/zero-alurus/back.svg"
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(5 + 10 / 12, "feet")
  9406. },
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(60, "feet"),
  9410. default: true
  9411. },
  9412. {
  9413. name: "Macro+",
  9414. height: math.unit(450, "feet")
  9415. },
  9416. ]
  9417. ))
  9418. characterMakers.push(() => makeCharacter(
  9419. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9420. {
  9421. front: {
  9422. height: math.unit(6, "feet"),
  9423. weight: math.unit(200, "lb"),
  9424. name: "Front",
  9425. image: {
  9426. source: "./media/characters/mega-shi/front.svg",
  9427. extra: 1279 / 1250,
  9428. bottom: 0.02
  9429. }
  9430. },
  9431. back: {
  9432. height: math.unit(6, "feet"),
  9433. weight: math.unit(200, "lb"),
  9434. name: "Back",
  9435. image: {
  9436. source: "./media/characters/mega-shi/back.svg",
  9437. extra: 1279 / 1250,
  9438. bottom: 0.02
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Micro",
  9445. height: math.unit(16 + 6 / 12, "feet")
  9446. },
  9447. {
  9448. name: "Third Dimension",
  9449. height: math.unit(40, "meters")
  9450. },
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(660, "feet"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Megamacro",
  9458. height: math.unit(10, "miles")
  9459. },
  9460. {
  9461. name: "Planetary Launch",
  9462. height: math.unit(500, "miles")
  9463. },
  9464. {
  9465. name: "Interstellar",
  9466. height: math.unit(1e9, "miles")
  9467. },
  9468. {
  9469. name: "Leaving the Universe",
  9470. height: math.unit(1, "gigaparsec")
  9471. },
  9472. {
  9473. name: "Travelling Universes",
  9474. height: math.unit(30e15, "parsecs")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(150, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/odyssey/front.svg",
  9487. extra: 1782 / 1582,
  9488. bottom: 0.01
  9489. }
  9490. },
  9491. side: {
  9492. height: math.unit(5.7, "feet"),
  9493. weight: math.unit(140, "lb"),
  9494. name: "Side",
  9495. image: {
  9496. source: "./media/characters/odyssey/side.svg",
  9497. extra: 6462 / 5700
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(5 + 4 / 12, "feet")
  9505. },
  9506. {
  9507. name: "Macro",
  9508. height: math.unit(1, "km")
  9509. },
  9510. {
  9511. name: "Megamacro",
  9512. height: math.unit(3000, "km")
  9513. },
  9514. {
  9515. name: "Gigamacro",
  9516. height: math.unit(1, "AU"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Omniversal",
  9521. height: math.unit(100e14, "lightyears")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(300, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/mekuto/front.svg",
  9534. extra: 921 / 832,
  9535. bottom: 0.03
  9536. }
  9537. },
  9538. hand: {
  9539. height: math.unit(6 / 10.24, "feet"),
  9540. name: "Hand",
  9541. image: {
  9542. source: "./media/characters/mekuto/hand.svg"
  9543. }
  9544. },
  9545. foot: {
  9546. height: math.unit(6 / 5.05, "feet"),
  9547. name: "Foot",
  9548. image: {
  9549. source: "./media/characters/mekuto/foot.svg"
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Minimicro",
  9556. height: math.unit(0.2, "inches")
  9557. },
  9558. {
  9559. name: "Micro",
  9560. height: math.unit(1.5, "inches")
  9561. },
  9562. {
  9563. name: "Normal",
  9564. height: math.unit(5 + 11 / 12, "feet"),
  9565. default: true
  9566. },
  9567. {
  9568. name: "Minimacro",
  9569. height: math.unit(17 + 9 / 12, "feet")
  9570. },
  9571. {
  9572. name: "Macro",
  9573. height: math.unit(177.5, "feet")
  9574. },
  9575. {
  9576. name: "Megamacro",
  9577. height: math.unit(152, "miles")
  9578. },
  9579. ]
  9580. ))
  9581. characterMakers.push(() => makeCharacter(
  9582. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9583. {
  9584. front: {
  9585. height: math.unit(6.5, "inches"),
  9586. weight: math.unit(13, "oz"),
  9587. name: "Front",
  9588. image: {
  9589. source: "./media/characters/dafydd-tomos/front.svg",
  9590. extra: 2990 / 2603,
  9591. bottom: 0.03
  9592. }
  9593. },
  9594. },
  9595. [
  9596. {
  9597. name: "Micro",
  9598. height: math.unit(6.5, "inches"),
  9599. default: true
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9605. {
  9606. front: {
  9607. height: math.unit(6, "feet"),
  9608. weight: math.unit(150, "lb"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/splinter/front.svg",
  9612. extra: 2990 / 2882,
  9613. bottom: 0.04
  9614. }
  9615. },
  9616. back: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(150, "lb"),
  9619. name: "Back",
  9620. image: {
  9621. source: "./media/characters/splinter/back.svg",
  9622. extra: 2990 / 2882,
  9623. bottom: 0.04
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(6, "feet")
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(230, "meters"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(4 + 10 / 12, "feet"),
  9644. weight: math.unit(480, "lb"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/snow-gabumon/front.svg",
  9648. extra: 1140 / 963,
  9649. bottom: 0.058
  9650. }
  9651. },
  9652. back: {
  9653. height: math.unit(4 + 10 / 12, "feet"),
  9654. weight: math.unit(480, "lb"),
  9655. name: "Back",
  9656. image: {
  9657. source: "./media/characters/snow-gabumon/back.svg",
  9658. extra: 1115 / 962,
  9659. bottom: 0.041
  9660. }
  9661. },
  9662. frontUndresed: {
  9663. height: math.unit(4 + 10 / 12, "feet"),
  9664. weight: math.unit(480, "lb"),
  9665. name: "Front (Undressed)",
  9666. image: {
  9667. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9668. extra: 1061 / 960,
  9669. bottom: 0.045
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(1, "inch")
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(4 + 10 / 12, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Macro",
  9685. height: math.unit(200, "feet")
  9686. },
  9687. {
  9688. name: "Megamacro",
  9689. height: math.unit(120, "miles")
  9690. },
  9691. {
  9692. name: "Gigamacro",
  9693. height: math.unit(9800, "miles")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(1.7, "meters"),
  9702. weight: math.unit(140, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/moody/front.svg",
  9706. extra: 3226 / 3007,
  9707. bottom: 0.087
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Micro",
  9714. height: math.unit(1, "mm")
  9715. },
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(1.7, "meters"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(80, "meters")
  9724. },
  9725. {
  9726. name: "Macro+",
  9727. height: math.unit(500, "meters")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(6, "feet"),
  9736. weight: math.unit(150, "lb"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/zyas/front.svg",
  9740. extra: 1180 / 1120,
  9741. bottom: 0.045
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(10, "feet"),
  9749. default: true
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(500, "feet")
  9754. },
  9755. {
  9756. name: "Megamacro",
  9757. height: math.unit(5, "miles")
  9758. },
  9759. {
  9760. name: "Teramacro",
  9761. height: math.unit(150000, "miles")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(150, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/cuon/front.svg",
  9774. extra: 1390 / 1320,
  9775. bottom: 0.008
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Micro",
  9782. height: math.unit(3, "inches")
  9783. },
  9784. {
  9785. name: "Normal",
  9786. height: math.unit(18 + 9 / 12, "feet"),
  9787. default: true
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(360, "feet")
  9792. },
  9793. {
  9794. name: "Megamacro",
  9795. height: math.unit(360, "miles")
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(2.4, "meters"),
  9804. weight: math.unit(70, "kg"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/nyanuxk/front.svg",
  9808. extra: 1172 / 1084,
  9809. bottom: 0.065
  9810. }
  9811. },
  9812. side: {
  9813. height: math.unit(2.4, "meters"),
  9814. weight: math.unit(70, "kg"),
  9815. name: "Side",
  9816. image: {
  9817. source: "./media/characters/nyanuxk/side.svg",
  9818. extra: 1190 / 1132,
  9819. bottom: 0.007
  9820. }
  9821. },
  9822. back: {
  9823. height: math.unit(2.4, "meters"),
  9824. weight: math.unit(70, "kg"),
  9825. name: "Back",
  9826. image: {
  9827. source: "./media/characters/nyanuxk/back.svg",
  9828. extra: 1200 / 1141,
  9829. bottom: 0.015
  9830. }
  9831. },
  9832. foot: {
  9833. height: math.unit(0.52, "meters"),
  9834. name: "Foot",
  9835. image: {
  9836. source: "./media/characters/nyanuxk/foot.svg"
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Micro",
  9843. height: math.unit(2, "cm")
  9844. },
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(2.4, "meters"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Smaller Macro",
  9852. height: math.unit(120, "meters")
  9853. },
  9854. {
  9855. name: "Bigger Macro",
  9856. height: math.unit(1.2, "km")
  9857. },
  9858. {
  9859. name: "Megamacro",
  9860. height: math.unit(15, "kilometers")
  9861. },
  9862. {
  9863. name: "Gigamacro",
  9864. height: math.unit(2000, "km")
  9865. },
  9866. {
  9867. name: "Teramacro",
  9868. height: math.unit(500000, "km")
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9874. {
  9875. side: {
  9876. height: math.unit(6, "feet"),
  9877. name: "Side",
  9878. image: {
  9879. source: "./media/characters/ailbhe/side.svg",
  9880. extra: 757 / 464,
  9881. bottom: 0.041
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(1.07, "meters"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(6, "feet"),
  9898. weight: math.unit(120, "kg"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/zevulfius/front.svg",
  9902. extra: 965 / 903
  9903. }
  9904. },
  9905. side: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(120, "kg"),
  9908. name: "Side",
  9909. image: {
  9910. source: "./media/characters/zevulfius/side.svg",
  9911. extra: 939 / 900
  9912. }
  9913. },
  9914. back: {
  9915. height: math.unit(6, "feet"),
  9916. weight: math.unit(120, "kg"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/zevulfius/back.svg",
  9920. extra: 918 / 854,
  9921. bottom: 0.005
  9922. }
  9923. },
  9924. foot: {
  9925. height: math.unit(6 / 3.72, "feet"),
  9926. name: "Foot",
  9927. image: {
  9928. source: "./media/characters/zevulfius/foot.svg"
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Macro",
  9935. height: math.unit(750, "meters")
  9936. },
  9937. {
  9938. name: "Megamacro",
  9939. height: math.unit(20, "km"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Gigamacro",
  9944. height: math.unit(2000, "km")
  9945. },
  9946. {
  9947. name: "Teramacro",
  9948. height: math.unit(250000, "km")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(100, "feet"),
  9957. weight: math.unit(350, "kg"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/rikes/front.svg",
  9961. extra: 1565 / 1483,
  9962. bottom: 0.017
  9963. }
  9964. },
  9965. },
  9966. [
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(100, "feet"),
  9970. default: true
  9971. },
  9972. ]
  9973. ))
  9974. characterMakers.push(() => makeCharacter(
  9975. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9976. {
  9977. anthro: {
  9978. height: math.unit(8, "feet"),
  9979. weight: math.unit(120, "kg"),
  9980. name: "Anthro",
  9981. image: {
  9982. source: "./media/characters/adam-silver-mane/anthro.svg",
  9983. extra: 5743 / 5339,
  9984. bottom: 0.07
  9985. }
  9986. },
  9987. taur: {
  9988. height: math.unit(16, "feet"),
  9989. weight: math.unit(1500, "kg"),
  9990. name: "Taur",
  9991. image: {
  9992. source: "./media/characters/adam-silver-mane/taur.svg",
  9993. extra: 1713 / 1571,
  9994. bottom: 0.01
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Normal",
  10001. height: math.unit(8, "feet")
  10002. },
  10003. {
  10004. name: "Minimacro",
  10005. height: math.unit(80, "feet")
  10006. },
  10007. {
  10008. name: "Macro",
  10009. height: math.unit(800, "feet"),
  10010. default: true
  10011. },
  10012. {
  10013. name: "Megamacro",
  10014. height: math.unit(8000, "feet")
  10015. },
  10016. {
  10017. name: "Gigamacro",
  10018. height: math.unit(800, "miles")
  10019. },
  10020. {
  10021. name: "Teramacro",
  10022. height: math.unit(80000, "miles")
  10023. },
  10024. {
  10025. name: "Celestial",
  10026. height: math.unit(8e6, "miles")
  10027. },
  10028. {
  10029. name: "Star Dragon",
  10030. height: math.unit(800000, "parsecs")
  10031. },
  10032. {
  10033. name: "Godly",
  10034. height: math.unit(800, "teraparsecs")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/ky'owin/front.svg",
  10047. extra: 3888 / 3068,
  10048. bottom: 0.015
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(6 + 8 / 12, "feet")
  10056. },
  10057. {
  10058. name: "Large",
  10059. height: math.unit(68, "feet")
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(132, "feet")
  10064. },
  10065. {
  10066. name: "Macro+",
  10067. height: math.unit(340, "feet")
  10068. },
  10069. {
  10070. name: "Macro++",
  10071. height: math.unit(680, "feet"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Megamacro",
  10076. height: math.unit(1, "mile")
  10077. },
  10078. {
  10079. name: "Megamacro+",
  10080. height: math.unit(10, "miles")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(4, "feet"),
  10089. weight: math.unit(50, "lb"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/mal/front.svg",
  10093. extra: 785 / 724,
  10094. bottom: 0.07
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Micro",
  10101. height: math.unit(4, "inches")
  10102. },
  10103. {
  10104. name: "Normal",
  10105. height: math.unit(4, "feet"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(200, "feet")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/jordan-deware/front.svg",
  10123. extra: 1191 / 1012
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Nano",
  10130. height: math.unit(0.01, "mm")
  10131. },
  10132. {
  10133. name: "Minimicro",
  10134. height: math.unit(1, "mm")
  10135. },
  10136. {
  10137. name: "Micro",
  10138. height: math.unit(0.5, "inches")
  10139. },
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(4, "feet"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Minimacro",
  10147. height: math.unit(40, "meters")
  10148. },
  10149. {
  10150. name: "Small Macro",
  10151. height: math.unit(400, "meters")
  10152. },
  10153. {
  10154. name: "Macro",
  10155. height: math.unit(4, "miles")
  10156. },
  10157. {
  10158. name: "Megamacro",
  10159. height: math.unit(40, "miles")
  10160. },
  10161. {
  10162. name: "Megamacro+",
  10163. height: math.unit(400, "miles")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(400000, "miles")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10173. {
  10174. side: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(150, "lb"),
  10177. name: "Side",
  10178. image: {
  10179. source: "./media/characters/kimiko/side.svg",
  10180. extra: 600 / 358
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Normal",
  10187. height: math.unit(15, "feet"),
  10188. default: true
  10189. },
  10190. {
  10191. name: "Macro",
  10192. height: math.unit(220, "feet")
  10193. },
  10194. {
  10195. name: "Macro+",
  10196. height: math.unit(1450, "feet")
  10197. },
  10198. {
  10199. name: "Megamacro",
  10200. height: math.unit(11500, "feet")
  10201. },
  10202. {
  10203. name: "Gigamacro",
  10204. height: math.unit(9500, "miles")
  10205. },
  10206. {
  10207. name: "Teramacro",
  10208. height: math.unit(2208005005, "miles")
  10209. },
  10210. {
  10211. name: "Examacro",
  10212. height: math.unit(2750, "parsecs")
  10213. },
  10214. {
  10215. name: "Zettamacro",
  10216. height: math.unit(101500, "parsecs")
  10217. },
  10218. ]
  10219. ))
  10220. characterMakers.push(() => makeCharacter(
  10221. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10222. {
  10223. front: {
  10224. height: math.unit(6, "feet"),
  10225. weight: math.unit(70, "kg"),
  10226. name: "Front",
  10227. image: {
  10228. source: "./media/characters/andrew-sleepy/front.svg"
  10229. }
  10230. },
  10231. side: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(70, "kg"),
  10234. name: "Side",
  10235. image: {
  10236. source: "./media/characters/andrew-sleepy/side.svg"
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Micro",
  10243. height: math.unit(1, "mm"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(150, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/judio/front.svg",
  10257. extra: 1258 / 1110
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Normal",
  10264. height: math.unit(5 + 6 / 12, "feet")
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(1000, "feet"),
  10269. default: true
  10270. },
  10271. {
  10272. name: "Megamacro",
  10273. height: math.unit(10, "miles")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(6, "feet"),
  10282. weight: math.unit(68, "kg"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/nomaxice/front.svg",
  10286. extra: 1498 / 1073,
  10287. bottom: 0.075
  10288. }
  10289. },
  10290. foot: {
  10291. height: math.unit(1.1, "feet"),
  10292. name: "Foot",
  10293. image: {
  10294. source: "./media/characters/nomaxice/foot.svg"
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(8, "cm")
  10302. },
  10303. {
  10304. name: "Norm",
  10305. height: math.unit(1.82, "m")
  10306. },
  10307. {
  10308. name: "Norm+",
  10309. height: math.unit(8.8, "feet")
  10310. },
  10311. {
  10312. name: "Big",
  10313. height: math.unit(8, "meters"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Macro",
  10318. height: math.unit(18, "meters")
  10319. },
  10320. {
  10321. name: "Macro+",
  10322. height: math.unit(88, "meters")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(12, "feet"),
  10331. weight: math.unit(1.5, "tons"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/dydros/front.svg",
  10335. extra: 863 / 800,
  10336. bottom: 0.015
  10337. }
  10338. },
  10339. back: {
  10340. height: math.unit(12, "feet"),
  10341. weight: math.unit(1.5, "tons"),
  10342. name: "Back",
  10343. image: {
  10344. source: "./media/characters/dydros/back.svg",
  10345. extra: 900 / 843,
  10346. bottom: 0.005
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(12, "feet"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(100, "kg"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/riggi/front.svg",
  10367. extra: 5787 / 5303
  10368. }
  10369. },
  10370. hyper: {
  10371. height: math.unit(6 * 5 / 3, "feet"),
  10372. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10373. name: "Hyper",
  10374. image: {
  10375. source: "./media/characters/riggi/hyper.svg",
  10376. extra: 3595 / 3485
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Small Macro",
  10383. height: math.unit(50, "feet")
  10384. },
  10385. {
  10386. name: "Default",
  10387. height: math.unit(200, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Loom",
  10392. height: math.unit(10000, "feet")
  10393. },
  10394. {
  10395. name: "Cruising Altitude",
  10396. height: math.unit(30000, "feet")
  10397. },
  10398. {
  10399. name: "Megamacro",
  10400. height: math.unit(100, "miles")
  10401. },
  10402. {
  10403. name: "Continent Sized",
  10404. height: math.unit(2800, "miles")
  10405. },
  10406. {
  10407. name: "Earth Sized",
  10408. height: math.unit(8000, "miles")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(6, "feet"),
  10417. weight: math.unit(250, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/alexi/front.svg",
  10421. extra: 3483 / 3291,
  10422. bottom: 0.04
  10423. }
  10424. },
  10425. back: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(250, "lb"),
  10428. name: "Back",
  10429. image: {
  10430. source: "./media/characters/alexi/back.svg",
  10431. extra: 3533 / 3356,
  10432. bottom: 0.021
  10433. }
  10434. },
  10435. frontTransforming: {
  10436. height: math.unit(8.58, "feet"),
  10437. weight: math.unit(1300, "lb"),
  10438. name: "Transforming",
  10439. image: {
  10440. source: "./media/characters/alexi/front-transforming.svg",
  10441. extra: 437 / 409,
  10442. bottom: 19 / 458.66
  10443. }
  10444. },
  10445. frontTransformed: {
  10446. height: math.unit(12.5, "feet"),
  10447. weight: math.unit(4000, "lb"),
  10448. name: "Transformed",
  10449. image: {
  10450. source: "./media/characters/alexi/front-transformed.svg",
  10451. extra: 639 / 614,
  10452. bottom: 30.55 / 671
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(14, "feet"),
  10460. default: true
  10461. },
  10462. {
  10463. name: "Minimacro",
  10464. height: math.unit(30, "meters")
  10465. },
  10466. {
  10467. name: "Macro",
  10468. height: math.unit(500, "meters")
  10469. },
  10470. {
  10471. name: "Megamacro",
  10472. height: math.unit(9000, "km")
  10473. },
  10474. {
  10475. name: "Teramacro",
  10476. height: math.unit(384000, "km")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/kayroo/front.svg",
  10489. extra: 1153 / 1038,
  10490. bottom: 0.06
  10491. }
  10492. },
  10493. foot: {
  10494. height: math.unit(6, "feet"),
  10495. weight: math.unit(150, "lb"),
  10496. name: "Foot",
  10497. image: {
  10498. source: "./media/characters/kayroo/foot.svg"
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(8, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Minimacro",
  10510. height: math.unit(250, "feet")
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(2800, "feet")
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(5200, "feet")
  10519. },
  10520. {
  10521. name: "Gigamacro",
  10522. height: math.unit(27000, "feet")
  10523. },
  10524. {
  10525. name: "Omega",
  10526. height: math.unit(45000, "feet")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(18, "feet"),
  10535. weight: math.unit(5800, "lb"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/rhys/front.svg",
  10539. extra: 3386 / 3090,
  10540. bottom: 0.07
  10541. }
  10542. },
  10543. },
  10544. [
  10545. {
  10546. name: "Normal",
  10547. height: math.unit(18, "feet"),
  10548. default: true
  10549. },
  10550. {
  10551. name: "Working Size",
  10552. height: math.unit(200, "feet")
  10553. },
  10554. {
  10555. name: "Demolition Size",
  10556. height: math.unit(2000, "feet")
  10557. },
  10558. {
  10559. name: "Maximum Licensed Size",
  10560. height: math.unit(5, "miles")
  10561. },
  10562. {
  10563. name: "Maximum Observed Size",
  10564. height: math.unit(10, "yottameters")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(6, "feet"),
  10573. weight: math.unit(250, "lb"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/toto/front.svg",
  10577. extra: 527 / 479,
  10578. bottom: 0.05
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Micro",
  10585. height: math.unit(3, "feet")
  10586. },
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(10, "feet")
  10590. },
  10591. {
  10592. name: "Macro",
  10593. height: math.unit(150, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Megamacro",
  10598. height: math.unit(1200, "feet")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "King", species: ["lion"], tags: ["anthro"] },
  10604. {
  10605. back: {
  10606. height: math.unit(6, "feet"),
  10607. weight: math.unit(150, "lb"),
  10608. name: "Back",
  10609. image: {
  10610. source: "./media/characters/king/back.svg"
  10611. }
  10612. },
  10613. },
  10614. [
  10615. {
  10616. name: "Micro",
  10617. height: math.unit(2, "inches")
  10618. },
  10619. {
  10620. name: "Normal",
  10621. height: math.unit(8, "feet")
  10622. },
  10623. {
  10624. name: "Macro",
  10625. height: math.unit(200, "feet"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Megamacro",
  10630. height: math.unit(50, "miles")
  10631. },
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10636. {
  10637. anthro: {
  10638. height: math.unit(6 + 5 / 12, "feet"),
  10639. weight: math.unit(280, "lb"),
  10640. name: "Anthro",
  10641. image: {
  10642. source: "./media/characters/cordite/anthro.svg",
  10643. extra: 1986 / 1905,
  10644. bottom: 0.025
  10645. }
  10646. },
  10647. feral: {
  10648. height: math.unit(2, "feet"),
  10649. weight: math.unit(90, "lb"),
  10650. name: "Feral",
  10651. image: {
  10652. source: "./media/characters/cordite/feral.svg",
  10653. extra: 1260 / 755,
  10654. bottom: 0.05
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(6 + 5 / 12, "feet"),
  10662. default: true
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(6, "feet"),
  10671. weight: math.unit(150, "lb"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/pianostrong/front.svg",
  10675. extra: 6577 / 6254,
  10676. bottom: 0.02
  10677. }
  10678. },
  10679. side: {
  10680. height: math.unit(6, "feet"),
  10681. weight: math.unit(150, "lb"),
  10682. name: "Side",
  10683. image: {
  10684. source: "./media/characters/pianostrong/side.svg",
  10685. extra: 6106 / 5730
  10686. }
  10687. },
  10688. back: {
  10689. height: math.unit(6, "feet"),
  10690. weight: math.unit(150, "lb"),
  10691. name: "Back",
  10692. image: {
  10693. source: "./media/characters/pianostrong/back.svg",
  10694. extra: 6085 / 5733,
  10695. bottom: 0.01
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Macro",
  10702. height: math.unit(100, "feet")
  10703. },
  10704. {
  10705. name: "Macro+",
  10706. height: math.unit(300, "feet"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Macro++",
  10711. height: math.unit(1000, "feet")
  10712. },
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(6, "feet"),
  10720. weight: math.unit(150, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/kona/front.svg",
  10724. extra: 2960 / 2629,
  10725. bottom: 0.005
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Normal",
  10732. height: math.unit(11 + 8 / 12, "feet")
  10733. },
  10734. {
  10735. name: "Macro",
  10736. height: math.unit(850, "feet"),
  10737. default: true
  10738. },
  10739. {
  10740. name: "Macro+",
  10741. height: math.unit(1.5, "km"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Megamacro",
  10746. height: math.unit(80, "miles")
  10747. },
  10748. {
  10749. name: "Gigamacro",
  10750. height: math.unit(3500, "miles")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10756. {
  10757. side: {
  10758. height: math.unit(1.9, "meters"),
  10759. weight: math.unit(326, "kg"),
  10760. name: "Side",
  10761. image: {
  10762. source: "./media/characters/levi/side.svg",
  10763. extra: 1704 / 1334,
  10764. bottom: 0.02
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(1.9, "meters"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(20, "meters")
  10777. },
  10778. {
  10779. name: "Macro+",
  10780. height: math.unit(200, "meters")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(2, "km")
  10785. },
  10786. {
  10787. name: "Megamacro+",
  10788. height: math.unit(20, "km")
  10789. },
  10790. {
  10791. name: "Gigamacro",
  10792. height: math.unit(2500, "km")
  10793. },
  10794. {
  10795. name: "Gigamacro+",
  10796. height: math.unit(120000, "km")
  10797. },
  10798. {
  10799. name: "Teramacro",
  10800. height: math.unit(7.77e6, "km")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6 + 4 / 12, "feet"),
  10809. weight: math.unit(188, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/bmc/front.svg",
  10813. extra: 1067 / 1022,
  10814. bottom: 0.047
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Human-sized",
  10821. height: math.unit(6 + 4 / 12, "feet")
  10822. },
  10823. {
  10824. name: "Small",
  10825. height: math.unit(250, "feet")
  10826. },
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(1250, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Good Day",
  10834. height: math.unit(88, "miles")
  10835. },
  10836. {
  10837. name: "Largest Measured Size",
  10838. height: math.unit(11.2e6, "lightyears")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(20, "feet"),
  10847. weight: math.unit(2016, "kg"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/sven-the-kaiju/front.svg",
  10851. extra: 1479 / 1449,
  10852. bottom: 0.05
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Fairy",
  10859. height: math.unit(6, "inches")
  10860. },
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(20, "feet"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Rampage",
  10868. height: math.unit(200, "feet")
  10869. },
  10870. {
  10871. name: "Archfey Forest Guardian",
  10872. height: math.unit(1, "mile")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(4, "meters"),
  10881. weight: math.unit(2, "tons"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/marik/front.svg",
  10885. extra: 1057 / 1003,
  10886. bottom: 0.08
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Normal",
  10893. height: math.unit(4, "meters"),
  10894. default: true
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(20, "meters")
  10899. },
  10900. {
  10901. name: "Megamacro",
  10902. height: math.unit(50, "km")
  10903. },
  10904. {
  10905. name: "Gigamacro",
  10906. height: math.unit(100, "km")
  10907. },
  10908. {
  10909. name: "Alpha Macro",
  10910. height: math.unit(7.88e7, "yottameters")
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10916. {
  10917. front: {
  10918. height: math.unit(6, "feet"),
  10919. weight: math.unit(110, "lb"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/mel/front.svg",
  10923. extra: 736 / 617,
  10924. bottom: 0.017
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Pico",
  10931. height: math.unit(3, "pm")
  10932. },
  10933. {
  10934. name: "Nano",
  10935. height: math.unit(3, "nm")
  10936. },
  10937. {
  10938. name: "Micro",
  10939. height: math.unit(0.3, "mm"),
  10940. default: true
  10941. },
  10942. {
  10943. name: "Micro+",
  10944. height: math.unit(3, "mm")
  10945. },
  10946. {
  10947. name: "Normal",
  10948. height: math.unit(5 + 10.5 / 12, "feet")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10954. {
  10955. kaiju: {
  10956. height: math.unit(1.75, "meters"),
  10957. weight: math.unit(55, "kg"),
  10958. name: "Kaiju",
  10959. image: {
  10960. source: "./media/characters/lykonous/kaiju.svg",
  10961. extra: 1055 / 946,
  10962. bottom: 0.135
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(2.5, "meters"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Kaiju Dragon",
  10974. height: math.unit(60, "meters")
  10975. },
  10976. {
  10977. name: "Mega Kaiju",
  10978. height: math.unit(120, "km")
  10979. },
  10980. {
  10981. name: "Giga Kaiju",
  10982. height: math.unit(200, "megameters")
  10983. },
  10984. {
  10985. name: "Terra Kaiju",
  10986. height: math.unit(400, "gigameters")
  10987. },
  10988. {
  10989. name: "Kaiju Dragon God",
  10990. height: math.unit(13000, "exaparsecs")
  10991. },
  10992. ]
  10993. ))
  10994. characterMakers.push(() => makeCharacter(
  10995. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10996. {
  10997. front: {
  10998. height: math.unit(6, "feet"),
  10999. weight: math.unit(150, "lb"),
  11000. name: "Front",
  11001. image: {
  11002. source: "./media/characters/blü/front.svg",
  11003. extra: 1883 / 1564,
  11004. bottom: 0.031
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(13, "feet"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Big Boi",
  11016. height: math.unit(150, "meters")
  11017. },
  11018. {
  11019. name: "Mini Stomper",
  11020. height: math.unit(300, "meters")
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(1000, "meters")
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(11000, "meters")
  11029. },
  11030. {
  11031. name: "Gigamacro",
  11032. height: math.unit(11000, "km")
  11033. },
  11034. {
  11035. name: "Teramacro",
  11036. height: math.unit(420000, "km")
  11037. },
  11038. {
  11039. name: "Examacro",
  11040. height: math.unit(120, "parsecs")
  11041. },
  11042. {
  11043. name: "God Tho",
  11044. height: math.unit(98000000000, "parsecs")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11050. {
  11051. taurFront: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(200, "lb"),
  11054. name: "Taur (Front)",
  11055. image: {
  11056. source: "./media/characters/scales/taur-front.svg",
  11057. extra: 1,
  11058. bottom: 0.05
  11059. }
  11060. },
  11061. taurBack: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(200, "lb"),
  11064. name: "Taur (Back)",
  11065. image: {
  11066. source: "./media/characters/scales/taur-back.svg",
  11067. extra: 1,
  11068. bottom: 0.08
  11069. }
  11070. },
  11071. anthro: {
  11072. height: math.unit(6 * 7 / 12, "feet"),
  11073. weight: math.unit(100, "lb"),
  11074. name: "Anthro",
  11075. image: {
  11076. source: "./media/characters/scales/anthro.svg",
  11077. extra: 1,
  11078. bottom: 0.06
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(12, "feet"),
  11086. default: true
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11092. {
  11093. front: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Front",
  11097. image: {
  11098. source: "./media/characters/koragos/front.svg",
  11099. extra: 841 / 794,
  11100. bottom: 0.035
  11101. }
  11102. },
  11103. back: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(150, "lb"),
  11106. name: "Back",
  11107. image: {
  11108. source: "./media/characters/koragos/back.svg",
  11109. extra: 841 / 810,
  11110. bottom: 0.022
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(6 + 11 / 12, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Macro",
  11122. height: math.unit(490, "feet")
  11123. },
  11124. {
  11125. name: "Megamacro",
  11126. height: math.unit(10, "miles")
  11127. },
  11128. {
  11129. name: "Gigamacro",
  11130. height: math.unit(50, "miles")
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(250, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/xylrem/front.svg",
  11143. extra: 3323 / 3050,
  11144. bottom: 0.065
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Micro",
  11151. height: math.unit(4, "feet")
  11152. },
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(16, "feet"),
  11156. default: true
  11157. },
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(2720, "feet")
  11161. },
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(25000, "miles")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(8, "feet"),
  11173. weight: math.unit(250, "kg"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/ikideru/front.svg",
  11177. extra: 930 / 870,
  11178. bottom: 0.087
  11179. }
  11180. },
  11181. back: {
  11182. height: math.unit(8, "feet"),
  11183. weight: math.unit(250, "kg"),
  11184. name: "Back",
  11185. image: {
  11186. source: "./media/characters/ikideru/back.svg",
  11187. extra: 919 / 852,
  11188. bottom: 0.055
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Rare",
  11195. height: math.unit(8, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Playful Loom",
  11200. height: math.unit(80, "feet")
  11201. },
  11202. {
  11203. name: "City Leaner",
  11204. height: math.unit(230, "feet")
  11205. },
  11206. {
  11207. name: "Megamacro",
  11208. height: math.unit(2500, "feet")
  11209. },
  11210. {
  11211. name: "Gigamacro",
  11212. height: math.unit(26400, "feet")
  11213. },
  11214. {
  11215. name: "Tectonic Shifter",
  11216. height: math.unit(1.7, "megameters")
  11217. },
  11218. {
  11219. name: "Planet Carer",
  11220. height: math.unit(21, "megameters")
  11221. },
  11222. {
  11223. name: "God",
  11224. height: math.unit(11157.22, "parsecs")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(120, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/neo/front.svg"
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Micro",
  11243. height: math.unit(2, "inches"),
  11244. default: true
  11245. },
  11246. {
  11247. name: "Human Size",
  11248. height: math.unit(5 + 8 / 12, "feet")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(13 + 10 / 12, "feet"),
  11257. weight: math.unit(5320, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/chauncey-chantz/front.svg",
  11261. extra: 1587 / 1435,
  11262. bottom: 0.02
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(13 + 10 / 12, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(45, "feet")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(250, "miles")
  11279. },
  11280. {
  11281. name: "Planetary",
  11282. height: math.unit(10000, "miles")
  11283. },
  11284. {
  11285. name: "Galactic",
  11286. height: math.unit(40000, "parsecs")
  11287. },
  11288. {
  11289. name: "Universal",
  11290. height: math.unit(1, "yottameter")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/epifox/front.svg",
  11303. extra: 1,
  11304. bottom: 0.075
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Micro",
  11311. height: math.unit(6, "inches")
  11312. },
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(12, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(3810, "feet")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(500, "miles")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(1.8796, "m"),
  11333. weight: math.unit(230, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/colin-t/front.svg",
  11337. extra: 1272 / 1193,
  11338. bottom: 0.07
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Micro",
  11345. height: math.unit(0.571, "meters")
  11346. },
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(1.8796, "meters"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Tall",
  11354. height: math.unit(4, "meters")
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(67.241, "meters")
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(371.856, "meters")
  11363. },
  11364. {
  11365. name: "Planetary",
  11366. height: math.unit(12631.5689, "km")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(1.85, "meters"),
  11375. weight: math.unit(80, "kg"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/matvei/front.svg",
  11379. extra: 614 / 594,
  11380. bottom: 0.01
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(1.85, "meters"),
  11388. default: true
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(5 + 9 / 12, "feet"),
  11397. weight: math.unit(70, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/quincy/front.svg",
  11401. extra: 3041 / 2751
  11402. }
  11403. },
  11404. back: {
  11405. height: math.unit(5 + 9 / 12, "feet"),
  11406. weight: math.unit(70, "lb"),
  11407. name: "Back",
  11408. image: {
  11409. source: "./media/characters/quincy/back.svg",
  11410. extra: 3041 / 2751
  11411. }
  11412. },
  11413. flying: {
  11414. height: math.unit(5 + 4 / 12, "feet"),
  11415. weight: math.unit(70, "lb"),
  11416. name: "Flying",
  11417. image: {
  11418. source: "./media/characters/quincy/flying.svg",
  11419. extra: 1044 / 930
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(3, "cm")
  11427. },
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(5 + 9 / 12, "feet")
  11431. },
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(200, "meters"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(1000, "meters")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(4 + 7 / 12, "feet"),
  11448. weight: math.unit(50, "lb"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/vanrel/front.svg",
  11452. extra: 1,
  11453. bottom: 0.02
  11454. }
  11455. },
  11456. frontAlt: {
  11457. height: math.unit(4 + 7 / 12, "feet"),
  11458. weight: math.unit(50, "lb"),
  11459. name: "Front-alt",
  11460. image: {
  11461. source: "./media/characters/vanrel/front-alt.svg",
  11462. extra: 1,
  11463. bottom: 15 / 1511
  11464. }
  11465. },
  11466. elemental: {
  11467. height: math.unit(3, "feet"),
  11468. weight: math.unit(50, "lb"),
  11469. name: "Elemental",
  11470. image: {
  11471. source: "./media/characters/vanrel/elemental.svg",
  11472. extra: 192.3 / 162.8,
  11473. bottom: 1.79 / 194.17
  11474. }
  11475. },
  11476. side: {
  11477. height: math.unit(4 + 7 / 12, "feet"),
  11478. weight: math.unit(50, "lb"),
  11479. name: "Side",
  11480. image: {
  11481. source: "./media/characters/vanrel/side.svg",
  11482. extra: 1,
  11483. bottom: 0.025
  11484. }
  11485. },
  11486. tome: {
  11487. height: math.unit(1.35, "feet"),
  11488. weight: math.unit(10, "lb"),
  11489. name: "Vanrel's Tome",
  11490. rename: true,
  11491. image: {
  11492. source: "./media/characters/vanrel/tome.svg"
  11493. }
  11494. },
  11495. beans: {
  11496. height: math.unit(0.89, "feet"),
  11497. name: "Beans",
  11498. image: {
  11499. source: "./media/characters/vanrel/beans.svg"
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Normal",
  11506. height: math.unit(4 + 7 / 12, "feet"),
  11507. default: true
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11513. {
  11514. front: {
  11515. height: math.unit(7 + 5 / 12, "feet"),
  11516. weight: math.unit(150, "lb"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/kuiper-vanrel/front.svg",
  11520. extra: 1118 / 1068,
  11521. bottom: 0.09
  11522. }
  11523. },
  11524. foot: {
  11525. height: math.unit(0.55, "meters"),
  11526. name: "Foot",
  11527. image: {
  11528. source: "./media/characters/kuiper-vanrel/foot.svg",
  11529. }
  11530. },
  11531. battle: {
  11532. height: math.unit(6.824, "feet"),
  11533. weight: math.unit(150, "lb"),
  11534. name: "Battle",
  11535. image: {
  11536. source: "./media/characters/kuiper-vanrel/battle.svg",
  11537. extra: 1466 / 1327,
  11538. bottom: 29 / 1492.5
  11539. }
  11540. },
  11541. battleAlt: {
  11542. height: math.unit(6.824, "feet"),
  11543. weight: math.unit(150, "lb"),
  11544. name: "Battle (Alt)",
  11545. image: {
  11546. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11547. extra: 2081 / 1965,
  11548. bottom: 40 / 2121
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(7 + 5 / 12, "feet"),
  11556. default: true
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(8 + 5 / 12, "feet"),
  11565. weight: math.unit(150, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/keset-vanrel/front.svg",
  11569. extra: 1150 / 1084,
  11570. bottom: 0.05
  11571. }
  11572. },
  11573. hand: {
  11574. height: math.unit(0.6, "meters"),
  11575. name: "Hand",
  11576. image: {
  11577. source: "./media/characters/keset-vanrel/hand.svg"
  11578. }
  11579. },
  11580. foot: {
  11581. height: math.unit(0.94978, "meters"),
  11582. name: "Foot",
  11583. image: {
  11584. source: "./media/characters/keset-vanrel/foot.svg"
  11585. }
  11586. },
  11587. battle: {
  11588. height: math.unit(7.408, "feet"),
  11589. weight: math.unit(150, "lb"),
  11590. name: "Battle",
  11591. image: {
  11592. source: "./media/characters/keset-vanrel/battle.svg",
  11593. extra: 1890 / 1386,
  11594. bottom: 73.28 / 1970
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(8 + 5 / 12, "feet"),
  11602. default: true
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(150, "lb"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/neos/front.svg",
  11615. extra: 1696 / 992,
  11616. bottom: 0.14
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(54, "cm"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(100, "m")
  11629. },
  11630. {
  11631. name: "Megamacro",
  11632. height: math.unit(10, "km")
  11633. },
  11634. {
  11635. name: "Megamacro+",
  11636. height: math.unit(100, "km")
  11637. },
  11638. {
  11639. name: "Gigamacro",
  11640. height: math.unit(100, "Mm")
  11641. },
  11642. {
  11643. name: "Teramacro",
  11644. height: math.unit(100, "Gm")
  11645. },
  11646. {
  11647. name: "Examacro",
  11648. height: math.unit(100, "Em")
  11649. },
  11650. {
  11651. name: "Godly",
  11652. height: math.unit(10000, "Ym")
  11653. },
  11654. {
  11655. name: "Beyond Godly",
  11656. height: math.unit(25, "multiverses")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11662. {
  11663. feminine: {
  11664. height: math.unit(5, "feet"),
  11665. weight: math.unit(100, "lb"),
  11666. name: "Feminine",
  11667. image: {
  11668. source: "./media/characters/sammy-mouse/feminine.svg",
  11669. extra: 2526 / 2425,
  11670. bottom: 0.123
  11671. }
  11672. },
  11673. masculine: {
  11674. height: math.unit(5, "feet"),
  11675. weight: math.unit(100, "lb"),
  11676. name: "Masculine",
  11677. image: {
  11678. source: "./media/characters/sammy-mouse/masculine.svg",
  11679. extra: 2526 / 2425,
  11680. bottom: 0.123
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Micro",
  11687. height: math.unit(5, "inches")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(5, "feet"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(60, "feet")
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11702. {
  11703. front: {
  11704. height: math.unit(4, "feet"),
  11705. weight: math.unit(50, "lb"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/kole/front.svg",
  11709. extra: 1423 / 1303,
  11710. bottom: 0.025
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(4, "feet"),
  11715. weight: math.unit(50, "lb"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/kole/back.svg",
  11719. extra: 1426 / 1280,
  11720. bottom: 0.02
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(4, "feet"),
  11728. default: true
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(2 + 6 / 12, "feet"),
  11737. weight: math.unit(20, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/rufran/front.svg",
  11741. extra: 2041 / 1839,
  11742. bottom: 0.055
  11743. }
  11744. },
  11745. back: {
  11746. height: math.unit(2 + 6 / 12, "feet"),
  11747. weight: math.unit(20, "lb"),
  11748. name: "Back",
  11749. image: {
  11750. source: "./media/characters/rufran/back.svg",
  11751. extra: 2054 / 1839,
  11752. bottom: 0.01
  11753. }
  11754. },
  11755. hand: {
  11756. height: math.unit(0.2166, "meters"),
  11757. name: "Hand",
  11758. image: {
  11759. source: "./media/characters/rufran/hand.svg"
  11760. }
  11761. },
  11762. foot: {
  11763. height: math.unit(0.185, "meters"),
  11764. name: "Foot",
  11765. image: {
  11766. source: "./media/characters/rufran/foot.svg"
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Micro",
  11773. height: math.unit(1, "inch")
  11774. },
  11775. {
  11776. name: "Normal",
  11777. height: math.unit(2 + 6 / 12, "feet"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Big",
  11782. height: math.unit(60, "feet")
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(325, "feet")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11792. {
  11793. front: {
  11794. height: math.unit(0.3, "meters"),
  11795. weight: math.unit(3.5, "kg"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/chip/front.svg",
  11799. extra: 748 / 674
  11800. }
  11801. },
  11802. },
  11803. [
  11804. {
  11805. name: "Micro",
  11806. height: math.unit(1, "inch"),
  11807. default: true
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11813. {
  11814. side: {
  11815. height: math.unit(2.3, "meters"),
  11816. weight: math.unit(3500, "lb"),
  11817. name: "Side",
  11818. image: {
  11819. source: "./media/characters/torvid/side.svg",
  11820. extra: 1972 / 722,
  11821. bottom: 0.035
  11822. }
  11823. },
  11824. },
  11825. [
  11826. {
  11827. name: "Normal",
  11828. height: math.unit(2.3, "meters"),
  11829. default: true
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(2, "meters"),
  11838. weight: math.unit(150.5, "kg"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/susan/front.svg",
  11842. extra: 693 / 635,
  11843. bottom: 0.05
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(505, "miles"),
  11851. default: true
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/raindrops/front.svg",
  11864. extra: 2655 / 2461,
  11865. bottom: 49 / 2705
  11866. }
  11867. },
  11868. back: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(150, "lb"),
  11871. name: "Back",
  11872. image: {
  11873. source: "./media/characters/raindrops/back.svg",
  11874. extra: 2574 / 2400,
  11875. bottom: 65 / 2634
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Micro",
  11882. height: math.unit(6, "inches")
  11883. },
  11884. {
  11885. name: "Normal",
  11886. height: math.unit(6 + 2 / 12, "feet")
  11887. },
  11888. {
  11889. name: "Macro",
  11890. height: math.unit(131, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Megamacro",
  11895. height: math.unit(15, "miles")
  11896. },
  11897. {
  11898. name: "Gigamacro",
  11899. height: math.unit(4000, "miles")
  11900. },
  11901. {
  11902. name: "Teramacro",
  11903. height: math.unit(315000, "miles")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(2.794, "meters"),
  11912. weight: math.unit(325, "kg"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/tezwa/front.svg",
  11916. extra: 2083 / 1906,
  11917. bottom: 0.031
  11918. }
  11919. },
  11920. foot: {
  11921. height: math.unit(0.687, "meters"),
  11922. name: "Foot",
  11923. image: {
  11924. source: "./media/characters/tezwa/foot.svg"
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Normal",
  11931. height: math.unit(9 + 2 / 12, "feet"),
  11932. default: true
  11933. },
  11934. ]
  11935. ))
  11936. characterMakers.push(() => makeCharacter(
  11937. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11938. {
  11939. front: {
  11940. height: math.unit(58, "feet"),
  11941. weight: math.unit(89000, "lb"),
  11942. name: "Front",
  11943. image: {
  11944. source: "./media/characters/typhus/front.svg",
  11945. extra: 816 / 800,
  11946. bottom: 0.065
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Macro",
  11953. height: math.unit(58, "feet"),
  11954. default: true
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11960. {
  11961. front: {
  11962. height: math.unit(12, "feet"),
  11963. weight: math.unit(6, "tonnes"),
  11964. name: "Front",
  11965. image: {
  11966. source: "./media/characters/lyra-von-wulf/front.svg",
  11967. extra: 1,
  11968. bottom: 0.10
  11969. }
  11970. },
  11971. frontMecha: {
  11972. height: math.unit(12, "feet"),
  11973. weight: math.unit(12, "tonnes"),
  11974. name: "Front (Mecha)",
  11975. image: {
  11976. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11977. extra: 1,
  11978. bottom: 0.042
  11979. }
  11980. },
  11981. maw: {
  11982. height: math.unit(2.2, "feet"),
  11983. name: "Maw",
  11984. image: {
  11985. source: "./media/characters/lyra-von-wulf/maw.svg"
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Normal",
  11992. height: math.unit(12, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Classic",
  11997. height: math.unit(50, "feet")
  11998. },
  11999. {
  12000. name: "Macro",
  12001. height: math.unit(500, "feet")
  12002. },
  12003. {
  12004. name: "Megamacro",
  12005. height: math.unit(1, "mile")
  12006. },
  12007. {
  12008. name: "Gigamacro",
  12009. height: math.unit(400, "miles")
  12010. },
  12011. {
  12012. name: "Teramacro",
  12013. height: math.unit(22000, "miles")
  12014. },
  12015. {
  12016. name: "Solarmacro",
  12017. height: math.unit(8600000, "miles")
  12018. },
  12019. {
  12020. name: "Galactic",
  12021. height: math.unit(1057000, "lightyears")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(6 + 10 / 12, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/dixon/front.svg",
  12034. extra: 3361 / 3209,
  12035. bottom: 0.01
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(6 + 10 / 12, "feet"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Big",
  12047. height: math.unit(12, "meters")
  12048. },
  12049. {
  12050. name: "Macro",
  12051. height: math.unit(500, "meters")
  12052. },
  12053. {
  12054. name: "Megamacro",
  12055. height: math.unit(2, "km")
  12056. },
  12057. ]
  12058. ))
  12059. characterMakers.push(() => makeCharacter(
  12060. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12061. {
  12062. front: {
  12063. height: math.unit(185, "cm"),
  12064. weight: math.unit(68, "kg"),
  12065. name: "Front",
  12066. image: {
  12067. source: "./media/characters/kauko/front.svg",
  12068. extra: 1455 / 1421,
  12069. bottom: 0.03
  12070. }
  12071. },
  12072. back: {
  12073. height: math.unit(185, "cm"),
  12074. weight: math.unit(68, "kg"),
  12075. name: "Back",
  12076. image: {
  12077. source: "./media/characters/kauko/back.svg",
  12078. extra: 1455 / 1421,
  12079. bottom: 0.004
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(185, "cm"),
  12087. default: true
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12093. {
  12094. front: {
  12095. height: math.unit(6, "feet"),
  12096. weight: math.unit(150, "kg"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/varg/front.svg",
  12100. extra: 1108 / 1018,
  12101. bottom: 0.0375
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(5, "meters")
  12109. },
  12110. {
  12111. name: "Macro",
  12112. height: math.unit(200, "meters")
  12113. },
  12114. {
  12115. name: "Megamacro",
  12116. height: math.unit(20, "kilometers")
  12117. },
  12118. {
  12119. name: "True Size",
  12120. height: math.unit(211, "km"),
  12121. default: true
  12122. },
  12123. {
  12124. name: "Gigamacro",
  12125. height: math.unit(1000, "km")
  12126. },
  12127. {
  12128. name: "Gigamacro+",
  12129. height: math.unit(8000, "km")
  12130. },
  12131. {
  12132. name: "Teramacro",
  12133. height: math.unit(1000000, "km")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12139. {
  12140. front: {
  12141. height: math.unit(7 + 7 / 12, "feet"),
  12142. weight: math.unit(267, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/dayza/front.svg",
  12146. extra: 1262 / 1200,
  12147. bottom: 0.035
  12148. }
  12149. },
  12150. side: {
  12151. height: math.unit(7 + 7 / 12, "feet"),
  12152. weight: math.unit(267, "lb"),
  12153. name: "Side",
  12154. image: {
  12155. source: "./media/characters/dayza/side.svg",
  12156. extra: 1295 / 1245,
  12157. bottom: 0.05
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(7 + 7 / 12, "feet"),
  12162. weight: math.unit(267, "lb"),
  12163. name: "Back",
  12164. image: {
  12165. source: "./media/characters/dayza/back.svg",
  12166. extra: 1241 / 1170
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(7 + 7 / 12, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(155, "feet")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(6 + 5 / 12, "feet"),
  12187. weight: math.unit(160, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/xanthos/front.svg",
  12191. extra: 1,
  12192. bottom: 0.04
  12193. }
  12194. },
  12195. back: {
  12196. height: math.unit(6 + 5 / 12, "feet"),
  12197. weight: math.unit(160, "lb"),
  12198. name: "Back",
  12199. image: {
  12200. source: "./media/characters/xanthos/back.svg",
  12201. extra: 1,
  12202. bottom: 0.03
  12203. }
  12204. },
  12205. hand: {
  12206. height: math.unit(0.928, "feet"),
  12207. name: "Hand",
  12208. image: {
  12209. source: "./media/characters/xanthos/hand.svg"
  12210. }
  12211. },
  12212. foot: {
  12213. height: math.unit(1.286, "feet"),
  12214. name: "Foot",
  12215. image: {
  12216. source: "./media/characters/xanthos/foot.svg"
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(6 + 5 / 12, "feet"),
  12224. default: true
  12225. },
  12226. {
  12227. name: "Normal+",
  12228. height: math.unit(6, "meters")
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(40, "feet")
  12233. },
  12234. {
  12235. name: "Macro+",
  12236. height: math.unit(200, "meters")
  12237. },
  12238. {
  12239. name: "Megamacro",
  12240. height: math.unit(20, "km")
  12241. },
  12242. {
  12243. name: "Megamacro+",
  12244. height: math.unit(100, "km")
  12245. },
  12246. ]
  12247. ))
  12248. characterMakers.push(() => makeCharacter(
  12249. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12250. {
  12251. front: {
  12252. height: math.unit(6 + 3 / 12, "feet"),
  12253. weight: math.unit(215, "lb"),
  12254. name: "Front",
  12255. image: {
  12256. source: "./media/characters/grynn/front.svg",
  12257. extra: 4627 / 4209,
  12258. bottom: 0.047
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Micro",
  12265. height: math.unit(6, "inches")
  12266. },
  12267. {
  12268. name: "Normal",
  12269. height: math.unit(6 + 3 / 12, "feet"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Big",
  12274. height: math.unit(104, "feet")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(944, "feet")
  12279. },
  12280. {
  12281. name: "Macro+",
  12282. height: math.unit(9480, "feet")
  12283. },
  12284. {
  12285. name: "Megamacro",
  12286. height: math.unit(78752, "feet")
  12287. },
  12288. {
  12289. name: "Megamacro+",
  12290. height: math.unit(630128, "feet")
  12291. },
  12292. {
  12293. name: "Megamacro++",
  12294. height: math.unit(3150695, "feet")
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(7 + 5 / 12, "feet"),
  12303. weight: math.unit(450, "lb"),
  12304. name: "Front",
  12305. image: {
  12306. source: "./media/characters/mocha-aura/front.svg",
  12307. extra: 1907 / 1817,
  12308. bottom: 0.04
  12309. }
  12310. },
  12311. back: {
  12312. height: math.unit(7 + 5 / 12, "feet"),
  12313. weight: math.unit(450, "lb"),
  12314. name: "Back",
  12315. image: {
  12316. source: "./media/characters/mocha-aura/back.svg",
  12317. extra: 1900 / 1825,
  12318. bottom: 0.045
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Nano",
  12325. height: math.unit(1, "nm")
  12326. },
  12327. {
  12328. name: "Megamicro",
  12329. height: math.unit(1, "mm")
  12330. },
  12331. {
  12332. name: "Micro",
  12333. height: math.unit(3, "inches")
  12334. },
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(7 + 5 / 12, "feet"),
  12338. default: true
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(30, "feet")
  12343. },
  12344. {
  12345. name: "Megamacro",
  12346. height: math.unit(3500, "feet")
  12347. },
  12348. {
  12349. name: "Teramacro",
  12350. height: math.unit(500000, "miles")
  12351. },
  12352. {
  12353. name: "Petamacro",
  12354. height: math.unit(50000000000000000, "parsecs")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(6, "feet"),
  12363. weight: math.unit(150, "lb"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/ilisha-devya/front.svg",
  12367. extra: 1,
  12368. bottom: 0.175
  12369. }
  12370. },
  12371. back: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(150, "lb"),
  12374. name: "Back",
  12375. image: {
  12376. source: "./media/characters/ilisha-devya/back.svg",
  12377. extra: 1,
  12378. bottom: 0.015
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Macro",
  12385. height: math.unit(500, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(10, "miles")
  12391. },
  12392. {
  12393. name: "Gigamacro",
  12394. height: math.unit(100000, "miles")
  12395. },
  12396. {
  12397. name: "Examacro",
  12398. height: math.unit(1e9, "lightyears")
  12399. },
  12400. {
  12401. name: "Omniversal",
  12402. height: math.unit(1e33, "lightyears")
  12403. },
  12404. {
  12405. name: "Beyond Infinite",
  12406. height: math.unit(1e100, "lightyears")
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12412. {
  12413. Side: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Side",
  12417. image: {
  12418. source: "./media/characters/mira/side.svg",
  12419. extra: 900 / 799,
  12420. bottom: 0.02
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Human Size",
  12427. height: math.unit(6, "feet")
  12428. },
  12429. {
  12430. name: "Macro",
  12431. height: math.unit(100, "feet"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(10, "miles")
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(25000, "miles")
  12441. },
  12442. {
  12443. name: "Teramacro",
  12444. height: math.unit(300, "AU")
  12445. },
  12446. {
  12447. name: "Full Size",
  12448. height: math.unit(4.5e10, "lightyears")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/holly/front.svg",
  12461. extra: 639 / 606
  12462. }
  12463. },
  12464. back: {
  12465. height: math.unit(6, "feet"),
  12466. weight: math.unit(150, "lb"),
  12467. name: "Back",
  12468. image: {
  12469. source: "./media/characters/holly/back.svg",
  12470. extra: 623 / 598
  12471. }
  12472. },
  12473. frontWorking: {
  12474. height: math.unit(6, "feet"),
  12475. weight: math.unit(150, "lb"),
  12476. name: "Front (Working)",
  12477. image: {
  12478. source: "./media/characters/holly/front-working.svg",
  12479. extra: 607 / 577,
  12480. bottom: 0.048
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Normal",
  12487. height: math.unit(12 + 3 / 12, "feet"),
  12488. default: true
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6, "feet"),
  12497. weight: math.unit(150, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/porter/front.svg",
  12501. extra: 1,
  12502. bottom: 0.01
  12503. }
  12504. },
  12505. frontRobes: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front (Robes)",
  12509. image: {
  12510. source: "./media/characters/porter/front-robes.svg",
  12511. extra: 1.01,
  12512. bottom: 0.01
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(11 + 9 / 12, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12526. {
  12527. legendary: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(150, "lb"),
  12530. name: "Legendary",
  12531. image: {
  12532. source: "./media/characters/lucy/legendary.svg",
  12533. extra: 1355 / 1100,
  12534. bottom: 0.045
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Legendary",
  12541. height: math.unit(86882 * 2, "miles"),
  12542. default: true
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12548. {
  12549. front: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/drusilla/front.svg",
  12555. extra: 678 / 635,
  12556. bottom: 0.03
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/drusilla/back.svg",
  12565. extra: 678 / 635,
  12566. bottom: 0.005
  12567. }
  12568. },
  12569. },
  12570. [
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(100, "feet")
  12574. },
  12575. {
  12576. name: "Canon Height",
  12577. height: math.unit(2000, "feet"),
  12578. default: true
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12584. {
  12585. front: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(180, "lb"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/renard-thatch/front.svg",
  12591. extra: 2411 / 2275,
  12592. bottom: 0.01
  12593. }
  12594. },
  12595. frontPosing: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(180, "lb"),
  12598. name: "Front (Posing)",
  12599. image: {
  12600. source: "./media/characters/renard-thatch/front-posing.svg",
  12601. extra: 2381 / 2261,
  12602. bottom: 0.01
  12603. }
  12604. },
  12605. back: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(180, "lb"),
  12608. name: "Back",
  12609. image: {
  12610. source: "./media/characters/renard-thatch/back.svg",
  12611. extra: 2428 / 2288
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Micro",
  12618. height: math.unit(3, "inches")
  12619. },
  12620. {
  12621. name: "Default",
  12622. height: math.unit(6, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(75, "feet")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12633. {
  12634. front: {
  12635. height: math.unit(1450, "feet"),
  12636. weight: math.unit(1.21e6, "tons"),
  12637. name: "Front",
  12638. image: {
  12639. source: "./media/characters/sekvra/front.svg",
  12640. extra: 1,
  12641. bottom: 0.03
  12642. }
  12643. },
  12644. frontClothed: {
  12645. height: math.unit(1450, "feet"),
  12646. weight: math.unit(1.21e6, "tons"),
  12647. name: "Front (Clothed)",
  12648. image: {
  12649. source: "./media/characters/sekvra/front-clothed.svg",
  12650. extra: 1,
  12651. bottom: 0.03
  12652. }
  12653. },
  12654. side: {
  12655. height: math.unit(1450, "feet"),
  12656. weight: math.unit(1.21e6, "tons"),
  12657. name: "Side",
  12658. image: {
  12659. source: "./media/characters/sekvra/side.svg",
  12660. extra: 1,
  12661. bottom: 0.025
  12662. }
  12663. },
  12664. back: {
  12665. height: math.unit(1450, "feet"),
  12666. weight: math.unit(1.21e6, "tons"),
  12667. name: "Back",
  12668. image: {
  12669. source: "./media/characters/sekvra/back.svg",
  12670. extra: 1,
  12671. bottom: 0.005
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Macro",
  12678. height: math.unit(1450, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Megamacro",
  12683. height: math.unit(15000, "feet")
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(6, "feet"),
  12692. weight: math.unit(150, "lb"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/carmine/front.svg",
  12696. extra: 1,
  12697. bottom: 0.035
  12698. }
  12699. },
  12700. frontArmor: {
  12701. height: math.unit(6, "feet"),
  12702. weight: math.unit(150, "lb"),
  12703. name: "Front (Armor)",
  12704. image: {
  12705. source: "./media/characters/carmine/front-armor.svg",
  12706. extra: 1,
  12707. bottom: 0.035
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Large",
  12714. height: math.unit(1, "mile")
  12715. },
  12716. {
  12717. name: "Huge",
  12718. height: math.unit(40, "miles"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Colossal",
  12723. height: math.unit(2500, "miles")
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(6, "feet"),
  12732. weight: math.unit(150, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/elyssia/front.svg",
  12736. extra: 2201 / 2035,
  12737. bottom: 0.05
  12738. }
  12739. },
  12740. frontClothed: {
  12741. height: math.unit(6, "feet"),
  12742. weight: math.unit(150, "lb"),
  12743. name: "Front (Clothed)",
  12744. image: {
  12745. source: "./media/characters/elyssia/front-clothed.svg",
  12746. extra: 2201 / 2035,
  12747. bottom: 0.05
  12748. }
  12749. },
  12750. back: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(150, "lb"),
  12753. name: "Back",
  12754. image: {
  12755. source: "./media/characters/elyssia/back.svg",
  12756. extra: 2201 / 2035,
  12757. bottom: 0.013
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Smaller",
  12764. height: math.unit(150, "feet")
  12765. },
  12766. {
  12767. name: "Standard",
  12768. height: math.unit(1400, "feet"),
  12769. default: true
  12770. },
  12771. {
  12772. name: "Distracted",
  12773. height: math.unit(15000, "feet")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(7 + 4 / 12, "feet"),
  12782. weight: math.unit(500, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/geno-maxwell/front.svg",
  12786. extra: 2207 / 2040,
  12787. bottom: 0.015
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Micro",
  12794. height: math.unit(3, "inches")
  12795. },
  12796. {
  12797. name: "Normal",
  12798. height: math.unit(7 + 4 / 12, "feet"),
  12799. default: true
  12800. },
  12801. {
  12802. name: "Macro",
  12803. height: math.unit(220, "feet")
  12804. },
  12805. {
  12806. name: "Megamacro",
  12807. height: math.unit(11, "miles")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(7 + 4 / 12, "feet"),
  12816. weight: math.unit(500, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/regena-maxwell/front.svg",
  12820. extra: 3115 / 2770,
  12821. bottom: 0.02
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(7 + 4 / 12, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(220, "feet")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(11, "miles")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(6, "feet"),
  12846. weight: math.unit(150, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12850. extra: 860 / 690,
  12851. bottom: 0.03
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(1.7, "meters"),
  12859. default: true
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/quilly/front.svg",
  12872. extra: 890 / 776
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Gigamacro",
  12879. height: math.unit(404090, "miles"),
  12880. default: true
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12886. {
  12887. front: {
  12888. height: math.unit(7 + 8 / 12, "feet"),
  12889. weight: math.unit(350, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/tempest/front.svg",
  12893. extra: 1175 / 1086,
  12894. bottom: 0.02
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(7 + 8 / 12, "feet"),
  12902. default: true
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12908. {
  12909. side: {
  12910. height: math.unit(4 + 5 / 12, "feet"),
  12911. weight: math.unit(80, "lb"),
  12912. name: "Side",
  12913. image: {
  12914. source: "./media/characters/rodger/side.svg",
  12915. extra: 1235 / 1118
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Micro",
  12922. height: math.unit(1, "inch")
  12923. },
  12924. {
  12925. name: "Normal",
  12926. height: math.unit(4 + 5 / 12, "feet"),
  12927. default: true
  12928. },
  12929. {
  12930. name: "Macro",
  12931. height: math.unit(120, "feet")
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12937. {
  12938. front: {
  12939. height: math.unit(6, "feet"),
  12940. weight: math.unit(150, "lb"),
  12941. name: "Front",
  12942. image: {
  12943. source: "./media/characters/danyel/front.svg",
  12944. extra: 1185 / 1123,
  12945. bottom: 0.05
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Shrunken",
  12952. height: math.unit(0.5, "mm")
  12953. },
  12954. {
  12955. name: "Micro",
  12956. height: math.unit(1, "mm"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Upsized",
  12961. height: math.unit(5 + 5 / 12, "feet")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(5 + 6 / 12, "feet"),
  12970. weight: math.unit(200, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/vivian-bijoux/front.svg",
  12974. extra: 1,
  12975. bottom: 0.072
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(5 + 6 / 12, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Bad Dream",
  12987. height: math.unit(500, "feet")
  12988. },
  12989. {
  12990. name: "Nightmare",
  12991. height: math.unit(500, "miles")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(6 + 1 / 12, "feet"),
  13000. weight: math.unit(260, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/zeta/front.svg",
  13004. extra: 1968 / 1889,
  13005. bottom: 0.06
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(6 + 1 / 12, "feet"),
  13010. weight: math.unit(260, "lb"),
  13011. name: "Back",
  13012. image: {
  13013. source: "./media/characters/zeta/back.svg",
  13014. extra: 1944 / 1858,
  13015. bottom: 0.03
  13016. }
  13017. },
  13018. hand: {
  13019. height: math.unit(1.112, "feet"),
  13020. name: "Hand",
  13021. image: {
  13022. source: "./media/characters/zeta/hand.svg"
  13023. }
  13024. },
  13025. foot: {
  13026. height: math.unit(1.48, "feet"),
  13027. name: "Foot",
  13028. image: {
  13029. source: "./media/characters/zeta/foot.svg"
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Micro",
  13036. height: math.unit(6, "inches")
  13037. },
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(6 + 1 / 12, "feet"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Macro",
  13045. height: math.unit(20, "feet")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/jamie-larsen/front.svg",
  13058. extra: 962 / 933,
  13059. bottom: 0.02
  13060. }
  13061. },
  13062. back: {
  13063. height: math.unit(6, "feet"),
  13064. weight: math.unit(150, "lb"),
  13065. name: "Back",
  13066. image: {
  13067. source: "./media/characters/jamie-larsen/back.svg",
  13068. extra: 997 / 946
  13069. }
  13070. },
  13071. },
  13072. [
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(28 + 7 / 12, "feet"),
  13076. default: true
  13077. },
  13078. {
  13079. name: "Macro+",
  13080. height: math.unit(180, "feet")
  13081. },
  13082. {
  13083. name: "Megamacro",
  13084. height: math.unit(10, "miles")
  13085. },
  13086. {
  13087. name: "Gigamacro",
  13088. height: math.unit(200000, "miles")
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(6, "feet"),
  13097. weight: math.unit(120, "lb"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/vance/front.svg",
  13101. extra: 1980 / 1890,
  13102. bottom: 0.09
  13103. }
  13104. },
  13105. back: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(120, "lb"),
  13108. name: "Back",
  13109. image: {
  13110. source: "./media/characters/vance/back.svg",
  13111. extra: 2081 / 1994,
  13112. bottom: 0.014
  13113. }
  13114. },
  13115. hand: {
  13116. height: math.unit(0.88, "feet"),
  13117. name: "Hand",
  13118. image: {
  13119. source: "./media/characters/vance/hand.svg"
  13120. }
  13121. },
  13122. foot: {
  13123. height: math.unit(0.64, "feet"),
  13124. name: "Foot",
  13125. image: {
  13126. source: "./media/characters/vance/foot.svg"
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Small",
  13133. height: math.unit(90, "feet"),
  13134. default: true
  13135. },
  13136. {
  13137. name: "Macro",
  13138. height: math.unit(100, "meters")
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(15, "miles")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(180, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/xochitl/front.svg",
  13155. extra: 2297 / 2261,
  13156. bottom: 0.065
  13157. }
  13158. },
  13159. back: {
  13160. height: math.unit(6, "feet"),
  13161. weight: math.unit(180, "lb"),
  13162. name: "Back",
  13163. image: {
  13164. source: "./media/characters/xochitl/back.svg",
  13165. extra: 2386 / 2354,
  13166. bottom: 0.01
  13167. }
  13168. },
  13169. foot: {
  13170. height: math.unit(6 / 5 * 1.15, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Foot",
  13173. image: {
  13174. source: "./media/characters/xochitl/foot.svg"
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Macro",
  13181. height: math.unit(80, "feet")
  13182. },
  13183. {
  13184. name: "Macro+",
  13185. height: math.unit(400, "feet"),
  13186. default: true
  13187. },
  13188. {
  13189. name: "Gigamacro",
  13190. height: math.unit(80000, "miles")
  13191. },
  13192. {
  13193. name: "Gigamacro+",
  13194. height: math.unit(400000, "miles")
  13195. },
  13196. {
  13197. name: "Teramacro",
  13198. height: math.unit(300, "AU")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/vincent/front.svg",
  13211. extra: 1130 / 1080,
  13212. bottom: 0.055
  13213. }
  13214. },
  13215. beak: {
  13216. height: math.unit(6 * 0.1, "feet"),
  13217. name: "Beak",
  13218. image: {
  13219. source: "./media/characters/vincent/beak.svg"
  13220. }
  13221. },
  13222. hand: {
  13223. height: math.unit(6 * 0.85, "feet"),
  13224. weight: math.unit(150, "lb"),
  13225. name: "Hand",
  13226. image: {
  13227. source: "./media/characters/vincent/hand.svg"
  13228. }
  13229. },
  13230. foot: {
  13231. height: math.unit(6 * 0.19, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Foot",
  13234. image: {
  13235. source: "./media/characters/vincent/foot.svg"
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Base",
  13242. height: math.unit(6 + 5 / 12, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(300, "feet")
  13248. },
  13249. {
  13250. name: "Megamacro",
  13251. height: math.unit(2, "miles")
  13252. },
  13253. {
  13254. name: "Gigamacro",
  13255. height: math.unit(1000, "miles")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(6 + 2 / 12, "feet"),
  13264. weight: math.unit(265, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/jay/front.svg",
  13268. extra: 1510 / 1430,
  13269. bottom: 0.042
  13270. }
  13271. },
  13272. back: {
  13273. height: math.unit(6 + 2 / 12, "feet"),
  13274. weight: math.unit(265, "lb"),
  13275. name: "Back",
  13276. image: {
  13277. source: "./media/characters/jay/back.svg",
  13278. extra: 1510 / 1430,
  13279. bottom: 0.025
  13280. }
  13281. },
  13282. clothed: {
  13283. height: math.unit(6 + 2 / 12, "feet"),
  13284. weight: math.unit(265, "lb"),
  13285. name: "Front (Clothed)",
  13286. image: {
  13287. source: "./media/characters/jay/clothed.svg",
  13288. extra: 744 / 699,
  13289. bottom: 0.043
  13290. }
  13291. },
  13292. head: {
  13293. height: math.unit(1.772, "feet"),
  13294. name: "Head",
  13295. image: {
  13296. source: "./media/characters/jay/head.svg"
  13297. }
  13298. },
  13299. sizeRay: {
  13300. height: math.unit(1.331, "feet"),
  13301. name: "Size Ray",
  13302. image: {
  13303. source: "./media/characters/jay/size-ray.svg"
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Micro",
  13310. height: math.unit(1, "inch")
  13311. },
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(6 + 2 / 12, "feet"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(1, "mile")
  13320. },
  13321. {
  13322. name: "Megamacro",
  13323. height: math.unit(100, "miles")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(2, "meters"),
  13332. weight: math.unit(500, "kg"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/coatl/front.svg",
  13336. extra: 3948 / 3500,
  13337. bottom: 0.082
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(4, "meters")
  13345. },
  13346. {
  13347. name: "Macro",
  13348. height: math.unit(100, "meters"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Macro+",
  13353. height: math.unit(300, "meters")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(3, "gigameters")
  13358. },
  13359. {
  13360. name: "Megamacro+",
  13361. height: math.unit(300, "terameters")
  13362. },
  13363. {
  13364. name: "Megamacro++",
  13365. height: math.unit(3, "lightyears")
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(50, "kg"),
  13375. name: "front",
  13376. image: {
  13377. source: "./media/characters/shiroryu/front.svg",
  13378. extra: 1990 / 1935
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Mortal Mingling",
  13385. height: math.unit(3, "meters")
  13386. },
  13387. {
  13388. name: "Kaiju-ish",
  13389. height: math.unit(250, "meters")
  13390. },
  13391. {
  13392. name: "Somewhat Godly",
  13393. height: math.unit(400, "km"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Planetary",
  13398. height: math.unit(300, "megameters")
  13399. },
  13400. {
  13401. name: "Galaxy-dwarfing",
  13402. height: math.unit(450, "kiloparsecs")
  13403. },
  13404. {
  13405. name: "Universe Eater",
  13406. height: math.unit(150, "gigaparsecs")
  13407. },
  13408. {
  13409. name: "Almost Immeasurable",
  13410. height: math.unit(1.3e266, "yottaparsecs")
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13416. {
  13417. front: {
  13418. height: math.unit(6, "feet"),
  13419. weight: math.unit(150, "lb"),
  13420. name: "Front",
  13421. image: {
  13422. source: "./media/characters/umeko/front.svg",
  13423. extra: 1,
  13424. bottom: 0.019
  13425. }
  13426. },
  13427. frontArmored: {
  13428. height: math.unit(6, "feet"),
  13429. weight: math.unit(150, "lb"),
  13430. name: "Front (Armored)",
  13431. image: {
  13432. source: "./media/characters/umeko/front-armored.svg",
  13433. extra: 1,
  13434. bottom: 0.021
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Macro",
  13441. height: math.unit(220, "feet"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Guardian Dragon",
  13446. height: math.unit(50, "miles")
  13447. },
  13448. {
  13449. name: "Cosmic",
  13450. height: math.unit(800000, "miles")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13456. {
  13457. front: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(150, "lb"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/cassidy/front.svg",
  13463. extra: 1,
  13464. bottom: 0.043
  13465. }
  13466. },
  13467. },
  13468. [
  13469. {
  13470. name: "Canon Height",
  13471. height: math.unit(120, "feet"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Macro+",
  13476. height: math.unit(400, "feet")
  13477. },
  13478. {
  13479. name: "Macro++",
  13480. height: math.unit(4000, "feet")
  13481. },
  13482. {
  13483. name: "Megamacro",
  13484. height: math.unit(3, "miles")
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/isaac/front.svg",
  13497. extra: 896 / 815,
  13498. bottom: 0.11
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Human Size",
  13505. height: math.unit(8, "feet"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(400, "feet")
  13511. },
  13512. {
  13513. name: "Megamacro",
  13514. height: math.unit(50, "miles")
  13515. },
  13516. {
  13517. name: "Canon Height",
  13518. height: math.unit(200, "AU")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(6, "feet"),
  13527. weight: math.unit(72, "kg"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/sleekit/front.svg",
  13531. extra: 4693 / 4487,
  13532. bottom: 0.012
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Minimum Height",
  13539. height: math.unit(10, "meters")
  13540. },
  13541. {
  13542. name: "Smaller",
  13543. height: math.unit(25, "meters")
  13544. },
  13545. {
  13546. name: "Larger",
  13547. height: math.unit(38, "meters"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Maximum height",
  13552. height: math.unit(100, "meters")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/nillia/front.svg",
  13565. extra: 2195 / 2037,
  13566. bottom: 0.005
  13567. }
  13568. },
  13569. back: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(150, "lb"),
  13572. name: "Back",
  13573. image: {
  13574. source: "./media/characters/nillia/back.svg",
  13575. extra: 2195 / 2037,
  13576. bottom: 0.005
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Canon Height",
  13583. height: math.unit(489, "feet"),
  13584. default: true
  13585. }
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/mesmyriza/front.svg",
  13597. extra: 2067 / 1784,
  13598. bottom: 0.035
  13599. }
  13600. },
  13601. foot: {
  13602. height: math.unit(6 / (250 / 35), "feet"),
  13603. name: "Foot",
  13604. image: {
  13605. source: "./media/characters/mesmyriza/foot.svg"
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Macro",
  13612. height: math.unit(457, "meters"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Megamacro",
  13617. height: math.unit(8, "megameters")
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(250, "lb"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/saudade/front.svg",
  13630. extra: 1172 / 1139,
  13631. bottom: 0.035
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "Micro",
  13638. height: math.unit(3, "inches")
  13639. },
  13640. {
  13641. name: "Normal",
  13642. height: math.unit(6, "feet"),
  13643. default: true
  13644. },
  13645. {
  13646. name: "Macro",
  13647. height: math.unit(50, "feet")
  13648. },
  13649. {
  13650. name: "Megamacro",
  13651. height: math.unit(2800, "feet")
  13652. },
  13653. ]
  13654. ))
  13655. characterMakers.push(() => makeCharacter(
  13656. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13657. {
  13658. front: {
  13659. height: math.unit(5 + 4 / 12, "feet"),
  13660. weight: math.unit(100, "lb"),
  13661. name: "Front",
  13662. image: {
  13663. source: "./media/characters/keireer/front.svg",
  13664. extra: 716 / 666,
  13665. bottom: 0.05
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(5 + 4 / 12, "feet"),
  13673. default: true
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13679. {
  13680. front: {
  13681. height: math.unit(6, "feet"),
  13682. weight: math.unit(90, "kg"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/mirja/front.svg",
  13686. extra: 1789 / 1683,
  13687. bottom: 0.05
  13688. }
  13689. },
  13690. frontDressed: {
  13691. height: math.unit(6, "feet"),
  13692. weight: math.unit(90, "lb"),
  13693. name: "Front (Dressed)",
  13694. image: {
  13695. source: "./media/characters/mirja/front-dressed.svg",
  13696. extra: 1789 / 1683,
  13697. bottom: 0.05
  13698. }
  13699. },
  13700. back: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(90, "lb"),
  13703. name: "Back",
  13704. image: {
  13705. source: "./media/characters/mirja/back.svg",
  13706. extra: 953 / 917,
  13707. bottom: 0.017
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "\"Incognito\"",
  13714. height: math.unit(3, "meters")
  13715. },
  13716. {
  13717. name: "Strolling Size",
  13718. height: math.unit(15, "km")
  13719. },
  13720. {
  13721. name: "Larger Strolling Size",
  13722. height: math.unit(400, "km")
  13723. },
  13724. {
  13725. name: "Preferred Size",
  13726. height: math.unit(5000, "km")
  13727. },
  13728. {
  13729. name: "True Size",
  13730. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13731. default: true
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(15, "feet"),
  13740. weight: math.unit(880, "kg"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/nightraver/front.svg",
  13744. extra: 2444 / 2160,
  13745. bottom: 0.027
  13746. }
  13747. },
  13748. back: {
  13749. height: math.unit(15, "feet"),
  13750. weight: math.unit(880, "kg"),
  13751. name: "Back",
  13752. image: {
  13753. source: "./media/characters/nightraver/back.svg",
  13754. extra: 2309 / 2180,
  13755. bottom: 0.005
  13756. }
  13757. },
  13758. sole: {
  13759. height: math.unit(2.878, "feet"),
  13760. name: "Sole",
  13761. image: {
  13762. source: "./media/characters/nightraver/sole.svg"
  13763. }
  13764. },
  13765. foot: {
  13766. height: math.unit(2.285, "feet"),
  13767. name: "Foot",
  13768. image: {
  13769. source: "./media/characters/nightraver/foot.svg"
  13770. }
  13771. },
  13772. maw: {
  13773. height: math.unit(2.67, "feet"),
  13774. name: "Maw",
  13775. image: {
  13776. source: "./media/characters/nightraver/maw.svg"
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Micro",
  13783. height: math.unit(1, "cm")
  13784. },
  13785. {
  13786. name: "Normal",
  13787. height: math.unit(15, "feet"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Macro",
  13792. height: math.unit(300, "feet")
  13793. },
  13794. {
  13795. name: "Megamacro",
  13796. height: math.unit(300, "miles")
  13797. },
  13798. {
  13799. name: "Gigamacro",
  13800. height: math.unit(10000, "miles")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13806. {
  13807. side: {
  13808. height: math.unit(2, "inches"),
  13809. weight: math.unit(5, "grams"),
  13810. name: "Side",
  13811. image: {
  13812. source: "./media/characters/arc/side.svg"
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Micro",
  13819. height: math.unit(2, "inches"),
  13820. default: true
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(1.1938, "meters"),
  13829. weight: math.unit(54, "kg"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/nebula-shahar/front.svg",
  13833. extra: 1642 / 1436,
  13834. bottom: 0.06
  13835. }
  13836. },
  13837. },
  13838. [
  13839. {
  13840. name: "Megamicro",
  13841. height: math.unit(0.3, "mm")
  13842. },
  13843. {
  13844. name: "Micro",
  13845. height: math.unit(3, "cm")
  13846. },
  13847. {
  13848. name: "Normal",
  13849. height: math.unit(138, "cm"),
  13850. default: true
  13851. },
  13852. {
  13853. name: "Macro",
  13854. height: math.unit(30, "m")
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13860. {
  13861. front: {
  13862. height: math.unit(5.24, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front",
  13865. image: {
  13866. source: "./media/characters/shayla/front.svg",
  13867. extra: 1512 / 1414,
  13868. bottom: 0.01
  13869. }
  13870. },
  13871. back: {
  13872. height: math.unit(5.24, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Back",
  13875. image: {
  13876. source: "./media/characters/shayla/back.svg",
  13877. extra: 1512 / 1414
  13878. }
  13879. },
  13880. hand: {
  13881. height: math.unit(0.7781496062992126, "feet"),
  13882. name: "Hand",
  13883. image: {
  13884. source: "./media/characters/shayla/hand.svg"
  13885. }
  13886. },
  13887. foot: {
  13888. height: math.unit(1.4206036745406823, "feet"),
  13889. name: "Foot",
  13890. image: {
  13891. source: "./media/characters/shayla/foot.svg"
  13892. }
  13893. },
  13894. },
  13895. [
  13896. {
  13897. name: "Micro",
  13898. height: math.unit(0.32, "feet")
  13899. },
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(5.24, "feet"),
  13903. default: true
  13904. },
  13905. {
  13906. name: "Macro",
  13907. height: math.unit(492.12, "feet")
  13908. },
  13909. {
  13910. name: "Megamacro",
  13911. height: math.unit(186.41, "miles")
  13912. },
  13913. ]
  13914. ))
  13915. characterMakers.push(() => makeCharacter(
  13916. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13917. {
  13918. front: {
  13919. height: math.unit(2.2, "m"),
  13920. weight: math.unit(120, "kg"),
  13921. name: "Front",
  13922. image: {
  13923. source: "./media/characters/pia-jr/front.svg",
  13924. extra: 1000 / 970,
  13925. bottom: 0.035
  13926. }
  13927. },
  13928. hand: {
  13929. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13930. name: "Hand",
  13931. image: {
  13932. source: "./media/characters/pia-jr/hand.svg"
  13933. }
  13934. },
  13935. paw: {
  13936. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13937. name: "Paw",
  13938. image: {
  13939. source: "./media/characters/pia-jr/paw.svg"
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Micro",
  13946. height: math.unit(1.2, "cm")
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(2.2, "m"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(180, "m")
  13956. },
  13957. {
  13958. name: "Megamacro",
  13959. height: math.unit(420, "km")
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(2, "m"),
  13968. weight: math.unit(115, "kg"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/pia-sr/front.svg",
  13972. extra: 760 / 730,
  13973. bottom: 0.015
  13974. }
  13975. },
  13976. back: {
  13977. height: math.unit(2, "m"),
  13978. weight: math.unit(115, "kg"),
  13979. name: "Back",
  13980. image: {
  13981. source: "./media/characters/pia-sr/back.svg",
  13982. extra: 760 / 730,
  13983. bottom: 0.01
  13984. }
  13985. },
  13986. hand: {
  13987. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13988. name: "Hand",
  13989. image: {
  13990. source: "./media/characters/pia-sr/hand.svg"
  13991. }
  13992. },
  13993. foot: {
  13994. height: math.unit(1.83, "feet"),
  13995. name: "Foot",
  13996. image: {
  13997. source: "./media/characters/pia-sr/foot.svg"
  13998. }
  13999. },
  14000. },
  14001. [
  14002. {
  14003. name: "Micro",
  14004. height: math.unit(88, "mm")
  14005. },
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(2, "m"),
  14009. default: true
  14010. },
  14011. {
  14012. name: "Macro",
  14013. height: math.unit(200, "m")
  14014. },
  14015. {
  14016. name: "Megamacro",
  14017. height: math.unit(420, "km")
  14018. },
  14019. ]
  14020. ))
  14021. characterMakers.push(() => makeCharacter(
  14022. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14023. {
  14024. front: {
  14025. height: math.unit(8 + 2 / 12, "feet"),
  14026. weight: math.unit(300, "lb"),
  14027. name: "Front",
  14028. image: {
  14029. source: "./media/characters/kibibyte/front.svg",
  14030. extra: 2221 / 2098,
  14031. bottom: 0.04
  14032. }
  14033. },
  14034. },
  14035. [
  14036. {
  14037. name: "Normal",
  14038. height: math.unit(8 + 2 / 12, "feet"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Socialable Macro",
  14043. height: math.unit(50, "feet")
  14044. },
  14045. {
  14046. name: "Macro",
  14047. height: math.unit(300, "feet")
  14048. },
  14049. {
  14050. name: "Megamacro",
  14051. height: math.unit(500, "miles")
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/felix/front.svg",
  14064. extra: 762 / 722,
  14065. bottom: 0.02
  14066. }
  14067. },
  14068. frontClothed: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front (Clothed)",
  14072. image: {
  14073. source: "./media/characters/felix/front-clothed.svg",
  14074. extra: 762 / 722,
  14075. bottom: 0.02
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(6 + 8 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(2600, "feet")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(450, "miles")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(6 + 1 / 12, "feet"),
  14100. weight: math.unit(250, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/tobo/front.svg",
  14104. extra: 608 / 586,
  14105. bottom: 0.023
  14106. }
  14107. },
  14108. back: {
  14109. height: math.unit(6 + 1 / 12, "feet"),
  14110. weight: math.unit(250, "lb"),
  14111. name: "Back",
  14112. image: {
  14113. source: "./media/characters/tobo/back.svg",
  14114. extra: 608 / 586
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Nano",
  14121. height: math.unit(2, "nm")
  14122. },
  14123. {
  14124. name: "Megamicro",
  14125. height: math.unit(0.1, "mm")
  14126. },
  14127. {
  14128. name: "Micro",
  14129. height: math.unit(1, "inch"),
  14130. default: true
  14131. },
  14132. {
  14133. name: "Human-sized",
  14134. height: math.unit(6 + 1 / 12, "feet")
  14135. },
  14136. {
  14137. name: "Macro",
  14138. height: math.unit(250, "feet")
  14139. },
  14140. {
  14141. name: "Megamacro",
  14142. height: math.unit(75, "miles")
  14143. },
  14144. {
  14145. name: "Texas-sized",
  14146. height: math.unit(750, "miles")
  14147. },
  14148. {
  14149. name: "Teramacro",
  14150. height: math.unit(50000, "miles")
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(6, "feet"),
  14159. weight: math.unit(269, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/danny-kapowsky/front.svg",
  14163. extra: 766 / 736,
  14164. bottom: 0.044
  14165. }
  14166. },
  14167. back: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(269, "lb"),
  14170. name: "Back",
  14171. image: {
  14172. source: "./media/characters/danny-kapowsky/back.svg",
  14173. extra: 797 / 760,
  14174. bottom: 0.025
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Macro",
  14181. height: math.unit(150, "feet"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Macro+",
  14186. height: math.unit(200, "feet")
  14187. },
  14188. {
  14189. name: "Macro++",
  14190. height: math.unit(300, "feet")
  14191. },
  14192. {
  14193. name: "Macro+++",
  14194. height: math.unit(400, "feet")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14200. {
  14201. side: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(170, "lb"),
  14204. name: "Side",
  14205. image: {
  14206. source: "./media/characters/finn/side.svg",
  14207. extra: 1953 / 1807,
  14208. bottom: 0.057
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Megamacro",
  14215. height: math.unit(14445, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14222. {
  14223. front: {
  14224. height: math.unit(5 + 6 / 12, "feet"),
  14225. weight: math.unit(125, "lb"),
  14226. name: "Front",
  14227. image: {
  14228. source: "./media/characters/roy/front.svg",
  14229. extra: 1,
  14230. bottom: 0.11
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Micro",
  14237. height: math.unit(3, "inches"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(5 + 6 / 12, "feet")
  14243. },
  14244. {
  14245. name: "Lesser Macro",
  14246. height: math.unit(60, "feet")
  14247. },
  14248. {
  14249. name: "Greater Macro",
  14250. height: math.unit(120, "feet")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(100, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/aevsivs/front.svg",
  14263. extra: 1,
  14264. bottom: 0.03
  14265. }
  14266. },
  14267. back: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(100, "lb"),
  14270. name: "Back",
  14271. image: {
  14272. source: "./media/characters/aevsivs/back.svg"
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Micro",
  14279. height: math.unit(2, "inches"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5, "feet")
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(5 + 7 / 12, "feet"),
  14293. weight: math.unit(159, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/hildegard/front.svg",
  14297. extra: 289 / 269,
  14298. bottom: 7.63 / 297.8
  14299. }
  14300. },
  14301. back: {
  14302. height: math.unit(5 + 7 / 12, "feet"),
  14303. weight: math.unit(159, "lb"),
  14304. name: "Back",
  14305. image: {
  14306. source: "./media/characters/hildegard/back.svg",
  14307. extra: 280 / 260,
  14308. bottom: 2.3 / 282
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(5 + 7 / 12, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14322. {
  14323. bernard: {
  14324. height: math.unit(2 + 7 / 12, "feet"),
  14325. weight: math.unit(66, "lb"),
  14326. name: "Bernard",
  14327. rename: true,
  14328. image: {
  14329. source: "./media/characters/bernard-wilder/bernard.svg",
  14330. extra: 192 / 128,
  14331. bottom: 0.05
  14332. }
  14333. },
  14334. wilder: {
  14335. height: math.unit(5 + 8 / 12, "feet"),
  14336. weight: math.unit(143, "lb"),
  14337. name: "Wilder",
  14338. rename: true,
  14339. image: {
  14340. source: "./media/characters/bernard-wilder/wilder.svg",
  14341. extra: 361 / 312,
  14342. bottom: 0.02
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Normal",
  14349. height: math.unit(2 + 7 / 12, "feet"),
  14350. default: true
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14356. {
  14357. anthro: {
  14358. height: math.unit(6 + 1 / 12, "feet"),
  14359. weight: math.unit(155, "lb"),
  14360. name: "Anthro",
  14361. image: {
  14362. source: "./media/characters/hearth/anthro.svg",
  14363. extra: 260 / 250,
  14364. bottom: 0.02
  14365. }
  14366. },
  14367. feral: {
  14368. height: math.unit(3.78, "feet"),
  14369. weight: math.unit(35, "kg"),
  14370. name: "Feral",
  14371. image: {
  14372. source: "./media/characters/hearth/feral.svg",
  14373. extra: 153 / 135,
  14374. bottom: 0.03
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Normal",
  14381. height: math.unit(6 + 1 / 12, "feet"),
  14382. default: true
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(182, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/ingrid/front.svg",
  14395. extra: 294 / 268,
  14396. bottom: 0.027
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Normal",
  14403. height: math.unit(6, "feet"),
  14404. default: true
  14405. },
  14406. ]
  14407. ))
  14408. characterMakers.push(() => makeCharacter(
  14409. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14410. {
  14411. eevee: {
  14412. height: math.unit(2 + 10 / 12, "feet"),
  14413. weight: math.unit(86, "lb"),
  14414. name: "Malgam",
  14415. image: {
  14416. source: "./media/characters/malgam/eevee.svg",
  14417. extra: 218 / 180,
  14418. bottom: 0.2
  14419. }
  14420. },
  14421. sylveon: {
  14422. height: math.unit(4, "feet"),
  14423. weight: math.unit(101, "lb"),
  14424. name: "Future Malgam",
  14425. rename: true,
  14426. image: {
  14427. source: "./media/characters/malgam/sylveon.svg",
  14428. extra: 371 / 325,
  14429. bottom: 0.015
  14430. }
  14431. },
  14432. gigantamax: {
  14433. height: math.unit(50, "feet"),
  14434. name: "Gigantamax Malgam",
  14435. rename: true,
  14436. image: {
  14437. source: "./media/characters/malgam/gigantamax.svg"
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(2 + 10 / 12, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(5 + 11 / 12, "feet"),
  14454. weight: math.unit(188, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/fleur/front.svg",
  14458. extra: 309 / 283,
  14459. bottom: 0.007
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(5 + 11 / 12, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(5 + 4 / 12, "feet"),
  14476. weight: math.unit(122, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/jude/front.svg",
  14480. extra: 288 / 273,
  14481. bottom: 0.03
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(5 + 4 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(5 + 11 / 12, "feet"),
  14498. weight: math.unit(190, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/seara/front.svg",
  14502. extra: 1,
  14503. bottom: 0.05
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(5 + 11 / 12, "feet"),
  14511. default: true
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(16 + 5 / 12, "feet"),
  14520. weight: math.unit(524, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/caspian/front.svg",
  14524. extra: 1,
  14525. bottom: 0.04
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(16 + 5 / 12, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(5 + 7 / 12, "feet"),
  14542. weight: math.unit(170, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/mika/front.svg",
  14546. extra: 1,
  14547. bottom: 0.016
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(5 + 7 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(6 + 2 / 12, "feet"),
  14564. weight: math.unit(268, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/sol/front.svg",
  14568. extra: 247 / 231,
  14569. bottom: 0.05
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(6 + 2 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14583. {
  14584. buizel: {
  14585. height: math.unit(2 + 5 / 12, "feet"),
  14586. weight: math.unit(87, "lb"),
  14587. name: "Buizel",
  14588. image: {
  14589. source: "./media/characters/umiko/buizel.svg",
  14590. extra: 172 / 157,
  14591. bottom: 0.01
  14592. }
  14593. },
  14594. floatzel: {
  14595. height: math.unit(5 + 9 / 12, "feet"),
  14596. weight: math.unit(250, "lb"),
  14597. name: "Floatzel",
  14598. image: {
  14599. source: "./media/characters/umiko/floatzel.svg",
  14600. extra: 262 / 248
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(2 + 5 / 12, "feet"),
  14608. default: true
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14614. {
  14615. front: {
  14616. height: math.unit(6 + 2 / 12, "feet"),
  14617. weight: math.unit(146, "lb"),
  14618. name: "Front",
  14619. image: {
  14620. source: "./media/characters/iliac/front.svg",
  14621. extra: 389 / 365,
  14622. bottom: 0.035
  14623. }
  14624. },
  14625. },
  14626. [
  14627. {
  14628. name: "Normal",
  14629. height: math.unit(6 + 2 / 12, "feet"),
  14630. default: true
  14631. },
  14632. ]
  14633. ))
  14634. characterMakers.push(() => makeCharacter(
  14635. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14636. {
  14637. front: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(170, "lb"),
  14640. name: "Front",
  14641. image: {
  14642. source: "./media/characters/topaz/front.svg",
  14643. extra: 317 / 303,
  14644. bottom: 0.055
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(6, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(5 + 11 / 12, "feet"),
  14661. weight: math.unit(144, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/gabriel/front.svg",
  14665. extra: 285 / 262,
  14666. bottom: 0.004
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(5 + 11 / 12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14680. {
  14681. side: {
  14682. height: math.unit(6 + 5 / 12, "feet"),
  14683. weight: math.unit(300, "lb"),
  14684. name: "Side",
  14685. image: {
  14686. source: "./media/characters/tempest-suicune/side.svg",
  14687. extra: 195 / 154,
  14688. bottom: 0.04
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(6 + 5 / 12, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14702. {
  14703. front: {
  14704. height: math.unit(7 + 2 / 12, "feet"),
  14705. weight: math.unit(322, "lb"),
  14706. name: "Front",
  14707. image: {
  14708. source: "./media/characters/vulcan/front.svg",
  14709. extra: 154 / 147,
  14710. bottom: 0.04
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(7 + 2 / 12, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5 + 10 / 12, "feet"),
  14727. weight: math.unit(264, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/gault/front.svg",
  14731. extra: 161 / 140,
  14732. bottom: 0.028
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(5 + 10 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(6, "feet"),
  14749. weight: math.unit(150, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/shard/front.svg",
  14753. extra: 273 / 238,
  14754. bottom: 0.02
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(3 + 6 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(5 + 11 / 12, "feet"),
  14771. weight: math.unit(146, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/ashe/front.svg",
  14775. extra: 400 / 373,
  14776. bottom: 0.01
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(5 + 11 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(5 + 5 / 12, "feet"),
  14793. weight: math.unit(135, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/beatrix/front.svg",
  14797. extra: 392 / 379,
  14798. bottom: 0.01
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(6, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/ignatius/front.svg",
  14819. extra: 245 / 222,
  14820. bottom: 0.01
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 5 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6 + 2 / 12, "feet"),
  14837. weight: math.unit(138, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/mei-li/front.svg",
  14841. extra: 237 / 229,
  14842. bottom: 0.03
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(6 + 2 / 12, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(2 + 4 / 12, "feet"),
  14859. weight: math.unit(62, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/puru/front.svg",
  14863. extra: 206 / 149,
  14864. bottom: 0.06
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(2 + 4 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14878. {
  14879. taur: {
  14880. height: math.unit(11, "feet"),
  14881. weight: math.unit(500, "lb"),
  14882. name: "Taur",
  14883. image: {
  14884. source: "./media/characters/kee/taur.svg",
  14885. extra: 1,
  14886. bottom: 0.04
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(11, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14900. {
  14901. anthro: {
  14902. height: math.unit(7, "feet"),
  14903. weight: math.unit(190, "lb"),
  14904. name: "Anthro",
  14905. image: {
  14906. source: "./media/characters/cobalt-dracha/anthro.svg",
  14907. extra: 231 / 225,
  14908. bottom: 0.04
  14909. }
  14910. },
  14911. feral: {
  14912. height: math.unit(9 + 7 / 12, "feet"),
  14913. weight: math.unit(294, "lb"),
  14914. name: "Feral",
  14915. image: {
  14916. source: "./media/characters/cobalt-dracha/feral.svg",
  14917. extra: 692 / 633,
  14918. bottom: 0.05
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(7, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14932. {
  14933. fallen: {
  14934. height: math.unit(11 + 8 / 12, "feet"),
  14935. weight: math.unit(485, "lb"),
  14936. name: "Java (Fallen)",
  14937. rename: true,
  14938. image: {
  14939. source: "./media/characters/java/fallen.svg",
  14940. extra: 226 / 208,
  14941. bottom: 0.005
  14942. }
  14943. },
  14944. godkin: {
  14945. height: math.unit(10 + 6 / 12, "feet"),
  14946. weight: math.unit(328, "lb"),
  14947. name: "Java (Godkin)",
  14948. rename: true,
  14949. image: {
  14950. source: "./media/characters/java/godkin.svg",
  14951. extra: 270 / 262,
  14952. bottom: 0.02
  14953. }
  14954. },
  14955. },
  14956. [
  14957. {
  14958. name: "Normal",
  14959. height: math.unit(11 + 8 / 12, "feet"),
  14960. default: true
  14961. },
  14962. ]
  14963. ))
  14964. characterMakers.push(() => makeCharacter(
  14965. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14966. {
  14967. front: {
  14968. height: math.unit(7 + 8 / 12, "feet"),
  14969. weight: math.unit(320, "lb"),
  14970. name: "Front",
  14971. image: {
  14972. source: "./media/characters/skoll/front.svg",
  14973. extra: 232 / 220,
  14974. bottom: 0.02
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(7 + 8 / 12, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14988. {
  14989. front: {
  14990. height: math.unit(5 + 9 / 12, "feet"),
  14991. weight: math.unit(170, "lb"),
  14992. name: "Front",
  14993. image: {
  14994. source: "./media/characters/purna/front.svg",
  14995. extra: 239 / 229,
  14996. bottom: 0.01
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(5 + 9 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(5 + 9 / 12, "feet"),
  15013. weight: math.unit(142, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/kuva/front.svg",
  15017. extra: 281 / 271,
  15018. bottom: 0.006
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(5 + 9 / 12, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15032. {
  15033. anthro: {
  15034. height: math.unit(9 + 2 / 12, "feet"),
  15035. weight: math.unit(270, "lb"),
  15036. name: "Anthro",
  15037. image: {
  15038. source: "./media/characters/embra/anthro.svg",
  15039. extra: 200 / 187,
  15040. bottom: 0.02
  15041. }
  15042. },
  15043. feral: {
  15044. height: math.unit(18 + 8 / 12, "feet"),
  15045. weight: math.unit(576, "lb"),
  15046. name: "Feral",
  15047. image: {
  15048. source: "./media/characters/embra/feral.svg",
  15049. extra: 152 / 137,
  15050. bottom: 0.037
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(9 + 2 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15064. {
  15065. anthro: {
  15066. height: math.unit(10 + 9 / 12, "feet"),
  15067. weight: math.unit(224, "lb"),
  15068. name: "Anthro",
  15069. image: {
  15070. source: "./media/characters/grottos/anthro.svg",
  15071. extra: 350 / 332,
  15072. bottom: 0.045
  15073. }
  15074. },
  15075. feral: {
  15076. height: math.unit(20 + 7 / 12, "feet"),
  15077. weight: math.unit(629, "lb"),
  15078. name: "Feral",
  15079. image: {
  15080. source: "./media/characters/grottos/feral.svg",
  15081. extra: 207 / 190,
  15082. bottom: 0.05
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(10 + 9 / 12, "feet"),
  15090. default: true
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15096. {
  15097. anthro: {
  15098. height: math.unit(9 + 6 / 12, "feet"),
  15099. weight: math.unit(298, "lb"),
  15100. name: "Anthro",
  15101. image: {
  15102. source: "./media/characters/frifna/anthro.svg",
  15103. extra: 282 / 269,
  15104. bottom: 0.015
  15105. }
  15106. },
  15107. feral: {
  15108. height: math.unit(16 + 2 / 12, "feet"),
  15109. weight: math.unit(624, "lb"),
  15110. name: "Feral",
  15111. image: {
  15112. source: "./media/characters/frifna/feral.svg"
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(9 + 6 / 12, "feet"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(6 + 2 / 12, "feet"),
  15129. weight: math.unit(168, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/elise/front.svg",
  15133. extra: 276 / 271
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(6 + 2 / 12, "feet"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(5 + 10 / 12, "feet"),
  15150. weight: math.unit(210, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/glade/front.svg",
  15154. extra: 258 / 247,
  15155. bottom: 0.008
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Normal",
  15162. height: math.unit(5 + 10 / 12, "feet"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(5 + 10 / 12, "feet"),
  15172. weight: math.unit(129, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/rina/front.svg",
  15176. extra: 266 / 255,
  15177. bottom: 0.005
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(5 + 10 / 12, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(6 + 1 / 12, "feet"),
  15194. weight: math.unit(192, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/veronica/front.svg",
  15198. extra: 319 / 309,
  15199. bottom: 0.005
  15200. }
  15201. },
  15202. },
  15203. [
  15204. {
  15205. name: "Normal",
  15206. height: math.unit(6 + 1 / 12, "feet"),
  15207. default: true
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(9 + 3 / 12, "feet"),
  15216. weight: math.unit(1100, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/braxton/front.svg",
  15220. extra: 1057 / 984,
  15221. bottom: 0.05
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(9 + 3 / 12, "feet")
  15229. },
  15230. {
  15231. name: "Giant",
  15232. height: math.unit(300, "feet"),
  15233. default: true
  15234. },
  15235. {
  15236. name: "Macro",
  15237. height: math.unit(700, "feet")
  15238. },
  15239. {
  15240. name: "Megamacro",
  15241. height: math.unit(6000, "feet")
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(6 + 7 / 12, "feet"),
  15250. weight: math.unit(150, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/blue-feyonics/front.svg",
  15254. extra: 1403 / 1306,
  15255. bottom: 0.047
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(6 + 7 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(1.8, "meters"),
  15272. weight: math.unit(60, "kg"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/maxwell/front.svg",
  15276. extra: 2060 / 1873
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Micro",
  15283. height: math.unit(1, "mm")
  15284. },
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(1.8, "meter"),
  15288. default: true
  15289. },
  15290. {
  15291. name: "Macro",
  15292. height: math.unit(30, "meters")
  15293. },
  15294. {
  15295. name: "Megamacro",
  15296. height: math.unit(10, "km")
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15302. {
  15303. front: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(150, "lb"),
  15306. name: "Front",
  15307. image: {
  15308. source: "./media/characters/jack/front.svg",
  15309. extra: 1754 / 1640,
  15310. bottom: 0.01
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(80000, "feet"),
  15318. default: true
  15319. },
  15320. {
  15321. name: "Max size",
  15322. height: math.unit(10, "lightyears")
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15328. {
  15329. upright: {
  15330. height: math.unit(7, "feet"),
  15331. weight: math.unit(170, "lb"),
  15332. name: "Upright",
  15333. image: {
  15334. source: "./media/characters/cafat/upright.svg",
  15335. bottom: 0.01
  15336. }
  15337. },
  15338. uprightFull: {
  15339. height: math.unit(7, "feet"),
  15340. weight: math.unit(170, "lb"),
  15341. name: "Upright (Full)",
  15342. image: {
  15343. source: "./media/characters/cafat/upright-full.svg",
  15344. bottom: 0.01
  15345. }
  15346. },
  15347. side: {
  15348. height: math.unit(5, "feet"),
  15349. weight: math.unit(150, "lb"),
  15350. name: "Side",
  15351. image: {
  15352. source: "./media/characters/cafat/side.svg"
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Small",
  15359. height: math.unit(7, "feet"),
  15360. default: true
  15361. },
  15362. {
  15363. name: "Large",
  15364. height: math.unit(15.5, "feet")
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/verin-raharra/front.svg",
  15377. extra: 5019 / 4835,
  15378. bottom: 0.023
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(7 + 5 / 12, "feet"),
  15386. default: true
  15387. },
  15388. {
  15389. name: "Upsized",
  15390. height: math.unit(20, "feet")
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(7, "feet"),
  15399. weight: math.unit(230, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/nakata/front.svg",
  15403. extra: 1.005,
  15404. bottom: 0.01
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(7, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Big",
  15416. height: math.unit(14, "feet")
  15417. },
  15418. {
  15419. name: "Macro",
  15420. height: math.unit(400, "feet")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(4.91, "feet"),
  15429. weight: math.unit(100, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/lily/front.svg",
  15433. extra: 1585 / 1415,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(4.91, "feet"),
  15442. default: true
  15443. },
  15444. ]
  15445. ))
  15446. characterMakers.push(() => makeCharacter(
  15447. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15448. {
  15449. laying: {
  15450. height: math.unit(4 + 4 / 12, "feet"),
  15451. weight: math.unit(600, "lb"),
  15452. name: "Laying",
  15453. image: {
  15454. source: "./media/characters/sheila/laying.svg",
  15455. extra: 1333 / 1265,
  15456. bottom: 0.16
  15457. }
  15458. },
  15459. },
  15460. [
  15461. {
  15462. name: "Normal",
  15463. height: math.unit(4 + 4 / 12, "feet"),
  15464. default: true
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(190, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/sax/front.svg",
  15477. extra: 1187 / 973,
  15478. bottom: 0.042
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Micro",
  15485. height: math.unit(4, "inches"),
  15486. default: true
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15492. {
  15493. front: {
  15494. height: math.unit(6, "feet"),
  15495. weight: math.unit(150, "lb"),
  15496. name: "Front",
  15497. image: {
  15498. source: "./media/characters/pandora/front.svg",
  15499. extra: 2720 / 2556,
  15500. bottom: 0.015
  15501. }
  15502. },
  15503. back: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(150, "lb"),
  15506. name: "Back",
  15507. image: {
  15508. source: "./media/characters/pandora/back.svg",
  15509. extra: 2720 / 2556,
  15510. bottom: 0.01
  15511. }
  15512. },
  15513. beans: {
  15514. height: math.unit(6 / 8, "feet"),
  15515. name: "Beans",
  15516. image: {
  15517. source: "./media/characters/pandora/beans.svg"
  15518. }
  15519. },
  15520. skirt: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Skirt",
  15524. image: {
  15525. source: "./media/characters/pandora/skirt.svg",
  15526. extra: 1622 / 1525,
  15527. bottom: 0.015
  15528. }
  15529. },
  15530. hoodie: {
  15531. height: math.unit(6, "feet"),
  15532. weight: math.unit(150, "lb"),
  15533. name: "Hoodie",
  15534. image: {
  15535. source: "./media/characters/pandora/hoodie.svg",
  15536. extra: 1622 / 1525,
  15537. bottom: 0.015
  15538. }
  15539. },
  15540. casual: {
  15541. height: math.unit(6, "feet"),
  15542. weight: math.unit(150, "lb"),
  15543. name: "Casual",
  15544. image: {
  15545. source: "./media/characters/pandora/casual.svg",
  15546. extra: 1622 / 1525,
  15547. bottom: 0.015
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(6, "feet")
  15555. },
  15556. {
  15557. name: "Big Steppy",
  15558. height: math.unit(1, "km"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15565. {
  15566. side: {
  15567. height: math.unit(10, "feet"),
  15568. weight: math.unit(800, "kg"),
  15569. name: "Side",
  15570. image: {
  15571. source: "./media/characters/venio-darcony/side.svg",
  15572. extra: 1373 / 1003,
  15573. bottom: 0.037
  15574. }
  15575. },
  15576. front: {
  15577. height: math.unit(19, "feet"),
  15578. weight: math.unit(800, "kg"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/venio-darcony/front.svg"
  15582. }
  15583. },
  15584. back: {
  15585. height: math.unit(19, "feet"),
  15586. weight: math.unit(800, "kg"),
  15587. name: "Back",
  15588. image: {
  15589. source: "./media/characters/venio-darcony/back.svg"
  15590. }
  15591. },
  15592. sideNsfw: {
  15593. height: math.unit(10, "feet"),
  15594. weight: math.unit(800, "kg"),
  15595. name: "Side (NSFW)",
  15596. image: {
  15597. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15598. extra: 1373 / 1003,
  15599. bottom: 0.037
  15600. }
  15601. },
  15602. frontNsfw: {
  15603. height: math.unit(19, "feet"),
  15604. weight: math.unit(800, "kg"),
  15605. name: "Front (NSFW)",
  15606. image: {
  15607. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15608. }
  15609. },
  15610. backNsfw: {
  15611. height: math.unit(19, "feet"),
  15612. weight: math.unit(800, "kg"),
  15613. name: "Back (NSFW)",
  15614. image: {
  15615. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15616. }
  15617. },
  15618. sideArmored: {
  15619. height: math.unit(10, "feet"),
  15620. weight: math.unit(800, "kg"),
  15621. name: "Side (Armored)",
  15622. image: {
  15623. source: "./media/characters/venio-darcony/side-armored.svg",
  15624. extra: 1373 / 1003,
  15625. bottom: 0.037
  15626. }
  15627. },
  15628. frontArmored: {
  15629. height: math.unit(19, "feet"),
  15630. weight: math.unit(900, "kg"),
  15631. name: "Front (Armored)",
  15632. image: {
  15633. source: "./media/characters/venio-darcony/front-armored.svg"
  15634. }
  15635. },
  15636. backArmored: {
  15637. height: math.unit(19, "feet"),
  15638. weight: math.unit(900, "kg"),
  15639. name: "Back (Armored)",
  15640. image: {
  15641. source: "./media/characters/venio-darcony/back-armored.svg"
  15642. }
  15643. },
  15644. sword: {
  15645. height: math.unit(10, "feet"),
  15646. weight: math.unit(50, "lb"),
  15647. name: "Sword",
  15648. image: {
  15649. source: "./media/characters/venio-darcony/sword.svg"
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Normal",
  15656. height: math.unit(10, "feet")
  15657. },
  15658. {
  15659. name: "Macro",
  15660. height: math.unit(130, "feet"),
  15661. default: true
  15662. },
  15663. {
  15664. name: "Macro+",
  15665. height: math.unit(240, "feet")
  15666. },
  15667. ]
  15668. ))
  15669. characterMakers.push(() => makeCharacter(
  15670. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15671. {
  15672. front: {
  15673. height: math.unit(6, "feet"),
  15674. weight: math.unit(150, "lb"),
  15675. name: "Front",
  15676. image: {
  15677. source: "./media/characters/veski/front.svg",
  15678. extra: 1299 / 1225,
  15679. bottom: 0.04
  15680. }
  15681. },
  15682. back: {
  15683. height: math.unit(6, "feet"),
  15684. weight: math.unit(150, "lb"),
  15685. name: "Back",
  15686. image: {
  15687. source: "./media/characters/veski/back.svg",
  15688. extra: 1299 / 1225,
  15689. bottom: 0.008
  15690. }
  15691. },
  15692. maw: {
  15693. height: math.unit(1.5 * 1.21, "feet"),
  15694. name: "Maw",
  15695. image: {
  15696. source: "./media/characters/veski/maw.svg"
  15697. }
  15698. },
  15699. },
  15700. [
  15701. {
  15702. name: "Macro",
  15703. height: math.unit(2, "km"),
  15704. default: true
  15705. },
  15706. ]
  15707. ))
  15708. characterMakers.push(() => makeCharacter(
  15709. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15710. {
  15711. front: {
  15712. height: math.unit(5 + 7 / 12, "feet"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/isabelle/front.svg",
  15716. extra: 2130 / 1976,
  15717. bottom: 0.05
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Supermicro",
  15724. height: math.unit(10, "micrometers")
  15725. },
  15726. {
  15727. name: "Micro",
  15728. height: math.unit(1, "inch")
  15729. },
  15730. {
  15731. name: "Tiny",
  15732. height: math.unit(5, "inches")
  15733. },
  15734. {
  15735. name: "Standard",
  15736. height: math.unit(5 + 7 / 12, "inches")
  15737. },
  15738. {
  15739. name: "Macro",
  15740. height: math.unit(80, "meters"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Megamacro",
  15745. height: math.unit(250, "meters")
  15746. },
  15747. {
  15748. name: "Gigamacro",
  15749. height: math.unit(5, "km")
  15750. },
  15751. {
  15752. name: "Cosmic",
  15753. height: math.unit(2.5e6, "miles")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(6, "feet"),
  15762. weight: math.unit(150, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/hanzo/front.svg",
  15766. extra: 374 / 344,
  15767. bottom: 0.02
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(8, "feet"),
  15775. default: true
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(7, "feet"),
  15784. weight: math.unit(130, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/anna/front.svg",
  15788. extra: 169 / 145,
  15789. bottom: 0.06
  15790. }
  15791. },
  15792. full: {
  15793. height: math.unit(4.96, "feet"),
  15794. weight: math.unit(220, "lb"),
  15795. name: "Full",
  15796. image: {
  15797. source: "./media/characters/anna/full.svg",
  15798. extra: 138 / 114,
  15799. bottom: 0.15
  15800. }
  15801. },
  15802. tongue: {
  15803. height: math.unit(2.53, "feet"),
  15804. name: "Tongue",
  15805. image: {
  15806. source: "./media/characters/anna/tongue.svg"
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(7, "feet"),
  15814. default: true
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(7, "feet"),
  15823. weight: math.unit(150, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/ian-corvid/front.svg",
  15827. extra: 150 / 142,
  15828. bottom: 0.02
  15829. }
  15830. },
  15831. back: {
  15832. height: math.unit(7, "feet"),
  15833. weight: math.unit(150, "lb"),
  15834. name: "Back",
  15835. image: {
  15836. source: "./media/characters/ian-corvid/back.svg",
  15837. extra: 150 / 143,
  15838. bottom: 0.01
  15839. }
  15840. },
  15841. stomping: {
  15842. height: math.unit(7, "feet"),
  15843. weight: math.unit(150, "lb"),
  15844. name: "Stomping",
  15845. image: {
  15846. source: "./media/characters/ian-corvid/stomping.svg",
  15847. extra: 76 / 72
  15848. }
  15849. },
  15850. sitting: {
  15851. height: math.unit(7 / 1.8, "feet"),
  15852. weight: math.unit(150, "lb"),
  15853. name: "Sitting",
  15854. image: {
  15855. source: "./media/characters/ian-corvid/sitting.svg",
  15856. extra: 1400 / 1269,
  15857. bottom: 0.15
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Tiny Microw",
  15864. height: math.unit(1, "inch")
  15865. },
  15866. {
  15867. name: "Microw",
  15868. height: math.unit(6, "inches")
  15869. },
  15870. {
  15871. name: "Crow",
  15872. height: math.unit(7 + 1 / 12, "feet"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macrow",
  15877. height: math.unit(176, "feet")
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 7 / 12, "feet"),
  15886. weight: math.unit(147, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/natalie-kellon/front.svg",
  15890. extra: 1214 / 1141,
  15891. bottom: 0.02
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Micro",
  15898. height: math.unit(1 / 16, "inch")
  15899. },
  15900. {
  15901. name: "Tiny",
  15902. height: math.unit(4, "inches")
  15903. },
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(5 + 7 / 12, "feet"),
  15907. default: true
  15908. },
  15909. {
  15910. name: "Amazon",
  15911. height: math.unit(12, "feet")
  15912. },
  15913. {
  15914. name: "Giantess",
  15915. height: math.unit(160, "meters")
  15916. },
  15917. {
  15918. name: "Titaness",
  15919. height: math.unit(800, "meters")
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(6, "feet"),
  15928. weight: math.unit(150, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/alluria/front.svg",
  15932. extra: 806 / 738,
  15933. bottom: 0.01
  15934. }
  15935. },
  15936. side: {
  15937. height: math.unit(6, "feet"),
  15938. weight: math.unit(150, "lb"),
  15939. name: "Side",
  15940. image: {
  15941. source: "./media/characters/alluria/side.svg",
  15942. extra: 800 / 750,
  15943. }
  15944. },
  15945. back: {
  15946. height: math.unit(6, "feet"),
  15947. weight: math.unit(150, "lb"),
  15948. name: "Back",
  15949. image: {
  15950. source: "./media/characters/alluria/back.svg",
  15951. extra: 806 / 738,
  15952. }
  15953. },
  15954. frontMaid: {
  15955. height: math.unit(6, "feet"),
  15956. weight: math.unit(150, "lb"),
  15957. name: "Front (Maid)",
  15958. image: {
  15959. source: "./media/characters/alluria/front-maid.svg",
  15960. extra: 806 / 738,
  15961. bottom: 0.01
  15962. }
  15963. },
  15964. sideMaid: {
  15965. height: math.unit(6, "feet"),
  15966. weight: math.unit(150, "lb"),
  15967. name: "Side (Maid)",
  15968. image: {
  15969. source: "./media/characters/alluria/side-maid.svg",
  15970. extra: 800 / 750,
  15971. bottom: 0.005
  15972. }
  15973. },
  15974. backMaid: {
  15975. height: math.unit(6, "feet"),
  15976. weight: math.unit(150, "lb"),
  15977. name: "Back (Maid)",
  15978. image: {
  15979. source: "./media/characters/alluria/back-maid.svg",
  15980. extra: 806 / 738,
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(6, "inches"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(6, "feet"),
  15997. weight: math.unit(150, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/kyle/front.svg",
  16001. extra: 1069 / 962,
  16002. bottom: 77.228 / 1727.45
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Macro",
  16009. height: math.unit(150, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(300, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/duncan/front.svg",
  16023. extra: 1650 / 1482,
  16024. bottom: 0.05
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(100, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(5 + 4 / 12, "feet"),
  16041. weight: math.unit(220, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/memory/front.svg",
  16045. extra: 3641 / 3545,
  16046. bottom: 0.03
  16047. }
  16048. },
  16049. back: {
  16050. height: math.unit(5 + 4 / 12, "feet"),
  16051. weight: math.unit(220, "lb"),
  16052. name: "Back",
  16053. image: {
  16054. source: "./media/characters/memory/back.svg",
  16055. extra: 3641 / 3545,
  16056. bottom: 0.025
  16057. }
  16058. },
  16059. frontSkirt: {
  16060. height: math.unit(5 + 4 / 12, "feet"),
  16061. weight: math.unit(220, "lb"),
  16062. name: "Front (Skirt)",
  16063. image: {
  16064. source: "./media/characters/memory/front-skirt.svg",
  16065. extra: 3641 / 3545,
  16066. bottom: 0.03
  16067. }
  16068. },
  16069. frontDress: {
  16070. height: math.unit(5 + 4 / 12, "feet"),
  16071. weight: math.unit(220, "lb"),
  16072. name: "Front (Dress)",
  16073. image: {
  16074. source: "./media/characters/memory/front-dress.svg",
  16075. extra: 3641 / 3545,
  16076. bottom: 0.03
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Micro",
  16083. height: math.unit(6, "inches"),
  16084. default: true
  16085. },
  16086. {
  16087. name: "Normal",
  16088. height: math.unit(5 + 4 / 12, "feet")
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(4 + 11 / 12, "feet"),
  16097. weight: math.unit(100, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/luno/front.svg",
  16101. extra: 1535 / 1487,
  16102. bottom: 0.03
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Micro",
  16109. height: math.unit(3, "inches")
  16110. },
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(4 + 11 / 12, "feet"),
  16114. default: true
  16115. },
  16116. {
  16117. name: "Macro",
  16118. height: math.unit(300, "feet")
  16119. },
  16120. {
  16121. name: "Megamacro",
  16122. height: math.unit(700, "miles")
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(6 + 2 / 12, "feet"),
  16131. weight: math.unit(170, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/jamesy/front.svg",
  16135. extra: 440 / 382,
  16136. bottom: 0.005
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Micro",
  16143. height: math.unit(3, "inches")
  16144. },
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(6 + 2 / 12, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Macro",
  16152. height: math.unit(300, "feet")
  16153. },
  16154. {
  16155. name: "Megamacro",
  16156. height: math.unit(700, "miles")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(160, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/mark/front.svg",
  16169. extra: 3300 / 3100,
  16170. bottom: 136.42 / 3440.47
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(120, "meters")
  16178. },
  16179. {
  16180. name: "Bigger Macro",
  16181. height: math.unit(350, "meters")
  16182. },
  16183. {
  16184. name: "Megamacro",
  16185. height: math.unit(8, "km"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Continental",
  16190. height: math.unit(4550, "km")
  16191. },
  16192. {
  16193. name: "Planetary",
  16194. height: math.unit(65000, "km")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(400, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/mac/front.svg",
  16207. extra: 1048 / 987.7,
  16208. bottom: 60 / 1107.6,
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Macro",
  16215. height: math.unit(500, "feet"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(5 + 2 / 12, "feet"),
  16225. weight: math.unit(190, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/bari/front.svg",
  16229. extra: 3156 / 2880,
  16230. bottom: 0.03
  16231. }
  16232. },
  16233. back: {
  16234. height: math.unit(5 + 2 / 12, "feet"),
  16235. weight: math.unit(190, "lb"),
  16236. name: "Back",
  16237. image: {
  16238. source: "./media/characters/bari/back.svg",
  16239. extra: 3260 / 2834,
  16240. bottom: 0.025
  16241. }
  16242. },
  16243. frontPlush: {
  16244. height: math.unit(5 + 2 / 12, "feet"),
  16245. weight: math.unit(190, "lb"),
  16246. name: "Front (Plush)",
  16247. image: {
  16248. source: "./media/characters/bari/front-plush.svg",
  16249. extra: 1112 / 1061,
  16250. bottom: 0.002
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(3, "inches")
  16258. },
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(5 + 2 / 12, "feet"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(20, "feet")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(6 + 1 / 12, "feet"),
  16275. weight: math.unit(275, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/hunter-misha-raven/front.svg"
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Mortal",
  16285. height: math.unit(6 + 1 / 12, "feet")
  16286. },
  16287. {
  16288. name: "Divine",
  16289. height: math.unit(1.12134e34, "parsecs"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6 + 3 / 12, "feet"),
  16299. weight: math.unit(220, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/max-calore/front.svg",
  16303. extra: 1700 / 1648,
  16304. bottom: 0.01
  16305. }
  16306. },
  16307. back: {
  16308. height: math.unit(6 + 3 / 12, "feet"),
  16309. weight: math.unit(220, "lb"),
  16310. name: "Back",
  16311. image: {
  16312. source: "./media/characters/max-calore/back.svg",
  16313. extra: 1700 / 1648,
  16314. bottom: 0.01
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(6 + 3 / 12, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16328. {
  16329. side: {
  16330. height: math.unit(2 + 8 / 12, "feet"),
  16331. weight: math.unit(99, "lb"),
  16332. name: "Side",
  16333. image: {
  16334. source: "./media/characters/aspen/side.svg",
  16335. extra: 152 / 138,
  16336. bottom: 0.032
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(2 + 8 / 12, "feet"),
  16344. default: true
  16345. },
  16346. ]
  16347. ))
  16348. characterMakers.push(() => makeCharacter(
  16349. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16350. {
  16351. side: {
  16352. height: math.unit(3 + 2 / 12, "feet"),
  16353. weight: math.unit(224, "lb"),
  16354. name: "Side",
  16355. image: {
  16356. source: "./media/characters/sheila-feral-wolf/side.svg",
  16357. extra: 179 / 166,
  16358. bottom: 0.03
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(3 + 2 / 12, "feet"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16372. {
  16373. side: {
  16374. height: math.unit(1 + 9 / 12, "feet"),
  16375. weight: math.unit(38, "lb"),
  16376. name: "Side",
  16377. image: {
  16378. source: "./media/characters/michelle/side.svg",
  16379. extra: 147 / 136.7,
  16380. bottom: 0.03
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(1 + 9 / 12, "feet"),
  16388. default: true
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16394. {
  16395. front: {
  16396. height: math.unit(1 + 1 / 12, "feet"),
  16397. weight: math.unit(18, "lb"),
  16398. name: "Front",
  16399. image: {
  16400. source: "./media/characters/nino/front.svg"
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(1 + 1 / 12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(1, "feet"),
  16417. weight: math.unit(16, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/viola/front.svg"
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(1, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(6 + 5 / 12, "feet"),
  16437. weight: math.unit(580, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/atlas/front.svg",
  16441. extra: 298.5 / 290,
  16442. bottom: 0.015
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(6 + 5 / 12, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16456. {
  16457. side: {
  16458. height: math.unit(1 + 10 / 12, "feet"),
  16459. weight: math.unit(25, "lb"),
  16460. name: "Side",
  16461. image: {
  16462. source: "./media/characters/davy/side.svg",
  16463. extra: 200 / 170,
  16464. bottom: 0.01
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(1 + 10 / 12, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16478. {
  16479. side: {
  16480. height: math.unit(4 + 8 / 12, "feet"),
  16481. weight: math.unit(166, "lb"),
  16482. name: "Side",
  16483. image: {
  16484. source: "./media/characters/fiona/side.svg",
  16485. extra: 232 / 220,
  16486. bottom: 0.03
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(4 + 8 / 12, "feet"),
  16494. default: true
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16500. {
  16501. front: {
  16502. height: math.unit(2, "feet"),
  16503. weight: math.unit(62, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/lyla/front.svg",
  16507. bottom: 0.1
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Normal",
  16514. height: math.unit(2, "feet"),
  16515. default: true
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16521. {
  16522. side: {
  16523. height: math.unit(1.8, "feet"),
  16524. weight: math.unit(44, "lb"),
  16525. name: "Side",
  16526. image: {
  16527. source: "./media/characters/perseus/side.svg",
  16528. bottom: 0.21
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Normal",
  16535. height: math.unit(1.8, "feet"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16542. {
  16543. side: {
  16544. height: math.unit(4 + 2 / 12, "feet"),
  16545. weight: math.unit(20, "lb"),
  16546. name: "Side",
  16547. image: {
  16548. source: "./media/characters/remus/side.svg"
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(4 + 2 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(4 + 11 / 12, "feet"),
  16565. weight: math.unit(114, "lb"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/raf/front.svg",
  16569. bottom: 20.5 / 1863
  16570. }
  16571. },
  16572. side: {
  16573. height: math.unit(4 + 11 / 12, "feet"),
  16574. weight: math.unit(114, "lb"),
  16575. name: "Side",
  16576. image: {
  16577. source: "./media/characters/raf/side.svg",
  16578. bottom: 22 / 1822
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Micro",
  16585. height: math.unit(2, "inches")
  16586. },
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(4 + 11 / 12, "feet"),
  16590. default: true
  16591. },
  16592. {
  16593. name: "Macro",
  16594. height: math.unit(70, "feet")
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16600. {
  16601. front: {
  16602. height: math.unit(1.5, "meters"),
  16603. weight: math.unit(68, "kg"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/liam-einarr/front.svg",
  16607. extra: 2822 / 2666
  16608. }
  16609. },
  16610. back: {
  16611. height: math.unit(1.5, "meters"),
  16612. weight: math.unit(68, "kg"),
  16613. name: "Back",
  16614. image: {
  16615. source: "./media/characters/liam-einarr/back.svg",
  16616. extra: 2822 / 2666,
  16617. bottom: 0.015
  16618. }
  16619. },
  16620. },
  16621. [
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(1.5, "meters"),
  16625. default: true
  16626. },
  16627. {
  16628. name: "Macro",
  16629. height: math.unit(150, "meters")
  16630. },
  16631. {
  16632. name: "Megamacro",
  16633. height: math.unit(35, "km")
  16634. },
  16635. ]
  16636. ))
  16637. characterMakers.push(() => makeCharacter(
  16638. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16639. {
  16640. front: {
  16641. height: math.unit(6, "feet"),
  16642. weight: math.unit(75, "kg"),
  16643. name: "Front",
  16644. image: {
  16645. source: "./media/characters/linda/front.svg",
  16646. extra: 930 / 874,
  16647. bottom: 0.004
  16648. }
  16649. },
  16650. },
  16651. [
  16652. {
  16653. name: "Normal",
  16654. height: math.unit(6, "feet"),
  16655. default: true
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(6 + 8 / 12, "feet"),
  16664. weight: math.unit(220, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/caylex/front.svg",
  16668. extra: 821 / 772,
  16669. bottom: 0.07
  16670. }
  16671. },
  16672. back: {
  16673. height: math.unit(6 + 8 / 12, "feet"),
  16674. weight: math.unit(220, "lb"),
  16675. name: "Back",
  16676. image: {
  16677. source: "./media/characters/caylex/back.svg",
  16678. extra: 821 / 772,
  16679. bottom: 0.022
  16680. }
  16681. },
  16682. hand: {
  16683. height: math.unit(1.25, "feet"),
  16684. name: "Hand",
  16685. image: {
  16686. source: "./media/characters/caylex/hand.svg"
  16687. }
  16688. },
  16689. foot: {
  16690. height: math.unit(1.6, "feet"),
  16691. name: "Foot",
  16692. image: {
  16693. source: "./media/characters/caylex/foot.svg"
  16694. }
  16695. },
  16696. armored: {
  16697. height: math.unit(6 + 8 / 12, "feet"),
  16698. weight: math.unit(250, "lb"),
  16699. name: "Armored",
  16700. image: {
  16701. source: "./media/characters/caylex/armored.svg",
  16702. extra: 1420 / 1310,
  16703. bottom: 0.045
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(6 + 8 / 12, "feet"),
  16711. default: true
  16712. },
  16713. {
  16714. name: "Normal+",
  16715. height: math.unit(12, "feet")
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(7 + 6 / 12, "feet"),
  16724. weight: math.unit(288, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/alana/front.svg",
  16728. extra: 679 / 653,
  16729. bottom: 22.5 / 701
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(7 + 6 / 12, "feet")
  16737. },
  16738. {
  16739. name: "Large",
  16740. height: math.unit(50, "feet")
  16741. },
  16742. {
  16743. name: "Macro",
  16744. height: math.unit(100, "feet"),
  16745. default: true
  16746. },
  16747. {
  16748. name: "Macro+",
  16749. height: math.unit(200, "feet")
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(6 + 1 / 12, "feet"),
  16758. weight: math.unit(210, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/hasani/front.svg",
  16762. extra: 244 / 232,
  16763. bottom: 0.01
  16764. }
  16765. },
  16766. back: {
  16767. height: math.unit(6 + 1 / 12, "feet"),
  16768. weight: math.unit(210, "lb"),
  16769. name: "Back",
  16770. image: {
  16771. source: "./media/characters/hasani/back.svg",
  16772. extra: 244 / 232,
  16773. bottom: 0.01
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(6 + 1 / 12, "feet")
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(175, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(1.82, "meters"),
  16794. weight: math.unit(140, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/nita/front.svg",
  16798. extra: 2473 / 2363,
  16799. bottom: 0.01
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(1.82, "m")
  16807. },
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(300, "m")
  16811. },
  16812. {
  16813. name: "Mistake Canon",
  16814. height: math.unit(0.5, "miles"),
  16815. default: true
  16816. },
  16817. {
  16818. name: "Big Mistake",
  16819. height: math.unit(13, "miles")
  16820. },
  16821. {
  16822. name: "Playing God",
  16823. height: math.unit(2450, "miles")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(4, "feet"),
  16832. weight: math.unit(120, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/shiriko/front.svg",
  16836. extra: 195 / 188
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(4, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(6, "feet"),
  16853. name: "front",
  16854. image: {
  16855. source: "./media/characters/deja/front.svg",
  16856. extra: 926 / 840,
  16857. bottom: 0.07
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Planck Length",
  16864. height: math.unit(1.6e-35, "meters")
  16865. },
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(30.48, "meters"),
  16869. default: true
  16870. },
  16871. {
  16872. name: "Universal",
  16873. height: math.unit(8.8e26, "meters")
  16874. },
  16875. ]
  16876. ))
  16877. characterMakers.push(() => makeCharacter(
  16878. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16879. {
  16880. side: {
  16881. height: math.unit(8, "feet"),
  16882. weight: math.unit(6300, "lb"),
  16883. name: "Side",
  16884. image: {
  16885. source: "./media/characters/anima/side.svg",
  16886. bottom: 0.035
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(8, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(8, "feet"),
  16903. weight: math.unit(350, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/bianca/front.svg",
  16907. extra: 234 / 225,
  16908. bottom: 0.03
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(8, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(6, "feet"),
  16925. weight: math.unit(150, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/adinia/front.svg",
  16929. extra: 1845 / 1672,
  16930. bottom: 0.02
  16931. }
  16932. },
  16933. back: {
  16934. height: math.unit(6, "feet"),
  16935. weight: math.unit(150, "lb"),
  16936. name: "Back",
  16937. image: {
  16938. source: "./media/characters/adinia/back.svg",
  16939. extra: 1845 / 1672,
  16940. bottom: 0.002
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(11 + 5 / 12, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(3, "meters"),
  16957. weight: math.unit(200, "kg"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/lykasa/front.svg",
  16961. extra: 1076 / 976,
  16962. bottom: 0.06
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(3, "meters")
  16970. },
  16971. {
  16972. name: "Kaiju",
  16973. height: math.unit(120, "meters"),
  16974. default: true
  16975. },
  16976. {
  16977. name: "Mega Kaiju",
  16978. height: math.unit(240, "km")
  16979. },
  16980. {
  16981. name: "Giga Kaiju",
  16982. height: math.unit(400, "megameters")
  16983. },
  16984. {
  16985. name: "Tera Kaiju",
  16986. height: math.unit(800, "gigameters")
  16987. },
  16988. {
  16989. name: "Kaiju Dragon Goddess",
  16990. height: math.unit(26, "zettaparsecs")
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16996. {
  16997. side: {
  16998. height: math.unit(283 / 124 * 6, "feet"),
  16999. weight: math.unit(35000, "lb"),
  17000. name: "Side",
  17001. image: {
  17002. source: "./media/characters/malfaren/side.svg",
  17003. extra: 2500 / 1010,
  17004. bottom: 0.01
  17005. }
  17006. },
  17007. front: {
  17008. height: math.unit(22.36, "feet"),
  17009. weight: math.unit(35000, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/malfaren/front.svg",
  17013. extra: 1631 / 1476,
  17014. bottom: 0.01
  17015. }
  17016. },
  17017. maw: {
  17018. height: math.unit(6.9, "feet"),
  17019. name: "Maw",
  17020. image: {
  17021. source: "./media/characters/malfaren/maw.svg"
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Big",
  17028. height: math.unit(283 / 162 * 6, "feet"),
  17029. },
  17030. {
  17031. name: "Bigger",
  17032. height: math.unit(283 / 124 * 6, "feet")
  17033. },
  17034. {
  17035. name: "Massive",
  17036. height: math.unit(283 / 92 * 6, "feet"),
  17037. default: true
  17038. },
  17039. {
  17040. name: "👀💦",
  17041. height: math.unit(283 / 73 * 6, "feet"),
  17042. },
  17043. ]
  17044. ))
  17045. characterMakers.push(() => makeCharacter(
  17046. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17047. {
  17048. front: {
  17049. height: math.unit(1.7, "m"),
  17050. weight: math.unit(70, "kg"),
  17051. name: "Front",
  17052. image: {
  17053. source: "./media/characters/kernel/front.svg",
  17054. extra: 222 / 210,
  17055. bottom: 0.007
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Nano",
  17062. height: math.unit(17, "micrometers")
  17063. },
  17064. {
  17065. name: "Micro",
  17066. height: math.unit(1.7, "mm")
  17067. },
  17068. {
  17069. name: "Small",
  17070. height: math.unit(1.7, "cm")
  17071. },
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(1.7, "m"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(1.75, "meters"),
  17084. weight: math.unit(65, "kg"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/jayne-folest/front.svg",
  17088. extra: 2115 / 2007,
  17089. bottom: 0.02
  17090. }
  17091. },
  17092. back: {
  17093. height: math.unit(1.75, "meters"),
  17094. weight: math.unit(65, "kg"),
  17095. name: "Back",
  17096. image: {
  17097. source: "./media/characters/jayne-folest/back.svg",
  17098. extra: 2115 / 2007,
  17099. bottom: 0.005
  17100. }
  17101. },
  17102. frontClothed: {
  17103. height: math.unit(1.75, "meters"),
  17104. weight: math.unit(65, "kg"),
  17105. name: "Front (Clothed)",
  17106. image: {
  17107. source: "./media/characters/jayne-folest/front-clothed.svg",
  17108. extra: 2115 / 2007,
  17109. bottom: 0.035
  17110. }
  17111. },
  17112. hand: {
  17113. height: math.unit(1 / 1.260, "feet"),
  17114. name: "Hand",
  17115. image: {
  17116. source: "./media/characters/jayne-folest/hand.svg"
  17117. }
  17118. },
  17119. foot: {
  17120. height: math.unit(1 / 0.918, "feet"),
  17121. name: "Foot",
  17122. image: {
  17123. source: "./media/characters/jayne-folest/foot.svg"
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Micro",
  17130. height: math.unit(4, "cm")
  17131. },
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(1.75, "meters")
  17135. },
  17136. {
  17137. name: "Macro",
  17138. height: math.unit(47.5, "meters"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(180, "cm"),
  17148. weight: math.unit(70, "kg"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/algier/front.svg",
  17152. extra: 596 / 572,
  17153. bottom: 0.04
  17154. }
  17155. },
  17156. back: {
  17157. height: math.unit(180, "cm"),
  17158. weight: math.unit(70, "kg"),
  17159. name: "Back",
  17160. image: {
  17161. source: "./media/characters/algier/back.svg",
  17162. extra: 596 / 572,
  17163. bottom: 0.025
  17164. }
  17165. },
  17166. frontdressed: {
  17167. height: math.unit(180, "cm"),
  17168. weight: math.unit(150, "kg"),
  17169. name: "Front-dressed",
  17170. image: {
  17171. source: "./media/characters/algier/front-dressed.svg",
  17172. extra: 596 / 572,
  17173. bottom: 0.038
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Micro",
  17180. height: math.unit(5, "cm")
  17181. },
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(180, "cm"),
  17185. default: true
  17186. },
  17187. {
  17188. name: "Macro",
  17189. height: math.unit(64, "m")
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17195. {
  17196. upright: {
  17197. height: math.unit(7, "feet"),
  17198. weight: math.unit(300, "lb"),
  17199. name: "Upright",
  17200. image: {
  17201. source: "./media/characters/pretzel/upright.svg",
  17202. extra: 534 / 522,
  17203. bottom: 0.065
  17204. }
  17205. },
  17206. sprawling: {
  17207. height: math.unit(3.75, "feet"),
  17208. weight: math.unit(300, "lb"),
  17209. name: "Sprawling",
  17210. image: {
  17211. source: "./media/characters/pretzel/sprawling.svg",
  17212. extra: 314 / 281,
  17213. bottom: 0.1
  17214. }
  17215. },
  17216. tongue: {
  17217. height: math.unit(2, "feet"),
  17218. name: "Tongue",
  17219. image: {
  17220. source: "./media/characters/pretzel/tongue.svg"
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(7, "feet"),
  17228. default: true
  17229. },
  17230. {
  17231. name: "Oversized",
  17232. height: math.unit(15, "feet")
  17233. },
  17234. {
  17235. name: "Huge",
  17236. height: math.unit(30, "feet")
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(250, "feet")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17246. {
  17247. sideFront: {
  17248. height: math.unit(5 + 2 / 12, "feet"),
  17249. weight: math.unit(120, "lb"),
  17250. name: "Front Side",
  17251. image: {
  17252. source: "./media/characters/roxi/side-front.svg",
  17253. extra: 2924 / 2717,
  17254. bottom: 0.08
  17255. }
  17256. },
  17257. sideBack: {
  17258. height: math.unit(5 + 2 / 12, "feet"),
  17259. weight: math.unit(120, "lb"),
  17260. name: "Back Side",
  17261. image: {
  17262. source: "./media/characters/roxi/side-back.svg",
  17263. extra: 2904 / 2693,
  17264. bottom: 0.06
  17265. }
  17266. },
  17267. front: {
  17268. height: math.unit(5 + 2 / 12, "feet"),
  17269. weight: math.unit(120, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/roxi/front.svg",
  17273. extra: 2028 / 1907,
  17274. bottom: 0.01
  17275. }
  17276. },
  17277. frontAlt: {
  17278. height: math.unit(5 + 2 / 12, "feet"),
  17279. weight: math.unit(120, "lb"),
  17280. name: "Front (Alt)",
  17281. image: {
  17282. source: "./media/characters/roxi/front-alt.svg",
  17283. extra: 1828 / 1798,
  17284. bottom: 0.01
  17285. }
  17286. },
  17287. sitting: {
  17288. height: math.unit(2.8, "feet"),
  17289. weight: math.unit(120, "lb"),
  17290. name: "Sitting",
  17291. image: {
  17292. source: "./media/characters/roxi/sitting.svg",
  17293. extra: 2660 / 2462,
  17294. bottom: 0.1
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(5 + 2 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17308. {
  17309. side: {
  17310. height: math.unit(55, "feet"),
  17311. weight: math.unit(153, "tons"),
  17312. name: "Side",
  17313. image: {
  17314. source: "./media/characters/shadow/side.svg",
  17315. extra: 701 / 628,
  17316. bottom: 0.02
  17317. }
  17318. },
  17319. flying: {
  17320. height: math.unit(145, "feet"),
  17321. weight: math.unit(153, "tons"),
  17322. name: "Flying",
  17323. image: {
  17324. source: "./media/characters/shadow/flying.svg"
  17325. }
  17326. },
  17327. },
  17328. [
  17329. {
  17330. name: "Normal",
  17331. height: math.unit(55, "feet"),
  17332. default: true
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(6, "feet"),
  17341. weight: math.unit(200, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/marcie/front.svg",
  17345. extra: 960 / 876,
  17346. bottom: 58 / 1017.87
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(1, "mile"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(7, "feet"),
  17363. weight: math.unit(200, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/kachina/front.svg",
  17367. extra: 1290.68 / 1119,
  17368. bottom: 36.5 / 1327.18
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(7, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17382. {
  17383. looking: {
  17384. height: math.unit(2, "meters"),
  17385. weight: math.unit(300, "kg"),
  17386. name: "Looking",
  17387. image: {
  17388. source: "./media/characters/kash/looking.svg",
  17389. extra: 474 / 344,
  17390. bottom: 0.03
  17391. }
  17392. },
  17393. side: {
  17394. height: math.unit(2, "meters"),
  17395. weight: math.unit(300, "kg"),
  17396. name: "Side",
  17397. image: {
  17398. source: "./media/characters/kash/side.svg",
  17399. extra: 302 / 251,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. front: {
  17404. height: math.unit(2, "meters"),
  17405. weight: math.unit(300, "kg"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/kash/front.svg",
  17409. extra: 495 / 360,
  17410. bottom: 0.015
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(2, "meters"),
  17418. default: true
  17419. },
  17420. {
  17421. name: "Big",
  17422. height: math.unit(3, "meters")
  17423. },
  17424. {
  17425. name: "Large",
  17426. height: math.unit(5, "meters")
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17432. {
  17433. feeding: {
  17434. height: math.unit(6.7, "feet"),
  17435. weight: math.unit(350, "lb"),
  17436. name: "Feeding",
  17437. image: {
  17438. source: "./media/characters/lalim/feeding.svg",
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(6.7, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(9.5, "feet"),
  17455. weight: math.unit(600, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/de'vout/front.svg",
  17459. extra: 1443 / 1328,
  17460. bottom: 0.025
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(9.5, "feet"),
  17465. weight: math.unit(600, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/de'vout/back.svg",
  17469. extra: 1443 / 1328
  17470. }
  17471. },
  17472. frontDressed: {
  17473. height: math.unit(9.5, "feet"),
  17474. weight: math.unit(600, "lb"),
  17475. name: "Front (Dressed",
  17476. image: {
  17477. source: "./media/characters/de'vout/front-dressed.svg",
  17478. extra: 1443 / 1328,
  17479. bottom: 0.025
  17480. }
  17481. },
  17482. backDressed: {
  17483. height: math.unit(9.5, "feet"),
  17484. weight: math.unit(600, "lb"),
  17485. name: "Back (Dressed",
  17486. image: {
  17487. source: "./media/characters/de'vout/back-dressed.svg",
  17488. extra: 1443 / 1328
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(9.5, "feet"),
  17496. default: true
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(8, "feet"),
  17505. weight: math.unit(225, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/talana/front.svg",
  17509. extra: 1410 / 1300,
  17510. bottom: 0.015
  17511. }
  17512. },
  17513. frontDressed: {
  17514. height: math.unit(8, "feet"),
  17515. weight: math.unit(225, "lb"),
  17516. name: "Front (Dressed",
  17517. image: {
  17518. source: "./media/characters/talana/front-dressed.svg",
  17519. extra: 1410 / 1300,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(8, "feet"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17534. {
  17535. side: {
  17536. height: math.unit(7.2, "feet"),
  17537. weight: math.unit(150, "lb"),
  17538. name: "Side",
  17539. image: {
  17540. source: "./media/characters/xeauvok/side.svg",
  17541. extra: 1975 / 1523,
  17542. bottom: 0.07
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(7.2, "feet"),
  17550. default: true
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17556. {
  17557. side: {
  17558. height: math.unit(10, "feet"),
  17559. weight: math.unit(900, "kg"),
  17560. name: "Side",
  17561. image: {
  17562. source: "./media/characters/zara/side.svg",
  17563. extra: 504 / 498
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(10, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17577. {
  17578. side: {
  17579. height: math.unit(6, "feet"),
  17580. weight: math.unit(150, "lb"),
  17581. name: "Side",
  17582. image: {
  17583. source: "./media/characters/richard-dragon/side.svg",
  17584. extra: 845 / 340,
  17585. bottom: 0.017
  17586. }
  17587. },
  17588. maw: {
  17589. height: math.unit(2.97, "feet"),
  17590. name: "Maw",
  17591. image: {
  17592. source: "./media/characters/richard-dragon/maw.svg"
  17593. }
  17594. },
  17595. },
  17596. [
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(4, "feet"),
  17604. weight: math.unit(100, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/richard-smeargle/front.svg",
  17608. extra: 2952 / 2820,
  17609. bottom: 0.028
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(4, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Dynamax",
  17621. height: math.unit(20, "meters")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(110, "lb"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/klay/front.svg",
  17634. extra: 962 / 883,
  17635. bottom: 0.04
  17636. }
  17637. },
  17638. back: {
  17639. height: math.unit(6, "feet"),
  17640. weight: math.unit(110, "lb"),
  17641. name: "Back",
  17642. image: {
  17643. source: "./media/characters/klay/back.svg",
  17644. extra: 962 / 883
  17645. }
  17646. },
  17647. beans: {
  17648. height: math.unit(1.15, "feet"),
  17649. name: "Beans",
  17650. image: {
  17651. source: "./media/characters/klay/beans.svg"
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Micro",
  17658. height: math.unit(6, "inches")
  17659. },
  17660. {
  17661. name: "Mini",
  17662. height: math.unit(3, "feet")
  17663. },
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(6, "feet"),
  17667. default: true
  17668. },
  17669. {
  17670. name: "Big",
  17671. height: math.unit(25, "feet")
  17672. },
  17673. {
  17674. name: "Macro",
  17675. height: math.unit(100, "feet")
  17676. },
  17677. {
  17678. name: "Megamacro",
  17679. height: math.unit(400, "feet")
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6, "feet"),
  17688. weight: math.unit(160, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/marcus/front.svg",
  17692. extra: 734 / 676,
  17693. bottom: 0.03
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Little",
  17700. height: math.unit(6, "feet")
  17701. },
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(110, "feet"),
  17705. default: true
  17706. },
  17707. {
  17708. name: "Macro",
  17709. height: math.unit(250, "feet")
  17710. },
  17711. {
  17712. name: "Megamacro",
  17713. height: math.unit(1000, "feet")
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(7, "feet"),
  17722. weight: math.unit(275, "lb"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/claude-delroute/front.svg",
  17726. extra: 230 / 214,
  17727. bottom: 0.007
  17728. }
  17729. },
  17730. side: {
  17731. height: math.unit(7, "feet"),
  17732. weight: math.unit(275, "lb"),
  17733. name: "Side",
  17734. image: {
  17735. source: "./media/characters/claude-delroute/side.svg",
  17736. extra: 222 / 214,
  17737. bottom: 0.01
  17738. }
  17739. },
  17740. back: {
  17741. height: math.unit(7, "feet"),
  17742. weight: math.unit(275, "lb"),
  17743. name: "Back",
  17744. image: {
  17745. source: "./media/characters/claude-delroute/back.svg",
  17746. extra: 230 / 214,
  17747. bottom: 0.015
  17748. }
  17749. },
  17750. maw: {
  17751. height: math.unit(0.6407, "meters"),
  17752. name: "Maw",
  17753. image: {
  17754. source: "./media/characters/claude-delroute/maw.svg"
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(7, "feet"),
  17762. default: true
  17763. },
  17764. {
  17765. name: "Lorge",
  17766. height: math.unit(20, "feet")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(8 + 4 / 12, "feet"),
  17775. weight: math.unit(600, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/dragonien/front.svg",
  17779. extra: 100 / 94,
  17780. bottom: 3.3 / 103.3445
  17781. }
  17782. },
  17783. back: {
  17784. height: math.unit(8 + 4 / 12, "feet"),
  17785. weight: math.unit(600, "lb"),
  17786. name: "Back",
  17787. image: {
  17788. source: "./media/characters/dragonien/back.svg",
  17789. extra: 776 / 746,
  17790. bottom: 6.4 / 782.0616
  17791. }
  17792. },
  17793. foot: {
  17794. height: math.unit(1.54, "feet"),
  17795. name: "Foot",
  17796. image: {
  17797. source: "./media/characters/dragonien/foot.svg",
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(8 + 4 / 12, "feet"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Macro",
  17809. height: math.unit(200, "feet")
  17810. },
  17811. {
  17812. name: "Megamacro",
  17813. height: math.unit(1, "mile")
  17814. },
  17815. {
  17816. name: "Gigamacro",
  17817. height: math.unit(1000, "miles")
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(5 + 2 / 12, "feet"),
  17826. weight: math.unit(110, "lb"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/desta/front.svg",
  17830. extra: 767 / 726,
  17831. bottom: 11.7 / 779
  17832. }
  17833. },
  17834. back: {
  17835. height: math.unit(5 + 2 / 12, "feet"),
  17836. weight: math.unit(110, "lb"),
  17837. name: "Back",
  17838. image: {
  17839. source: "./media/characters/desta/back.svg",
  17840. extra: 777 / 728,
  17841. bottom: 6 / 784
  17842. }
  17843. },
  17844. frontAlt: {
  17845. height: math.unit(5 + 2 / 12, "feet"),
  17846. weight: math.unit(110, "lb"),
  17847. name: "Front",
  17848. image: {
  17849. source: "./media/characters/desta/front-alt.svg",
  17850. extra: 1482 / 1417
  17851. }
  17852. },
  17853. side: {
  17854. height: math.unit(5 + 2 / 12, "feet"),
  17855. weight: math.unit(110, "lb"),
  17856. name: "Side",
  17857. image: {
  17858. source: "./media/characters/desta/side.svg",
  17859. extra: 2579 / 2491,
  17860. bottom: 0.053
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Micro",
  17867. height: math.unit(6, "inches")
  17868. },
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(5 + 2 / 12, "feet"),
  17872. default: true
  17873. },
  17874. {
  17875. name: "Macro",
  17876. height: math.unit(62, "feet")
  17877. },
  17878. {
  17879. name: "Megamacro",
  17880. height: math.unit(1800, "feet")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(10, "feet"),
  17889. weight: math.unit(700, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/storm-alystar/front.svg",
  17893. extra: 2112 / 1898,
  17894. bottom: 0.034
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Micro",
  17901. height: math.unit(3.5, "inches")
  17902. },
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(10, "feet"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Macro",
  17910. height: math.unit(400, "feet")
  17911. },
  17912. {
  17913. name: "Deific",
  17914. height: math.unit(60, "miles")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(2.35, "meters"),
  17923. weight: math.unit(119, "kg"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/ilia/front.svg",
  17927. extra: 1285 / 1255,
  17928. bottom: 0.06
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(2.35, "meters")
  17936. },
  17937. {
  17938. name: "Macro",
  17939. height: math.unit(140, "meters"),
  17940. default: true
  17941. },
  17942. {
  17943. name: "Megamacro",
  17944. height: math.unit(100, "miles")
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(6 + 5 / 12, "feet"),
  17953. weight: math.unit(190, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/kingdead/front.svg",
  17957. extra: 1228 / 1177
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(7, "inches")
  17965. },
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(6 + 5 / 12, "feet")
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(150, "feet"),
  17973. default: true
  17974. },
  17975. {
  17976. name: "Megamacro",
  17977. height: math.unit(200, "miles")
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(8, "feet"),
  17986. weight: math.unit(600, "lb"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/kyrehx/front.svg",
  17990. extra: 1195 / 1095,
  17991. bottom: 0.034
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Micro",
  17998. height: math.unit(2, "inches")
  17999. },
  18000. {
  18001. name: "Normal",
  18002. height: math.unit(8, "feet"),
  18003. default: true
  18004. },
  18005. {
  18006. name: "Macro",
  18007. height: math.unit(255, "feet")
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18016. weight: math.unit(184, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/xang/front.svg",
  18020. extra: 845 / 755
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18028. default: true
  18029. },
  18030. {
  18031. name: "Macro",
  18032. height: math.unit(0.935 * 146, "feet")
  18033. },
  18034. {
  18035. name: "Megamacro",
  18036. height: math.unit(0.935 * 3, "miles")
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18042. {
  18043. frontDressed: {
  18044. height: math.unit(5 + 7 / 12, "feet"),
  18045. weight: math.unit(140, "lb"),
  18046. name: "Front (Dressed)",
  18047. image: {
  18048. source: "./media/characters/doc-weardno/front-dressed.svg",
  18049. extra: 263 / 234
  18050. }
  18051. },
  18052. backDressed: {
  18053. height: math.unit(5 + 7 / 12, "feet"),
  18054. weight: math.unit(140, "lb"),
  18055. name: "Back (Dressed)",
  18056. image: {
  18057. source: "./media/characters/doc-weardno/back-dressed.svg",
  18058. extra: 266 / 238
  18059. }
  18060. },
  18061. front: {
  18062. height: math.unit(5 + 7 / 12, "feet"),
  18063. weight: math.unit(140, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/doc-weardno/front.svg",
  18067. extra: 254 / 233
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Micro",
  18074. height: math.unit(3, "inches")
  18075. },
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(5 + 7 / 12, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "Macro",
  18083. height: math.unit(25, "feet")
  18084. },
  18085. {
  18086. name: "Megamacro",
  18087. height: math.unit(2, "miles")
  18088. },
  18089. ]
  18090. ))
  18091. characterMakers.push(() => makeCharacter(
  18092. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18093. {
  18094. front: {
  18095. height: math.unit(6 + 2 / 12, "feet"),
  18096. weight: math.unit(153, "lb"),
  18097. name: "Front",
  18098. image: {
  18099. source: "./media/characters/seth-whilst/front.svg",
  18100. bottom: 0.07
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Micro",
  18107. height: math.unit(5, "inches")
  18108. },
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(6 + 2 / 12, "feet"),
  18112. default: true
  18113. },
  18114. ]
  18115. ))
  18116. characterMakers.push(() => makeCharacter(
  18117. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18118. {
  18119. front: {
  18120. height: math.unit(3, "inches"),
  18121. weight: math.unit(8, "grams"),
  18122. name: "Front",
  18123. image: {
  18124. source: "./media/characters/pocket-jabari/front.svg",
  18125. extra: 1024 / 974,
  18126. bottom: 0.039
  18127. }
  18128. },
  18129. },
  18130. [
  18131. {
  18132. name: "Minimicro",
  18133. height: math.unit(8, "mm")
  18134. },
  18135. {
  18136. name: "Micro",
  18137. height: math.unit(3, "inches"),
  18138. default: true
  18139. },
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(3, "feet")
  18143. },
  18144. ]
  18145. ))
  18146. characterMakers.push(() => makeCharacter(
  18147. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18148. {
  18149. front: {
  18150. height: math.unit(15, "feet"),
  18151. weight: math.unit(3280, "lb"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/sapphy/front.svg",
  18155. extra: 671 / 577,
  18156. bottom: 0.085
  18157. }
  18158. },
  18159. back: {
  18160. height: math.unit(15, "feet"),
  18161. weight: math.unit(3280, "lb"),
  18162. name: "Back",
  18163. image: {
  18164. source: "./media/characters/sapphy/back.svg",
  18165. extra: 631 / 607,
  18166. bottom: 0.045
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Normal",
  18173. height: math.unit(15, "feet")
  18174. },
  18175. {
  18176. name: "Casual Macro",
  18177. height: math.unit(120, "feet")
  18178. },
  18179. {
  18180. name: "Macro",
  18181. height: math.unit(2150, "feet"),
  18182. default: true
  18183. },
  18184. {
  18185. name: "Megamacro",
  18186. height: math.unit(8, "miles")
  18187. },
  18188. {
  18189. name: "Galaxy Mom",
  18190. height: math.unit(6, "megalightyears")
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(6, "feet"),
  18199. weight: math.unit(170, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/kiro/front.svg",
  18203. extra: 1064 / 1012,
  18204. bottom: 0.052
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Micro",
  18211. height: math.unit(6, "inches")
  18212. },
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(6, "feet"),
  18216. default: true
  18217. },
  18218. {
  18219. name: "Macro",
  18220. height: math.unit(72, "feet")
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(5 + 9 / 12, "feet"),
  18229. weight: math.unit(175, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/irishfox/front.svg",
  18233. extra: 1912 / 1680,
  18234. bottom: 0.02
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Nano",
  18241. height: math.unit(1, "mm")
  18242. },
  18243. {
  18244. name: "Micro",
  18245. height: math.unit(2, "inches")
  18246. },
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(5 + 9 / 12, "feet"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Macro",
  18254. height: math.unit(45, "feet")
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(6 + 1 / 12, "feet"),
  18263. weight: math.unit(150, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/aronai-sieyes/front.svg",
  18267. extra: 1556 / 1480,
  18268. bottom: 0.015
  18269. }
  18270. },
  18271. side: {
  18272. height: math.unit(6 + 1 / 12, "feet"),
  18273. weight: math.unit(150, "lb"),
  18274. name: "Side",
  18275. image: {
  18276. source: "./media/characters/aronai-sieyes/side.svg",
  18277. extra: 1433 / 1390,
  18278. bottom: 0.0393
  18279. }
  18280. },
  18281. back: {
  18282. height: math.unit(6 + 1 / 12, "feet"),
  18283. weight: math.unit(150, "lb"),
  18284. name: "Back",
  18285. image: {
  18286. source: "./media/characters/aronai-sieyes/back.svg",
  18287. extra: 1544 / 1494,
  18288. bottom: 0.02
  18289. }
  18290. },
  18291. frontClothed: {
  18292. height: math.unit(6 + 1 / 12, "feet"),
  18293. weight: math.unit(150, "lb"),
  18294. name: "Front (Clothed)",
  18295. image: {
  18296. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18297. extra: 1582 / 1527
  18298. }
  18299. },
  18300. feral: {
  18301. height: math.unit(18, "feet"),
  18302. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18303. name: "Feral",
  18304. image: {
  18305. source: "./media/characters/aronai-sieyes/feral.svg",
  18306. extra: 1530 / 1240,
  18307. bottom: 0.035
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Micro",
  18314. height: math.unit(2, "inches")
  18315. },
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(6 + 1 / 12, "feet"),
  18319. default: true
  18320. }
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18325. {
  18326. front: {
  18327. height: math.unit(12, "feet"),
  18328. weight: math.unit(410, "kg"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/xuna/front.svg",
  18332. extra: 2184 / 1980
  18333. }
  18334. },
  18335. side: {
  18336. height: math.unit(12, "feet"),
  18337. weight: math.unit(410, "kg"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/xuna/side.svg",
  18341. extra: 2184 / 1980
  18342. }
  18343. },
  18344. back: {
  18345. height: math.unit(12, "feet"),
  18346. weight: math.unit(410, "kg"),
  18347. name: "Back",
  18348. image: {
  18349. source: "./media/characters/xuna/back.svg",
  18350. extra: 2184 / 1980
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Nano glow",
  18357. height: math.unit(10, "nm")
  18358. },
  18359. {
  18360. name: "Micro floof",
  18361. height: math.unit(0.3, "m")
  18362. },
  18363. {
  18364. name: "Huggable softy boi",
  18365. height: math.unit(3.6576, "m"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Admirable floof",
  18370. height: math.unit(80, "meters")
  18371. },
  18372. {
  18373. name: "Gentle macro",
  18374. height: math.unit(300, "meters")
  18375. },
  18376. {
  18377. name: "Very careful floof",
  18378. height: math.unit(3200, "meters")
  18379. },
  18380. {
  18381. name: "The mega floof",
  18382. height: math.unit(36000, "meters")
  18383. },
  18384. {
  18385. name: "Giga-fur-Wicker",
  18386. height: math.unit(4800000, "meters")
  18387. },
  18388. {
  18389. name: "Licky world",
  18390. height: math.unit(20000000, "meters")
  18391. },
  18392. {
  18393. name: "Floofy cyan sun",
  18394. height: math.unit(1500000000, "meters")
  18395. },
  18396. {
  18397. name: "Milky Wicker",
  18398. height: math.unit(1000000000000000000000, "meters")
  18399. },
  18400. {
  18401. name: "The observing Wicker",
  18402. height: math.unit(999999999999999999999999999, "meters")
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18408. {
  18409. front: {
  18410. height: math.unit(5 + 9 / 12, "feet"),
  18411. weight: math.unit(150, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/arokha-sieyes/front.svg",
  18415. extra: 1425 / 1284,
  18416. bottom: 0.05
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(5 + 9 / 12, "feet")
  18424. },
  18425. {
  18426. name: "Macro",
  18427. height: math.unit(30, "meters"),
  18428. default: true
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18434. {
  18435. front: {
  18436. height: math.unit(6, "feet"),
  18437. weight: math.unit(180, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/arokh-sieyes/front.svg",
  18441. extra: 1830 / 1769,
  18442. bottom: 0.01
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(6, "feet")
  18450. },
  18451. {
  18452. name: "Macro",
  18453. height: math.unit(30, "meters"),
  18454. default: true
  18455. },
  18456. ]
  18457. ))
  18458. characterMakers.push(() => makeCharacter(
  18459. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18460. {
  18461. side: {
  18462. height: math.unit(13 + 1 / 12, "feet"),
  18463. weight: math.unit(8.5, "tonnes"),
  18464. name: "Side",
  18465. image: {
  18466. source: "./media/characters/goldeneye/side.svg",
  18467. extra: 1182 / 778,
  18468. bottom: 0.067
  18469. }
  18470. },
  18471. paw: {
  18472. height: math.unit(3.4, "feet"),
  18473. name: "Paw",
  18474. image: {
  18475. source: "./media/characters/goldeneye/paw.svg"
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Normal",
  18482. height: math.unit(13 + 1 / 12, "feet"),
  18483. default: true
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18489. {
  18490. front: {
  18491. height: math.unit(6 + 1 / 12, "feet"),
  18492. weight: math.unit(210, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/leonardo-lycheborne/front.svg",
  18496. extra: 390 / 365,
  18497. bottom: 0.032
  18498. }
  18499. },
  18500. side: {
  18501. height: math.unit(6 + 1 / 12, "feet"),
  18502. weight: math.unit(210, "lb"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/leonardo-lycheborne/side.svg",
  18506. extra: 390 / 365,
  18507. bottom: 0.005
  18508. }
  18509. },
  18510. back: {
  18511. height: math.unit(6 + 1 / 12, "feet"),
  18512. weight: math.unit(210, "lb"),
  18513. name: "Back",
  18514. image: {
  18515. source: "./media/characters/leonardo-lycheborne/back.svg",
  18516. extra: 392 / 366,
  18517. bottom: 0.01
  18518. }
  18519. },
  18520. hand: {
  18521. height: math.unit(1.08, "feet"),
  18522. name: "Hand",
  18523. image: {
  18524. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18525. }
  18526. },
  18527. foot: {
  18528. height: math.unit(1.32, "feet"),
  18529. name: "Foot",
  18530. image: {
  18531. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18532. }
  18533. },
  18534. were: {
  18535. height: math.unit(20, "feet"),
  18536. weight: math.unit(7800, "lb"),
  18537. name: "Were",
  18538. image: {
  18539. source: "./media/characters/leonardo-lycheborne/were.svg",
  18540. extra: 308 / 294,
  18541. bottom: 0.048
  18542. }
  18543. },
  18544. feral: {
  18545. height: math.unit(7.5, "feet"),
  18546. weight: math.unit(600, "lb"),
  18547. name: "Feral",
  18548. image: {
  18549. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18550. extra: 210 / 186,
  18551. bottom: 0.108
  18552. }
  18553. },
  18554. taur: {
  18555. height: math.unit(11, "feet"),
  18556. weight: math.unit(3300, "lb"),
  18557. name: "Taur",
  18558. image: {
  18559. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18560. extra: 320 / 303,
  18561. bottom: 0.025
  18562. }
  18563. },
  18564. barghest: {
  18565. height: math.unit(11, "feet"),
  18566. weight: math.unit(1300, "lb"),
  18567. name: "Barghest",
  18568. image: {
  18569. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18570. extra: 323 / 302,
  18571. bottom: 0.027
  18572. }
  18573. },
  18574. dick: {
  18575. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18576. name: "Dick",
  18577. image: {
  18578. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18579. }
  18580. },
  18581. dickWere: {
  18582. height: math.unit((20) / 3.8, "feet"),
  18583. name: "Dick (Were)",
  18584. image: {
  18585. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(6 + 1 / 12, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(10, "feet"),
  18602. weight: math.unit(350, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/jet/front.svg",
  18606. extra: 2050 / 1980,
  18607. bottom: 0.013
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(10, "feet"),
  18612. weight: math.unit(350, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/jet/back.svg",
  18616. extra: 2050 / 1980,
  18617. bottom: 0.013
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Micro",
  18624. height: math.unit(6, "inches")
  18625. },
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(10, "feet"),
  18629. default: true
  18630. },
  18631. {
  18632. name: "Macro",
  18633. height: math.unit(100, "feet")
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(15, "feet"),
  18642. weight: math.unit(2800, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/tanarath/front.svg",
  18646. extra: 2392 / 2220,
  18647. bottom: 0.03
  18648. }
  18649. },
  18650. back: {
  18651. height: math.unit(15, "feet"),
  18652. weight: math.unit(2800, "lb"),
  18653. name: "Back",
  18654. image: {
  18655. source: "./media/characters/tanarath/back.svg",
  18656. extra: 2392 / 2220,
  18657. bottom: 0.03
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(15, "feet"),
  18665. default: true
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(7 + 1 / 12, "feet"),
  18674. weight: math.unit(175, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/patty-cattybatty/front.svg",
  18678. extra: 908 / 874,
  18679. bottom: 0.025
  18680. }
  18681. },
  18682. },
  18683. [
  18684. {
  18685. name: "Micro",
  18686. height: math.unit(1, "inch")
  18687. },
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(7 + 1 / 12, "feet")
  18691. },
  18692. {
  18693. name: "Mini Macro",
  18694. height: math.unit(155, "feet")
  18695. },
  18696. {
  18697. name: "Macro",
  18698. height: math.unit(1077, "feet")
  18699. },
  18700. {
  18701. name: "Mega Macro",
  18702. height: math.unit(47650, "feet"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Giga Macro",
  18707. height: math.unit(440, "miles")
  18708. },
  18709. {
  18710. name: "Tera Macro",
  18711. height: math.unit(8700, "miles")
  18712. },
  18713. {
  18714. name: "Planetary Macro",
  18715. height: math.unit(32700, "miles")
  18716. },
  18717. {
  18718. name: "Solar Macro",
  18719. height: math.unit(550000, "miles")
  18720. },
  18721. {
  18722. name: "Celestial Macro",
  18723. height: math.unit(2.5, "AU")
  18724. },
  18725. ]
  18726. ))
  18727. characterMakers.push(() => makeCharacter(
  18728. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18729. {
  18730. front: {
  18731. height: math.unit(4 + 5 / 12, "feet"),
  18732. weight: math.unit(90, "lb"),
  18733. name: "Front",
  18734. image: {
  18735. source: "./media/characters/cappu/front.svg",
  18736. extra: 1247 / 1152,
  18737. bottom: 0.012
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(4 + 5 / 12, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18751. {
  18752. frontDressed: {
  18753. height: math.unit(70, "cm"),
  18754. weight: math.unit(6, "kg"),
  18755. name: "Front (Dressed)",
  18756. image: {
  18757. source: "./media/characters/sebi/front-dressed.svg",
  18758. extra: 713.5 / 686.5,
  18759. bottom: 0.003
  18760. }
  18761. },
  18762. front: {
  18763. height: math.unit(70, "cm"),
  18764. weight: math.unit(5, "kg"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/sebi/front.svg",
  18768. extra: 713.5 / 686.5,
  18769. bottom: 0.003
  18770. }
  18771. }
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(70, "cm"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Macro",
  18781. height: math.unit(8, "meters")
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(6, "feet"),
  18790. weight: math.unit(150, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/typhek/front.svg",
  18794. extra: 1948 / 1929,
  18795. bottom: 0.025
  18796. }
  18797. },
  18798. side: {
  18799. height: math.unit(6, "feet"),
  18800. weight: math.unit(150, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/typhek/side.svg",
  18804. extra: 2034 / 2010,
  18805. bottom: 0.003
  18806. }
  18807. },
  18808. back: {
  18809. height: math.unit(6, "feet"),
  18810. weight: math.unit(150, "lb"),
  18811. name: "Back",
  18812. image: {
  18813. source: "./media/characters/typhek/back.svg",
  18814. extra: 2005 / 1978,
  18815. bottom: 0.004
  18816. }
  18817. },
  18818. palm: {
  18819. height: math.unit(1.2, "feet"),
  18820. name: "Palm",
  18821. image: {
  18822. source: "./media/characters/typhek/palm.svg"
  18823. }
  18824. },
  18825. fist: {
  18826. height: math.unit(1.1, "feet"),
  18827. name: "Fist",
  18828. image: {
  18829. source: "./media/characters/typhek/fist.svg"
  18830. }
  18831. },
  18832. foot: {
  18833. height: math.unit(1.57, "feet"),
  18834. name: "Foot",
  18835. image: {
  18836. source: "./media/characters/typhek/foot.svg"
  18837. }
  18838. },
  18839. sole: {
  18840. height: math.unit(2.05, "feet"),
  18841. name: "Sole",
  18842. image: {
  18843. source: "./media/characters/typhek/sole.svg"
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(40, "stories"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Megamacro",
  18855. height: math.unit(1, "mile")
  18856. },
  18857. {
  18858. name: "Gigamacro",
  18859. height: math.unit(4000, "solarradii")
  18860. },
  18861. {
  18862. name: "Universal",
  18863. height: math.unit(1.1, "universes")
  18864. }
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18869. {
  18870. side: {
  18871. height: math.unit(5 + 7 / 12, "feet"),
  18872. weight: math.unit(150, "lb"),
  18873. name: "Side",
  18874. image: {
  18875. source: "./media/characters/kassy/side.svg",
  18876. extra: 1280 / 1225,
  18877. bottom: 0.002
  18878. }
  18879. },
  18880. front: {
  18881. height: math.unit(5 + 7 / 12, "feet"),
  18882. weight: math.unit(150, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/kassy/front.svg",
  18886. extra: 1280 / 1225,
  18887. bottom: 0.025
  18888. }
  18889. },
  18890. back: {
  18891. height: math.unit(5 + 7 / 12, "feet"),
  18892. weight: math.unit(150, "lb"),
  18893. name: "Back",
  18894. image: {
  18895. source: "./media/characters/kassy/back.svg",
  18896. extra: 1280 / 1225,
  18897. bottom: 0.002
  18898. }
  18899. },
  18900. foot: {
  18901. height: math.unit(1.266, "feet"),
  18902. name: "Foot",
  18903. image: {
  18904. source: "./media/characters/kassy/foot.svg"
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(5 + 7 / 12, "feet")
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(137, "feet"),
  18916. default: true
  18917. },
  18918. {
  18919. name: "Megamacro",
  18920. height: math.unit(1, "mile")
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(6 + 1 / 12, "feet"),
  18929. weight: math.unit(200, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/neil/front.svg",
  18933. extra: 1326 / 1250,
  18934. bottom: 0.023
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(6 + 1 / 12, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Macro",
  18946. height: math.unit(200, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(5 + 9 / 12, "feet"),
  18955. weight: math.unit(190, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/atticus/front.svg",
  18959. extra: 2934 / 2785,
  18960. bottom: 0.025
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(5 + 9 / 12, "feet"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Macro",
  18972. height: math.unit(180, "feet")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18978. {
  18979. side: {
  18980. height: math.unit(9, "feet"),
  18981. weight: math.unit(650, "lb"),
  18982. name: "Side",
  18983. image: {
  18984. source: "./media/characters/milo/side.svg",
  18985. extra: 2644 / 2310,
  18986. bottom: 0.032
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(9, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(300, "feet")
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19004. {
  19005. side: {
  19006. height: math.unit(8, "meters"),
  19007. weight: math.unit(90000, "kg"),
  19008. name: "Side",
  19009. image: {
  19010. source: "./media/characters/ijzer/side.svg",
  19011. extra: 2756 / 1600,
  19012. bottom: 0.01
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Small",
  19019. height: math.unit(3, "meters")
  19020. },
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(8, "meters"),
  19024. default: true
  19025. },
  19026. {
  19027. name: "Normal+",
  19028. height: math.unit(10, "meters")
  19029. },
  19030. {
  19031. name: "Bigger",
  19032. height: math.unit(24, "meters")
  19033. },
  19034. {
  19035. name: "Huge",
  19036. height: math.unit(80, "meters")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6 + 2 / 12, "feet"),
  19045. weight: math.unit(153, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/luca-cervicum/front.svg",
  19049. extra: 370 / 327,
  19050. bottom: 0.015
  19051. }
  19052. },
  19053. back: {
  19054. height: math.unit(6 + 2 / 12, "feet"),
  19055. weight: math.unit(153, "lb"),
  19056. name: "Back",
  19057. image: {
  19058. source: "./media/characters/luca-cervicum/back.svg",
  19059. extra: 367 / 333,
  19060. bottom: 0.005
  19061. }
  19062. },
  19063. frontGear: {
  19064. height: math.unit(6 + 2 / 12, "feet"),
  19065. weight: math.unit(173, "lb"),
  19066. name: "Front (Gear)",
  19067. image: {
  19068. source: "./media/characters/luca-cervicum/front-gear.svg",
  19069. extra: 377 / 333,
  19070. bottom: 0.006
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(6 + 2 / 12, "feet"),
  19078. default: true
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19084. {
  19085. front: {
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. weight: math.unit(304, "lb"),
  19088. name: "Front",
  19089. image: {
  19090. source: "./media/characters/oliver/front.svg",
  19091. extra: 157 / 143,
  19092. bottom: 0.08
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(6 + 1 / 12, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(5 + 7 / 12, "feet"),
  19109. weight: math.unit(140, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/shane/front.svg",
  19113. extra: 304 / 289,
  19114. bottom: 0.005
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(5 + 7 / 12, "feet"),
  19122. default: true
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(5 + 9 / 12, "feet"),
  19131. weight: math.unit(178, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/shin/front.svg",
  19135. extra: 159 / 151,
  19136. bottom: 0.015
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(5 + 9 / 12, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(5 + 10 / 12, "feet"),
  19153. weight: math.unit(168, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/xerxes/front.svg",
  19157. extra: 282 / 260,
  19158. bottom: 0.045
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(5 + 10 / 12, "feet"),
  19166. default: true
  19167. },
  19168. ]
  19169. ))
  19170. characterMakers.push(() => makeCharacter(
  19171. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19172. {
  19173. front: {
  19174. height: math.unit(6 + 7 / 12, "feet"),
  19175. weight: math.unit(208, "lb"),
  19176. name: "Front",
  19177. image: {
  19178. source: "./media/characters/chaska/front.svg",
  19179. extra: 332 / 319,
  19180. bottom: 0.015
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(6 + 7 / 12, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(5 + 8 / 12, "feet"),
  19197. weight: math.unit(208, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/enuk/front.svg",
  19201. extra: 437 / 406,
  19202. bottom: 0.02
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(5 + 8 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(5 + 10 / 12, "feet"),
  19219. weight: math.unit(252, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/bruun/front.svg",
  19223. extra: 197 / 187,
  19224. bottom: 0.012
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(5 + 10 / 12, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(6 + 10 / 12, "feet"),
  19241. weight: math.unit(255, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/alexeev/front.svg",
  19245. extra: 213 / 200,
  19246. bottom: 0.05
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(6 + 10 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(2 + 8 / 12, "feet"),
  19263. weight: math.unit(22, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/evelyn/front.svg",
  19267. extra: 208 / 180
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Normal",
  19274. height: math.unit(2 + 8 / 12, "feet"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(5 + 9 / 12, "feet"),
  19284. weight: math.unit(139, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/inca/front.svg",
  19288. extra: 294 / 291,
  19289. bottom: 0.03
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Normal",
  19296. height: math.unit(5 + 9 / 12, "feet"),
  19297. default: true
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19303. {
  19304. front: {
  19305. height: math.unit(5 + 1 / 12, "feet"),
  19306. weight: math.unit(84, "lb"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/magdalene/front.svg",
  19310. extra: 293 / 273
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(5 + 1 / 12, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(6 + 3 / 12, "feet"),
  19327. weight: math.unit(185, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/mera/front.svg",
  19331. extra: 291 / 277,
  19332. bottom: 0.03
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(6 + 3 / 12, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(6 + 7 / 12, "feet"),
  19349. weight: math.unit(160, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/ceres/front.svg",
  19353. extra: 1023 / 950,
  19354. bottom: 0.027
  19355. }
  19356. },
  19357. back: {
  19358. height: math.unit(6 + 7 / 12, "feet"),
  19359. weight: math.unit(160, "lb"),
  19360. name: "Back",
  19361. image: {
  19362. source: "./media/characters/ceres/back.svg",
  19363. extra: 1023 / 950
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(6 + 7 / 12, "feet"),
  19371. default: true
  19372. },
  19373. ]
  19374. ))
  19375. characterMakers.push(() => makeCharacter(
  19376. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19377. {
  19378. front: {
  19379. height: math.unit(5 + 10 / 12, "feet"),
  19380. weight: math.unit(150, "lb"),
  19381. name: "Front",
  19382. image: {
  19383. source: "./media/characters/kris/front.svg",
  19384. extra: 885 / 803,
  19385. bottom: 0.03
  19386. }
  19387. },
  19388. },
  19389. [
  19390. {
  19391. name: "Normal",
  19392. height: math.unit(5 + 10 / 12, "feet"),
  19393. default: true
  19394. },
  19395. ]
  19396. ))
  19397. characterMakers.push(() => makeCharacter(
  19398. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19399. {
  19400. front: {
  19401. height: math.unit(7, "feet"),
  19402. weight: math.unit(120, "kg"),
  19403. name: "Front",
  19404. image: {
  19405. source: "./media/characters/taluthus/front.svg",
  19406. extra: 903 / 833,
  19407. bottom: 0.015
  19408. }
  19409. },
  19410. },
  19411. [
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(7, "feet"),
  19415. default: true
  19416. },
  19417. {
  19418. name: "Macro",
  19419. height: math.unit(300, "feet")
  19420. },
  19421. ]
  19422. ))
  19423. characterMakers.push(() => makeCharacter(
  19424. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19425. {
  19426. front: {
  19427. height: math.unit(5 + 9 / 12, "feet"),
  19428. weight: math.unit(145, "lb"),
  19429. name: "Front",
  19430. image: {
  19431. source: "./media/characters/dawn/front.svg",
  19432. extra: 2094 / 2016,
  19433. bottom: 0.025
  19434. }
  19435. },
  19436. back: {
  19437. height: math.unit(5 + 9 / 12, "feet"),
  19438. weight: math.unit(160, "lb"),
  19439. name: "Back",
  19440. image: {
  19441. source: "./media/characters/dawn/back.svg",
  19442. extra: 2112 / 2080,
  19443. bottom: 0.005
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(6 + 7 / 12, "feet"),
  19451. default: true
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19457. {
  19458. anthro: {
  19459. height: math.unit(8 + 3 / 12, "feet"),
  19460. weight: math.unit(450, "lb"),
  19461. name: "Anthro",
  19462. image: {
  19463. source: "./media/characters/arador/anthro.svg",
  19464. extra: 1835 / 1718,
  19465. bottom: 0.025
  19466. }
  19467. },
  19468. feral: {
  19469. height: math.unit(4, "feet"),
  19470. weight: math.unit(200, "lb"),
  19471. name: "Feral",
  19472. image: {
  19473. source: "./media/characters/arador/feral.svg",
  19474. extra: 1683 / 1514,
  19475. bottom: 0.07
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(8 + 3 / 12, "feet")
  19483. },
  19484. {
  19485. name: "Macro",
  19486. height: math.unit(82.5, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(5 + 10 / 12, "feet"),
  19496. weight: math.unit(125, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/dharsi/front.svg",
  19500. extra: 716 / 630,
  19501. bottom: 0.035
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Nano",
  19508. height: math.unit(100, "nm")
  19509. },
  19510. {
  19511. name: "Micro",
  19512. height: math.unit(2, "inches")
  19513. },
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(5 + 10 / 12, "feet"),
  19517. default: true
  19518. },
  19519. {
  19520. name: "Macro",
  19521. height: math.unit(1000, "feet")
  19522. },
  19523. {
  19524. name: "Megamacro",
  19525. height: math.unit(10, "miles")
  19526. },
  19527. {
  19528. name: "Gigamacro",
  19529. height: math.unit(3000, "miles")
  19530. },
  19531. {
  19532. name: "Teramacro",
  19533. height: math.unit(500000, "miles")
  19534. },
  19535. {
  19536. name: "Teramacro+",
  19537. height: math.unit(30, "galaxies")
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(6, "feet"),
  19546. weight: math.unit(150, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/deathy/front.svg",
  19550. extra: 1552 / 1463,
  19551. bottom: 0.025
  19552. }
  19553. },
  19554. side: {
  19555. height: math.unit(6, "feet"),
  19556. weight: math.unit(150, "lb"),
  19557. name: "Side",
  19558. image: {
  19559. source: "./media/characters/deathy/side.svg",
  19560. extra: 1604 / 1455,
  19561. bottom: 0.025
  19562. }
  19563. },
  19564. back: {
  19565. height: math.unit(6, "feet"),
  19566. weight: math.unit(150, "lb"),
  19567. name: "Back",
  19568. image: {
  19569. source: "./media/characters/deathy/back.svg",
  19570. extra: 1580 / 1463,
  19571. bottom: 0.005
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Micro",
  19578. height: math.unit(5, "millimeters")
  19579. },
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(6 + 5 / 12, "feet"),
  19583. default: true
  19584. },
  19585. ]
  19586. ))
  19587. characterMakers.push(() => makeCharacter(
  19588. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19589. {
  19590. front: {
  19591. height: math.unit(16, "feet"),
  19592. weight: math.unit(4000, "lb"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/juniper/front.svg",
  19596. bottom: 0.04
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(16, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(6, "feet"),
  19613. weight: math.unit(150, "lb"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/hipster/front.svg",
  19617. extra: 1312 / 1209,
  19618. bottom: 0.025
  19619. }
  19620. },
  19621. back: {
  19622. height: math.unit(6, "feet"),
  19623. weight: math.unit(150, "lb"),
  19624. name: "Back",
  19625. image: {
  19626. source: "./media/characters/hipster/back.svg",
  19627. extra: 1281 / 1196,
  19628. bottom: 0.01
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Micro",
  19635. height: math.unit(1, "mm")
  19636. },
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(4, "inches"),
  19640. default: true
  19641. },
  19642. {
  19643. name: "Macro",
  19644. height: math.unit(500, "feet")
  19645. },
  19646. {
  19647. name: "Megamacro",
  19648. height: math.unit(1000, "miles")
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(6, "feet"),
  19657. weight: math.unit(150, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/tendirmuldr/front.svg",
  19661. extra: 1878 / 1772,
  19662. bottom: 0.015
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Megamacro",
  19669. height: math.unit(1500, "miles"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19676. {
  19677. front: {
  19678. height: math.unit(14, "feet"),
  19679. weight: math.unit(12000, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/mort/front.svg",
  19683. extra: 365 / 318,
  19684. bottom: 0.01
  19685. }
  19686. },
  19687. side: {
  19688. height: math.unit(14, "feet"),
  19689. weight: math.unit(12000, "lb"),
  19690. name: "Side",
  19691. image: {
  19692. source: "./media/characters/mort/side.svg",
  19693. extra: 365 / 318,
  19694. bottom: 0.052
  19695. },
  19696. default: true
  19697. },
  19698. back: {
  19699. height: math.unit(14, "feet"),
  19700. weight: math.unit(12000, "lb"),
  19701. name: "Back",
  19702. image: {
  19703. source: "./media/characters/mort/back.svg",
  19704. extra: 371 / 332,
  19705. bottom: 0.18
  19706. }
  19707. },
  19708. },
  19709. [
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(14, "feet"),
  19713. default: true
  19714. },
  19715. ]
  19716. ))
  19717. characterMakers.push(() => makeCharacter(
  19718. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19719. {
  19720. front: {
  19721. height: math.unit(8, "feet"),
  19722. weight: math.unit(1, "ton"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/lycoa/front.svg",
  19726. extra: 1875 / 1789,
  19727. bottom: 0.022
  19728. }
  19729. },
  19730. back: {
  19731. height: math.unit(8, "feet"),
  19732. weight: math.unit(1, "ton"),
  19733. name: "Back",
  19734. image: {
  19735. source: "./media/characters/lycoa/back.svg",
  19736. extra: 1835 / 1781,
  19737. bottom: 0.03
  19738. }
  19739. },
  19740. head: {
  19741. height: math.unit(2.1, "feet"),
  19742. name: "Head",
  19743. image: {
  19744. source: "./media/characters/lycoa/head.svg"
  19745. }
  19746. },
  19747. tailmaw: {
  19748. height: math.unit(1.9, "feet"),
  19749. name: "Tailmaw",
  19750. image: {
  19751. source: "./media/characters/lycoa/tailmaw.svg"
  19752. }
  19753. },
  19754. tentacles: {
  19755. height: math.unit(2.1, "feet"),
  19756. name: "Tentacles",
  19757. image: {
  19758. source: "./media/characters/lycoa/tentacles.svg"
  19759. }
  19760. },
  19761. dick: {
  19762. height: math.unit(1.73, "feet"),
  19763. name: "Dick",
  19764. image: {
  19765. source: "./media/characters/lycoa/dick.svg"
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(8, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "Macro",
  19777. height: math.unit(30, "feet")
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19783. {
  19784. front: {
  19785. height: math.unit(4 + 2 / 12, "feet"),
  19786. weight: math.unit(70, "lb"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/naldara/front.svg",
  19790. extra: 841 / 720,
  19791. bottom: 0.04
  19792. }
  19793. },
  19794. naga: {
  19795. height: math.unit(23, "feet"),
  19796. weight: math.unit(15000, "kg"),
  19797. name: "Naga",
  19798. image: {
  19799. source: "./media/characters/naldara/naga.svg",
  19800. extra: 3290 / 2959,
  19801. bottom: 124 / 3432
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(4 + 2 / 12, "feet"),
  19809. default: true
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(13 + 7 / 12, "feet"),
  19818. weight: math.unit(1500, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/briar/front.svg",
  19822. extra: 626 / 596,
  19823. bottom: 0.08
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(13 + 7 / 12, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19837. {
  19838. side: {
  19839. height: math.unit(10, "feet"),
  19840. weight: math.unit(500, "lb"),
  19841. name: "Side",
  19842. image: {
  19843. source: "./media/characters/vanguard/side.svg",
  19844. extra: 502 / 425,
  19845. bottom: 0.087
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(10, "feet"),
  19853. default: true
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19859. {
  19860. front: {
  19861. height: math.unit(7.5, "feet"),
  19862. weight: math.unit(2, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/artemis/front.svg",
  19866. extra: 1192 / 1075,
  19867. bottom: 0.07
  19868. }
  19869. },
  19870. frontNsfw: {
  19871. height: math.unit(7.5, "feet"),
  19872. weight: math.unit(2, "lb"),
  19873. name: "Front (NSFW)",
  19874. image: {
  19875. source: "./media/characters/artemis/front-nsfw.svg",
  19876. extra: 1192 / 1075,
  19877. bottom: 0.07
  19878. }
  19879. },
  19880. frontNsfwer: {
  19881. height: math.unit(7.5, "feet"),
  19882. weight: math.unit(2, "lb"),
  19883. name: "Front (NSFW-er)",
  19884. image: {
  19885. source: "./media/characters/artemis/front-nsfwer.svg",
  19886. extra: 1192 / 1075,
  19887. bottom: 0.07
  19888. }
  19889. },
  19890. side: {
  19891. height: math.unit(7.5, "feet"),
  19892. weight: math.unit(2, "lb"),
  19893. name: "Side",
  19894. image: {
  19895. source: "./media/characters/artemis/side.svg",
  19896. extra: 1192 / 1075,
  19897. bottom: 0.07
  19898. }
  19899. },
  19900. sideNsfw: {
  19901. height: math.unit(7.5, "feet"),
  19902. weight: math.unit(2, "lb"),
  19903. name: "Side (NSFW)",
  19904. image: {
  19905. source: "./media/characters/artemis/side-nsfw.svg",
  19906. extra: 1192 / 1075,
  19907. bottom: 0.07
  19908. }
  19909. },
  19910. sideNsfwer: {
  19911. height: math.unit(7.5, "feet"),
  19912. weight: math.unit(2, "lb"),
  19913. name: "Side (NSFW-er)",
  19914. image: {
  19915. source: "./media/characters/artemis/side-nsfwer.svg",
  19916. extra: 1192 / 1075,
  19917. bottom: 0.07
  19918. }
  19919. },
  19920. maw: {
  19921. height: math.unit(1.1, "feet"),
  19922. name: "Maw",
  19923. image: {
  19924. source: "./media/characters/artemis/maw.svg"
  19925. }
  19926. },
  19927. stomach: {
  19928. height: math.unit(0.95, "feet"),
  19929. name: "Stomach",
  19930. image: {
  19931. source: "./media/characters/artemis/stomach.svg"
  19932. }
  19933. },
  19934. dickCanine: {
  19935. height: math.unit(1, "feet"),
  19936. name: "Dick (Canine)",
  19937. image: {
  19938. source: "./media/characters/artemis/dick-canine.svg"
  19939. }
  19940. },
  19941. dickEquine: {
  19942. height: math.unit(0.85, "feet"),
  19943. name: "Dick (Equine)",
  19944. image: {
  19945. source: "./media/characters/artemis/dick-equine.svg"
  19946. }
  19947. },
  19948. dickExotic: {
  19949. height: math.unit(0.85, "feet"),
  19950. name: "Dick (Exotic)",
  19951. image: {
  19952. source: "./media/characters/artemis/dick-exotic.svg"
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(7.5, "feet"),
  19960. default: true
  19961. },
  19962. {
  19963. name: "Enlarged",
  19964. height: math.unit(12, "feet")
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(5 + 3 / 12, "feet"),
  19973. weight: math.unit(160, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/kira/front.svg",
  19977. extra: 906 / 786,
  19978. bottom: 0.01
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(5 + 3 / 12, "feet"),
  19983. weight: math.unit(160, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/kira/back.svg",
  19987. extra: 882 / 757,
  19988. bottom: 0.005
  19989. }
  19990. },
  19991. frontDressed: {
  19992. height: math.unit(5 + 3 / 12, "feet"),
  19993. weight: math.unit(160, "lb"),
  19994. name: "Front (Dressed)",
  19995. image: {
  19996. source: "./media/characters/kira/front-dressed.svg",
  19997. extra: 906 / 786,
  19998. bottom: 0.01
  19999. }
  20000. },
  20001. beans: {
  20002. height: math.unit(0.92, "feet"),
  20003. name: "Beans",
  20004. image: {
  20005. source: "./media/characters/kira/beans.svg"
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(5 + 3 / 12, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(5 + 4 / 12, "feet"),
  20022. weight: math.unit(145, "lb"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/scramble/front.svg",
  20026. extra: 763 / 727,
  20027. bottom: 0.05
  20028. }
  20029. },
  20030. back: {
  20031. height: math.unit(5 + 4 / 12, "feet"),
  20032. weight: math.unit(145, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/scramble/back.svg",
  20036. extra: 826 / 737,
  20037. bottom: 0.002
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(5 + 4 / 12, "feet"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20051. {
  20052. side: {
  20053. height: math.unit(6 + 2 / 12, "feet"),
  20054. weight: math.unit(190, "lb"),
  20055. name: "Side",
  20056. image: {
  20057. source: "./media/characters/biscuit/side.svg",
  20058. extra: 858 / 791,
  20059. bottom: 0.044
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(6 + 2 / 12, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5 + 2 / 12, "feet"),
  20076. weight: math.unit(120, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/poffin/front.svg",
  20080. extra: 786 / 680,
  20081. bottom: 0.005
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5 + 2 / 12, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20095. {
  20096. front: {
  20097. height: math.unit(6 + 3 / 12, "feet"),
  20098. weight: math.unit(519, "lb"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/dhari/front.svg",
  20102. extra: 1048 / 946,
  20103. bottom: 0.015
  20104. }
  20105. },
  20106. back: {
  20107. height: math.unit(6 + 3 / 12, "feet"),
  20108. weight: math.unit(519, "lb"),
  20109. name: "Back",
  20110. image: {
  20111. source: "./media/characters/dhari/back.svg",
  20112. extra: 1048 / 931,
  20113. bottom: 0.005
  20114. }
  20115. },
  20116. frontDressed: {
  20117. height: math.unit(6 + 3 / 12, "feet"),
  20118. weight: math.unit(519, "lb"),
  20119. name: "Front (Dressed)",
  20120. image: {
  20121. source: "./media/characters/dhari/front-dressed.svg",
  20122. extra: 1713 / 1546,
  20123. bottom: 0.02
  20124. }
  20125. },
  20126. backDressed: {
  20127. height: math.unit(6 + 3 / 12, "feet"),
  20128. weight: math.unit(519, "lb"),
  20129. name: "Back (Dressed)",
  20130. image: {
  20131. source: "./media/characters/dhari/back-dressed.svg",
  20132. extra: 1699 / 1537,
  20133. bottom: 0.01
  20134. }
  20135. },
  20136. maw: {
  20137. height: math.unit(0.95, "feet"),
  20138. name: "Maw",
  20139. image: {
  20140. source: "./media/characters/dhari/maw.svg"
  20141. }
  20142. },
  20143. wereFront: {
  20144. height: math.unit(12 + 8 / 12, "feet"),
  20145. weight: math.unit(4000, "lb"),
  20146. name: "Front (Were)",
  20147. image: {
  20148. source: "./media/characters/dhari/were-front.svg",
  20149. extra: 1065 / 969,
  20150. bottom: 0.015
  20151. }
  20152. },
  20153. wereBack: {
  20154. height: math.unit(12 + 8 / 12, "feet"),
  20155. weight: math.unit(4000, "lb"),
  20156. name: "Back (Were)",
  20157. image: {
  20158. source: "./media/characters/dhari/were-back.svg",
  20159. extra: 1065 / 969,
  20160. bottom: 0.012
  20161. }
  20162. },
  20163. wereMaw: {
  20164. height: math.unit(0.625, "meters"),
  20165. name: "Maw (Were)",
  20166. image: {
  20167. source: "./media/characters/dhari/were-maw.svg"
  20168. }
  20169. },
  20170. },
  20171. [
  20172. {
  20173. name: "Normal",
  20174. height: math.unit(6 + 3 / 12, "feet"),
  20175. default: true
  20176. },
  20177. ]
  20178. ))
  20179. characterMakers.push(() => makeCharacter(
  20180. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20181. {
  20182. anthro: {
  20183. height: math.unit(5 + 7 / 12, "feet"),
  20184. weight: math.unit(175, "lb"),
  20185. name: "Anthro",
  20186. image: {
  20187. source: "./media/characters/rena-dyne/anthro.svg",
  20188. extra: 1849 / 1785,
  20189. bottom: 0.005
  20190. }
  20191. },
  20192. taur: {
  20193. height: math.unit(15 + 6 / 12, "feet"),
  20194. weight: math.unit(8000, "lb"),
  20195. name: "Taur",
  20196. image: {
  20197. source: "./media/characters/rena-dyne/taur.svg",
  20198. extra: 2315 / 2234,
  20199. bottom: 0.033
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(5 + 7 / 12, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20213. {
  20214. front: {
  20215. height: math.unit(8, "feet"),
  20216. weight: math.unit(600, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/weremeep/front.svg",
  20220. extra: 967 / 862,
  20221. bottom: 0.01
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(8, "feet"),
  20229. default: true
  20230. },
  20231. {
  20232. name: "Lorg",
  20233. height: math.unit(12, "feet")
  20234. },
  20235. {
  20236. name: "Oh Lawd She Comin'",
  20237. height: math.unit(20, "feet")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20243. {
  20244. front: {
  20245. height: math.unit(4, "feet"),
  20246. weight: math.unit(90, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/reza/front.svg",
  20250. extra: 1183 / 1111,
  20251. bottom: 0.017
  20252. }
  20253. },
  20254. back: {
  20255. height: math.unit(4, "feet"),
  20256. weight: math.unit(90, "lb"),
  20257. name: "Back",
  20258. image: {
  20259. source: "./media/characters/reza/back.svg",
  20260. extra: 1183 / 1111,
  20261. bottom: 0.01
  20262. }
  20263. },
  20264. drake: {
  20265. height: math.unit(30, "feet"),
  20266. weight: math.unit(246960, "lb"),
  20267. name: "Drake",
  20268. image: {
  20269. source: "./media/characters/reza/drake.svg",
  20270. extra: 2350 / 2024,
  20271. bottom: 60.7 / 2403
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(4, "feet"),
  20279. default: true
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20285. {
  20286. side: {
  20287. height: math.unit(15, "feet"),
  20288. weight: math.unit(14, "tons"),
  20289. name: "Side",
  20290. image: {
  20291. source: "./media/characters/athea/side.svg",
  20292. extra: 960 / 540,
  20293. bottom: 0.003
  20294. }
  20295. },
  20296. sitting: {
  20297. height: math.unit(6 * 2.85, "feet"),
  20298. weight: math.unit(14, "tons"),
  20299. name: "Sitting",
  20300. image: {
  20301. source: "./media/characters/athea/sitting.svg",
  20302. extra: 621 / 581,
  20303. bottom: 0.075
  20304. }
  20305. },
  20306. maw: {
  20307. height: math.unit(7.59498031496063, "feet"),
  20308. name: "Maw",
  20309. image: {
  20310. source: "./media/characters/athea/maw.svg"
  20311. }
  20312. },
  20313. },
  20314. [
  20315. {
  20316. name: "Lap Cat",
  20317. height: math.unit(2.5, "feet")
  20318. },
  20319. {
  20320. name: "Minimacro",
  20321. height: math.unit(15, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Macro",
  20326. height: math.unit(120, "feet")
  20327. },
  20328. {
  20329. name: "Macro+",
  20330. height: math.unit(640, "feet")
  20331. },
  20332. {
  20333. name: "Colossus",
  20334. height: math.unit(2.2, "miles")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(8 + 8 / 12, "feet"),
  20343. weight: math.unit(130, "kg"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/seroko/front.svg",
  20347. extra: 1385 / 1280,
  20348. bottom: 0.025
  20349. }
  20350. },
  20351. back: {
  20352. height: math.unit(8 + 8 / 12, "feet"),
  20353. weight: math.unit(130, "kg"),
  20354. name: "Back",
  20355. image: {
  20356. source: "./media/characters/seroko/back.svg",
  20357. extra: 1369 / 1238,
  20358. bottom: 0.018
  20359. }
  20360. },
  20361. frontDressed: {
  20362. height: math.unit(8 + 8 / 12, "feet"),
  20363. weight: math.unit(130, "kg"),
  20364. name: "Front (Dressed)",
  20365. image: {
  20366. source: "./media/characters/seroko/front-dressed.svg",
  20367. extra: 1366 / 1275,
  20368. bottom: 0.03
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(8 + 8 / 12, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(5.5, "feet"),
  20385. weight: math.unit(160, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/quatzi/front.svg",
  20389. extra: 2346 / 2242,
  20390. bottom: 0.015
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(5.5, "feet"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Big",
  20402. height: math.unit(7.7, "feet")
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(5 + 11 / 12, "feet"),
  20411. weight: math.unit(180, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/sen/front.svg",
  20415. extra: 1321 / 1254,
  20416. bottom: 0.015
  20417. }
  20418. },
  20419. side: {
  20420. height: math.unit(5 + 11 / 12, "feet"),
  20421. weight: math.unit(180, "lb"),
  20422. name: "Side",
  20423. image: {
  20424. source: "./media/characters/sen/side.svg",
  20425. extra: 1321 / 1254,
  20426. bottom: 0.007
  20427. }
  20428. },
  20429. back: {
  20430. height: math.unit(5 + 11 / 12, "feet"),
  20431. weight: math.unit(180, "lb"),
  20432. name: "Back",
  20433. image: {
  20434. source: "./media/characters/sen/back.svg",
  20435. extra: 1321 / 1254
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(5 + 11 / 12, "feet"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(166.6, "cm"),
  20452. weight: math.unit(66.6, "kg"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/fruity/front.svg",
  20456. extra: 1510 / 1386,
  20457. bottom: 0.04
  20458. }
  20459. },
  20460. back: {
  20461. height: math.unit(166.6, "cm"),
  20462. weight: math.unit(66.6, "lb"),
  20463. name: "Back",
  20464. image: {
  20465. source: "./media/characters/fruity/back.svg",
  20466. extra: 1563 / 1435,
  20467. bottom: 0.005
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(166.6, "cm"),
  20475. default: true
  20476. },
  20477. {
  20478. name: "Demonic",
  20479. height: math.unit(166.6, "feet")
  20480. },
  20481. ]
  20482. ))
  20483. characterMakers.push(() => makeCharacter(
  20484. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20485. {
  20486. side: {
  20487. height: math.unit(10, "feet"),
  20488. weight: math.unit(500, "lb"),
  20489. name: "Side",
  20490. image: {
  20491. source: "./media/characters/zost/side.svg",
  20492. extra: 966 / 880,
  20493. bottom: 0.075
  20494. }
  20495. },
  20496. mawFront: {
  20497. height: math.unit(1.08, "meters"),
  20498. name: "Maw (Front)",
  20499. image: {
  20500. source: "./media/characters/zost/maw-front.svg"
  20501. }
  20502. },
  20503. mawSide: {
  20504. height: math.unit(2.66, "feet"),
  20505. name: "Maw (Side)",
  20506. image: {
  20507. source: "./media/characters/zost/maw-side.svg"
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(10, "feet"),
  20515. default: true
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20521. {
  20522. front: {
  20523. height: math.unit(5 + 4 / 12, "feet"),
  20524. weight: math.unit(120, "lb"),
  20525. name: "Front",
  20526. image: {
  20527. source: "./media/characters/luci/front.svg",
  20528. extra: 1985 / 1884,
  20529. bottom: 0.04
  20530. }
  20531. },
  20532. back: {
  20533. height: math.unit(5 + 4 / 12, "feet"),
  20534. weight: math.unit(120, "lb"),
  20535. name: "Back",
  20536. image: {
  20537. source: "./media/characters/luci/back.svg",
  20538. extra: 1892 / 1791,
  20539. bottom: 0.002
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(5 + 4 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(1500, "feet"),
  20556. weight: math.unit(3.8e6, "tons"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/2th/front.svg",
  20560. extra: 3489 / 3350,
  20561. bottom: 0.1
  20562. }
  20563. },
  20564. foot: {
  20565. height: math.unit(461, "feet"),
  20566. name: "Foot",
  20567. image: {
  20568. source: "./media/characters/2th/foot.svg"
  20569. }
  20570. },
  20571. },
  20572. [
  20573. {
  20574. name: "\"Micro\"",
  20575. height: math.unit(15 + 7 / 12, "feet")
  20576. },
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(1500, "feet"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Macro",
  20584. height: math.unit(5000, "feet")
  20585. },
  20586. {
  20587. name: "Megamacro",
  20588. height: math.unit(15, "miles")
  20589. },
  20590. {
  20591. name: "Gigamacro",
  20592. height: math.unit(4000, "miles")
  20593. },
  20594. {
  20595. name: "Galactic",
  20596. height: math.unit(50, "AU")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(5 + 6 / 12, "feet"),
  20605. weight: math.unit(220, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/amethyst/front.svg",
  20609. extra: 2078 / 2040,
  20610. bottom: 0.045
  20611. }
  20612. },
  20613. back: {
  20614. height: math.unit(5 + 6 / 12, "feet"),
  20615. weight: math.unit(220, "lb"),
  20616. name: "Back",
  20617. image: {
  20618. source: "./media/characters/amethyst/back.svg",
  20619. extra: 2021 / 1989,
  20620. bottom: 0.02
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(5 + 6 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(4 + 11 / 12, "feet"),
  20637. weight: math.unit(120, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/yumi-akiyama/front.svg",
  20641. extra: 1327 / 1235,
  20642. bottom: 0.02
  20643. }
  20644. },
  20645. back: {
  20646. height: math.unit(4 + 11 / 12, "feet"),
  20647. weight: math.unit(120, "lb"),
  20648. name: "Back",
  20649. image: {
  20650. source: "./media/characters/yumi-akiyama/back.svg",
  20651. extra: 1287 / 1245,
  20652. bottom: 0.002
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Galactic",
  20659. height: math.unit(50, "galaxies"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Universal",
  20664. height: math.unit(100, "universes")
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(8, "feet"),
  20673. weight: math.unit(500, "lb"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/rifter-yrmori/front.svg",
  20677. extra: 1180 / 1125,
  20678. bottom: 0.02
  20679. }
  20680. },
  20681. back: {
  20682. height: math.unit(8, "feet"),
  20683. weight: math.unit(500, "lb"),
  20684. name: "Back",
  20685. image: {
  20686. source: "./media/characters/rifter-yrmori/back.svg",
  20687. extra: 1190 / 1145,
  20688. bottom: 0.001
  20689. }
  20690. },
  20691. wings: {
  20692. height: math.unit(7.75, "feet"),
  20693. weight: math.unit(500, "lb"),
  20694. name: "Wings",
  20695. image: {
  20696. source: "./media/characters/rifter-yrmori/wings.svg",
  20697. extra: 1357 / 1285
  20698. }
  20699. },
  20700. maw: {
  20701. height: math.unit(0.8, "feet"),
  20702. name: "Maw",
  20703. image: {
  20704. source: "./media/characters/rifter-yrmori/maw.svg"
  20705. }
  20706. },
  20707. mawfront: {
  20708. height: math.unit(1.45, "feet"),
  20709. name: "Maw (Front)",
  20710. image: {
  20711. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(8, "feet"),
  20719. default: true
  20720. },
  20721. {
  20722. name: "Macro",
  20723. height: math.unit(42, "meters")
  20724. },
  20725. ]
  20726. ))
  20727. characterMakers.push(() => makeCharacter(
  20728. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20729. {
  20730. were: {
  20731. height: math.unit(25 + 6 / 12, "feet"),
  20732. weight: math.unit(10000, "lb"),
  20733. name: "Were",
  20734. image: {
  20735. source: "./media/characters/tahajin/were.svg",
  20736. extra: 801 / 770,
  20737. bottom: 0.042
  20738. }
  20739. },
  20740. aquatic: {
  20741. height: math.unit(6 + 4 / 12, "feet"),
  20742. weight: math.unit(160, "lb"),
  20743. name: "Aquatic",
  20744. image: {
  20745. source: "./media/characters/tahajin/aquatic.svg",
  20746. extra: 572 / 542,
  20747. bottom: 0.04
  20748. }
  20749. },
  20750. chow: {
  20751. height: math.unit(8 + 11 / 12, "feet"),
  20752. weight: math.unit(450, "lb"),
  20753. name: "Chow",
  20754. image: {
  20755. source: "./media/characters/tahajin/chow.svg",
  20756. extra: 660 / 640,
  20757. bottom: 0.015
  20758. }
  20759. },
  20760. demiNaga: {
  20761. height: math.unit(6 + 8 / 12, "feet"),
  20762. weight: math.unit(300, "lb"),
  20763. name: "Demi Naga",
  20764. image: {
  20765. source: "./media/characters/tahajin/demi-naga.svg",
  20766. extra: 643 / 615,
  20767. bottom: 0.1
  20768. }
  20769. },
  20770. data: {
  20771. height: math.unit(5, "inches"),
  20772. weight: math.unit(0.1, "lb"),
  20773. name: "Data",
  20774. image: {
  20775. source: "./media/characters/tahajin/data.svg"
  20776. }
  20777. },
  20778. fluu: {
  20779. height: math.unit(5 + 7 / 12, "feet"),
  20780. weight: math.unit(140, "lb"),
  20781. name: "Fluu",
  20782. image: {
  20783. source: "./media/characters/tahajin/fluu.svg",
  20784. extra: 628 / 592,
  20785. bottom: 0.02
  20786. }
  20787. },
  20788. starWarrior: {
  20789. height: math.unit(4 + 5 / 12, "feet"),
  20790. weight: math.unit(50, "lb"),
  20791. name: "Star Warrior",
  20792. image: {
  20793. source: "./media/characters/tahajin/star-warrior.svg"
  20794. }
  20795. },
  20796. },
  20797. [
  20798. {
  20799. name: "Normal",
  20800. height: math.unit(25 + 6 / 12, "feet"),
  20801. default: true
  20802. },
  20803. ]
  20804. ))
  20805. characterMakers.push(() => makeCharacter(
  20806. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20807. {
  20808. front: {
  20809. height: math.unit(8, "feet"),
  20810. weight: math.unit(350, "lb"),
  20811. name: "Front",
  20812. image: {
  20813. source: "./media/characters/gabira/front.svg",
  20814. extra: 608 / 580,
  20815. bottom: 0.03
  20816. }
  20817. },
  20818. back: {
  20819. height: math.unit(8, "feet"),
  20820. weight: math.unit(350, "lb"),
  20821. name: "Back",
  20822. image: {
  20823. source: "./media/characters/gabira/back.svg",
  20824. extra: 608 / 580,
  20825. bottom: 0.03
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(8, "feet"),
  20833. default: true
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(5 + 3 / 12, "feet"),
  20842. weight: math.unit(137, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/sasha-katraine/front.svg",
  20846. bottom: 0.045
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Micro",
  20853. height: math.unit(5, "inches")
  20854. },
  20855. {
  20856. name: "Normal",
  20857. height: math.unit(5 + 3 / 12, "feet"),
  20858. default: true
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20864. {
  20865. side: {
  20866. height: math.unit(4, "inches"),
  20867. weight: math.unit(200, "grams"),
  20868. name: "Side",
  20869. image: {
  20870. source: "./media/characters/der/side.svg",
  20871. extra: 719 / 400,
  20872. bottom: 30.6 / 749.9187
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Micro",
  20879. height: math.unit(4, "inches"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20886. {
  20887. side: {
  20888. height: math.unit(30, "meters"),
  20889. weight: math.unit(700, "tonnes"),
  20890. name: "Side",
  20891. image: {
  20892. source: "./media/characters/fixerdragon/side.svg",
  20893. extra: (1293.0514 - 116.03) / 1106.86,
  20894. bottom: 116.03 / 1293.0514
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Planck",
  20901. height: math.unit(1.6e-35, "meters")
  20902. },
  20903. {
  20904. name: "Micro",
  20905. height: math.unit(0.4, "meters")
  20906. },
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(30, "meters"),
  20910. default: true
  20911. },
  20912. {
  20913. name: "Megamacro",
  20914. height: math.unit(1.2, "megameters")
  20915. },
  20916. {
  20917. name: "Teramacro",
  20918. height: math.unit(130, "terameters")
  20919. },
  20920. {
  20921. name: "Yottamacro",
  20922. height: math.unit(6200, "yottameters")
  20923. },
  20924. ]
  20925. ));
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(8, "feet"),
  20931. weight: math.unit(250, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/kite/front.svg",
  20935. extra: 2796 / 2659,
  20936. bottom: 0.002
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(8, "feet"),
  20944. default: true
  20945. },
  20946. {
  20947. name: "Macro",
  20948. height: math.unit(360, "feet")
  20949. },
  20950. {
  20951. name: "Megamacro",
  20952. height: math.unit(1500, "feet")
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(5 + 10 / 12, "feet"),
  20961. weight: math.unit(150, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/poojawa-vynar/front.svg",
  20965. extra: (1506.1547 - 55) / 1356.6,
  20966. bottom: 55 / 1506.1547
  20967. }
  20968. },
  20969. frontTailless: {
  20970. height: math.unit(5 + 10 / 12, "feet"),
  20971. weight: math.unit(150, "lb"),
  20972. name: "Front (Tailless)",
  20973. image: {
  20974. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20975. extra: (1506.1547 - 55) / 1356.6,
  20976. bottom: 55 / 1506.1547
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(5 + 10 / 12, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(293, "meters"),
  20993. weight: math.unit(70400, "tons"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/violette/front.svg",
  20997. extra: 1227 / 1180,
  20998. bottom: 0.005
  20999. }
  21000. },
  21001. back: {
  21002. height: math.unit(293, "meters"),
  21003. weight: math.unit(70400, "tons"),
  21004. name: "Back",
  21005. image: {
  21006. source: "./media/characters/violette/back.svg",
  21007. extra: 1227 / 1180,
  21008. bottom: 0.005
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Macro",
  21015. height: math.unit(293, "meters"),
  21016. default: true
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(1050, "feet"),
  21025. weight: math.unit(200000, "tons"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/alessandra/front.svg",
  21029. extra: 960 / 912,
  21030. bottom: 0.06
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Macro",
  21037. height: math.unit(1050, "feet")
  21038. },
  21039. {
  21040. name: "Macro+",
  21041. height: math.unit(900, "meters"),
  21042. default: true
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(5, "feet"),
  21051. weight: math.unit(187, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/person/front.svg",
  21055. extra: 3087 / 2945,
  21056. bottom: 91 / 3181
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Micro",
  21063. height: math.unit(3, "inches")
  21064. },
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(5, "feet"),
  21068. default: true
  21069. },
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(90, "feet")
  21073. },
  21074. {
  21075. name: "Max Size",
  21076. height: math.unit(280, "feet")
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(4.5, "meters"),
  21085. weight: math.unit(3200, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/ty/front.svg",
  21089. extra: 1038 / 960,
  21090. bottom: 31.156 / 1068
  21091. }
  21092. },
  21093. back: {
  21094. height: math.unit(4.5, "meters"),
  21095. weight: math.unit(3200, "lb"),
  21096. name: "Back",
  21097. image: {
  21098. source: "./media/characters/ty/back.svg",
  21099. extra: 1044 / 966,
  21100. bottom: 7.48 / 1049
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(4.5, "meters"),
  21108. default: true
  21109. },
  21110. ]
  21111. ))
  21112. characterMakers.push(() => makeCharacter(
  21113. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21114. {
  21115. front: {
  21116. height: math.unit(5 + 4 / 12, "feet"),
  21117. weight: math.unit(115, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/rocky/front.svg",
  21121. extra: 1012 / 975,
  21122. bottom: 54 / 1066
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(5 + 4 / 12, "feet"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21136. {
  21137. upright: {
  21138. height: math.unit(6, "meters"),
  21139. weight: math.unit(4000, "kg"),
  21140. name: "Upright",
  21141. image: {
  21142. source: "./media/characters/ruin/upright.svg",
  21143. extra: 668 / 661,
  21144. bottom: 42 / 799.8396
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(6, "meters"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(5, "feet"),
  21161. weight: math.unit(106, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/robin/front.svg",
  21165. extra: 862 / 799,
  21166. bottom: 42.4 / 914.8856
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(5, "feet"),
  21174. default: true
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21180. {
  21181. side: {
  21182. height: math.unit(3, "feet"),
  21183. weight: math.unit(225, "lb"),
  21184. name: "Side",
  21185. image: {
  21186. source: "./media/characters/saian/side.svg",
  21187. extra: 566 / 356,
  21188. bottom: 79.7 / 643
  21189. }
  21190. },
  21191. maw: {
  21192. height: math.unit(2.85, "feet"),
  21193. name: "Maw",
  21194. image: {
  21195. source: "./media/characters/saian/maw.svg"
  21196. }
  21197. },
  21198. },
  21199. [
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(3, "feet"),
  21203. default: true
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21209. {
  21210. side: {
  21211. height: math.unit(8, "feet"),
  21212. weight: math.unit(300, "lb"),
  21213. name: "Side",
  21214. image: {
  21215. source: "./media/characters/equus-silvermane/side.svg",
  21216. extra: 2176 / 2050,
  21217. bottom: 65.7 / 2245
  21218. }
  21219. },
  21220. front: {
  21221. height: math.unit(8, "feet"),
  21222. weight: math.unit(300, "lb"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/equus-silvermane/front.svg",
  21226. extra: 4633 / 4400,
  21227. bottom: 71.3 / 4706.915
  21228. }
  21229. },
  21230. sideStepping: {
  21231. height: math.unit(8, "feet"),
  21232. weight: math.unit(300, "lb"),
  21233. name: "Side (Stepping)",
  21234. image: {
  21235. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21236. extra: 1968 / 1860,
  21237. bottom: 16.4 / 1989
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(8, "feet")
  21245. },
  21246. {
  21247. name: "Minimacro",
  21248. height: math.unit(75, "feet"),
  21249. default: true
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(150, "feet")
  21254. },
  21255. {
  21256. name: "Macro+",
  21257. height: math.unit(1000, "feet")
  21258. },
  21259. {
  21260. name: "Megamacro",
  21261. height: math.unit(1, "mile")
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21267. {
  21268. side: {
  21269. height: math.unit(20, "feet"),
  21270. weight: math.unit(30000, "kg"),
  21271. name: "Side",
  21272. image: {
  21273. source: "./media/characters/windar/side.svg",
  21274. extra: 1491 / 1248,
  21275. bottom: 82.56 / 1568
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(20, "feet"),
  21283. default: true
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21289. {
  21290. side: {
  21291. height: math.unit(15.66, "feet"),
  21292. weight: math.unit(150, "lb"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/melody/side.svg",
  21296. extra: 1097 / 944,
  21297. bottom: 11.8 / 1109
  21298. }
  21299. },
  21300. sideOutfit: {
  21301. height: math.unit(15.66, "feet"),
  21302. weight: math.unit(150, "lb"),
  21303. name: "Side (Outfit)",
  21304. image: {
  21305. source: "./media/characters/melody/side-outfit.svg",
  21306. extra: 1097 / 944,
  21307. bottom: 11.8 / 1109
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(15.66, "feet"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(8, "feet"),
  21324. weight: math.unit(325, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/windera/front.svg",
  21328. extra: 3180 / 2845,
  21329. bottom: 178 / 3365
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(8, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21343. {
  21344. front: {
  21345. height: math.unit(28.75, "feet"),
  21346. weight: math.unit(2000, "kg"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/sonear/front.svg",
  21350. extra: 1041.1 / 964.9,
  21351. bottom: 53.7 / 1096.6
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(28.75, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21365. {
  21366. side: {
  21367. height: math.unit(25.5, "feet"),
  21368. weight: math.unit(23000, "kg"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/kanara/side.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(25.5, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21385. {
  21386. side: {
  21387. height: math.unit(10, "feet"),
  21388. weight: math.unit(1000, "kg"),
  21389. name: "Side",
  21390. image: {
  21391. source: "./media/characters/ereus/side.svg",
  21392. extra: 1157 / 959,
  21393. bottom: 153 / 1312.5
  21394. }
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(10, "feet"),
  21401. default: true
  21402. },
  21403. ]
  21404. ))
  21405. characterMakers.push(() => makeCharacter(
  21406. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21407. {
  21408. side: {
  21409. height: math.unit(4.5, "feet"),
  21410. weight: math.unit(500, "lb"),
  21411. name: "Side",
  21412. image: {
  21413. source: "./media/characters/e-ter/side.svg",
  21414. extra: 1550 / 1248,
  21415. bottom: 146 / 1694
  21416. }
  21417. },
  21418. },
  21419. [
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(4.5, "feet"),
  21423. default: true
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21429. {
  21430. side: {
  21431. height: math.unit(9.7, "feet"),
  21432. weight: math.unit(4000, "kg"),
  21433. name: "Side",
  21434. image: {
  21435. source: "./media/characters/yamie/side.svg"
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(9.7, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(50, "feet"),
  21452. weight: math.unit(50000, "kg"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/anders/front.svg",
  21456. extra: 570 / 539,
  21457. bottom: 14.7 / 586.7
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Large",
  21464. height: math.unit(50, "feet")
  21465. },
  21466. {
  21467. name: "Macro",
  21468. height: math.unit(2000, "feet"),
  21469. default: true
  21470. },
  21471. {
  21472. name: "Megamacro",
  21473. height: math.unit(12, "miles")
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21479. {
  21480. front: {
  21481. height: math.unit(7 + 2 / 12, "feet"),
  21482. weight: math.unit(300, "lb"),
  21483. name: "Front",
  21484. image: {
  21485. source: "./media/characters/reban/front.svg",
  21486. extra: 516 / 487,
  21487. bottom: 42.82 / 558.356
  21488. }
  21489. },
  21490. dick: {
  21491. height: math.unit(7 / 5, "feet"),
  21492. name: "Dick",
  21493. image: {
  21494. source: "./media/characters/reban/dick.svg"
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Natural Height",
  21501. height: math.unit(7 + 2 / 12, "feet")
  21502. },
  21503. {
  21504. name: "Macro",
  21505. height: math.unit(500, "feet"),
  21506. default: true
  21507. },
  21508. {
  21509. name: "Canon Height",
  21510. height: math.unit(50, "AU")
  21511. },
  21512. ]
  21513. ))
  21514. characterMakers.push(() => makeCharacter(
  21515. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21516. {
  21517. front: {
  21518. height: math.unit(6, "feet"),
  21519. weight: math.unit(150, "lb"),
  21520. name: "Front",
  21521. image: {
  21522. source: "./media/characters/terrance-keayes/front.svg",
  21523. extra: 1.005,
  21524. bottom: 151 / 1615
  21525. }
  21526. },
  21527. side: {
  21528. height: math.unit(6, "feet"),
  21529. weight: math.unit(150, "lb"),
  21530. name: "Side",
  21531. image: {
  21532. source: "./media/characters/terrance-keayes/side.svg",
  21533. extra: 1.005,
  21534. bottom: 129.4 / 1544
  21535. }
  21536. },
  21537. back: {
  21538. height: math.unit(6, "feet"),
  21539. weight: math.unit(150, "lb"),
  21540. name: "Back",
  21541. image: {
  21542. source: "./media/characters/terrance-keayes/back.svg",
  21543. extra: 1.005,
  21544. bottom: 58.4 / 1557.3
  21545. }
  21546. },
  21547. dick: {
  21548. height: math.unit(6 * 0.208, "feet"),
  21549. name: "Dick",
  21550. image: {
  21551. source: "./media/characters/terrance-keayes/dick.svg"
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Canon Height",
  21558. height: math.unit(35, "miles"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(6, "feet"),
  21568. weight: math.unit(150, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/ofelia/front.svg",
  21572. extra: 546 / 541,
  21573. bottom: 39 / 583
  21574. }
  21575. },
  21576. back: {
  21577. height: math.unit(6, "feet"),
  21578. weight: math.unit(150, "lb"),
  21579. name: "Back",
  21580. image: {
  21581. source: "./media/characters/ofelia/back.svg",
  21582. extra: 564 / 559.5,
  21583. bottom: 8.69 / 573.02
  21584. }
  21585. },
  21586. maw: {
  21587. height: math.unit(1, "feet"),
  21588. name: "Maw",
  21589. image: {
  21590. source: "./media/characters/ofelia/maw.svg"
  21591. }
  21592. },
  21593. foot: {
  21594. height: math.unit(1.949, "feet"),
  21595. name: "Foot",
  21596. image: {
  21597. source: "./media/characters/ofelia/foot.svg"
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Canon Height",
  21604. height: math.unit(2000, "miles"),
  21605. default: true
  21606. },
  21607. ]
  21608. ))
  21609. characterMakers.push(() => makeCharacter(
  21610. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21611. {
  21612. front: {
  21613. height: math.unit(6, "feet"),
  21614. weight: math.unit(150, "lb"),
  21615. name: "Front",
  21616. image: {
  21617. source: "./media/characters/samuel/front.svg",
  21618. extra: 265 / 258,
  21619. bottom: 2 / 266.1566
  21620. }
  21621. },
  21622. },
  21623. [
  21624. {
  21625. name: "Macro",
  21626. height: math.unit(100, "feet"),
  21627. default: true
  21628. },
  21629. {
  21630. name: "Full Size",
  21631. height: math.unit(1000, "miles")
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(6, "feet"),
  21640. weight: math.unit(300, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/beishir-kiel/front.svg",
  21644. extra: 569 / 547,
  21645. bottom: 41.9 / 609
  21646. }
  21647. },
  21648. maw: {
  21649. height: math.unit(6 * 0.202, "feet"),
  21650. name: "Maw",
  21651. image: {
  21652. source: "./media/characters/beishir-kiel/maw.svg"
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Macro",
  21659. height: math.unit(300, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 8 / 12, "feet"),
  21669. weight: math.unit(120, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/logan-grey/front.svg",
  21673. extra: 2539 / 2393,
  21674. bottom: 97.6 / 2636.37
  21675. }
  21676. },
  21677. frontAlt: {
  21678. height: math.unit(5 + 8 / 12, "feet"),
  21679. weight: math.unit(120, "lb"),
  21680. name: "Front (Alt)",
  21681. image: {
  21682. source: "./media/characters/logan-grey/front-alt.svg",
  21683. extra: 958 / 893,
  21684. bottom: 15 / 970.768
  21685. }
  21686. },
  21687. back: {
  21688. height: math.unit(5 + 8 / 12, "feet"),
  21689. weight: math.unit(120, "lb"),
  21690. name: "Back",
  21691. image: {
  21692. source: "./media/characters/logan-grey/back.svg",
  21693. extra: 958 / 893,
  21694. bottom: 2.1881 / 970.9788
  21695. }
  21696. },
  21697. dick: {
  21698. height: math.unit(1.437, "feet"),
  21699. name: "Dick",
  21700. image: {
  21701. source: "./media/characters/logan-grey/dick.svg"
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Normal",
  21708. height: math.unit(5 + 8 / 12, "feet")
  21709. },
  21710. {
  21711. name: "The 500 Foot Femboy",
  21712. height: math.unit(500, "feet"),
  21713. default: true
  21714. },
  21715. {
  21716. name: "Megmacro",
  21717. height: math.unit(20, "miles")
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(8 + 2 / 12, "feet"),
  21726. weight: math.unit(275, "lb"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/draganta/front.svg",
  21730. extra: 1177 / 1135,
  21731. bottom: 33.46 / 1212.1
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(8 + 6 / 12, "feet"),
  21739. default: true
  21740. },
  21741. {
  21742. name: "Macro",
  21743. height: math.unit(150, "feet")
  21744. },
  21745. {
  21746. name: "Megamacro",
  21747. height: math.unit(1000, "miles")
  21748. },
  21749. ]
  21750. ))
  21751. characterMakers.push(() => makeCharacter(
  21752. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21753. {
  21754. front: {
  21755. height: math.unit(1.72, "m"),
  21756. weight: math.unit(80, "lb"),
  21757. name: "Front",
  21758. image: {
  21759. source: "./media/characters/voski/front.svg",
  21760. extra: 2076.22 / 2022.4,
  21761. bottom: 102.7 / 2177.3866
  21762. }
  21763. },
  21764. frontNsfw: {
  21765. height: math.unit(1.72, "m"),
  21766. weight: math.unit(80, "lb"),
  21767. name: "Front (NSFW)",
  21768. image: {
  21769. source: "./media/characters/voski/front-nsfw.svg",
  21770. extra: 2076.22 / 2022.4,
  21771. bottom: 102.7 / 2177.3866
  21772. }
  21773. },
  21774. back: {
  21775. height: math.unit(1.72, "m"),
  21776. weight: math.unit(80, "lb"),
  21777. name: "Back",
  21778. image: {
  21779. source: "./media/characters/voski/back.svg",
  21780. extra: 2104 / 2051,
  21781. bottom: 10.45 / 2113.63
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(1.72, "m")
  21789. },
  21790. {
  21791. name: "Macro",
  21792. height: math.unit(55, "m"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Macro+",
  21797. height: math.unit(300, "m")
  21798. },
  21799. {
  21800. name: "Macro++",
  21801. height: math.unit(700, "m")
  21802. },
  21803. {
  21804. name: "Macro+++",
  21805. height: math.unit(4500, "m")
  21806. },
  21807. {
  21808. name: "Macro++++",
  21809. height: math.unit(45, "km")
  21810. },
  21811. {
  21812. name: "Macro+++++",
  21813. height: math.unit(1220, "km")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(2.3, "m"),
  21822. weight: math.unit(304, "kg"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/icowom-lee/front.svg",
  21826. extra: 985 / 955,
  21827. bottom: 25.4 / 1012
  21828. }
  21829. },
  21830. fronttentacles: {
  21831. height: math.unit(2.3, "m"),
  21832. weight: math.unit(304, "kg"),
  21833. name: "Front-tentacles",
  21834. image: {
  21835. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21836. extra: 985 / 955,
  21837. bottom: 25.4 / 1012
  21838. }
  21839. },
  21840. back: {
  21841. height: math.unit(2.3, "m"),
  21842. weight: math.unit(304, "kg"),
  21843. name: "Back",
  21844. image: {
  21845. source: "./media/characters/icowom-lee/back.svg",
  21846. extra: 975 / 954,
  21847. bottom: 9.5 / 985
  21848. }
  21849. },
  21850. backtentacles: {
  21851. height: math.unit(2.3, "m"),
  21852. weight: math.unit(304, "kg"),
  21853. name: "Back-tentacles",
  21854. image: {
  21855. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21856. extra: 975 / 954,
  21857. bottom: 9.5 / 985
  21858. }
  21859. },
  21860. frontDressed: {
  21861. height: math.unit(2.3, "m"),
  21862. weight: math.unit(304, "kg"),
  21863. name: "Front (Dressed)",
  21864. image: {
  21865. source: "./media/characters/icowom-lee/front-dressed.svg",
  21866. extra: 3076 / 2933,
  21867. bottom: 51.4 / 3125.1889
  21868. }
  21869. },
  21870. rump: {
  21871. height: math.unit(0.776, "meters"),
  21872. name: "Rump",
  21873. image: {
  21874. source: "./media/characters/icowom-lee/rump.svg"
  21875. }
  21876. },
  21877. genitals: {
  21878. height: math.unit(0.78, "meters"),
  21879. name: "Genitals",
  21880. image: {
  21881. source: "./media/characters/icowom-lee/genitals.svg"
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(2.3, "meters"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(94, "meters"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(22, "meters"),
  21903. weight: math.unit(21000, "kg"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/shock-diamond/front.svg",
  21907. extra: 2204 / 2053,
  21908. bottom: 65 / 2239.47
  21909. }
  21910. },
  21911. frontNude: {
  21912. height: math.unit(22, "meters"),
  21913. weight: math.unit(21000, "kg"),
  21914. name: "Front (Nude)",
  21915. image: {
  21916. source: "./media/characters/shock-diamond/front-nude.svg",
  21917. extra: 2514 / 2285,
  21918. bottom: 13 / 2527.56
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(3, "meters")
  21926. },
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(22, "meters"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(5 + 4 / 12, "feet"),
  21939. weight: math.unit(120, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/rory/front.svg",
  21943. extra: 589 / 556,
  21944. bottom: 45.7 / 635.76
  21945. }
  21946. },
  21947. frontNude: {
  21948. height: math.unit(5 + 4 / 12, "feet"),
  21949. weight: math.unit(120, "lb"),
  21950. name: "Front (Nude)",
  21951. image: {
  21952. source: "./media/characters/rory/front-nude.svg",
  21953. extra: 589 / 556,
  21954. bottom: 45.7 / 635.76
  21955. }
  21956. },
  21957. side: {
  21958. height: math.unit(5 + 4 / 12, "feet"),
  21959. weight: math.unit(120, "lb"),
  21960. name: "Side",
  21961. image: {
  21962. source: "./media/characters/rory/side.svg",
  21963. extra: 597 / 564,
  21964. bottom: 55 / 653
  21965. }
  21966. },
  21967. back: {
  21968. height: math.unit(5 + 4 / 12, "feet"),
  21969. weight: math.unit(120, "lb"),
  21970. name: "Back",
  21971. image: {
  21972. source: "./media/characters/rory/back.svg",
  21973. extra: 620 / 585,
  21974. bottom: 8.86 / 630.43
  21975. }
  21976. },
  21977. dick: {
  21978. height: math.unit(0.86, "feet"),
  21979. name: "Dick",
  21980. image: {
  21981. source: "./media/characters/rory/dick.svg"
  21982. }
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(5 + 4 / 12, "feet"),
  21989. default: true
  21990. },
  21991. {
  21992. name: "Macro",
  21993. height: math.unit(100, "feet")
  21994. },
  21995. {
  21996. name: "Macro+",
  21997. height: math.unit(140, "feet")
  21998. },
  21999. {
  22000. name: "Macro++",
  22001. height: math.unit(300, "feet")
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22007. {
  22008. front: {
  22009. height: math.unit(5 + 9 / 12, "feet"),
  22010. weight: math.unit(190, "lb"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/sprisk/front.svg",
  22014. extra: 1225 / 1180,
  22015. bottom: 42.7 / 1266.4
  22016. }
  22017. },
  22018. frontNsfw: {
  22019. height: math.unit(5 + 9 / 12, "feet"),
  22020. weight: math.unit(190, "lb"),
  22021. name: "Front (NSFW)",
  22022. image: {
  22023. source: "./media/characters/sprisk/front-nsfw.svg",
  22024. extra: 1225 / 1180,
  22025. bottom: 42.7 / 1266.4
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(5 + 9 / 12, "feet"),
  22030. weight: math.unit(190, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/sprisk/back.svg",
  22034. extra: 1247 / 1200,
  22035. bottom: 5.6 / 1253.04
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Tiny",
  22042. height: math.unit(2, "inches")
  22043. },
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(5 + 9 / 12, "feet"),
  22047. default: true
  22048. },
  22049. {
  22050. name: "Mini Macro",
  22051. height: math.unit(18, "feet")
  22052. },
  22053. {
  22054. name: "Macro",
  22055. height: math.unit(100, "feet")
  22056. },
  22057. {
  22058. name: "MACRO",
  22059. height: math.unit(50, "miles")
  22060. },
  22061. {
  22062. name: "M A C R O",
  22063. height: math.unit(300, "miles")
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22069. {
  22070. side: {
  22071. height: math.unit(15.6, "meters"),
  22072. weight: math.unit(700000, "kg"),
  22073. name: "Side",
  22074. image: {
  22075. source: "./media/characters/bunsen/side.svg",
  22076. extra: 1644 / 358
  22077. }
  22078. },
  22079. foot: {
  22080. height: math.unit(1.611 * 1644 / 358, "meter"),
  22081. name: "Foot",
  22082. image: {
  22083. source: "./media/characters/bunsen/foot.svg"
  22084. }
  22085. },
  22086. },
  22087. [
  22088. {
  22089. name: "Small",
  22090. height: math.unit(10, "feet")
  22091. },
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(15.6, "meters"),
  22095. default: true
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(4 + 11 / 12, "feet"),
  22104. weight: math.unit(140, "lb"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/sesh/front.svg",
  22108. extra: 3420 / 3231,
  22109. bottom: 72 / 3949.5
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(4 + 11 / 12, "feet")
  22117. },
  22118. {
  22119. name: "Grown",
  22120. height: math.unit(15, "feet"),
  22121. default: true
  22122. },
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(1500, "feet")
  22126. },
  22127. {
  22128. name: "Megamacro",
  22129. height: math.unit(30, "miles")
  22130. },
  22131. {
  22132. name: "Continental",
  22133. height: math.unit(3000, "miles")
  22134. },
  22135. {
  22136. name: "Gravity Mass",
  22137. height: math.unit(300000, "miles")
  22138. },
  22139. {
  22140. name: "Planet Buster",
  22141. height: math.unit(30000000, "miles")
  22142. },
  22143. {
  22144. name: "Big",
  22145. height: math.unit(3000000000, "miles")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(9, "feet"),
  22154. weight: math.unit(350, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/pepper/front.svg",
  22158. extra: 1448 / 1312,
  22159. bottom: 9.4 / 1457.88
  22160. }
  22161. },
  22162. back: {
  22163. height: math.unit(9, "feet"),
  22164. weight: math.unit(350, "lb"),
  22165. name: "Back",
  22166. image: {
  22167. source: "./media/characters/pepper/back.svg",
  22168. extra: 1423 / 1300,
  22169. bottom: 4.6 / 1429
  22170. }
  22171. },
  22172. maw: {
  22173. height: math.unit(0.932, "feet"),
  22174. name: "Maw",
  22175. image: {
  22176. source: "./media/characters/pepper/maw.svg"
  22177. }
  22178. },
  22179. },
  22180. [
  22181. {
  22182. name: "Normal",
  22183. height: math.unit(9, "feet"),
  22184. default: true
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22190. {
  22191. front: {
  22192. height: math.unit(6, "feet"),
  22193. weight: math.unit(150, "lb"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/maelstrom/front.svg",
  22197. extra: 2100 / 1883,
  22198. bottom: 94 / 2196.7
  22199. }
  22200. },
  22201. },
  22202. [
  22203. {
  22204. name: "Less Kaiju",
  22205. height: math.unit(200, "feet")
  22206. },
  22207. {
  22208. name: "Kaiju",
  22209. height: math.unit(400, "feet"),
  22210. default: true
  22211. },
  22212. {
  22213. name: "Kaiju-er",
  22214. height: math.unit(600, "feet")
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22220. {
  22221. front: {
  22222. height: math.unit(6 + 5 / 12, "feet"),
  22223. weight: math.unit(180, "lb"),
  22224. name: "Front",
  22225. image: {
  22226. source: "./media/characters/lexir/front.svg",
  22227. extra: 180 / 172,
  22228. bottom: 12 / 192
  22229. }
  22230. },
  22231. back: {
  22232. height: math.unit(6 + 5 / 12, "feet"),
  22233. weight: math.unit(180, "lb"),
  22234. name: "Back",
  22235. image: {
  22236. source: "./media/characters/lexir/back.svg",
  22237. extra: 183.84 / 175.5,
  22238. bottom: 3.1 / 187
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Very Smal",
  22245. height: math.unit(1, "nm")
  22246. },
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(6 + 5 / 12, "feet"),
  22250. default: true
  22251. },
  22252. {
  22253. name: "Macro",
  22254. height: math.unit(1, "mile")
  22255. },
  22256. {
  22257. name: "Megamacro",
  22258. height: math.unit(50, "miles")
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(1.5, "meters"),
  22267. weight: math.unit(100, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/maksio/front.svg",
  22271. extra: 1549 / 1531,
  22272. bottom: 123.7 / 1674.5429
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(1.5, "meters"),
  22277. weight: math.unit(100, "lb"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/maksio/back.svg",
  22281. extra: 1541 / 1509,
  22282. bottom: 97 / 1639
  22283. }
  22284. },
  22285. hand: {
  22286. height: math.unit(0.621, "feet"),
  22287. name: "Hand",
  22288. image: {
  22289. source: "./media/characters/maksio/hand.svg"
  22290. }
  22291. },
  22292. foot: {
  22293. height: math.unit(1.611, "feet"),
  22294. name: "Foot",
  22295. image: {
  22296. source: "./media/characters/maksio/foot.svg"
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Shrunken",
  22303. height: math.unit(10, "cm")
  22304. },
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(150, "cm"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(100, "feet"),
  22317. name: "Front",
  22318. image: {
  22319. source: "./media/characters/erza-bear/front.svg",
  22320. extra: 2449 / 2390,
  22321. bottom: 46 / 2494
  22322. }
  22323. },
  22324. back: {
  22325. height: math.unit(100, "feet"),
  22326. name: "Back",
  22327. image: {
  22328. source: "./media/characters/erza-bear/back.svg",
  22329. extra: 2489 / 2430,
  22330. bottom: 85.4 / 2480
  22331. }
  22332. },
  22333. tail: {
  22334. height: math.unit(42, "feet"),
  22335. name: "Tail",
  22336. image: {
  22337. source: "./media/characters/erza-bear/tail.svg"
  22338. }
  22339. },
  22340. tongue: {
  22341. height: math.unit(8, "feet"),
  22342. name: "Tongue",
  22343. image: {
  22344. source: "./media/characters/erza-bear/tongue.svg"
  22345. }
  22346. },
  22347. dick: {
  22348. height: math.unit(10.5, "feet"),
  22349. name: "Dick",
  22350. image: {
  22351. source: "./media/characters/erza-bear/dick.svg"
  22352. }
  22353. },
  22354. dickVertical: {
  22355. height: math.unit(16.9, "feet"),
  22356. name: "Dick (Vertical)",
  22357. image: {
  22358. source: "./media/characters/erza-bear/dick-vertical.svg"
  22359. }
  22360. },
  22361. },
  22362. [
  22363. {
  22364. name: "Macro",
  22365. height: math.unit(100, "feet"),
  22366. default: true
  22367. },
  22368. ]
  22369. ))
  22370. characterMakers.push(() => makeCharacter(
  22371. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22372. {
  22373. front: {
  22374. height: math.unit(172, "cm"),
  22375. weight: math.unit(73, "kg"),
  22376. name: "Front",
  22377. image: {
  22378. source: "./media/characters/violet-flor/front.svg",
  22379. extra: 1530 / 1442,
  22380. bottom: 61.9 / 1588.8
  22381. }
  22382. },
  22383. back: {
  22384. height: math.unit(180, "cm"),
  22385. weight: math.unit(73, "kg"),
  22386. name: "Back",
  22387. image: {
  22388. source: "./media/characters/violet-flor/back.svg",
  22389. extra: 1692 / 1630,
  22390. bottom: 20 / 1712
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(172, "cm"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(6, "feet"),
  22407. weight: math.unit(220, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/lynn-rhea/front.svg",
  22411. extra: 310 / 273
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(6, "feet"),
  22416. weight: math.unit(220, "lb"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/lynn-rhea/back.svg",
  22420. extra: 310 / 273
  22421. }
  22422. },
  22423. dicks: {
  22424. height: math.unit(0.9, "feet"),
  22425. name: "Dicks",
  22426. image: {
  22427. source: "./media/characters/lynn-rhea/dicks.svg"
  22428. }
  22429. },
  22430. slit: {
  22431. height: math.unit(0.4, "feet"),
  22432. name: "Slit",
  22433. image: {
  22434. source: "./media/characters/lynn-rhea/slit.svg"
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Micro",
  22441. height: math.unit(1, "inch")
  22442. },
  22443. {
  22444. name: "Macro",
  22445. height: math.unit(60, "feet"),
  22446. default: true
  22447. },
  22448. {
  22449. name: "Megamacro",
  22450. height: math.unit(2, "miles")
  22451. },
  22452. {
  22453. name: "Gigamacro",
  22454. height: math.unit(3, "earths")
  22455. },
  22456. {
  22457. name: "Galactic",
  22458. height: math.unit(0.8, "galaxies")
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22464. {
  22465. front: {
  22466. height: math.unit(1600, "feet"),
  22467. weight: math.unit(85758785169, "kg"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/valathos/front.svg",
  22471. extra: 1451 / 1339
  22472. }
  22473. },
  22474. },
  22475. [
  22476. {
  22477. name: "Macro",
  22478. height: math.unit(1600, "feet"),
  22479. default: true
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22485. {
  22486. front: {
  22487. height: math.unit(7 + 5 / 12, "feet"),
  22488. weight: math.unit(300, "lb"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/azula/front.svg",
  22492. extra: 3208 / 2880,
  22493. bottom: 80.2 / 3277
  22494. }
  22495. },
  22496. back: {
  22497. height: math.unit(7 + 5 / 12, "feet"),
  22498. weight: math.unit(300, "lb"),
  22499. name: "Back",
  22500. image: {
  22501. source: "./media/characters/azula/back.svg",
  22502. extra: 3169 / 2822,
  22503. bottom: 150.6 / 3321
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(7 + 5 / 12, "feet"),
  22511. default: true
  22512. },
  22513. {
  22514. name: "Big",
  22515. height: math.unit(20, "feet")
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(5 + 1 / 12, "feet"),
  22524. weight: math.unit(110, "lb"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/rupert/front.svg",
  22528. extra: 1549 / 1495,
  22529. bottom: 54.2 / 1604.4
  22530. }
  22531. },
  22532. },
  22533. [
  22534. {
  22535. name: "Normal",
  22536. height: math.unit(5 + 1 / 12, "feet"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(8 + 4 / 12, "feet"),
  22546. weight: math.unit(350, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/sheera-castellar/front.svg",
  22550. extra: 1957 / 1894,
  22551. bottom: 26.97 / 1975.017
  22552. }
  22553. },
  22554. side: {
  22555. height: math.unit(8 + 4 / 12, "feet"),
  22556. weight: math.unit(350, "lb"),
  22557. name: "Side",
  22558. image: {
  22559. source: "./media/characters/sheera-castellar/side.svg",
  22560. extra: 1957 / 1894
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(8 + 4 / 12, "feet"),
  22565. weight: math.unit(350, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/sheera-castellar/back.svg",
  22569. extra: 1957 / 1894
  22570. }
  22571. },
  22572. angled: {
  22573. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22574. weight: math.unit(350, "lb"),
  22575. name: "Angled",
  22576. image: {
  22577. source: "./media/characters/sheera-castellar/angled.svg",
  22578. extra: 1807 / 1707,
  22579. bottom: 68 / 1875
  22580. }
  22581. },
  22582. genitals: {
  22583. height: math.unit(2.2, "feet"),
  22584. name: "Genitals",
  22585. image: {
  22586. source: "./media/characters/sheera-castellar/genitals.svg"
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(8 + 4 / 12, "feet")
  22594. },
  22595. {
  22596. name: "Macro",
  22597. height: math.unit(150, "feet"),
  22598. default: true
  22599. },
  22600. {
  22601. name: "Macro+",
  22602. height: math.unit(800, "feet")
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(6, "feet"),
  22611. weight: math.unit(150, "lb"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/jaipur/front.svg",
  22615. extra: 3860 / 3731,
  22616. bottom: 287 / 4140
  22617. }
  22618. },
  22619. back: {
  22620. height: math.unit(6, "feet"),
  22621. weight: math.unit(150, "lb"),
  22622. name: "Back",
  22623. image: {
  22624. source: "./media/characters/jaipur/back.svg",
  22625. extra: 4060 / 3930,
  22626. bottom: 151 / 4200
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(1.85, "meters"),
  22634. default: true
  22635. },
  22636. {
  22637. name: "Macro",
  22638. height: math.unit(150, "meters")
  22639. },
  22640. {
  22641. name: "Macro+",
  22642. height: math.unit(0.5, "miles")
  22643. },
  22644. {
  22645. name: "Macro++",
  22646. height: math.unit(2.5, "miles")
  22647. },
  22648. {
  22649. name: "Macro+++",
  22650. height: math.unit(12, "miles")
  22651. },
  22652. {
  22653. name: "Macro++++",
  22654. height: math.unit(120, "miles")
  22655. },
  22656. {
  22657. name: "Macro+++++",
  22658. height: math.unit(1200, "miles")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Sheila (Wolf)", species: ["wolf"], 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/sheila-wolf/front.svg",
  22671. extra: 1931 / 1808,
  22672. bottom: 29.5 / 1960
  22673. }
  22674. },
  22675. dick: {
  22676. height: math.unit(1.464, "feet"),
  22677. name: "Dick",
  22678. image: {
  22679. source: "./media/characters/sheila-wolf/dick.svg"
  22680. }
  22681. },
  22682. muzzle: {
  22683. height: math.unit(0.513, "feet"),
  22684. name: "Muzzle",
  22685. image: {
  22686. source: "./media/characters/sheila-wolf/muzzle.svg"
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Macro",
  22693. height: math.unit(70, "feet"),
  22694. default: true
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(32, "meters"),
  22703. weight: math.unit(300000, "kg"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/almor/front.svg",
  22707. extra: 1408 / 1322,
  22708. bottom: 94.6 / 1506.5
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Macro",
  22715. height: math.unit(32, "meters"),
  22716. default: true
  22717. },
  22718. ]
  22719. ))
  22720. characterMakers.push(() => makeCharacter(
  22721. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22722. {
  22723. front: {
  22724. height: math.unit(7, "feet"),
  22725. weight: math.unit(200, "lb"),
  22726. name: "Front",
  22727. image: {
  22728. source: "./media/characters/silver/front.svg",
  22729. extra: 472.1 / 450.5,
  22730. bottom: 26.5 / 499.424
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(7, "feet"),
  22738. default: true
  22739. },
  22740. {
  22741. name: "Macro",
  22742. height: math.unit(800, "feet")
  22743. },
  22744. {
  22745. name: "Megamacro",
  22746. height: math.unit(250, "miles")
  22747. },
  22748. ]
  22749. ))
  22750. characterMakers.push(() => makeCharacter(
  22751. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22752. {
  22753. front: {
  22754. height: math.unit(6, "feet"),
  22755. weight: math.unit(150, "lb"),
  22756. name: "Front",
  22757. image: {
  22758. source: "./media/characters/pliskin/front.svg",
  22759. extra: 1469 / 1359,
  22760. bottom: 70 / 1540
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Micro",
  22767. height: math.unit(3, "inches")
  22768. },
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(5 + 11 / 12, "feet"),
  22772. default: true
  22773. },
  22774. {
  22775. name: "Macro",
  22776. height: math.unit(120, "feet")
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22782. {
  22783. front: {
  22784. height: math.unit(6, "feet"),
  22785. weight: math.unit(150, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/sammy/front.svg",
  22789. extra: 1193 / 1089,
  22790. bottom: 30.5 / 1226
  22791. }
  22792. },
  22793. },
  22794. [
  22795. {
  22796. name: "Macro",
  22797. height: math.unit(1700, "feet"),
  22798. default: true
  22799. },
  22800. {
  22801. name: "Examacro",
  22802. height: math.unit(2.5e9, "lightyears")
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(21, "meters"),
  22811. weight: math.unit(12, "tonnes"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/kuru/front.svg",
  22815. extra: 4301 / 3785,
  22816. bottom: 371.3 / 4691
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Macro",
  22823. height: math.unit(21, "meters"),
  22824. default: true
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(23, "meters"),
  22833. weight: math.unit(12.2, "tonnes"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/rakka/front.svg",
  22837. extra: 4670 / 4169,
  22838. bottom: 301 / 4968.7
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(23, "meters"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(6, "feet"),
  22855. weight: math.unit(150, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/rhys-feline/front.svg",
  22859. extra: 2488 / 2308,
  22860. bottom: 35.67 / 2519.19
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Really Small",
  22867. height: math.unit(1, "nm")
  22868. },
  22869. {
  22870. name: "Micro",
  22871. height: math.unit(4, "inches")
  22872. },
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(4 + 10 / 12, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Macro",
  22880. height: math.unit(100, "feet")
  22881. },
  22882. {
  22883. name: "Megamacto",
  22884. height: math.unit(50, "miles")
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22890. {
  22891. side: {
  22892. height: math.unit(30, "feet"),
  22893. weight: math.unit(35000, "kg"),
  22894. name: "Side",
  22895. image: {
  22896. source: "./media/characters/alydar/side.svg",
  22897. extra: 234 / 222,
  22898. bottom: 6.5 / 241
  22899. }
  22900. },
  22901. front: {
  22902. height: math.unit(30, "feet"),
  22903. weight: math.unit(35000, "kg"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/alydar/front.svg",
  22907. extra: 223.37 / 210.2,
  22908. bottom: 22.3 / 246.76
  22909. }
  22910. },
  22911. top: {
  22912. height: math.unit(64.54, "feet"),
  22913. weight: math.unit(35000, "kg"),
  22914. name: "Top",
  22915. image: {
  22916. source: "./media/characters/alydar/top.svg"
  22917. }
  22918. },
  22919. anthro: {
  22920. height: math.unit(30, "feet"),
  22921. weight: math.unit(9000, "kg"),
  22922. name: "Anthro",
  22923. image: {
  22924. source: "./media/characters/alydar/anthro.svg",
  22925. extra: 432 / 421,
  22926. bottom: 7.18 / 440
  22927. }
  22928. },
  22929. maw: {
  22930. height: math.unit(11.693, "feet"),
  22931. name: "Maw",
  22932. image: {
  22933. source: "./media/characters/alydar/maw.svg"
  22934. }
  22935. },
  22936. head: {
  22937. height: math.unit(11.693, "feet"),
  22938. name: "Head",
  22939. image: {
  22940. source: "./media/characters/alydar/head.svg"
  22941. }
  22942. },
  22943. headAlt: {
  22944. height: math.unit(12.861, "feet"),
  22945. name: "Head (Alt)",
  22946. image: {
  22947. source: "./media/characters/alydar/head-alt.svg"
  22948. }
  22949. },
  22950. wing: {
  22951. height: math.unit(20.712, "feet"),
  22952. name: "Wing",
  22953. image: {
  22954. source: "./media/characters/alydar/wing.svg"
  22955. }
  22956. },
  22957. wingFeather: {
  22958. height: math.unit(9.662, "feet"),
  22959. name: "Wing Feather",
  22960. image: {
  22961. source: "./media/characters/alydar/wing-feather.svg"
  22962. }
  22963. },
  22964. countourFeather: {
  22965. height: math.unit(4.154, "feet"),
  22966. name: "Contour Feather",
  22967. image: {
  22968. source: "./media/characters/alydar/contour-feather.svg"
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Diplomatic",
  22975. height: math.unit(13, "feet"),
  22976. default: true
  22977. },
  22978. {
  22979. name: "Small",
  22980. height: math.unit(30, "feet")
  22981. },
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(95, "feet"),
  22985. default: true
  22986. },
  22987. {
  22988. name: "Large",
  22989. height: math.unit(285, "feet")
  22990. },
  22991. {
  22992. name: "Incomprehensible",
  22993. height: math.unit(450, "megameters")
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22999. {
  23000. side: {
  23001. height: math.unit(11, "feet"),
  23002. weight: math.unit(1750, "kg"),
  23003. name: "Side",
  23004. image: {
  23005. source: "./media/characters/selicia/side.svg",
  23006. extra: 440 / 396,
  23007. bottom: 24.8 / 465.979
  23008. }
  23009. },
  23010. maw: {
  23011. height: math.unit(4.665, "feet"),
  23012. name: "Maw",
  23013. image: {
  23014. source: "./media/characters/selicia/maw.svg"
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(11, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23028. {
  23029. side: {
  23030. height: math.unit(2 + 6 / 12, "feet"),
  23031. weight: math.unit(30, "lb"),
  23032. name: "Side",
  23033. image: {
  23034. source: "./media/characters/layla/side.svg",
  23035. extra: 244 / 188,
  23036. bottom: 18.2 / 262.1
  23037. }
  23038. },
  23039. back: {
  23040. height: math.unit(2 + 6 / 12, "feet"),
  23041. weight: math.unit(30, "lb"),
  23042. name: "Back",
  23043. image: {
  23044. source: "./media/characters/layla/back.svg",
  23045. extra: 308 / 241.5,
  23046. bottom: 8.9 / 316.8
  23047. }
  23048. },
  23049. cumming: {
  23050. height: math.unit(2 + 6 / 12, "feet"),
  23051. weight: math.unit(30, "lb"),
  23052. name: "Cumming",
  23053. image: {
  23054. source: "./media/characters/layla/cumming.svg",
  23055. extra: 342 / 279,
  23056. bottom: 595 / 938
  23057. }
  23058. },
  23059. dickFlaccid: {
  23060. height: math.unit(2.595, "feet"),
  23061. name: "Flaccid Genitals",
  23062. image: {
  23063. source: "./media/characters/layla/dick-flaccid.svg"
  23064. }
  23065. },
  23066. dickErect: {
  23067. height: math.unit(2.359, "feet"),
  23068. name: "Erect Genitals",
  23069. image: {
  23070. source: "./media/characters/layla/dick-erect.svg"
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Micro",
  23077. height: math.unit(1, "inch")
  23078. },
  23079. {
  23080. name: "Small",
  23081. height: math.unit(1, "foot")
  23082. },
  23083. {
  23084. name: "Normal",
  23085. height: math.unit(2 + 6 / 12, "feet"),
  23086. default: true
  23087. },
  23088. {
  23089. name: "Macro",
  23090. height: math.unit(200, "feet")
  23091. },
  23092. {
  23093. name: "Megamacro",
  23094. height: math.unit(1000, "miles")
  23095. },
  23096. {
  23097. name: "Planetary",
  23098. height: math.unit(8000, "miles")
  23099. },
  23100. {
  23101. name: "True Layla",
  23102. height: math.unit(200000 * 7, "multiverses")
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23108. {
  23109. back: {
  23110. height: math.unit(10.5, "feet"),
  23111. weight: math.unit(800, "lb"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/knox/back.svg",
  23115. extra: 1486 / 1089,
  23116. bottom: 107 / 1601.4
  23117. }
  23118. },
  23119. side: {
  23120. height: math.unit(10.5, "feet"),
  23121. weight: math.unit(800, "lb"),
  23122. name: "Side",
  23123. image: {
  23124. source: "./media/characters/knox/side.svg",
  23125. extra: 244 / 218,
  23126. bottom: 14 / 260
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Compact",
  23133. height: math.unit(10.5, "feet"),
  23134. default: true
  23135. },
  23136. {
  23137. name: "Dynamax",
  23138. height: math.unit(210, "feet")
  23139. },
  23140. {
  23141. name: "Full Macro",
  23142. height: math.unit(850, "feet")
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23148. {
  23149. front: {
  23150. height: math.unit(6, "feet"),
  23151. weight: math.unit(152, "lb"),
  23152. name: "Front",
  23153. image: {
  23154. source: "./media/characters/shin-pikachu/front.svg",
  23155. extra: 1574 / 1480,
  23156. bottom: 53.3 / 1626
  23157. }
  23158. },
  23159. hand: {
  23160. height: math.unit(1.055, "feet"),
  23161. name: "Hand",
  23162. image: {
  23163. source: "./media/characters/shin-pikachu/hand.svg"
  23164. }
  23165. },
  23166. foot: {
  23167. height: math.unit(1.1, "feet"),
  23168. name: "Foot",
  23169. image: {
  23170. source: "./media/characters/shin-pikachu/foot.svg"
  23171. }
  23172. },
  23173. collar: {
  23174. height: math.unit(0.386, "feet"),
  23175. name: "Collar",
  23176. image: {
  23177. source: "./media/characters/shin-pikachu/collar.svg"
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Smallest",
  23184. height: math.unit(0.5, "inches")
  23185. },
  23186. {
  23187. name: "Micro",
  23188. height: math.unit(6, "inches")
  23189. },
  23190. {
  23191. name: "Normal",
  23192. height: math.unit(6, "feet"),
  23193. default: true
  23194. },
  23195. {
  23196. name: "Macro",
  23197. height: math.unit(150, "feet")
  23198. },
  23199. ]
  23200. ))
  23201. characterMakers.push(() => makeCharacter(
  23202. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23203. {
  23204. front: {
  23205. height: math.unit(28, "feet"),
  23206. weight: math.unit(10500, "lb"),
  23207. name: "Front",
  23208. image: {
  23209. source: "./media/characters/kayda/front.svg",
  23210. extra: 1536 / 1428,
  23211. bottom: 68.7 / 1603
  23212. }
  23213. },
  23214. back: {
  23215. height: math.unit(28, "feet"),
  23216. weight: math.unit(10500, "lb"),
  23217. name: "Back",
  23218. image: {
  23219. source: "./media/characters/kayda/back.svg",
  23220. extra: 1557 / 1464,
  23221. bottom: 39.5 / 1597.49
  23222. }
  23223. },
  23224. dick: {
  23225. height: math.unit(3.858, "feet"),
  23226. name: "Dick",
  23227. image: {
  23228. source: "./media/characters/kayda/dick.svg"
  23229. }
  23230. },
  23231. },
  23232. [
  23233. {
  23234. name: "Macro",
  23235. height: math.unit(28, "feet"),
  23236. default: true
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23242. {
  23243. front: {
  23244. height: math.unit(10 + 11 / 12, "feet"),
  23245. weight: math.unit(1400, "lb"),
  23246. name: "Front",
  23247. image: {
  23248. source: "./media/characters/brian/front.svg",
  23249. extra: 737 / 692,
  23250. bottom: 55.4 / 785
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(10 + 11 / 12, "feet"),
  23258. default: true
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23264. {
  23265. front: {
  23266. height: math.unit(5 + 8 / 12, "feet"),
  23267. weight: math.unit(140, "lb"),
  23268. name: "Front",
  23269. image: {
  23270. source: "./media/characters/khemri/front.svg",
  23271. extra: 4780 / 4059,
  23272. bottom: 80.1 / 4859.25
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Micro",
  23279. height: math.unit(6, "inches")
  23280. },
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(5 + 8 / 12, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23290. {
  23291. front: {
  23292. height: math.unit(13, "feet"),
  23293. weight: math.unit(1700, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/felix-braveheart/front.svg",
  23297. extra: 1222 / 1157,
  23298. bottom: 53.2 / 1280
  23299. }
  23300. },
  23301. back: {
  23302. height: math.unit(13, "feet"),
  23303. weight: math.unit(1700, "lb"),
  23304. name: "Back",
  23305. image: {
  23306. source: "./media/characters/felix-braveheart/back.svg",
  23307. extra: 1277 / 1203,
  23308. bottom: 50.2 / 1327
  23309. }
  23310. },
  23311. feral: {
  23312. height: math.unit(6, "feet"),
  23313. weight: math.unit(400, "lb"),
  23314. name: "Feral",
  23315. image: {
  23316. source: "./media/characters/felix-braveheart/feral.svg",
  23317. extra: 682 / 625,
  23318. bottom: 6.9 / 688
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Normal",
  23325. height: math.unit(13, "feet"),
  23326. default: true
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23332. {
  23333. side: {
  23334. height: math.unit(5 + 11 / 12, "feet"),
  23335. weight: math.unit(1400, "lb"),
  23336. name: "Side",
  23337. image: {
  23338. source: "./media/characters/shadow-blade/side.svg",
  23339. extra: 1726 / 1267,
  23340. bottom: 58.4 / 1785
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(5 + 11 / 12, "feet"),
  23348. default: true
  23349. },
  23350. ]
  23351. ))
  23352. characterMakers.push(() => makeCharacter(
  23353. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23354. {
  23355. front: {
  23356. height: math.unit(1 + 6 / 12, "feet"),
  23357. weight: math.unit(25, "lb"),
  23358. name: "Front",
  23359. image: {
  23360. source: "./media/characters/karla-halldor/front.svg",
  23361. extra: 1459 / 1383,
  23362. bottom: 12 / 1472
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(1 + 6 / 12, "feet"),
  23370. default: true
  23371. },
  23372. ]
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23376. {
  23377. front: {
  23378. height: math.unit(6 + 2 / 12, "feet"),
  23379. weight: math.unit(160, "lb"),
  23380. name: "Front",
  23381. image: {
  23382. source: "./media/characters/ariam/front.svg",
  23383. extra: 714 / 617,
  23384. bottom: 23.4 / 737,
  23385. }
  23386. },
  23387. squatting: {
  23388. height: math.unit(4.1, "feet"),
  23389. weight: math.unit(160, "lb"),
  23390. name: "Squatting",
  23391. image: {
  23392. source: "./media/characters/ariam/squatting.svg",
  23393. extra: 2617 / 2112,
  23394. bottom: 61.2 / 2681,
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(6 + 2 / 12, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Normal+",
  23406. height: math.unit(4, "meters")
  23407. },
  23408. {
  23409. name: "Macro",
  23410. height: math.unit(50, "meters")
  23411. },
  23412. {
  23413. name: "Macro+",
  23414. height: math.unit(100, "meters")
  23415. },
  23416. {
  23417. name: "Megamacro",
  23418. height: math.unit(20, "km")
  23419. },
  23420. ]
  23421. ))
  23422. characterMakers.push(() => makeCharacter(
  23423. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23424. {
  23425. front: {
  23426. height: math.unit(1.67, "meters"),
  23427. weight: math.unit(140, "lb"),
  23428. name: "Front",
  23429. image: {
  23430. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23431. extra: 438 / 410,
  23432. bottom: 0.75 / 439
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Shrunken",
  23439. height: math.unit(7.6, "cm")
  23440. },
  23441. {
  23442. name: "Human Scale",
  23443. height: math.unit(1.67, "meters")
  23444. },
  23445. {
  23446. name: "Wolxi Scale",
  23447. height: math.unit(36.7, "meters"),
  23448. default: true
  23449. },
  23450. ]
  23451. ))
  23452. characterMakers.push(() => makeCharacter(
  23453. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23454. {
  23455. front: {
  23456. height: math.unit(1.73, "meters"),
  23457. weight: math.unit(240, "lb"),
  23458. name: "Front",
  23459. image: {
  23460. source: "./media/characters/izue-two-mothers/front.svg",
  23461. extra: 469 / 437,
  23462. bottom: 1.24 / 470.6
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Shrunken",
  23469. height: math.unit(7.86, "cm")
  23470. },
  23471. {
  23472. name: "Human Scale",
  23473. height: math.unit(1.73, "meters")
  23474. },
  23475. {
  23476. name: "Wolxi Scale",
  23477. height: math.unit(38, "meters"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(1.55, "meters"),
  23487. weight: math.unit(120, "lb"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/teeku-love-shack/front.svg",
  23491. extra: 387 / 362,
  23492. bottom: 1.51 / 388
  23493. }
  23494. },
  23495. },
  23496. [
  23497. {
  23498. name: "Shrunken",
  23499. height: math.unit(7, "cm")
  23500. },
  23501. {
  23502. name: "Human Scale",
  23503. height: math.unit(1.55, "meters")
  23504. },
  23505. {
  23506. name: "Wolxi Scale",
  23507. height: math.unit(34.1, "meters"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(1.83, "meters"),
  23517. weight: math.unit(135, "lb"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/dejma-the-red/front.svg",
  23521. extra: 480 / 458,
  23522. bottom: 1.8 / 482
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Shrunken",
  23529. height: math.unit(8.3, "cm")
  23530. },
  23531. {
  23532. name: "Human Scale",
  23533. height: math.unit(1.83, "meters")
  23534. },
  23535. {
  23536. name: "Wolxi Scale",
  23537. height: math.unit(40, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(1.78, "meters"),
  23547. weight: math.unit(65, "kg"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/aki/front.svg",
  23551. extra: 452 / 415
  23552. }
  23553. },
  23554. frontNsfw: {
  23555. height: math.unit(1.78, "meters"),
  23556. weight: math.unit(65, "kg"),
  23557. name: "Front (NSFW)",
  23558. image: {
  23559. source: "./media/characters/aki/front-nsfw.svg",
  23560. extra: 452 / 415
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(1.78, "meters"),
  23565. weight: math.unit(65, "kg"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/aki/back.svg",
  23569. extra: 452 / 415
  23570. }
  23571. },
  23572. rump: {
  23573. height: math.unit(2.05, "feet"),
  23574. name: "Rump",
  23575. image: {
  23576. source: "./media/characters/aki/rump.svg"
  23577. }
  23578. },
  23579. dick: {
  23580. height: math.unit(0.95, "feet"),
  23581. name: "Dick",
  23582. image: {
  23583. source: "./media/characters/aki/dick.svg"
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Micro",
  23590. height: math.unit(15, "cm")
  23591. },
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(178, "cm"),
  23595. default: true
  23596. },
  23597. {
  23598. name: "Macro",
  23599. height: math.unit(214, "m")
  23600. },
  23601. {
  23602. name: "Macro+",
  23603. height: math.unit(534, "m")
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(5 + 5 / 12, "feet"),
  23612. weight: math.unit(120, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/ari/front.svg",
  23616. extra: 714.5 / 682,
  23617. bottom: 8 / 722.5
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Normal",
  23624. height: math.unit(5 + 5 / 12, "feet")
  23625. },
  23626. {
  23627. name: "Macro",
  23628. height: math.unit(100, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Megamacro",
  23633. height: math.unit(100, "miles")
  23634. },
  23635. {
  23636. name: "Gigamacro",
  23637. height: math.unit(80000, "miles")
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23643. {
  23644. side: {
  23645. height: math.unit(9, "feet"),
  23646. weight: math.unit(400, "kg"),
  23647. name: "Side",
  23648. image: {
  23649. source: "./media/characters/bolt/side.svg",
  23650. extra: 1126 / 896,
  23651. bottom: 60 / 1187.3,
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Micro",
  23658. height: math.unit(5, "inches")
  23659. },
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(9, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Macro",
  23667. height: math.unit(700, "feet")
  23668. },
  23669. {
  23670. name: "Max Size",
  23671. height: math.unit(1.52e22, "yottameters")
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(4.53, "meters"),
  23680. weight: math.unit(3, "tons"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/draekon-sylviar/front.svg",
  23684. extra: 1228 / 1068,
  23685. bottom: 41 / 1270
  23686. }
  23687. },
  23688. tail: {
  23689. height: math.unit(1.772, "meter"),
  23690. name: "Tail",
  23691. image: {
  23692. source: "./media/characters/draekon-sylviar/tail.svg"
  23693. }
  23694. },
  23695. head: {
  23696. height: math.unit(1.331, "meter"),
  23697. name: "Head",
  23698. image: {
  23699. source: "./media/characters/draekon-sylviar/head.svg"
  23700. }
  23701. },
  23702. hand: {
  23703. height: math.unit(0.564, "meter"),
  23704. name: "Hand",
  23705. image: {
  23706. source: "./media/characters/draekon-sylviar/hand.svg"
  23707. }
  23708. },
  23709. foot: {
  23710. height: math.unit(0.621, "meter"),
  23711. name: "Foot",
  23712. image: {
  23713. source: "./media/characters/draekon-sylviar/foot.svg",
  23714. bottom: 32 / 324
  23715. }
  23716. },
  23717. dick: {
  23718. height: math.unit(61, "cm"),
  23719. name: "Dick",
  23720. image: {
  23721. source: "./media/characters/draekon-sylviar/dick.svg"
  23722. }
  23723. },
  23724. dickseparated: {
  23725. height: math.unit(61, "cm"),
  23726. name: "Dick-separated",
  23727. image: {
  23728. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Small",
  23735. height: math.unit(4.53 / 2, "meters"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(4.53, "meters"),
  23741. default: true
  23742. },
  23743. {
  23744. name: "Large",
  23745. height: math.unit(4.53 * 2, "meters"),
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23751. {
  23752. front: {
  23753. height: math.unit(6 + 2 / 12, "feet"),
  23754. weight: math.unit(180, "lb"),
  23755. name: "Front",
  23756. image: {
  23757. source: "./media/characters/brawler/front.svg",
  23758. extra: 3301 / 3027,
  23759. bottom: 138 / 3439
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(6 + 2 / 12, "feet"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(11, "feet"),
  23776. weight: math.unit(1000, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/alex/front.svg",
  23780. bottom: 44.5 / 620
  23781. }
  23782. },
  23783. },
  23784. [
  23785. {
  23786. name: "Micro",
  23787. height: math.unit(5, "inches")
  23788. },
  23789. {
  23790. name: "Normal",
  23791. height: math.unit(11, "feet"),
  23792. default: true
  23793. },
  23794. {
  23795. name: "Macro",
  23796. height: math.unit(9.5e9, "feet")
  23797. },
  23798. {
  23799. name: "Max Size",
  23800. height: math.unit(1.4e283, "yottameters")
  23801. },
  23802. ]
  23803. ))
  23804. characterMakers.push(() => makeCharacter(
  23805. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23806. {
  23807. female: {
  23808. height: math.unit(29.9, "m"),
  23809. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23810. name: "Female",
  23811. image: {
  23812. source: "./media/characters/zenari/female.svg",
  23813. extra: 3281.6 / 3217,
  23814. bottom: 72.2 / 3353
  23815. }
  23816. },
  23817. male: {
  23818. height: math.unit(27.7, "m"),
  23819. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23820. name: "Male",
  23821. image: {
  23822. source: "./media/characters/zenari/male.svg",
  23823. extra: 3008 / 2991,
  23824. bottom: 54.6 / 3069
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(29.7, "meters"),
  23832. default: true
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23838. {
  23839. female: {
  23840. height: math.unit(23.8, "m"),
  23841. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23842. name: "Female",
  23843. image: {
  23844. source: "./media/characters/mactarian/female.svg",
  23845. extra: 2662 / 2569,
  23846. bottom: 73 / 2736
  23847. }
  23848. },
  23849. male: {
  23850. height: math.unit(23.8, "m"),
  23851. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23852. name: "Male",
  23853. image: {
  23854. source: "./media/characters/mactarian/male.svg",
  23855. extra: 2673 / 2600,
  23856. bottom: 76 / 2750
  23857. }
  23858. },
  23859. },
  23860. [
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(23.8, "meters"),
  23864. default: true
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23870. {
  23871. female: {
  23872. height: math.unit(19.3, "m"),
  23873. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23874. name: "Female",
  23875. image: {
  23876. source: "./media/characters/umok/female.svg",
  23877. extra: 2186 / 2078,
  23878. bottom: 87 / 2277
  23879. }
  23880. },
  23881. male: {
  23882. height: math.unit(19.5, "m"),
  23883. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23884. name: "Male",
  23885. image: {
  23886. source: "./media/characters/umok/male.svg",
  23887. extra: 2233 / 2140,
  23888. bottom: 24.4 / 2258
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Macro",
  23895. height: math.unit(19.3, "meters"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23902. {
  23903. female: {
  23904. height: math.unit(26.15, "m"),
  23905. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23906. name: "Female",
  23907. image: {
  23908. source: "./media/characters/joraxian/female.svg",
  23909. extra: 2912 / 2824,
  23910. bottom: 36 / 2956
  23911. }
  23912. },
  23913. male: {
  23914. height: math.unit(25.4, "m"),
  23915. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23916. name: "Male",
  23917. image: {
  23918. source: "./media/characters/joraxian/male.svg",
  23919. extra: 2877 / 2721,
  23920. bottom: 82 / 2967
  23921. }
  23922. },
  23923. },
  23924. [
  23925. {
  23926. name: "Macro",
  23927. height: math.unit(26.15, "meters"),
  23928. default: true
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23934. {
  23935. female: {
  23936. height: math.unit(21.6, "m"),
  23937. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23938. name: "Female",
  23939. image: {
  23940. source: "./media/characters/sthara/female.svg",
  23941. extra: 2516 / 2347,
  23942. bottom: 21.5 / 2537
  23943. }
  23944. },
  23945. male: {
  23946. height: math.unit(24, "m"),
  23947. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23948. name: "Male",
  23949. image: {
  23950. source: "./media/characters/sthara/male.svg",
  23951. extra: 2732 / 2607,
  23952. bottom: 23 / 2732
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Macro",
  23959. height: math.unit(21.6, "meters"),
  23960. default: true
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(6 + 4 / 12, "feet"),
  23969. weight: math.unit(175, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/luka-bryzant/front.svg",
  23973. extra: 311 / 289,
  23974. bottom: 4 / 315
  23975. }
  23976. },
  23977. back: {
  23978. height: math.unit(6 + 4 / 12, "feet"),
  23979. weight: math.unit(175, "lb"),
  23980. name: "Back",
  23981. image: {
  23982. source: "./media/characters/luka-bryzant/back.svg",
  23983. extra: 311 / 289,
  23984. bottom: 3.8 / 313.7
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Micro",
  23991. height: math.unit(10, "inches")
  23992. },
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(6 + 4 / 12, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Large",
  24000. height: math.unit(12, "feet")
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(5 + 7 / 12, "feet"),
  24009. weight: math.unit(185, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/aman-aquila/front.svg",
  24013. extra: 1013 / 976,
  24014. bottom: 45.6 / 1057
  24015. }
  24016. },
  24017. side: {
  24018. height: math.unit(5 + 7 / 12, "feet"),
  24019. weight: math.unit(185, "lb"),
  24020. name: "Side",
  24021. image: {
  24022. source: "./media/characters/aman-aquila/side.svg",
  24023. extra: 1054 / 1011,
  24024. bottom: 15 / 1070
  24025. }
  24026. },
  24027. back: {
  24028. height: math.unit(5 + 7 / 12, "feet"),
  24029. weight: math.unit(185, "lb"),
  24030. name: "Back",
  24031. image: {
  24032. source: "./media/characters/aman-aquila/back.svg",
  24033. extra: 1026 / 970,
  24034. bottom: 12 / 1039
  24035. }
  24036. },
  24037. head: {
  24038. height: math.unit(1.211, "feet"),
  24039. name: "Head",
  24040. image: {
  24041. source: "./media/characters/aman-aquila/head.svg",
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Minimicro",
  24048. height: math.unit(0.057, "inches")
  24049. },
  24050. {
  24051. name: "Micro",
  24052. height: math.unit(7, "inches")
  24053. },
  24054. {
  24055. name: "Mini",
  24056. height: math.unit(3 + 7 / 12, "feet")
  24057. },
  24058. {
  24059. name: "Normal",
  24060. height: math.unit(5 + 7 / 12, "feet"),
  24061. default: true
  24062. },
  24063. {
  24064. name: "Macro",
  24065. height: math.unit(157 + 7 / 12, "feet")
  24066. },
  24067. {
  24068. name: "Megamacro",
  24069. height: math.unit(1557 + 7 / 12, "feet")
  24070. },
  24071. {
  24072. name: "Gigamacro",
  24073. height: math.unit(15557 + 7 / 12, "feet")
  24074. },
  24075. ]
  24076. ))
  24077. characterMakers.push(() => makeCharacter(
  24078. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24079. {
  24080. front: {
  24081. height: math.unit(3 + 2 / 12, "inches"),
  24082. weight: math.unit(0.3, "ounces"),
  24083. name: "Front",
  24084. image: {
  24085. source: "./media/characters/hiphae/front.svg",
  24086. extra: 1931 / 1683,
  24087. bottom: 24 / 1955
  24088. }
  24089. },
  24090. },
  24091. [
  24092. {
  24093. name: "Normal",
  24094. height: math.unit(3 + 1 / 2, "inches"),
  24095. default: true
  24096. },
  24097. ]
  24098. ))
  24099. characterMakers.push(() => makeCharacter(
  24100. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24101. {
  24102. front: {
  24103. height: math.unit(5 + 10 / 12, "feet"),
  24104. weight: math.unit(165, "lb"),
  24105. name: "Front",
  24106. image: {
  24107. source: "./media/characters/nicky/front.svg",
  24108. extra: 3144 / 2886,
  24109. bottom: 45.6 / 3192
  24110. }
  24111. },
  24112. back: {
  24113. height: math.unit(5 + 10 / 12, "feet"),
  24114. weight: math.unit(165, "lb"),
  24115. name: "Back",
  24116. image: {
  24117. source: "./media/characters/nicky/back.svg",
  24118. extra: 3055 / 2804,
  24119. bottom: 28.4 / 3087
  24120. }
  24121. },
  24122. frontclothed: {
  24123. height: math.unit(5 + 10 / 12, "feet"),
  24124. weight: math.unit(165, "lb"),
  24125. name: "Front-clothed",
  24126. image: {
  24127. source: "./media/characters/nicky/front-clothed.svg",
  24128. extra: 3184.9 / 2926.9,
  24129. bottom: 86.5 / 3239.9
  24130. }
  24131. },
  24132. foot: {
  24133. height: math.unit(1.16, "feet"),
  24134. name: "Foot",
  24135. image: {
  24136. source: "./media/characters/nicky/foot.svg"
  24137. }
  24138. },
  24139. feet: {
  24140. height: math.unit(1.34, "feet"),
  24141. name: "Feet",
  24142. image: {
  24143. source: "./media/characters/nicky/feet.svg"
  24144. }
  24145. },
  24146. maw: {
  24147. height: math.unit(0.9, "feet"),
  24148. name: "Maw",
  24149. image: {
  24150. source: "./media/characters/nicky/maw.svg"
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(5 + 10 / 12, "feet"),
  24158. default: true
  24159. },
  24160. {
  24161. name: "Macro",
  24162. height: math.unit(60, "feet")
  24163. },
  24164. {
  24165. name: "Megamacro",
  24166. height: math.unit(1, "mile")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24172. {
  24173. side: {
  24174. height: math.unit(10, "feet"),
  24175. weight: math.unit(600, "lb"),
  24176. name: "Side",
  24177. image: {
  24178. source: "./media/characters/blair/side.svg",
  24179. bottom: 16.6 / 475,
  24180. extra: 458 / 431
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Micro",
  24187. height: math.unit(8, "inches")
  24188. },
  24189. {
  24190. name: "Normal",
  24191. height: math.unit(10, "feet"),
  24192. default: true
  24193. },
  24194. {
  24195. name: "Macro",
  24196. height: math.unit(180, "feet")
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(5 + 4 / 12, "feet"),
  24205. weight: math.unit(125, "lb"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/fisher/front.svg",
  24209. extra: 444 / 390,
  24210. bottom: 2 / 444.8
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Micro",
  24217. height: math.unit(4, "inches")
  24218. },
  24219. {
  24220. name: "Normal",
  24221. height: math.unit(5 + 4 / 12, "feet"),
  24222. default: true
  24223. },
  24224. {
  24225. name: "Macro",
  24226. height: math.unit(100, "feet")
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(6.71, "feet"),
  24235. weight: math.unit(200, "lb"),
  24236. capacity: math.unit(1000000, "people"),
  24237. name: "Front",
  24238. image: {
  24239. source: "./media/characters/gliss/front.svg",
  24240. extra: 2347 / 2231,
  24241. bottom: 113 / 2462
  24242. }
  24243. },
  24244. hammerspaceSize: {
  24245. height: math.unit(6.71 * 717, "feet"),
  24246. weight: math.unit(200, "lb"),
  24247. capacity: math.unit(1000000, "people"),
  24248. name: "Hammerspace Size",
  24249. image: {
  24250. source: "./media/characters/gliss/front.svg",
  24251. extra: 2347 / 2231,
  24252. bottom: 113 / 2462
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Normal",
  24259. height: math.unit(6.71, "feet"),
  24260. default: true
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24266. {
  24267. side: {
  24268. height: math.unit(1.44, "m"),
  24269. weight: math.unit(80, "kg"),
  24270. name: "Side",
  24271. image: {
  24272. source: "./media/characters/dune-anderson/side.svg",
  24273. bottom: 49 / 1426
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Wolf-sized",
  24280. height: math.unit(1.44, "meters")
  24281. },
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(5.05, "meters"),
  24285. default: true
  24286. },
  24287. {
  24288. name: "Big",
  24289. height: math.unit(14.4, "meters")
  24290. },
  24291. {
  24292. name: "Huge",
  24293. height: math.unit(144, "meters")
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(7, "feet"),
  24302. weight: math.unit(425, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/hind/front.svg",
  24306. extra: 2091 / 1860,
  24307. bottom: 129 / 2220
  24308. }
  24309. },
  24310. back: {
  24311. height: math.unit(7, "feet"),
  24312. weight: math.unit(425, "lb"),
  24313. name: "Back",
  24314. image: {
  24315. source: "./media/characters/hind/back.svg",
  24316. extra: 2091 / 1860,
  24317. bottom: 24.6 / 2309
  24318. }
  24319. },
  24320. tail: {
  24321. height: math.unit(2.8, "feet"),
  24322. name: "Tail",
  24323. image: {
  24324. source: "./media/characters/hind/tail.svg"
  24325. }
  24326. },
  24327. head: {
  24328. height: math.unit(2.55, "feet"),
  24329. name: "Head",
  24330. image: {
  24331. source: "./media/characters/hind/head.svg"
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "XS",
  24338. height: math.unit(0.7, "feet")
  24339. },
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(7, "feet"),
  24343. default: true
  24344. },
  24345. {
  24346. name: "XL",
  24347. height: math.unit(70, "feet")
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24353. {
  24354. front: {
  24355. height: math.unit(6, "feet"),
  24356. weight: math.unit(150, "lb"),
  24357. name: "Front",
  24358. image: {
  24359. source: "./media/characters/dylan-skaven/front.svg",
  24360. extra: 2318 / 2063,
  24361. bottom: 93.4 / 2410
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Nano",
  24368. height: math.unit(1, "mm")
  24369. },
  24370. {
  24371. name: "Micro",
  24372. height: math.unit(1, "cm")
  24373. },
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(2.1, "meters"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24383. {
  24384. front: {
  24385. height: math.unit(7 + 5 / 12, "feet"),
  24386. weight: math.unit(357, "lb"),
  24387. name: "Front",
  24388. image: {
  24389. source: "./media/characters/solex-draconov/front.svg",
  24390. extra: 1993 / 1865,
  24391. bottom: 117 / 2111
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Natural Height",
  24398. height: math.unit(7 + 5 / 12, "feet"),
  24399. default: true
  24400. },
  24401. {
  24402. name: "Macro",
  24403. height: math.unit(350, "feet")
  24404. },
  24405. {
  24406. name: "Macro+",
  24407. height: math.unit(1000, "feet")
  24408. },
  24409. {
  24410. name: "Megamacro",
  24411. height: math.unit(20, "km")
  24412. },
  24413. {
  24414. name: "Megamacro+",
  24415. height: math.unit(1000, "km")
  24416. },
  24417. {
  24418. name: "Gigamacro",
  24419. height: math.unit(2.5, "Gm")
  24420. },
  24421. {
  24422. name: "Teramacro",
  24423. height: math.unit(15, "Tm")
  24424. },
  24425. {
  24426. name: "Galactic",
  24427. height: math.unit(30, "Zm")
  24428. },
  24429. {
  24430. name: "Universal",
  24431. height: math.unit(21000, "Ym")
  24432. },
  24433. {
  24434. name: "Omniversal",
  24435. height: math.unit(9.861e50, "Ym")
  24436. },
  24437. {
  24438. name: "Existential",
  24439. height: math.unit(1e300, "meters")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24445. {
  24446. side: {
  24447. height: math.unit(25, "feet"),
  24448. weight: math.unit(90000, "lb"),
  24449. name: "Side",
  24450. image: {
  24451. source: "./media/characters/mandarax/side.svg",
  24452. extra: 614 / 332,
  24453. bottom: 55 / 630
  24454. }
  24455. },
  24456. head: {
  24457. height: math.unit(11.4, "feet"),
  24458. name: "Head",
  24459. image: {
  24460. source: "./media/characters/mandarax/head.svg"
  24461. }
  24462. },
  24463. belly: {
  24464. height: math.unit(33, "feet"),
  24465. name: "Belly",
  24466. capacity: math.unit(500, "people"),
  24467. image: {
  24468. source: "./media/characters/mandarax/belly.svg"
  24469. }
  24470. },
  24471. dick: {
  24472. height: math.unit(8.46, "feet"),
  24473. name: "Dick",
  24474. image: {
  24475. source: "./media/characters/mandarax/dick.svg"
  24476. }
  24477. },
  24478. top: {
  24479. height: math.unit(28, "meters"),
  24480. name: "Top",
  24481. image: {
  24482. source: "./media/characters/mandarax/top.svg"
  24483. }
  24484. },
  24485. },
  24486. [
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(25, "feet"),
  24490. default: true
  24491. },
  24492. ]
  24493. ))
  24494. characterMakers.push(() => makeCharacter(
  24495. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24496. {
  24497. front: {
  24498. height: math.unit(5, "feet"),
  24499. weight: math.unit(90, "lb"),
  24500. name: "Front",
  24501. image: {
  24502. source: "./media/characters/pixil/front.svg",
  24503. extra: 2000 / 1618,
  24504. bottom: 12.3 / 2011
  24505. }
  24506. },
  24507. },
  24508. [
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(5, "feet"),
  24512. default: true
  24513. },
  24514. {
  24515. name: "Megamacro",
  24516. height: math.unit(10, "miles"),
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(7 + 2 / 12, "feet"),
  24525. weight: math.unit(200, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/angel/front.svg",
  24529. extra: 1830 / 1737,
  24530. bottom: 22.6 / 1854,
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(7 + 2 / 12, "feet"),
  24538. default: true
  24539. },
  24540. {
  24541. name: "Macro",
  24542. height: math.unit(1000, "feet")
  24543. },
  24544. {
  24545. name: "Megamacro",
  24546. height: math.unit(2, "miles")
  24547. },
  24548. {
  24549. name: "Gigamacro",
  24550. height: math.unit(20, "earths")
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(5, "feet"),
  24559. weight: math.unit(180, "lb"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/mekana/front.svg",
  24563. extra: 1671 / 1605,
  24564. bottom: 3.5 / 1691
  24565. }
  24566. },
  24567. side: {
  24568. height: math.unit(5, "feet"),
  24569. weight: math.unit(180, "lb"),
  24570. name: "Side",
  24571. image: {
  24572. source: "./media/characters/mekana/side.svg",
  24573. extra: 1671 / 1605,
  24574. bottom: 3.5 / 1691
  24575. }
  24576. },
  24577. back: {
  24578. height: math.unit(5, "feet"),
  24579. weight: math.unit(180, "lb"),
  24580. name: "Back",
  24581. image: {
  24582. source: "./media/characters/mekana/back.svg",
  24583. extra: 1671 / 1605,
  24584. bottom: 3.5 / 1691
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Normal",
  24591. height: math.unit(5, "feet"),
  24592. default: true
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(4 + 6 / 12, "feet"),
  24601. weight: math.unit(80, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/pixie/front.svg",
  24605. extra: 1924 / 1825,
  24606. bottom: 22.4 / 1946
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(4 + 6 / 12, "feet"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Macro",
  24618. height: math.unit(40, "feet")
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(2.1, "meters"),
  24627. weight: math.unit(200, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/the-lascivious/front.svg",
  24631. extra: 1 / 0.893,
  24632. bottom: 3.5 / 573.7
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Human Scale",
  24639. height: math.unit(2.1, "meters")
  24640. },
  24641. {
  24642. name: "Wolxi Scale",
  24643. height: math.unit(46.2, "m"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Boinker of Buildings",
  24648. height: math.unit(10, "km")
  24649. },
  24650. {
  24651. name: "Shagger of Skyscrapers",
  24652. height: math.unit(40, "km")
  24653. },
  24654. {
  24655. name: "Banger of Boroughs",
  24656. height: math.unit(4000, "km")
  24657. },
  24658. {
  24659. name: "Screwer of States",
  24660. height: math.unit(100000, "km")
  24661. },
  24662. {
  24663. name: "Pounder of Planets",
  24664. height: math.unit(2000000, "km")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(6, "feet"),
  24673. weight: math.unit(150, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/aj/front.svg",
  24677. extra: 2039 / 1562,
  24678. bottom: 40 / 2079
  24679. }
  24680. },
  24681. },
  24682. [
  24683. {
  24684. name: "Normal",
  24685. height: math.unit(11 + 6 / 12, "feet"),
  24686. default: true
  24687. },
  24688. {
  24689. name: "Megamacro",
  24690. height: math.unit(60, "megameters")
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24696. {
  24697. side: {
  24698. height: math.unit(31 + 8 / 12, "feet"),
  24699. weight: math.unit(75000, "kg"),
  24700. name: "Side",
  24701. image: {
  24702. source: "./media/characters/koros/side.svg",
  24703. extra: 1442 / 1297,
  24704. bottom: 122.7 / 1562
  24705. }
  24706. },
  24707. dicksKingsCrown: {
  24708. height: math.unit(6, "feet"),
  24709. name: "Dicks (King's Crown)",
  24710. image: {
  24711. source: "./media/characters/koros/dicks-kings-crown.svg"
  24712. }
  24713. },
  24714. dicksTailSet: {
  24715. height: math.unit(3, "feet"),
  24716. name: "Dicks (Tail Set)",
  24717. image: {
  24718. source: "./media/characters/koros/dicks-tail-set.svg"
  24719. }
  24720. },
  24721. dickCumming: {
  24722. height: math.unit(7.98, "feet"),
  24723. name: "Dick (Cumming)",
  24724. image: {
  24725. source: "./media/characters/koros/dick-cumming.svg"
  24726. }
  24727. },
  24728. dicksBack: {
  24729. height: math.unit(5.9, "feet"),
  24730. name: "Dicks (Back)",
  24731. image: {
  24732. source: "./media/characters/koros/dicks-back.svg"
  24733. }
  24734. },
  24735. dicksFront: {
  24736. height: math.unit(3.72, "feet"),
  24737. name: "Dicks (Front)",
  24738. image: {
  24739. source: "./media/characters/koros/dicks-front.svg"
  24740. }
  24741. },
  24742. dicksPeeking: {
  24743. height: math.unit(3.0, "feet"),
  24744. name: "Dicks (Peeking)",
  24745. image: {
  24746. source: "./media/characters/koros/dicks-peeking.svg"
  24747. }
  24748. },
  24749. eye: {
  24750. height: math.unit(1.7, "feet"),
  24751. name: "Eye",
  24752. image: {
  24753. source: "./media/characters/koros/eye.svg"
  24754. }
  24755. },
  24756. headFront: {
  24757. height: math.unit(11.69, "feet"),
  24758. name: "Head (Front)",
  24759. image: {
  24760. source: "./media/characters/koros/head-front.svg"
  24761. }
  24762. },
  24763. headSide: {
  24764. height: math.unit(14, "feet"),
  24765. name: "Head (Side)",
  24766. image: {
  24767. source: "./media/characters/koros/head-side.svg"
  24768. }
  24769. },
  24770. leg: {
  24771. height: math.unit(17, "feet"),
  24772. name: "Leg",
  24773. image: {
  24774. source: "./media/characters/koros/leg.svg"
  24775. }
  24776. },
  24777. mawSide: {
  24778. height: math.unit(12.8, "feet"),
  24779. name: "Maw (Side)",
  24780. image: {
  24781. source: "./media/characters/koros/maw-side.svg"
  24782. }
  24783. },
  24784. mawSpitting: {
  24785. height: math.unit(17, "feet"),
  24786. name: "Maw (Spitting)",
  24787. image: {
  24788. source: "./media/characters/koros/maw-spitting.svg"
  24789. }
  24790. },
  24791. slit: {
  24792. height: math.unit(2.8, "feet"),
  24793. name: "Slit",
  24794. image: {
  24795. source: "./media/characters/koros/slit.svg"
  24796. }
  24797. },
  24798. stomach: {
  24799. height: math.unit(6.8, "feet"),
  24800. capacity: math.unit(20, "people"),
  24801. name: "Stomach",
  24802. image: {
  24803. source: "./media/characters/koros/stomach.svg"
  24804. }
  24805. },
  24806. wingspanBottom: {
  24807. height: math.unit(114, "feet"),
  24808. name: "Wingspan (Bottom)",
  24809. image: {
  24810. source: "./media/characters/koros/wingspan-bottom.svg"
  24811. }
  24812. },
  24813. wingspanTop: {
  24814. height: math.unit(104, "feet"),
  24815. name: "Wingspan (Top)",
  24816. image: {
  24817. source: "./media/characters/koros/wingspan-top.svg"
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(31 + 8 / 12, "feet"),
  24825. default: true
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(18 + 5 / 12, "feet"),
  24834. weight: math.unit(3750, "kg"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/vexx/front.svg",
  24838. extra: 426 / 396,
  24839. bottom: 31.5 / 458
  24840. }
  24841. },
  24842. maw: {
  24843. height: math.unit(6, "feet"),
  24844. name: "Maw",
  24845. image: {
  24846. source: "./media/characters/vexx/maw.svg"
  24847. }
  24848. },
  24849. },
  24850. [
  24851. {
  24852. name: "Normal",
  24853. height: math.unit(18 + 5 / 12, "feet"),
  24854. default: true
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(17 + 6 / 12, "feet"),
  24863. weight: math.unit(150, "lb"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/baadra/front.svg",
  24867. extra: 3137 / 2890,
  24868. bottom: 168.4 / 3305
  24869. }
  24870. },
  24871. back: {
  24872. height: math.unit(17 + 6 / 12, "feet"),
  24873. weight: math.unit(150, "lb"),
  24874. name: "Back",
  24875. image: {
  24876. source: "./media/characters/baadra/back.svg",
  24877. extra: 3142 / 2890,
  24878. bottom: 220 / 3371
  24879. }
  24880. },
  24881. head: {
  24882. height: math.unit(5.45, "feet"),
  24883. name: "Head",
  24884. image: {
  24885. source: "./media/characters/baadra/head.svg"
  24886. }
  24887. },
  24888. headAngry: {
  24889. height: math.unit(4.95, "feet"),
  24890. name: "Head (Angry)",
  24891. image: {
  24892. source: "./media/characters/baadra/head-angry.svg"
  24893. }
  24894. },
  24895. headOpen: {
  24896. height: math.unit(6, "feet"),
  24897. name: "Head (Open)",
  24898. image: {
  24899. source: "./media/characters/baadra/head-open.svg"
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Normal",
  24906. height: math.unit(17 + 6 / 12, "feet"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(7 + 3 / 12, "feet"),
  24916. weight: math.unit(180, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/juri/front.svg",
  24920. extra: 1401 / 1237,
  24921. bottom: 18.5 / 1418
  24922. }
  24923. },
  24924. side: {
  24925. height: math.unit(7 + 3 / 12, "feet"),
  24926. weight: math.unit(180, "lb"),
  24927. name: "Side",
  24928. image: {
  24929. source: "./media/characters/juri/side.svg",
  24930. extra: 1424 / 1242,
  24931. bottom: 18.5 / 1447
  24932. }
  24933. },
  24934. sitting: {
  24935. height: math.unit(6, "feet"),
  24936. weight: math.unit(180, "lb"),
  24937. name: "Sitting",
  24938. image: {
  24939. source: "./media/characters/juri/sitting.svg",
  24940. extra: 1270 / 1143,
  24941. bottom: 100 / 1343
  24942. }
  24943. },
  24944. back: {
  24945. height: math.unit(7 + 3 / 12, "feet"),
  24946. weight: math.unit(180, "lb"),
  24947. name: "Back",
  24948. image: {
  24949. source: "./media/characters/juri/back.svg",
  24950. extra: 1377 / 1240,
  24951. bottom: 23.7 / 1405
  24952. }
  24953. },
  24954. maw: {
  24955. height: math.unit(2.8, "feet"),
  24956. name: "Maw",
  24957. image: {
  24958. source: "./media/characters/juri/maw.svg"
  24959. }
  24960. },
  24961. stomach: {
  24962. height: math.unit(0.89, "feet"),
  24963. capacity: math.unit(4, "liters"),
  24964. name: "Stomach",
  24965. image: {
  24966. source: "./media/characters/juri/stomach.svg"
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Normal",
  24973. height: math.unit(7 + 3 / 12, "feet"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24980. {
  24981. fox: {
  24982. height: math.unit(5 + 6 / 12, "feet"),
  24983. weight: math.unit(140, "lb"),
  24984. name: "Fox",
  24985. image: {
  24986. source: "./media/characters/maxene-sita/fox.svg",
  24987. extra: 146 / 138,
  24988. bottom: 2.1 / 148.19
  24989. }
  24990. },
  24991. foxLaying: {
  24992. height: math.unit(1.70, "feet"),
  24993. weight: math.unit(140, "lb"),
  24994. name: "Fox (Laying)",
  24995. image: {
  24996. source: "./media/characters/maxene-sita/fox-laying.svg",
  24997. extra: 910 / 572,
  24998. bottom: 71 / 981
  24999. }
  25000. },
  25001. kitsune: {
  25002. height: math.unit(10, "feet"),
  25003. weight: math.unit(800, "lb"),
  25004. name: "Kitsune",
  25005. image: {
  25006. source: "./media/characters/maxene-sita/kitsune.svg",
  25007. extra: 185 / 176,
  25008. bottom: 4.7 / 189.9
  25009. }
  25010. },
  25011. hellhound: {
  25012. height: math.unit(10, "feet"),
  25013. weight: math.unit(700, "lb"),
  25014. name: "Hellhound",
  25015. image: {
  25016. source: "./media/characters/maxene-sita/hellhound.svg",
  25017. extra: 1600 / 1545,
  25018. bottom: 81 / 1681
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Normal",
  25025. height: math.unit(5 + 6 / 12, "feet"),
  25026. default: true
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25032. {
  25033. front: {
  25034. height: math.unit(3 + 4 / 12, "feet"),
  25035. weight: math.unit(70, "lb"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/maia/front.svg",
  25039. extra: 227 / 219.5,
  25040. bottom: 40 / 267
  25041. }
  25042. },
  25043. back: {
  25044. height: math.unit(3 + 4 / 12, "feet"),
  25045. weight: math.unit(70, "lb"),
  25046. name: "Back",
  25047. image: {
  25048. source: "./media/characters/maia/back.svg",
  25049. extra: 237 / 225
  25050. }
  25051. },
  25052. },
  25053. [
  25054. {
  25055. name: "Normal",
  25056. height: math.unit(3 + 4 / 12, "feet"),
  25057. default: true
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(5 + 10 / 12, "feet"),
  25066. weight: math.unit(197, "lb"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/jabaro/front.svg",
  25070. extra: 225 / 216,
  25071. bottom: 5.06 / 230
  25072. }
  25073. },
  25074. back: {
  25075. height: math.unit(5 + 10 / 12, "feet"),
  25076. weight: math.unit(197, "lb"),
  25077. name: "Back",
  25078. image: {
  25079. source: "./media/characters/jabaro/back.svg",
  25080. extra: 225 / 219,
  25081. bottom: 1.9 / 227
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Normal",
  25088. height: math.unit(5 + 10 / 12, "feet"),
  25089. default: true
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(5 + 8 / 12, "feet"),
  25098. weight: math.unit(139, "lb"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/risa/front.svg",
  25102. extra: 270 / 260,
  25103. bottom: 11.2 / 282
  25104. }
  25105. },
  25106. back: {
  25107. height: math.unit(5 + 8 / 12, "feet"),
  25108. weight: math.unit(139, "lb"),
  25109. name: "Back",
  25110. image: {
  25111. source: "./media/characters/risa/back.svg",
  25112. extra: 264 / 255,
  25113. bottom: 4 / 268
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Normal",
  25120. height: math.unit(5 + 8 / 12, "feet"),
  25121. default: true
  25122. },
  25123. ]
  25124. ))
  25125. characterMakers.push(() => makeCharacter(
  25126. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25127. {
  25128. front: {
  25129. height: math.unit(2 + 11 / 12, "feet"),
  25130. weight: math.unit(30, "lb"),
  25131. name: "Front",
  25132. image: {
  25133. source: "./media/characters/weatley/front.svg",
  25134. bottom: 10.7 / 414,
  25135. extra: 403.5 / 362
  25136. }
  25137. },
  25138. back: {
  25139. height: math.unit(2 + 11 / 12, "feet"),
  25140. weight: math.unit(30, "lb"),
  25141. name: "Back",
  25142. image: {
  25143. source: "./media/characters/weatley/back.svg",
  25144. bottom: 10.7 / 414,
  25145. extra: 403.5 / 362
  25146. }
  25147. },
  25148. },
  25149. [
  25150. {
  25151. name: "Normal",
  25152. height: math.unit(2 + 11 / 12, "feet"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(5 + 2 / 12, "feet"),
  25162. weight: math.unit(50, "kg"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/mercury-crescent/front.svg",
  25166. extra: 1088 / 1033,
  25167. bottom: 18.9 / 1109
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(5 + 2 / 12, "feet"),
  25175. default: true
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(2, "feet"),
  25184. weight: math.unit(15, "kg"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/diamond-jones/front.svg",
  25188. bottom: 16 / 568
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Normal",
  25195. height: math.unit(2, "feet"),
  25196. default: true
  25197. },
  25198. ]
  25199. ))
  25200. characterMakers.push(() => makeCharacter(
  25201. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25202. {
  25203. front: {
  25204. height: math.unit(3, "feet"),
  25205. weight: math.unit(30, "kg"),
  25206. name: "Front",
  25207. image: {
  25208. source: "./media/characters/sweet-bit/front.svg",
  25209. extra: 675 / 567,
  25210. bottom: 27.7 / 703
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(3, "feet"),
  25218. default: true
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25224. {
  25225. side: {
  25226. height: math.unit(9.178, "feet"),
  25227. weight: math.unit(500, "lb"),
  25228. name: "Side",
  25229. image: {
  25230. source: "./media/characters/umbrazen/side.svg",
  25231. extra: 1730 / 1473,
  25232. bottom: 34.6 / 1765
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(9.178, "feet"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(10, "feet"),
  25249. weight: math.unit(750, "lb"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/arlist/front.svg",
  25253. extra: 961 / 778,
  25254. bottom: 6.2 / 986
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(10, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(5 + 1 / 12, "feet"),
  25271. weight: math.unit(110, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/aradel/front.svg",
  25275. extra: 324 / 303,
  25276. bottom: 3.6 / 329.4
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(5 + 1 / 12, "feet"),
  25284. default: true
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(3 + 8 / 12, "feet"),
  25293. weight: math.unit(50, "lb"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/serryn/front.svg",
  25297. extra: 1792 / 1656,
  25298. bottom: 43.5 / 1840
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(3 + 8 / 12, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Xavier Thyme" },
  25312. {
  25313. front: {
  25314. height: math.unit(7 + 10 / 12, "feet"),
  25315. weight: math.unit(255, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/xavier-thyme/front.svg",
  25319. extra: 3733 / 3642,
  25320. bottom: 131 / 3869
  25321. }
  25322. },
  25323. frontRaven: {
  25324. height: math.unit(7 + 10 / 12, "feet"),
  25325. weight: math.unit(255, "lb"),
  25326. name: "Front (Raven)",
  25327. image: {
  25328. source: "./media/characters/xavier-thyme/front-raven.svg",
  25329. extra: 4385 / 3642,
  25330. bottom: 131 / 4517
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(7 + 10 / 12, "feet"),
  25338. default: true
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(1.6, "m"),
  25347. weight: math.unit(50, "kg"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/kiki/front.svg",
  25351. extra: 4682 / 3610,
  25352. bottom: 115 / 4777
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(1.6, "meters"),
  25360. default: true
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(50, "m"),
  25369. weight: math.unit(500, "tonnes"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/ryoko/front.svg",
  25373. extra: 4632 / 3926,
  25374. bottom: 193 / 4823
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(50, "meters"),
  25382. default: true
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(30, "m"),
  25391. weight: math.unit(22, "tonnes"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/elio/front.svg",
  25395. extra: 4582 / 3720,
  25396. bottom: 236 / 4828
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(30, "meters"),
  25404. default: true
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(6 + 3 / 12, "feet"),
  25413. weight: math.unit(120, "lb"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/azura/front.svg",
  25417. extra: 1149 / 1135,
  25418. bottom: 45 / 1194
  25419. }
  25420. },
  25421. frontClothed: {
  25422. height: math.unit(6 + 3 / 12, "feet"),
  25423. weight: math.unit(120, "lb"),
  25424. name: "Front (Clothed)",
  25425. image: {
  25426. source: "./media/characters/azura/front-clothed.svg",
  25427. extra: 1149 / 1135,
  25428. bottom: 45 / 1194
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Normal",
  25435. height: math.unit(6 + 3 / 12, "feet"),
  25436. default: true
  25437. },
  25438. {
  25439. name: "Macro",
  25440. height: math.unit(20 + 6 / 12, "feet")
  25441. },
  25442. {
  25443. name: "Megamacro",
  25444. height: math.unit(12, "miles")
  25445. },
  25446. {
  25447. name: "Gigamacro",
  25448. height: math.unit(10000, "miles")
  25449. },
  25450. {
  25451. name: "Teramacro",
  25452. height: math.unit(900000, "miles")
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(12, "feet"),
  25461. weight: math.unit(1, "ton"),
  25462. capacity: math.unit(660000, "gallons"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/zeus/front.svg",
  25466. extra: 5005 / 4717,
  25467. bottom: 363 / 5388
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(12, "feet")
  25475. },
  25476. {
  25477. name: "Preferred Size",
  25478. height: math.unit(0.5, "miles"),
  25479. default: true
  25480. },
  25481. {
  25482. name: "Giga Horse",
  25483. height: math.unit(300, "miles")
  25484. },
  25485. {
  25486. name: "Riding Planets",
  25487. height: math.unit(30, "megameters")
  25488. },
  25489. {
  25490. name: "Cosmic Giant",
  25491. height: math.unit(3, "zettameters")
  25492. },
  25493. {
  25494. name: "Breeding God",
  25495. height: math.unit(9.92e22, "yottameters")
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25501. {
  25502. side: {
  25503. height: math.unit(9, "feet"),
  25504. weight: math.unit(1500, "kg"),
  25505. name: "Side",
  25506. image: {
  25507. source: "./media/characters/fang/side.svg",
  25508. extra: 924 / 866,
  25509. bottom: 47.5 / 972.3
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Normal",
  25516. height: math.unit(9, "feet"),
  25517. default: true
  25518. },
  25519. {
  25520. name: "Macro",
  25521. height: math.unit(75 + 6 / 12, "feet")
  25522. },
  25523. {
  25524. name: "Teramacro",
  25525. height: math.unit(50000, "miles")
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(10, "feet"),
  25534. weight: math.unit(2, "tons"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/rekhit/front.svg",
  25538. extra: 2796 / 2590,
  25539. bottom: 225 / 3022
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(10, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Macro",
  25551. height: math.unit(500, "feet")
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Dahlia Verrick" },
  25557. {
  25558. front: {
  25559. height: math.unit(7 + 6.451 / 12, "feet"),
  25560. weight: math.unit(310, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/dahlia-verrick/front.svg",
  25564. extra: 1488 / 1365,
  25565. bottom: 6.2 / 1495
  25566. }
  25567. },
  25568. back: {
  25569. height: math.unit(7 + 6.451 / 12, "feet"),
  25570. weight: math.unit(310, "lb"),
  25571. name: "Back",
  25572. image: {
  25573. source: "./media/characters/dahlia-verrick/back.svg",
  25574. extra: 1472 / 1351,
  25575. bottom: 5.28 / 1477
  25576. }
  25577. },
  25578. frontBusiness: {
  25579. height: math.unit(7 + 6.451 / 12, "feet"),
  25580. weight: math.unit(200, "lb"),
  25581. name: "Front (Business)",
  25582. image: {
  25583. source: "./media/characters/dahlia-verrick/front-business.svg",
  25584. extra: 1478 / 1381,
  25585. bottom: 5.5 / 1484
  25586. }
  25587. },
  25588. frontCasual: {
  25589. height: math.unit(7 + 6.451 / 12, "feet"),
  25590. weight: math.unit(200, "lb"),
  25591. name: "Front (Casual)",
  25592. image: {
  25593. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25594. extra: 1478 / 1381,
  25595. bottom: 5.5 / 1484
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Travel-Sized",
  25602. height: math.unit(7.45, "inches")
  25603. },
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(7 + 6.451 / 12, "feet"),
  25607. default: true
  25608. },
  25609. {
  25610. name: "Hitting the Town",
  25611. height: math.unit(37 + 8 / 12, "feet")
  25612. },
  25613. {
  25614. name: "Stomp in the Suburbs",
  25615. height: math.unit(964 + 9.728 / 12, "feet")
  25616. },
  25617. {
  25618. name: "Sit on the City",
  25619. height: math.unit(61747 + 10.592 / 12, "feet")
  25620. },
  25621. {
  25622. name: "Glomp the Globe",
  25623. height: math.unit(252919327 + 4.832 / 12, "feet")
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25629. {
  25630. front: {
  25631. height: math.unit(6 + 4 / 12, "feet"),
  25632. weight: math.unit(320, "lb"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/balina-mahigan/front.svg",
  25636. extra: 447 / 428,
  25637. bottom: 18 / 466
  25638. }
  25639. },
  25640. back: {
  25641. height: math.unit(6 + 4 / 12, "feet"),
  25642. weight: math.unit(320, "lb"),
  25643. name: "Back",
  25644. image: {
  25645. source: "./media/characters/balina-mahigan/back.svg",
  25646. extra: 445 / 428,
  25647. bottom: 4.07 / 448
  25648. }
  25649. },
  25650. arm: {
  25651. height: math.unit(1.88, "feet"),
  25652. name: "Arm",
  25653. image: {
  25654. source: "./media/characters/balina-mahigan/arm.svg"
  25655. }
  25656. },
  25657. backPort: {
  25658. height: math.unit(0.685, "feet"),
  25659. name: "Back Port",
  25660. image: {
  25661. source: "./media/characters/balina-mahigan/back-port.svg"
  25662. }
  25663. },
  25664. hoofpaw: {
  25665. height: math.unit(1.41, "feet"),
  25666. name: "Hoofpaw",
  25667. image: {
  25668. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25669. }
  25670. },
  25671. leftHandBack: {
  25672. height: math.unit(0.938, "feet"),
  25673. name: "Left Hand (Back)",
  25674. image: {
  25675. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25676. }
  25677. },
  25678. leftHandFront: {
  25679. height: math.unit(0.938, "feet"),
  25680. name: "Left Hand (Front)",
  25681. image: {
  25682. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25683. }
  25684. },
  25685. rightHandBack: {
  25686. height: math.unit(0.95, "feet"),
  25687. name: "Right Hand (Back)",
  25688. image: {
  25689. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25690. }
  25691. },
  25692. rightHandFront: {
  25693. height: math.unit(0.95, "feet"),
  25694. name: "Right Hand (Front)",
  25695. image: {
  25696. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(6 + 4 / 12, "feet"),
  25704. default: true
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(6, "feet"),
  25713. weight: math.unit(320, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/balina-mejeri/front.svg",
  25717. extra: 517 / 488,
  25718. bottom: 44.2 / 561
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(6 + 4 / 12, "feet")
  25726. },
  25727. {
  25728. name: "Business",
  25729. height: math.unit(155, "feet"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25736. {
  25737. kneeling: {
  25738. height: math.unit(6 + 4 / 12, "feet"),
  25739. weight: math.unit(300 * 20, "lb"),
  25740. name: "Kneeling",
  25741. image: {
  25742. source: "./media/characters/balbarian/kneeling.svg",
  25743. extra: 922 / 862,
  25744. bottom: 42.4 / 965
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(6 + 4 / 12, "feet")
  25752. },
  25753. {
  25754. name: "Treasured",
  25755. height: math.unit(18 + 9 / 12, "feet"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Macro",
  25760. height: math.unit(900, "feet")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(6 + 4 / 12, "feet"),
  25769. weight: math.unit(325, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/balina-amarini/front.svg",
  25773. extra: 415 / 403,
  25774. bottom: 19 / 433.4
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(6 + 4 / 12, "feet"),
  25779. weight: math.unit(325, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/balina-amarini/back.svg",
  25783. extra: 415 / 403,
  25784. bottom: 13.5 / 432
  25785. }
  25786. },
  25787. overdrive: {
  25788. height: math.unit(6 + 4 / 12, "feet"),
  25789. weight: math.unit(400, "lb"),
  25790. name: "Overdrive",
  25791. image: {
  25792. source: "./media/characters/balina-amarini/overdrive.svg",
  25793. extra: 269 / 259,
  25794. bottom: 12 / 282
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Boom",
  25801. height: math.unit(9 + 10 / 12, "feet"),
  25802. default: true
  25803. },
  25804. {
  25805. name: "Macro",
  25806. height: math.unit(280, "feet")
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25812. {
  25813. goddess: {
  25814. height: math.unit(600, "feet"),
  25815. weight: math.unit(2000000, "tons"),
  25816. name: "Goddess",
  25817. image: {
  25818. source: "./media/characters/lady-kubwa/goddess.svg",
  25819. extra: 1240.5 / 1223,
  25820. bottom: 22 / 1263
  25821. }
  25822. },
  25823. goddesser: {
  25824. height: math.unit(900, "feet"),
  25825. weight: math.unit(20000000, "lb"),
  25826. name: "Goddess-er",
  25827. image: {
  25828. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25829. extra: 899 / 888,
  25830. bottom: 12.6 / 912
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Macro",
  25837. height: math.unit(600, "feet"),
  25838. default: true
  25839. },
  25840. {
  25841. name: "Megamacro",
  25842. height: math.unit(250, "miles")
  25843. },
  25844. ]
  25845. ))
  25846. characterMakers.push(() => makeCharacter(
  25847. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25848. {
  25849. front: {
  25850. height: math.unit(7 + 7 / 12, "feet"),
  25851. weight: math.unit(250, "lb"),
  25852. name: "Front",
  25853. image: {
  25854. source: "./media/characters/tala-grovehorn/front.svg",
  25855. extra: 2636 / 2525,
  25856. bottom: 147 / 2781
  25857. }
  25858. },
  25859. back: {
  25860. height: math.unit(7 + 7 / 12, "feet"),
  25861. weight: math.unit(250, "lb"),
  25862. name: "Back",
  25863. image: {
  25864. source: "./media/characters/tala-grovehorn/back.svg",
  25865. extra: 2635 / 2539,
  25866. bottom: 100 / 2732.8
  25867. }
  25868. },
  25869. mouth: {
  25870. height: math.unit(1.15, "feet"),
  25871. name: "Mouth",
  25872. image: {
  25873. source: "./media/characters/tala-grovehorn/mouth.svg"
  25874. }
  25875. },
  25876. dick: {
  25877. height: math.unit(2.36, "feet"),
  25878. name: "Dick",
  25879. image: {
  25880. source: "./media/characters/tala-grovehorn/dick.svg"
  25881. }
  25882. },
  25883. slit: {
  25884. height: math.unit(0.61, "feet"),
  25885. name: "Slit",
  25886. image: {
  25887. source: "./media/characters/tala-grovehorn/slit.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. ]
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25896. {
  25897. front: {
  25898. height: math.unit(7 + 7 / 12, "feet"),
  25899. weight: math.unit(225, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/epona/front.svg",
  25903. extra: 2445 / 2290,
  25904. bottom: 251 / 2696
  25905. }
  25906. },
  25907. back: {
  25908. height: math.unit(7 + 7 / 12, "feet"),
  25909. weight: math.unit(225, "lb"),
  25910. name: "Back",
  25911. image: {
  25912. source: "./media/characters/epona/back.svg",
  25913. extra: 2546 / 2408,
  25914. bottom: 44 / 2589
  25915. }
  25916. },
  25917. genitals: {
  25918. height: math.unit(1.5, "feet"),
  25919. name: "Genitals",
  25920. image: {
  25921. source: "./media/characters/epona/genitals.svg"
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(7 + 7 / 12, "feet"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(7, "feet"),
  25938. weight: math.unit(518, "lb"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/avia-bloodbourn/front.svg",
  25942. extra: 1466 / 1350,
  25943. bottom: 65 / 1527
  25944. }
  25945. },
  25946. },
  25947. [
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(9.35, "feet"),
  25955. weight: math.unit(600, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/amera/front.svg",
  25959. extra: 891 / 818,
  25960. bottom: 30 / 922.7
  25961. }
  25962. },
  25963. back: {
  25964. height: math.unit(9.35, "feet"),
  25965. weight: math.unit(600, "lb"),
  25966. name: "Back",
  25967. image: {
  25968. source: "./media/characters/amera/back.svg",
  25969. extra: 876 / 824,
  25970. bottom: 6.8 / 884
  25971. }
  25972. },
  25973. dick: {
  25974. height: math.unit(2.14, "feet"),
  25975. name: "Dick",
  25976. image: {
  25977. source: "./media/characters/amera/dick.svg"
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(9.35, "feet"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25991. {
  25992. kneeling: {
  25993. height: math.unit(3 + 4 / 12, "feet"),
  25994. weight: math.unit(90, "lb"),
  25995. name: "Kneeling",
  25996. image: {
  25997. source: "./media/characters/rosewen/kneeling.svg",
  25998. extra: 1835 / 1571,
  25999. bottom: 27.7 / 1862
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Normal",
  26006. height: math.unit(3 + 4 / 12, "feet"),
  26007. default: true
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(5 + 10 / 12, "feet"),
  26016. weight: math.unit(200, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/sabah/front.svg",
  26020. extra: 849 / 763,
  26021. bottom: 33.9 / 881
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(5 + 10 / 12, "feet"),
  26029. default: true
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26035. {
  26036. front: {
  26037. height: math.unit(3 + 5 / 12, "feet"),
  26038. weight: math.unit(40, "kg"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/purple-flame/front.svg",
  26042. extra: 1577 / 1412,
  26043. bottom: 97 / 1694
  26044. }
  26045. },
  26046. frontDressed: {
  26047. height: math.unit(3 + 5 / 12, "feet"),
  26048. weight: math.unit(40, "kg"),
  26049. name: "Front (Dressed)",
  26050. image: {
  26051. source: "./media/characters/purple-flame/front-dressed.svg",
  26052. extra: 1577 / 1412,
  26053. bottom: 97 / 1694
  26054. }
  26055. },
  26056. headphones: {
  26057. height: math.unit(0.85, "feet"),
  26058. name: "Headphones",
  26059. image: {
  26060. source: "./media/characters/purple-flame/headphones.svg"
  26061. }
  26062. },
  26063. },
  26064. [
  26065. {
  26066. name: "Really Small",
  26067. height: math.unit(5, "cm")
  26068. },
  26069. {
  26070. name: "Micro",
  26071. height: math.unit(1 + 5 / 12, "feet")
  26072. },
  26073. {
  26074. name: "Normal",
  26075. height: math.unit(3 + 5 / 12, "feet"),
  26076. default: true
  26077. },
  26078. {
  26079. name: "Minimacro",
  26080. height: math.unit(125, "feet")
  26081. },
  26082. {
  26083. name: "Macro",
  26084. height: math.unit(0.5, "miles")
  26085. },
  26086. {
  26087. name: "Megamacro",
  26088. height: math.unit(50, "miles")
  26089. },
  26090. {
  26091. name: "Gigantic",
  26092. height: math.unit(750, "miles")
  26093. },
  26094. {
  26095. name: "Planetary",
  26096. height: math.unit(15000, "miles")
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(14, "feet"),
  26105. weight: math.unit(959, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/arsenal/front.svg",
  26109. extra: 2357 / 2157,
  26110. bottom: 93 / 2458
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(14, "feet"),
  26118. default: true
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(6, "feet"),
  26127. weight: math.unit(150, "lb"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/adira/front.svg",
  26131. extra: 1078 / 1029,
  26132. bottom: 87 / 1166
  26133. }
  26134. },
  26135. },
  26136. [
  26137. {
  26138. name: "Micro",
  26139. height: math.unit(4, "inches"),
  26140. default: true
  26141. },
  26142. {
  26143. name: "Macro",
  26144. height: math.unit(50, "feet")
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(16, "feet"),
  26153. weight: math.unit(1000, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/grim/front.svg",
  26157. extra: 622 / 614,
  26158. bottom: 18.1 / 642
  26159. }
  26160. },
  26161. back: {
  26162. height: math.unit(16, "feet"),
  26163. weight: math.unit(1000, "lb"),
  26164. name: "Back",
  26165. image: {
  26166. source: "./media/characters/grim/back.svg",
  26167. extra: 610.6 / 602,
  26168. bottom: 40.8 / 652
  26169. }
  26170. },
  26171. hunched: {
  26172. height: math.unit(9.75, "feet"),
  26173. weight: math.unit(1000, "lb"),
  26174. name: "Hunched",
  26175. image: {
  26176. source: "./media/characters/grim/hunched.svg",
  26177. extra: 304 / 297,
  26178. bottom: 35.4 / 394
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Normal",
  26185. height: math.unit(16, "feet"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(2.3, "meters"),
  26195. weight: math.unit(300, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/sinja/front-sfw.svg",
  26199. extra: 1393 / 1294,
  26200. bottom: 70 / 1463
  26201. }
  26202. },
  26203. frontNsfw: {
  26204. height: math.unit(2.3, "meters"),
  26205. weight: math.unit(300, "lb"),
  26206. name: "Front (NSFW)",
  26207. image: {
  26208. source: "./media/characters/sinja/front-nsfw.svg",
  26209. extra: 1393 / 1294,
  26210. bottom: 70 / 1463
  26211. }
  26212. },
  26213. back: {
  26214. height: math.unit(2.3, "meters"),
  26215. weight: math.unit(300, "lb"),
  26216. name: "Back",
  26217. image: {
  26218. source: "./media/characters/sinja/back.svg",
  26219. extra: 1393 / 1294,
  26220. bottom: 70 / 1463
  26221. }
  26222. },
  26223. head: {
  26224. height: math.unit(1.771, "feet"),
  26225. name: "Head",
  26226. image: {
  26227. source: "./media/characters/sinja/head.svg"
  26228. }
  26229. },
  26230. slit: {
  26231. height: math.unit(0.8, "feet"),
  26232. name: "Slit",
  26233. image: {
  26234. source: "./media/characters/sinja/slit.svg"
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(2.3, "meters")
  26242. },
  26243. {
  26244. name: "Macro",
  26245. height: math.unit(91, "meters"),
  26246. default: true
  26247. },
  26248. {
  26249. name: "Megamacro",
  26250. height: math.unit(91440, "meters")
  26251. },
  26252. {
  26253. name: "Gigamacro",
  26254. height: math.unit(60960000, "meters")
  26255. },
  26256. {
  26257. name: "Teramacro",
  26258. height: math.unit(9144000000, "meters")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(1.7, "meters"),
  26267. weight: math.unit(130, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/kyu/front.svg",
  26271. extra: 415 / 395,
  26272. bottom: 5 / 420
  26273. }
  26274. },
  26275. head: {
  26276. height: math.unit(1.75, "feet"),
  26277. name: "Head",
  26278. image: {
  26279. source: "./media/characters/kyu/head.svg"
  26280. }
  26281. },
  26282. foot: {
  26283. height: math.unit(0.81, "feet"),
  26284. name: "Foot",
  26285. image: {
  26286. source: "./media/characters/kyu/foot.svg"
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Normal",
  26293. height: math.unit(1.7, "meters")
  26294. },
  26295. {
  26296. name: "Macro",
  26297. height: math.unit(131, "feet"),
  26298. default: true
  26299. },
  26300. {
  26301. name: "Megamacro",
  26302. height: math.unit(91440, "meters")
  26303. },
  26304. {
  26305. name: "Gigamacro",
  26306. height: math.unit(60960000, "meters")
  26307. },
  26308. {
  26309. name: "Teramacro",
  26310. height: math.unit(9144000000, "meters")
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(7 + 1 / 12, "feet"),
  26319. weight: math.unit(250, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/joey/front.svg",
  26323. extra: 1791 / 1537,
  26324. bottom: 28 / 1816
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Micro",
  26331. height: math.unit(3, "inches")
  26332. },
  26333. {
  26334. name: "Normal",
  26335. height: math.unit(7 + 1 / 12, "feet"),
  26336. default: true
  26337. },
  26338. ]
  26339. ))
  26340. characterMakers.push(() => makeCharacter(
  26341. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26342. {
  26343. front: {
  26344. height: math.unit(165, "cm"),
  26345. weight: math.unit(140, "lb"),
  26346. name: "Front",
  26347. image: {
  26348. source: "./media/characters/sam-evans/front.svg",
  26349. extra: 3417 / 3230,
  26350. bottom: 41.3 / 3417
  26351. }
  26352. },
  26353. frontSixTails: {
  26354. height: math.unit(165, "cm"),
  26355. weight: math.unit(140, "lb"),
  26356. name: "Front-six-tails",
  26357. image: {
  26358. source: "./media/characters/sam-evans/front-six-tails.svg",
  26359. extra: 3417 / 3230,
  26360. bottom: 41.3 / 3417
  26361. }
  26362. },
  26363. back: {
  26364. height: math.unit(165, "cm"),
  26365. weight: math.unit(140, "lb"),
  26366. name: "Back",
  26367. image: {
  26368. source: "./media/characters/sam-evans/back.svg",
  26369. extra: 3227 / 3032,
  26370. bottom: 6.8 / 3234
  26371. }
  26372. },
  26373. face: {
  26374. height: math.unit(0.68, "feet"),
  26375. name: "Face",
  26376. image: {
  26377. source: "./media/characters/sam-evans/face.svg"
  26378. }
  26379. },
  26380. },
  26381. [
  26382. {
  26383. name: "Normal",
  26384. height: math.unit(165, "cm"),
  26385. default: true
  26386. },
  26387. {
  26388. name: "Macro",
  26389. height: math.unit(100, "meters")
  26390. },
  26391. {
  26392. name: "Macro+",
  26393. height: math.unit(800, "meters")
  26394. },
  26395. {
  26396. name: "Macro++",
  26397. height: math.unit(3, "km")
  26398. },
  26399. {
  26400. name: "Macro+++",
  26401. height: math.unit(30, "km")
  26402. },
  26403. ]
  26404. ))
  26405. characterMakers.push(() => makeCharacter(
  26406. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26407. {
  26408. front: {
  26409. height: math.unit(10, "feet"),
  26410. weight: math.unit(750, "lb"),
  26411. name: "Front",
  26412. image: {
  26413. source: "./media/characters/juliet-a/front.svg",
  26414. extra: 1766 / 1720,
  26415. bottom: 43 / 1809
  26416. }
  26417. },
  26418. back: {
  26419. height: math.unit(10, "feet"),
  26420. weight: math.unit(750, "lb"),
  26421. name: "Back",
  26422. image: {
  26423. source: "./media/characters/juliet-a/back.svg",
  26424. extra: 1781 / 1734,
  26425. bottom: 35 / 1810,
  26426. }
  26427. },
  26428. },
  26429. [
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(10, "feet"),
  26433. default: true
  26434. },
  26435. {
  26436. name: "Dragon Form",
  26437. height: math.unit(250, "feet")
  26438. },
  26439. {
  26440. name: "Macro",
  26441. height: math.unit(1000, "feet")
  26442. },
  26443. {
  26444. name: "Megamacro",
  26445. height: math.unit(10000, "feet")
  26446. }
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26451. {
  26452. regular: {
  26453. height: math.unit(7 + 3 / 12, "feet"),
  26454. weight: math.unit(260, "lb"),
  26455. name: "Regular",
  26456. image: {
  26457. source: "./media/characters/wild/regular.svg",
  26458. extra: 97.45 / 92,
  26459. bottom: 6.8 / 104.3
  26460. }
  26461. },
  26462. biggums: {
  26463. height: math.unit(8 + 6 / 12, "feet"),
  26464. weight: math.unit(425, "lb"),
  26465. name: "Biggums",
  26466. image: {
  26467. source: "./media/characters/wild/biggums.svg",
  26468. extra: 97.45 / 92,
  26469. bottom: 7.5 / 132.34
  26470. }
  26471. },
  26472. mawRegular: {
  26473. height: math.unit(1.24, "feet"),
  26474. name: "Maw (Regular)",
  26475. image: {
  26476. source: "./media/characters/wild/maw.svg"
  26477. }
  26478. },
  26479. mawBiggums: {
  26480. height: math.unit(1.47, "feet"),
  26481. name: "Maw (Biggums)",
  26482. image: {
  26483. source: "./media/characters/wild/maw.svg"
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(7 + 3 / 12, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26497. {
  26498. front: {
  26499. height: math.unit(2.5, "meters"),
  26500. weight: math.unit(200, "kg"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/vidar/front.svg",
  26504. extra: 2994 / 2795,
  26505. bottom: 56 / 3061
  26506. }
  26507. },
  26508. back: {
  26509. height: math.unit(2.5, "meters"),
  26510. weight: math.unit(200, "kg"),
  26511. name: "Back",
  26512. image: {
  26513. source: "./media/characters/vidar/back.svg",
  26514. extra: 3131 / 2928,
  26515. bottom: 13.5 / 3141.5
  26516. }
  26517. },
  26518. feral: {
  26519. height: math.unit(2.5, "meters"),
  26520. weight: math.unit(2000, "kg"),
  26521. name: "Feral",
  26522. image: {
  26523. source: "./media/characters/vidar/feral.svg",
  26524. extra: 2790 / 1765,
  26525. bottom: 6 / 2796
  26526. }
  26527. },
  26528. },
  26529. [
  26530. {
  26531. name: "Normal",
  26532. height: math.unit(2.5, "meters"),
  26533. default: true
  26534. },
  26535. {
  26536. name: "Macro",
  26537. height: math.unit(100, "meters")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(5 + 9 / 12, "feet"),
  26546. weight: math.unit(120, "lb"),
  26547. name: "Front",
  26548. image: {
  26549. source: "./media/characters/ash/front.svg",
  26550. extra: 2189 / 1961,
  26551. bottom: 5.2 / 2194
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(5 + 9 / 12, "feet"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26565. {
  26566. front: {
  26567. height: math.unit(9, "feet"),
  26568. weight: math.unit(10000, "lb"),
  26569. name: "Front",
  26570. image: {
  26571. source: "./media/characters/gygabite/front.svg",
  26572. bottom: 31.7 / 537.8,
  26573. extra: 505 / 370
  26574. }
  26575. },
  26576. },
  26577. [
  26578. {
  26579. name: "Normal",
  26580. height: math.unit(9, "feet"),
  26581. default: true
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26587. {
  26588. front: {
  26589. height: math.unit(12, "feet"),
  26590. weight: math.unit(35000, "lb"),
  26591. name: "Front",
  26592. image: {
  26593. source: "./media/characters/p0tat0/front.svg",
  26594. extra: 1065 / 921,
  26595. bottom: 55.7 / 1121.25
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(12, "feet"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26609. {
  26610. side: {
  26611. height: math.unit(6.5, "feet"),
  26612. weight: math.unit(800, "lb"),
  26613. name: "Side",
  26614. image: {
  26615. source: "./media/characters/dusk/side.svg",
  26616. extra: 615 / 373,
  26617. bottom: 53 / 664
  26618. }
  26619. },
  26620. sitting: {
  26621. height: math.unit(7, "feet"),
  26622. weight: math.unit(800, "lb"),
  26623. name: "Sitting",
  26624. image: {
  26625. source: "./media/characters/dusk/sitting.svg",
  26626. extra: 753 / 425,
  26627. bottom: 33 / 774
  26628. }
  26629. },
  26630. head: {
  26631. height: math.unit(6.1, "feet"),
  26632. name: "Head",
  26633. image: {
  26634. source: "./media/characters/dusk/head.svg"
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(7, "feet"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(15, "feet"),
  26651. weight: math.unit(7000, "lb"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/jay-direwolf/front.svg",
  26655. extra: 1810 / 1732,
  26656. bottom: 66 / 1892
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(15, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(4 + 9 / 12, "feet"),
  26673. weight: math.unit(130, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/anchovie/front.svg",
  26677. extra: 382 / 350,
  26678. bottom: 25 / 409
  26679. }
  26680. },
  26681. back: {
  26682. height: math.unit(4 + 9 / 12, "feet"),
  26683. weight: math.unit(130, "lb"),
  26684. name: "Back",
  26685. image: {
  26686. source: "./media/characters/anchovie/back.svg",
  26687. extra: 385 / 352,
  26688. bottom: 16.6 / 402
  26689. }
  26690. },
  26691. frontDressed: {
  26692. height: math.unit(4 + 9 / 12, "feet"),
  26693. weight: math.unit(130, "lb"),
  26694. name: "Front (Dressed)",
  26695. image: {
  26696. source: "./media/characters/anchovie/front-dressed.svg",
  26697. extra: 382 / 350,
  26698. bottom: 25 / 409
  26699. }
  26700. },
  26701. backDressed: {
  26702. height: math.unit(4 + 9 / 12, "feet"),
  26703. weight: math.unit(130, "lb"),
  26704. name: "Back (Dressed)",
  26705. image: {
  26706. source: "./media/characters/anchovie/back-dressed.svg",
  26707. extra: 385 / 352,
  26708. bottom: 16.6 / 402
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Micro",
  26715. height: math.unit(6.4, "inches")
  26716. },
  26717. {
  26718. name: "Normal",
  26719. height: math.unit(4 + 9 / 12, "feet"),
  26720. default: true
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26726. {
  26727. front: {
  26728. height: math.unit(2, "meters"),
  26729. weight: math.unit(180, "lb"),
  26730. name: "Front",
  26731. image: {
  26732. source: "./media/characters/acidrenamon/front.svg",
  26733. extra: 987 / 890,
  26734. bottom: 22.8 / 1009
  26735. }
  26736. },
  26737. back: {
  26738. height: math.unit(2, "meters"),
  26739. weight: math.unit(180, "lb"),
  26740. name: "Back",
  26741. image: {
  26742. source: "./media/characters/acidrenamon/back.svg",
  26743. extra: 983 / 891,
  26744. bottom: 8.4 / 992
  26745. }
  26746. },
  26747. head: {
  26748. height: math.unit(1.92, "feet"),
  26749. name: "Head",
  26750. image: {
  26751. source: "./media/characters/acidrenamon/head.svg"
  26752. }
  26753. },
  26754. rump: {
  26755. height: math.unit(1.72, "feet"),
  26756. name: "Rump",
  26757. image: {
  26758. source: "./media/characters/acidrenamon/rump.svg"
  26759. }
  26760. },
  26761. tail: {
  26762. height: math.unit(4.2, "feet"),
  26763. name: "Tail",
  26764. image: {
  26765. source: "./media/characters/acidrenamon/tail.svg"
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(2, "meters"),
  26773. default: true
  26774. },
  26775. {
  26776. name: "Minimacro",
  26777. height: math.unit(7, "meters")
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(200, "meters")
  26782. },
  26783. {
  26784. name: "Gigamacro",
  26785. height: math.unit(0.2, "earths")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(6, "feet"),
  26794. weight: math.unit(150, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/kenzie-lee/front.svg",
  26798. extra: 1525 / 1465,
  26799. bottom: 45 / 1570
  26800. }
  26801. },
  26802. side: {
  26803. height: math.unit(6, "feet"),
  26804. weight: math.unit(150, "lb"),
  26805. name: "Side",
  26806. image: {
  26807. source: "./media/characters/kenzie-lee/side.svg",
  26808. extra: 5505 / 5383,
  26809. bottom: 60 / 5573
  26810. }
  26811. },
  26812. paw: {
  26813. height: math.unit(6, "feet"),
  26814. name: "Paw",
  26815. image: {
  26816. source: "./media/characters/kenzie-lee/paw.svg"
  26817. }
  26818. },
  26819. },
  26820. [
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(152, "feet"),
  26824. default: true
  26825. },
  26826. {
  26827. name: "Megamacro",
  26828. height: math.unit(7, "miles")
  26829. },
  26830. {
  26831. name: "Gigamacro",
  26832. height: math.unit(8000, "miles")
  26833. },
  26834. ]
  26835. ))
  26836. characterMakers.push(() => makeCharacter(
  26837. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26838. {
  26839. side: {
  26840. height: math.unit(6, "feet"),
  26841. weight: math.unit(150, "lb"),
  26842. name: "Side",
  26843. image: {
  26844. source: "./media/characters/withers/side.svg",
  26845. extra: 1830 / 1728,
  26846. bottom: 96 / 1927
  26847. }
  26848. },
  26849. front: {
  26850. height: math.unit(6, "feet"),
  26851. weight: math.unit(150, "lb"),
  26852. name: "Front",
  26853. image: {
  26854. source: "./media/characters/withers/front.svg",
  26855. extra: 1514 / 1438,
  26856. bottom: 118 / 1632
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Macro",
  26863. height: math.unit(168, "feet"),
  26864. default: true
  26865. },
  26866. {
  26867. name: "Megamacro",
  26868. height: math.unit(15, "miles")
  26869. }
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26874. {
  26875. front: {
  26876. height: math.unit(6 + 7 / 12, "feet"),
  26877. weight: math.unit(250, "lb"),
  26878. name: "Front",
  26879. image: {
  26880. source: "./media/characters/nemoskii/front.svg",
  26881. extra: 2270 / 1734,
  26882. bottom: 86 / 2354
  26883. }
  26884. },
  26885. back: {
  26886. height: math.unit(6 + 7 / 12, "feet"),
  26887. weight: math.unit(250, "lb"),
  26888. name: "Back",
  26889. image: {
  26890. source: "./media/characters/nemoskii/back.svg",
  26891. extra: 1845 / 1788,
  26892. bottom: 10.5 / 1852
  26893. }
  26894. },
  26895. head: {
  26896. height: math.unit(1.31, "feet"),
  26897. name: "Head",
  26898. image: {
  26899. source: "./media/characters/nemoskii/head.svg"
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Micro",
  26906. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26907. },
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(6 + 7 / 12, "feet"),
  26911. default: true
  26912. },
  26913. {
  26914. name: "Macro",
  26915. height: math.unit((6 + 7 / 12) * 150, "feet")
  26916. },
  26917. {
  26918. name: "Macro+",
  26919. height: math.unit((6 + 7 / 12) * 500, "feet")
  26920. },
  26921. {
  26922. name: "Megamacro",
  26923. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(1, "mile"),
  26932. weight: math.unit(265261.9, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/shui/front.svg",
  26936. extra: 1633 / 1564,
  26937. bottom: 91.5 / 1726
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Macro",
  26944. height: math.unit(1, "mile"),
  26945. default: true
  26946. },
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(12 + 6 / 12, "feet"),
  26954. weight: math.unit(1342, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/arokh-takakura/front.svg",
  26958. extra: 1089 / 1043,
  26959. bottom: 77.4 / 1176.7
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(12 + 6 / 12, "feet"),
  26964. weight: math.unit(1342, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/arokh-takakura/back.svg",
  26968. extra: 1046 / 1019,
  26969. bottom: 102 / 1150
  26970. }
  26971. },
  26972. },
  26973. [
  26974. {
  26975. name: "Big",
  26976. height: math.unit(12 + 6 / 12, "feet"),
  26977. default: true
  26978. },
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26983. {
  26984. front: {
  26985. height: math.unit(5 + 6 / 12, "feet"),
  26986. weight: math.unit(150, "lb"),
  26987. name: "Front",
  26988. image: {
  26989. source: "./media/characters/theo/front.svg",
  26990. extra: 1184 / 1131,
  26991. bottom: 7.4 / 1191
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Micro",
  26998. height: math.unit(5, "inches")
  26999. },
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(5 + 6 / 12, "feet"),
  27003. default: true
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27009. {
  27010. front: {
  27011. height: math.unit(5 + 9 / 12, "feet"),
  27012. weight: math.unit(130, "lb"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/cecelia-swift/front.svg",
  27016. extra: 502 / 484,
  27017. bottom: 23 / 523
  27018. }
  27019. },
  27020. back: {
  27021. height: math.unit(5 + 9 / 12, "feet"),
  27022. weight: math.unit(130, "lb"),
  27023. name: "Back",
  27024. image: {
  27025. source: "./media/characters/cecelia-swift/back.svg",
  27026. extra: 499 / 485,
  27027. bottom: 12 / 511
  27028. }
  27029. },
  27030. head: {
  27031. height: math.unit(0.90, "feet"),
  27032. name: "Head",
  27033. image: {
  27034. source: "./media/characters/cecelia-swift/head.svg"
  27035. }
  27036. },
  27037. rump: {
  27038. height: math.unit(1.75, "feet"),
  27039. name: "Rump",
  27040. image: {
  27041. source: "./media/characters/cecelia-swift/rump.svg"
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(5 + 9 / 12, "feet"),
  27049. default: true
  27050. },
  27051. {
  27052. name: "Big",
  27053. height: math.unit(50, "feet")
  27054. },
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(100, "feet")
  27058. },
  27059. {
  27060. name: "Macro+",
  27061. height: math.unit(500, "feet")
  27062. },
  27063. {
  27064. name: "Macro++",
  27065. height: math.unit(1000, "feet")
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(6, "feet"),
  27074. weight: math.unit(150, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/kaunan/front.svg",
  27078. extra: 2890 / 2523,
  27079. bottom: 49 / 2939
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Macro",
  27086. height: math.unit(150, "feet"),
  27087. default: true
  27088. },
  27089. ]
  27090. ))
  27091. characterMakers.push(() => makeCharacter(
  27092. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27093. {
  27094. front: {
  27095. height: math.unit(175, "cm"),
  27096. weight: math.unit(60, "kg"),
  27097. name: "Front",
  27098. image: {
  27099. source: "./media/characters/fei/front.svg",
  27100. extra: 2581 / 2400,
  27101. bottom: 82.2 / 2663
  27102. }
  27103. },
  27104. },
  27105. [
  27106. {
  27107. name: "Mortal",
  27108. height: math.unit(175, "cm")
  27109. },
  27110. {
  27111. name: "Normal",
  27112. height: math.unit(3500, "m"),
  27113. default: true
  27114. },
  27115. {
  27116. name: "Stroll",
  27117. height: math.unit(17.5, "km")
  27118. },
  27119. {
  27120. name: "Showoff",
  27121. height: math.unit(175, "km")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(7, "feet"),
  27130. weight: math.unit(1000, "kg"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/edrax/front.svg",
  27134. extra: 2838 / 2550,
  27135. bottom: 130 / 2968
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Small",
  27142. height: math.unit(7, "feet")
  27143. },
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(1500, "meters")
  27147. },
  27148. {
  27149. name: "Mega",
  27150. height: math.unit(12000000, "km"),
  27151. default: true
  27152. },
  27153. {
  27154. name: "Megamacro",
  27155. height: math.unit(10600000, "lightyears")
  27156. },
  27157. {
  27158. name: "Hypermacro",
  27159. height: math.unit(256, "yottameters")
  27160. },
  27161. ]
  27162. ))
  27163. characterMakers.push(() => makeCharacter(
  27164. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27165. {
  27166. front: {
  27167. height: math.unit(10, "feet"),
  27168. weight: math.unit(750, "lb"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/clove/front.svg",
  27172. extra: 2031 / 1860,
  27173. bottom: 47.8 / 2080
  27174. }
  27175. },
  27176. back: {
  27177. height: math.unit(10, "feet"),
  27178. weight: math.unit(750, "lb"),
  27179. name: "Back",
  27180. image: {
  27181. source: "./media/characters/clove/back.svg",
  27182. extra: 2025 / 1859,
  27183. bottom: 46 / 2071
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Normal",
  27190. height: math.unit(10, "feet"),
  27191. default: true
  27192. },
  27193. ]
  27194. ))
  27195. characterMakers.push(() => makeCharacter(
  27196. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27197. {
  27198. front: {
  27199. height: math.unit(4, "feet"),
  27200. weight: math.unit(50, "lb"),
  27201. name: "Front",
  27202. image: {
  27203. source: "./media/characters/alex-rabbit/front.svg",
  27204. extra: 507 / 458,
  27205. bottom: 18.5 / 527
  27206. }
  27207. },
  27208. back: {
  27209. height: math.unit(4, "feet"),
  27210. weight: math.unit(50, "lb"),
  27211. name: "Back",
  27212. image: {
  27213. source: "./media/characters/alex-rabbit/back.svg",
  27214. extra: 502 / 460,
  27215. bottom: 18.9 / 521
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(4, "feet"),
  27223. default: true
  27224. },
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27229. {
  27230. front: {
  27231. height: math.unit(1 + 3 / 12, "feet"),
  27232. weight: math.unit(80, "lb"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/zander-rose/front.svg",
  27236. extra: 916 / 797,
  27237. bottom: 17 / 933
  27238. }
  27239. },
  27240. back: {
  27241. height: math.unit(1 + 3 / 12, "feet"),
  27242. weight: math.unit(80, "lb"),
  27243. name: "Back",
  27244. image: {
  27245. source: "./media/characters/zander-rose/back.svg",
  27246. extra: 903 / 779,
  27247. bottom: 31 / 934
  27248. }
  27249. },
  27250. },
  27251. [
  27252. {
  27253. name: "Normal",
  27254. height: math.unit(1 + 3 / 12, "feet"),
  27255. default: true
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27261. {
  27262. anthro: {
  27263. height: math.unit(6, "feet"),
  27264. weight: math.unit(150, "lb"),
  27265. name: "Anthro",
  27266. image: {
  27267. source: "./media/characters/razz/anthro.svg",
  27268. extra: 1437 / 1343,
  27269. bottom: 48 / 1485
  27270. }
  27271. },
  27272. feral: {
  27273. height: math.unit(6, "feet"),
  27274. weight: math.unit(150, "lb"),
  27275. name: "Feral",
  27276. image: {
  27277. source: "./media/characters/razz/feral.svg",
  27278. extra: 2569 / 1385,
  27279. bottom: 95 / 2664
  27280. }
  27281. },
  27282. },
  27283. [
  27284. {
  27285. name: "Normal",
  27286. height: math.unit(6, "feet"),
  27287. default: true
  27288. },
  27289. ]
  27290. ))
  27291. characterMakers.push(() => makeCharacter(
  27292. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27293. {
  27294. front: {
  27295. height: math.unit(9 + 4 / 12, "feet"),
  27296. weight: math.unit(500, "lb"),
  27297. name: "Front",
  27298. image: {
  27299. source: "./media/characters/morrigan/front.svg",
  27300. extra: 2707 / 2579,
  27301. bottom: 156 / 2863
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(9 + 4 / 12, "feet"),
  27309. default: true
  27310. },
  27311. ]
  27312. ))
  27313. characterMakers.push(() => makeCharacter(
  27314. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27315. {
  27316. front: {
  27317. height: math.unit(5, "stories"),
  27318. weight: math.unit(4000, "lb"),
  27319. name: "Front",
  27320. image: {
  27321. source: "./media/characters/jenene/front.svg",
  27322. extra: 1780 / 1710,
  27323. bottom: 57 / 1837
  27324. }
  27325. },
  27326. },
  27327. [
  27328. {
  27329. name: "Normal",
  27330. height: math.unit(5, "stories"),
  27331. default: true
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(6, "feet"),
  27340. weight: math.unit(150, "lb"),
  27341. name: "Front",
  27342. image: {
  27343. source: "./media/characters/vix-archaser/front.svg",
  27344. extra: 2767 / 2562,
  27345. bottom: 36 / 2803
  27346. }
  27347. },
  27348. },
  27349. [
  27350. {
  27351. name: "Micro",
  27352. height: math.unit(1, "foot")
  27353. },
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(6 + 5 / 12, "feet")
  27357. },
  27358. {
  27359. name: "Minimacro",
  27360. height: math.unit(500, "feet")
  27361. },
  27362. {
  27363. name: "Macro",
  27364. height: math.unit(4, "miles")
  27365. },
  27366. {
  27367. name: "Megamacro",
  27368. height: math.unit(250, "miles"),
  27369. default: true
  27370. },
  27371. {
  27372. name: "Gigamacro",
  27373. height: math.unit(1, "universe")
  27374. },
  27375. {
  27376. name: "Endgame",
  27377. height: math.unit(100, "multiverses")
  27378. }
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27383. {
  27384. taurSfw: {
  27385. height: math.unit(10, "meters"),
  27386. weight: math.unit(17500, "kg"),
  27387. name: "Taur",
  27388. image: {
  27389. source: "./media/characters/faey/taur-sfw.svg",
  27390. extra: 1200 / 968,
  27391. bottom: 41 / 1241
  27392. }
  27393. },
  27394. chestmaw: {
  27395. height: math.unit(2.01, "meters"),
  27396. name: "Chestmaw",
  27397. image: {
  27398. source: "./media/characters/faey/chestmaw.svg"
  27399. }
  27400. },
  27401. foot: {
  27402. height: math.unit(2.43, "meters"),
  27403. name: "Foot",
  27404. image: {
  27405. source: "./media/characters/faey/foot.svg"
  27406. }
  27407. },
  27408. jaws: {
  27409. height: math.unit(1.66, "meters"),
  27410. name: "Jaws",
  27411. image: {
  27412. source: "./media/characters/faey/jaws.svg"
  27413. }
  27414. },
  27415. tongues: {
  27416. height: math.unit(2.01, "meters"),
  27417. name: "Tongues",
  27418. image: {
  27419. source: "./media/characters/faey/tongues.svg"
  27420. }
  27421. },
  27422. },
  27423. [
  27424. {
  27425. name: "Small",
  27426. height: math.unit(10, "meters"),
  27427. default: true
  27428. },
  27429. {
  27430. name: "Big",
  27431. height: math.unit(500000, "km")
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(7, "feet"),
  27440. weight: math.unit(275, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/roku/front.svg",
  27444. extra: 903 / 878,
  27445. bottom: 37 / 940
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(7, "feet"),
  27453. default: true
  27454. },
  27455. {
  27456. name: "Macro",
  27457. height: math.unit(500, "feet")
  27458. },
  27459. {
  27460. name: "Megamacro",
  27461. height: math.unit(200, "miles")
  27462. },
  27463. ]
  27464. ))
  27465. characterMakers.push(() => makeCharacter(
  27466. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27467. {
  27468. front: {
  27469. height: math.unit(6 + 2 / 12, "feet"),
  27470. weight: math.unit(150, "lb"),
  27471. name: "Front",
  27472. image: {
  27473. source: "./media/characters/lira/front.svg",
  27474. extra: 1727 / 1605,
  27475. bottom: 26 / 1753
  27476. }
  27477. },
  27478. back: {
  27479. height: math.unit(6 + 2 / 12, "feet"),
  27480. weight: math.unit(150, "lb"),
  27481. name: "Back",
  27482. image: {
  27483. source: "./media/characters/lira/back.svg",
  27484. extra: 1713 / 159,
  27485. bottom: 20 / 1733
  27486. }
  27487. },
  27488. hand: {
  27489. height: math.unit(0.75, "feet"),
  27490. name: "Hand",
  27491. image: {
  27492. source: "./media/characters/lira/hand.svg"
  27493. }
  27494. },
  27495. maw: {
  27496. height: math.unit(0.65, "feet"),
  27497. name: "Maw",
  27498. image: {
  27499. source: "./media/characters/lira/maw.svg"
  27500. }
  27501. },
  27502. pawDigi: {
  27503. height: math.unit(1.6, "feet"),
  27504. name: "Paw Digi",
  27505. image: {
  27506. source: "./media/characters/lira/paw-digi.svg"
  27507. }
  27508. },
  27509. pawPlanti: {
  27510. height: math.unit(1.4, "feet"),
  27511. name: "Paw Planti",
  27512. image: {
  27513. source: "./media/characters/lira/paw-planti.svg"
  27514. }
  27515. },
  27516. },
  27517. [
  27518. {
  27519. name: "Normal",
  27520. height: math.unit(6 + 2 / 12, "feet"),
  27521. default: true
  27522. },
  27523. {
  27524. name: "Macro",
  27525. height: math.unit(100, "feet")
  27526. },
  27527. {
  27528. name: "Macro²",
  27529. height: math.unit(1600, "feet")
  27530. },
  27531. {
  27532. name: "Planetary",
  27533. height: math.unit(20, "earths")
  27534. },
  27535. ]
  27536. ))
  27537. characterMakers.push(() => makeCharacter(
  27538. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27539. {
  27540. front: {
  27541. height: math.unit(6, "feet"),
  27542. weight: math.unit(150, "lb"),
  27543. name: "Front",
  27544. image: {
  27545. source: "./media/characters/hadjet/front.svg",
  27546. extra: 1480 / 1346,
  27547. bottom: 26 / 1506
  27548. }
  27549. },
  27550. frontNsfw: {
  27551. height: math.unit(6, "feet"),
  27552. weight: math.unit(150, "lb"),
  27553. name: "Front (NSFW)",
  27554. image: {
  27555. source: "./media/characters/hadjet/front-nsfw.svg",
  27556. extra: 1440 / 1358,
  27557. bottom: 52 / 1492
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Macro",
  27564. height: math.unit(10, "stories"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Megamacro",
  27569. height: math.unit(1.5, "miles")
  27570. },
  27571. {
  27572. name: "Megamacro+",
  27573. height: math.unit(5, "miles")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27579. {
  27580. side: {
  27581. height: math.unit(106, "feet"),
  27582. weight: math.unit(500, "tonnes"),
  27583. name: "Side",
  27584. image: {
  27585. source: "./media/characters/kodran/side.svg",
  27586. extra: 553 / 480,
  27587. bottom: 33 / 586
  27588. }
  27589. },
  27590. front: {
  27591. height: math.unit(132, "feet"),
  27592. weight: math.unit(500, "tonnes"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/kodran/front.svg",
  27596. extra: 667 / 643,
  27597. bottom: 42 / 709
  27598. }
  27599. },
  27600. flying: {
  27601. height: math.unit(350, "feet"),
  27602. weight: math.unit(500, "tonnes"),
  27603. name: "Flying",
  27604. image: {
  27605. source: "./media/characters/kodran/flying.svg"
  27606. }
  27607. },
  27608. foot: {
  27609. height: math.unit(33, "feet"),
  27610. name: "Foot",
  27611. image: {
  27612. source: "./media/characters/kodran/foot.svg"
  27613. }
  27614. },
  27615. footFront: {
  27616. height: math.unit(19, "feet"),
  27617. name: "Foot (Front)",
  27618. image: {
  27619. source: "./media/characters/kodran/foot-front.svg",
  27620. extra: 261 / 261,
  27621. bottom: 91 / 352
  27622. }
  27623. },
  27624. headFront: {
  27625. height: math.unit(53, "feet"),
  27626. name: "Head (Front)",
  27627. image: {
  27628. source: "./media/characters/kodran/head-front.svg"
  27629. }
  27630. },
  27631. headSide: {
  27632. height: math.unit(65, "feet"),
  27633. name: "Head (Side)",
  27634. image: {
  27635. source: "./media/characters/kodran/head-side.svg"
  27636. }
  27637. },
  27638. throat: {
  27639. height: math.unit(79, "feet"),
  27640. name: "Throat",
  27641. image: {
  27642. source: "./media/characters/kodran/throat.svg"
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Large",
  27649. height: math.unit(106, "feet"),
  27650. default: true
  27651. },
  27652. ]
  27653. ))
  27654. characterMakers.push(() => makeCharacter(
  27655. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27656. {
  27657. side: {
  27658. height: math.unit(11, "feet"),
  27659. weight: math.unit(150, "lb"),
  27660. name: "Side",
  27661. image: {
  27662. source: "./media/characters/pyxaron/side.svg",
  27663. extra: 305 / 195,
  27664. bottom: 17 / 322
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(11, "feet"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(6, "feet"),
  27681. weight: math.unit(150, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/meep/front.svg",
  27685. extra: 88 / 80,
  27686. bottom: 6 / 94
  27687. }
  27688. },
  27689. },
  27690. [
  27691. {
  27692. name: "Fun Sized",
  27693. height: math.unit(2, "inches"),
  27694. default: true
  27695. },
  27696. {
  27697. name: "Friend Sized",
  27698. height: math.unit(8, "inches")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(15, "feet"),
  27707. weight: math.unit(2500, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/holly-rabbit/front.svg",
  27711. extra: 1433 / 1233,
  27712. bottom: 125 / 1558
  27713. }
  27714. },
  27715. dick: {
  27716. height: math.unit(4.6, "feet"),
  27717. name: "Dick",
  27718. image: {
  27719. source: "./media/characters/holly-rabbit/dick.svg"
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(15, "feet"),
  27727. default: true
  27728. },
  27729. {
  27730. name: "Macro",
  27731. height: math.unit(250, "feet")
  27732. },
  27733. {
  27734. name: "Macro+",
  27735. height: math.unit(2500, "feet")
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(3.02, "meters"),
  27744. weight: math.unit(500, "kg"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/drena/front.svg",
  27748. extra: 282 / 243,
  27749. bottom: 8 / 290
  27750. }
  27751. },
  27752. side: {
  27753. height: math.unit(3.02, "meters"),
  27754. weight: math.unit(500, "kg"),
  27755. name: "Side",
  27756. image: {
  27757. source: "./media/characters/drena/side.svg",
  27758. extra: 280 / 245,
  27759. bottom: 10 / 290
  27760. }
  27761. },
  27762. back: {
  27763. height: math.unit(3.02, "meters"),
  27764. weight: math.unit(500, "kg"),
  27765. name: "Back",
  27766. image: {
  27767. source: "./media/characters/drena/back.svg",
  27768. extra: 278 / 243,
  27769. bottom: 2 / 280
  27770. }
  27771. },
  27772. foot: {
  27773. height: math.unit(0.75, "meters"),
  27774. name: "Foot",
  27775. image: {
  27776. source: "./media/characters/drena/foot.svg"
  27777. }
  27778. },
  27779. maw: {
  27780. height: math.unit(0.82, "meters"),
  27781. name: "Maw",
  27782. image: {
  27783. source: "./media/characters/drena/maw.svg"
  27784. }
  27785. },
  27786. rump: {
  27787. height: math.unit(0.93, "meters"),
  27788. name: "Rump",
  27789. image: {
  27790. source: "./media/characters/drena/rump.svg"
  27791. }
  27792. },
  27793. },
  27794. [
  27795. {
  27796. name: "Normal",
  27797. height: math.unit(3.02, "meters"),
  27798. default: true
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(6 + 4 / 12, "feet"),
  27807. weight: math.unit(250, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/remmyzilla/front.svg",
  27811. extra: 4033 / 3588,
  27812. bottom: 123 / 4156
  27813. }
  27814. },
  27815. back: {
  27816. height: math.unit(6 + 4 / 12, "feet"),
  27817. weight: math.unit(250, "lb"),
  27818. name: "Back",
  27819. image: {
  27820. source: "./media/characters/remmyzilla/back.svg",
  27821. extra: 2687 / 2555,
  27822. bottom: 48 / 2735
  27823. }
  27824. },
  27825. frontFancy: {
  27826. height: math.unit(6 + 4 / 12, "feet"),
  27827. weight: math.unit(250, "lb"),
  27828. name: "Front (Fancy)",
  27829. image: {
  27830. source: "./media/characters/remmyzilla/front-fancy.svg",
  27831. extra: 4119 / 3419,
  27832. bottom: 237 / 4356
  27833. }
  27834. },
  27835. paw: {
  27836. height: math.unit(1.73, "feet"),
  27837. name: "Paw",
  27838. image: {
  27839. source: "./media/characters/remmyzilla/paw.svg"
  27840. }
  27841. },
  27842. maw: {
  27843. height: math.unit(1.73, "feet"),
  27844. name: "Maw",
  27845. image: {
  27846. source: "./media/characters/remmyzilla/maw.svg"
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(6 + 4 / 12, "feet")
  27854. },
  27855. {
  27856. name: "Minimacro",
  27857. height: math.unit(12 + 8 / 12, "feet")
  27858. },
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(640, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Megamacro",
  27866. height: math.unit(6400, "feet")
  27867. },
  27868. {
  27869. name: "Gigamacro",
  27870. height: math.unit(64000, "miles")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(2.5, "meters"),
  27879. weight: math.unit(300, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/lawrence/front.svg",
  27883. extra: 357 / 335,
  27884. bottom: 30 / 387
  27885. }
  27886. },
  27887. back: {
  27888. height: math.unit(2.5, "meters"),
  27889. weight: math.unit(300, "lb"),
  27890. name: "Back",
  27891. image: {
  27892. source: "./media/characters/lawrence/back.svg",
  27893. extra: 357 / 338,
  27894. bottom: 16 / 373
  27895. }
  27896. },
  27897. head: {
  27898. height: math.unit(0.9, "meter"),
  27899. name: "Head",
  27900. image: {
  27901. source: "./media/characters/lawrence/head.svg"
  27902. }
  27903. },
  27904. maw: {
  27905. height: math.unit(0.7, "meter"),
  27906. name: "Maw",
  27907. image: {
  27908. source: "./media/characters/lawrence/maw.svg"
  27909. }
  27910. },
  27911. footBottom: {
  27912. height: math.unit(0.5, "meter"),
  27913. name: "Foot (Bottom)",
  27914. image: {
  27915. source: "./media/characters/lawrence/foot-bottom.svg"
  27916. }
  27917. },
  27918. footTop: {
  27919. height: math.unit(0.5, "meter"),
  27920. name: "Foot (Top)",
  27921. image: {
  27922. source: "./media/characters/lawrence/foot-top.svg"
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(2.5, "meters"),
  27930. default: true
  27931. },
  27932. {
  27933. name: "Macro",
  27934. height: math.unit(95, "meters")
  27935. },
  27936. {
  27937. name: "Megamacro",
  27938. height: math.unit(150, "km")
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27944. {
  27945. front: {
  27946. height: math.unit(4.2, "meters"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/sydney/front.svg",
  27950. extra: 1323 / 1277,
  27951. bottom: 111 / 1434
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(4.2, "meters"),
  27959. default: true
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27965. {
  27966. back: {
  27967. height: math.unit(201, "feet"),
  27968. name: "Back",
  27969. image: {
  27970. source: "./media/characters/jessica/back.svg",
  27971. extra: 273 / 259,
  27972. bottom: 7 / 280
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(201, "feet"),
  27980. default: true
  27981. },
  27982. {
  27983. name: "Megamacro",
  27984. height: math.unit(8, "miles")
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27990. {
  27991. side: {
  27992. height: math.unit(320, "cm"),
  27993. name: "Side",
  27994. image: {
  27995. source: "./media/characters/victoria/side.svg",
  27996. extra: 778 / 346,
  27997. bottom: 56 / 834
  27998. }
  27999. },
  28000. maw: {
  28001. height: math.unit(5.9, "feet"),
  28002. name: "Maw",
  28003. image: {
  28004. source: "./media/characters/victoria/maw.svg"
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Normal",
  28011. height: math.unit(320, "cm"),
  28012. default: true
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28018. {
  28019. front: {
  28020. height: math.unit(5 + 6 / 12, "feet"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/cat/front.svg",
  28024. extra: 1374 / 1257,
  28025. bottom: 59 / 1433
  28026. }
  28027. },
  28028. back: {
  28029. height: math.unit(5 + 6 / 12, "feet"),
  28030. name: "Back",
  28031. image: {
  28032. source: "./media/characters/cat/back.svg",
  28033. extra: 1337 / 1226,
  28034. bottom: 34 / 1371
  28035. }
  28036. },
  28037. taur: {
  28038. height: math.unit(7, "feet"),
  28039. name: "Taur",
  28040. image: {
  28041. source: "./media/characters/cat/taur.svg",
  28042. extra: 1345 / 1231,
  28043. bottom: 66 / 1411
  28044. }
  28045. },
  28046. lucario: {
  28047. height: math.unit(4, "feet"),
  28048. name: "Lucario",
  28049. image: {
  28050. source: "./media/characters/cat/lucario.svg",
  28051. extra: 1470 / 1318,
  28052. bottom: 65 / 1535
  28053. }
  28054. },
  28055. megaLucario: {
  28056. height: math.unit(4, "feet"),
  28057. name: "Mega Lucario",
  28058. image: {
  28059. source: "./media/characters/cat/mega-lucario.svg",
  28060. extra: 1515 / 1319,
  28061. bottom: 63 / 1578
  28062. }
  28063. },
  28064. nickit: {
  28065. height: math.unit(2, "feet"),
  28066. name: "Nickit",
  28067. image: {
  28068. source: "./media/characters/cat/nickit.svg",
  28069. extra: 1980 / 1585,
  28070. bottom: 102 / 2082
  28071. }
  28072. },
  28073. lopunnyFront: {
  28074. height: math.unit(5, "feet"),
  28075. name: "Lopunny (Front)",
  28076. image: {
  28077. source: "./media/characters/cat/lopunny-front.svg",
  28078. extra: 1782 / 1469,
  28079. bottom: 38 / 1820
  28080. }
  28081. },
  28082. lopunnyBack: {
  28083. height: math.unit(5, "feet"),
  28084. name: "Lopunny (Back)",
  28085. image: {
  28086. source: "./media/characters/cat/lopunny-back.svg",
  28087. extra: 1660 / 1490,
  28088. bottom: 25 / 1685
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Really small",
  28095. height: math.unit(1, "nm")
  28096. },
  28097. {
  28098. name: "Micro",
  28099. height: math.unit(5, "inches")
  28100. },
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(5 + 6 / 12, "feet"),
  28104. default: true
  28105. },
  28106. {
  28107. name: "Macro",
  28108. height: math.unit(50, "feet")
  28109. },
  28110. {
  28111. name: "Macro+",
  28112. height: math.unit(150, "feet")
  28113. },
  28114. {
  28115. name: "Megamacro",
  28116. height: math.unit(100, "miles")
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28122. {
  28123. front: {
  28124. height: math.unit(63.4, "meters"),
  28125. weight: math.unit(3.28349e+6, "kilograms"),
  28126. name: "Front",
  28127. image: {
  28128. source: "./media/characters/kirina-violet/front.svg",
  28129. extra: 2812 / 2725,
  28130. bottom: 0 / 2812
  28131. }
  28132. },
  28133. back: {
  28134. height: math.unit(63.4, "meters"),
  28135. weight: math.unit(3.28349e+6, "kilograms"),
  28136. name: "Back",
  28137. image: {
  28138. source: "./media/characters/kirina-violet/back.svg",
  28139. extra: 2812 / 2725,
  28140. bottom: 0 / 2812
  28141. }
  28142. },
  28143. mouth: {
  28144. height: math.unit(4.35, "meters"),
  28145. name: "Mouth",
  28146. image: {
  28147. source: "./media/characters/kirina-violet/mouth.svg"
  28148. }
  28149. },
  28150. paw: {
  28151. height: math.unit(5.6, "meters"),
  28152. name: "Paw",
  28153. image: {
  28154. source: "./media/characters/kirina-violet/paw.svg"
  28155. }
  28156. },
  28157. tail: {
  28158. height: math.unit(18, "meters"),
  28159. name: "Tail",
  28160. image: {
  28161. source: "./media/characters/kirina-violet/tail.svg"
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Macro",
  28168. height: math.unit(63.4, "meters"),
  28169. default: true
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28175. {
  28176. front: {
  28177. height: math.unit(60, "feet"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/cat-gigachu/front.svg",
  28181. extra: 1024 / 780,
  28182. bottom: 23 / 1047
  28183. }
  28184. },
  28185. back: {
  28186. height: math.unit(60, "feet"),
  28187. name: "Back",
  28188. image: {
  28189. source: "./media/characters/cat-gigachu/back.svg",
  28190. extra: 1024 / 780,
  28191. bottom: 23 / 1047
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Dynamax",
  28198. height: math.unit(60, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(6, "feet"),
  28208. weight: math.unit(150, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/sfaiyan/front.svg",
  28212. extra: 999 / 978,
  28213. bottom: 5 / 1004
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(1.82, "meters")
  28221. },
  28222. {
  28223. name: "Giant",
  28224. height: math.unit(2.27, "km"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(179, "cm"),
  28234. weight: math.unit(100, "kg"),
  28235. name: "Front",
  28236. image: {
  28237. source: "./media/characters/raunehkeli/front.svg",
  28238. extra: 1934 / 1926,
  28239. bottom: 0 / 1934
  28240. }
  28241. },
  28242. },
  28243. [
  28244. {
  28245. name: "Normal",
  28246. height: math.unit(179, "cm")
  28247. },
  28248. {
  28249. name: "Maximum",
  28250. height: math.unit(575, "meters"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(6, "feet"),
  28260. weight: math.unit(150, "lb"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28264. extra: 2625 / 2518,
  28265. bottom: 60 / 2685
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(6 + 2 / 12, "feet"),
  28273. default: true
  28274. },
  28275. {
  28276. name: "Macro",
  28277. height: math.unit(1180, "feet")
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(5 + 6 / 12, "feet"),
  28286. weight: math.unit(108, "lb"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/lilith-zott/front.svg",
  28290. extra: 2510 / 2238,
  28291. bottom: 100 / 2610
  28292. }
  28293. },
  28294. frontDressed: {
  28295. height: math.unit(5 + 6 / 12, "feet"),
  28296. weight: math.unit(108, "lb"),
  28297. name: "Front (Dressed)",
  28298. image: {
  28299. source: "./media/characters/lilith-zott/front-dressed.svg",
  28300. extra: 2510 / 2238,
  28301. bottom: 100 / 2610
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(5 + 6 / 12, "feet")
  28309. },
  28310. {
  28311. name: "Macro",
  28312. height: math.unit(200, "feet"),
  28313. default: true
  28314. },
  28315. {
  28316. name: "Macro+",
  28317. height: math.unit(1030, "feet")
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(6, "feet"),
  28326. weight: math.unit(150, "lb"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28330. extra: 2567 / 2435,
  28331. bottom: 39 / 2606
  28332. }
  28333. },
  28334. frontSuper: {
  28335. height: math.unit(6, "feet"),
  28336. name: "Front (Super)",
  28337. image: {
  28338. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28339. extra: 2567 / 2435,
  28340. bottom: 39 / 2606
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(5 + 10 / 12, "feet")
  28348. },
  28349. {
  28350. name: "Macro",
  28351. height: math.unit(220, "feet"),
  28352. default: true
  28353. },
  28354. {
  28355. name: "Macro+",
  28356. height: math.unit(1100, "feet")
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(100, "miles"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/sona/front.svg",
  28368. extra: 2433 / 2201,
  28369. bottom: 53 / 2486
  28370. }
  28371. },
  28372. foot: {
  28373. height: math.unit(16.1, "miles"),
  28374. name: "Foot",
  28375. image: {
  28376. source: "./media/characters/sona/foot.svg"
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Macro",
  28383. height: math.unit(100, "miles"),
  28384. default: true
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(6, "feet"),
  28393. weight: math.unit(150, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/bailey/front.svg",
  28397. extra: 1778 / 1724,
  28398. bottom: 30 / 1808
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Micro",
  28405. height: math.unit(4, "inches")
  28406. },
  28407. {
  28408. name: "Normal",
  28409. height: math.unit(5 + 5 / 12, "feet"),
  28410. default: true
  28411. },
  28412. {
  28413. name: "Macro",
  28414. height: math.unit(250, "feet")
  28415. },
  28416. {
  28417. name: "Megamacro",
  28418. height: math.unit(100, "miles")
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28424. {
  28425. front: {
  28426. height: math.unit(5 + 2 / 12, "feet"),
  28427. weight: math.unit(120, "lb"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/snaps/front.svg",
  28431. extra: 2370 / 2177,
  28432. bottom: 48 / 2418
  28433. }
  28434. },
  28435. back: {
  28436. height: math.unit(5 + 2 / 12, "feet"),
  28437. weight: math.unit(120, "lb"),
  28438. name: "Back",
  28439. image: {
  28440. source: "./media/characters/snaps/back.svg",
  28441. extra: 2408 / 2258,
  28442. bottom: 15 / 2423
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Micro",
  28449. height: math.unit(9, "inches")
  28450. },
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(5 + 2 / 12, "feet"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Mini Macro",
  28458. height: math.unit(10, "feet")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(1.8, "meters"),
  28467. weight: math.unit(85, "kg"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/azteck/front.svg",
  28471. extra: 2815 / 2625,
  28472. bottom: 89 / 2904
  28473. }
  28474. },
  28475. back: {
  28476. height: math.unit(1.8, "meters"),
  28477. weight: math.unit(85, "kg"),
  28478. name: "Back",
  28479. image: {
  28480. source: "./media/characters/azteck/back.svg",
  28481. extra: 2856 / 2648,
  28482. bottom: 85 / 2941
  28483. }
  28484. },
  28485. frontDressed: {
  28486. height: math.unit(1.8, "meters"),
  28487. weight: math.unit(85, "kg"),
  28488. name: "Front (Dressed)",
  28489. image: {
  28490. source: "./media/characters/azteck/front-dressed.svg",
  28491. extra: 2147 / 2003,
  28492. bottom: 68 / 2215
  28493. }
  28494. },
  28495. head: {
  28496. height: math.unit(0.47, "meters"),
  28497. weight: math.unit(85, "kg"),
  28498. name: "Head",
  28499. image: {
  28500. source: "./media/characters/azteck/head.svg"
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Bite sized",
  28507. height: math.unit(16, "cm")
  28508. },
  28509. {
  28510. name: "Normal",
  28511. height: math.unit(1.8, "meters"),
  28512. default: true
  28513. },
  28514. ]
  28515. ))
  28516. characterMakers.push(() => makeCharacter(
  28517. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28518. {
  28519. front: {
  28520. height: math.unit(6, "feet"),
  28521. weight: math.unit(150, "lb"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/pidge/front.svg",
  28525. extra: 620 / 588,
  28526. bottom: 9 / 629
  28527. }
  28528. },
  28529. back: {
  28530. height: math.unit(6, "feet"),
  28531. weight: math.unit(150, "lb"),
  28532. name: "Back",
  28533. image: {
  28534. source: "./media/characters/pidge/back.svg",
  28535. extra: 620 / 588,
  28536. bottom: 9 / 629
  28537. }
  28538. },
  28539. },
  28540. [
  28541. {
  28542. name: "Macro",
  28543. height: math.unit(1, "mile"),
  28544. default: true
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(6, "feet"),
  28553. weight: math.unit(150, "lb"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/en/front.svg",
  28557. extra: 1697 / 1563,
  28558. bottom: 103 / 1800
  28559. }
  28560. },
  28561. back: {
  28562. height: math.unit(6, "feet"),
  28563. weight: math.unit(150, "lb"),
  28564. name: "Back",
  28565. image: {
  28566. source: "./media/characters/en/back.svg",
  28567. extra: 1700 / 1570,
  28568. bottom: 51 / 1751
  28569. }
  28570. },
  28571. frontDressed: {
  28572. height: math.unit(6, "feet"),
  28573. weight: math.unit(150, "lb"),
  28574. name: "Front (Dressed)",
  28575. image: {
  28576. source: "./media/characters/en/front-dressed.svg",
  28577. extra: 1697 / 1563,
  28578. bottom: 103 / 1800
  28579. }
  28580. },
  28581. backDressed: {
  28582. height: math.unit(6, "feet"),
  28583. weight: math.unit(150, "lb"),
  28584. name: "Back (Dressed)",
  28585. image: {
  28586. source: "./media/characters/en/back-dressed.svg",
  28587. extra: 1700 / 1570,
  28588. bottom: 51 / 1751
  28589. }
  28590. },
  28591. },
  28592. [
  28593. {
  28594. name: "Macro",
  28595. height: math.unit(210, "feet"),
  28596. default: true
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28602. {
  28603. front: {
  28604. height: math.unit(6, "feet"),
  28605. weight: math.unit(150, "lb"),
  28606. name: "Front",
  28607. image: {
  28608. source: "./media/characters/haze-orris/front.svg",
  28609. extra: 3975 / 3525,
  28610. bottom: 137 / 4112
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Micro",
  28617. height: math.unit(150, "mm"),
  28618. default: true
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(6, "feet"),
  28627. weight: math.unit(150, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/casselene-yaro/front.svg",
  28631. extra: 4721 / 4541,
  28632. bottom: 82 / 4803
  28633. }
  28634. },
  28635. back: {
  28636. height: math.unit(6, "feet"),
  28637. weight: math.unit(150, "lb"),
  28638. name: "Back",
  28639. image: {
  28640. source: "./media/characters/casselene-yaro/back.svg",
  28641. extra: 4569 / 4377,
  28642. bottom: 69 / 4638
  28643. }
  28644. },
  28645. frontDressed: {
  28646. height: math.unit(6, "feet"),
  28647. weight: math.unit(150, "lb"),
  28648. name: "Front-dressed",
  28649. image: {
  28650. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28651. extra: 4721 / 4541,
  28652. bottom: 82 / 4803
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Macro",
  28659. height: math.unit(190, "feet"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(6, "feet"),
  28669. weight: math.unit(150, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/myra-rue-delore/front.svg",
  28673. extra: 1340 / 1308,
  28674. bottom: 67 / 1407
  28675. }
  28676. },
  28677. back: {
  28678. height: math.unit(6, "feet"),
  28679. weight: math.unit(150, "lb"),
  28680. name: "Back",
  28681. image: {
  28682. source: "./media/characters/myra-rue-delore/back.svg",
  28683. extra: 1341 / 1310,
  28684. bottom: 40 / 1381
  28685. }
  28686. },
  28687. frontDressed: {
  28688. height: math.unit(6, "feet"),
  28689. weight: math.unit(150, "lb"),
  28690. name: "Front (Dressed)",
  28691. image: {
  28692. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28693. extra: 1340 / 1308,
  28694. bottom: 67 / 1407
  28695. }
  28696. },
  28697. },
  28698. [
  28699. {
  28700. name: "Macro",
  28701. height: math.unit(150, "feet"),
  28702. default: true
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(10, "feet"),
  28711. weight: math.unit(15015, "lb"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/fem!plat/front.svg",
  28715. extra: 2799 / 2604,
  28716. bottom: 149 / 2948
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(10, "feet"),
  28724. default: true
  28725. },
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(100, "feet")
  28729. },
  28730. {
  28731. name: "Megamacro",
  28732. height: math.unit(1000, "feet")
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(15 + 5 / 12, "feet"),
  28741. weight: math.unit(4600, "lb"),
  28742. name: "Front",
  28743. image: {
  28744. source: "./media/characters/neapolitan-ananassa/front.svg",
  28745. extra: 2903 / 2736,
  28746. bottom: 0 / 2903
  28747. }
  28748. },
  28749. side: {
  28750. height: math.unit(15 + 5 / 12, "feet"),
  28751. weight: math.unit(4600, "lb"),
  28752. name: "Side",
  28753. image: {
  28754. source: "./media/characters/neapolitan-ananassa/side.svg",
  28755. extra: 2925 / 2719,
  28756. bottom: 0 / 2925
  28757. }
  28758. },
  28759. back: {
  28760. height: math.unit(15 + 5 / 12, "feet"),
  28761. weight: math.unit(4600, "lb"),
  28762. name: "Back",
  28763. image: {
  28764. source: "./media/characters/neapolitan-ananassa/back.svg",
  28765. extra: 2903 / 2736,
  28766. bottom: 0 / 2903
  28767. }
  28768. },
  28769. },
  28770. [
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(15 + 5 / 12, "feet"),
  28774. default: true
  28775. },
  28776. {
  28777. name: "Post-Millenium",
  28778. height: math.unit(35 + 5 / 12, "feet")
  28779. },
  28780. {
  28781. name: "Post-Era",
  28782. height: math.unit(450 + 5 / 12, "feet")
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28788. {
  28789. front: {
  28790. height: math.unit(300, "meters"),
  28791. weight: math.unit(125000, "tonnes"),
  28792. name: "Front",
  28793. image: {
  28794. source: "./media/characters/pazuzu/front.svg",
  28795. extra: 877 / 794,
  28796. bottom: 47 / 924
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Macro",
  28803. height: math.unit(300, "meters"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28810. {
  28811. side: {
  28812. height: math.unit(10 + 7 / 12, "feet"),
  28813. weight: math.unit(2.5, "tons"),
  28814. name: "Side",
  28815. image: {
  28816. source: "./media/characters/aasha/side.svg",
  28817. extra: 1345 / 1245,
  28818. bottom: 111 / 1456
  28819. }
  28820. },
  28821. back: {
  28822. height: math.unit(10 + 7 / 12, "feet"),
  28823. weight: math.unit(2.5, "tons"),
  28824. name: "Back",
  28825. image: {
  28826. source: "./media/characters/aasha/back.svg",
  28827. extra: 1133 / 1057,
  28828. bottom: 257 / 1390
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(10 + 7 / 12, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6 + 3 / 12, "feet"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/nevan/front.svg",
  28848. extra: 704 / 704,
  28849. bottom: 28 / 732
  28850. }
  28851. },
  28852. back: {
  28853. height: math.unit(6 + 3 / 12, "feet"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/nevan/back.svg",
  28857. extra: 714 / 714,
  28858. bottom: 21 / 735
  28859. }
  28860. },
  28861. frontFlaccid: {
  28862. height: math.unit(6 + 3 / 12, "feet"),
  28863. name: "Front (Flaccid)",
  28864. image: {
  28865. source: "./media/characters/nevan/front-flaccid.svg",
  28866. extra: 704 / 704,
  28867. bottom: 28 / 732
  28868. }
  28869. },
  28870. frontErect: {
  28871. height: math.unit(6 + 3 / 12, "feet"),
  28872. name: "Front (Erect)",
  28873. image: {
  28874. source: "./media/characters/nevan/front-erect.svg",
  28875. extra: 704 / 704,
  28876. bottom: 28 / 732
  28877. }
  28878. },
  28879. backFlaccid: {
  28880. height: math.unit(6 + 3 / 12, "feet"),
  28881. name: "Back (Flaccid)",
  28882. image: {
  28883. source: "./media/characters/nevan/back-flaccid.svg",
  28884. extra: 714 / 714,
  28885. bottom: 21 / 735
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(6 + 3 / 12, "feet"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(4, "feet"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/arhan/front.svg",
  28905. extra: 3368 / 3133,
  28906. bottom: 0 / 3368
  28907. }
  28908. },
  28909. side: {
  28910. height: math.unit(4, "feet"),
  28911. name: "Side",
  28912. image: {
  28913. source: "./media/characters/arhan/side.svg",
  28914. extra: 3347 / 3105,
  28915. bottom: 0 / 3347
  28916. }
  28917. },
  28918. tongue: {
  28919. height: math.unit(1.42, "feet"),
  28920. name: "Tongue",
  28921. image: {
  28922. source: "./media/characters/arhan/tongue.svg"
  28923. }
  28924. },
  28925. head: {
  28926. height: math.unit(0.85, "feet"),
  28927. name: "Head",
  28928. image: {
  28929. source: "./media/characters/arhan/head.svg"
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(4, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(5 + 7.5 / 12, "feet"),
  28946. weight: math.unit(120, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/digi-duncan/front.svg",
  28950. extra: 330 / 326,
  28951. bottom: 16 / 346
  28952. }
  28953. },
  28954. side: {
  28955. height: math.unit(5 + 7.5 / 12, "feet"),
  28956. weight: math.unit(120, "lb"),
  28957. name: "Side",
  28958. image: {
  28959. source: "./media/characters/digi-duncan/side.svg",
  28960. extra: 341 / 337,
  28961. bottom: 1 / 342
  28962. }
  28963. },
  28964. back: {
  28965. height: math.unit(5 + 7.5 / 12, "feet"),
  28966. weight: math.unit(120, "lb"),
  28967. name: "Back",
  28968. image: {
  28969. source: "./media/characters/digi-duncan/back.svg",
  28970. extra: 330 / 326,
  28971. bottom: 12 / 342
  28972. }
  28973. },
  28974. },
  28975. [
  28976. {
  28977. name: "Speck",
  28978. height: math.unit(0.25, "mm")
  28979. },
  28980. {
  28981. name: "Micro",
  28982. height: math.unit(5, "mm")
  28983. },
  28984. {
  28985. name: "Tiny",
  28986. height: math.unit(0.5, "inches"),
  28987. default: true
  28988. },
  28989. {
  28990. name: "Human",
  28991. height: math.unit(5 + 7.5 / 12, "feet")
  28992. },
  28993. {
  28994. name: "Minigiant",
  28995. height: math.unit(8 + 5.25, "feet")
  28996. },
  28997. {
  28998. name: "Giant",
  28999. height: math.unit(2000, "feet")
  29000. },
  29001. {
  29002. name: "Mega",
  29003. height: math.unit(371.1, "miles")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(2, "meters"),
  29012. weight: math.unit(350, "kg"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29016. extra: 898 / 838,
  29017. bottom: 9 / 907
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit(8, "meters")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(50, "meters"),
  29029. default: true
  29030. },
  29031. {
  29032. name: "Macro",
  29033. height: math.unit(500, "meters")
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(6 + 6 / 12, "feet"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/khardesh/front.svg",
  29045. extra: 888 / 797,
  29046. bottom: 25 / 913
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Normal",
  29053. height: math.unit(6 + 6 / 12, "feet"),
  29054. default: true
  29055. },
  29056. {
  29057. name: "Normal+",
  29058. height: math.unit(4, "meters")
  29059. },
  29060. {
  29061. name: "Macro",
  29062. height: math.unit(50, "meters")
  29063. },
  29064. {
  29065. name: "Macro+",
  29066. height: math.unit(100, "meters")
  29067. },
  29068. {
  29069. name: "Megamacro",
  29070. height: math.unit(20, "km")
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(6, "feet"),
  29079. weight: math.unit(150, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/kosho/front.svg",
  29083. extra: 1847 / 1847,
  29084. bottom: 86 / 1933
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Second-stage micro",
  29091. height: math.unit(0.5, "inches")
  29092. },
  29093. {
  29094. name: "First-stage micro",
  29095. height: math.unit(6, "inches")
  29096. },
  29097. {
  29098. name: "Normal",
  29099. height: math.unit(6, "feet"),
  29100. default: true
  29101. },
  29102. {
  29103. name: "First-stage macro",
  29104. height: math.unit(72, "feet")
  29105. },
  29106. {
  29107. name: "Second-stage macro",
  29108. height: math.unit(864, "feet")
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29114. {
  29115. normal: {
  29116. height: math.unit(4 + 6 / 12, "feet"),
  29117. name: "Normal",
  29118. image: {
  29119. source: "./media/characters/hydra/normal.svg",
  29120. extra: 2833 / 2634,
  29121. bottom: 68 / 2901
  29122. }
  29123. },
  29124. smol: {
  29125. height: math.unit(0.705, "inches"),
  29126. name: "Smol",
  29127. image: {
  29128. source: "./media/characters/hydra/smol.svg",
  29129. extra: 2715 / 2540,
  29130. bottom: 0 / 2715
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(4 + 6 / 12, "feet"),
  29138. default: true
  29139. }
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29144. {
  29145. front: {
  29146. height: math.unit(0.6, "cm"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/daz/front.svg",
  29150. extra: 1682 / 1164,
  29151. bottom: 42 / 1724
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(0.6, "cm"),
  29159. default: true
  29160. },
  29161. ]
  29162. ))
  29163. characterMakers.push(() => makeCharacter(
  29164. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29165. {
  29166. front: {
  29167. height: math.unit(6, "feet"),
  29168. weight: math.unit(235, "lb"),
  29169. name: "Front",
  29170. image: {
  29171. source: "./media/characters/theo-pangolin/front.svg",
  29172. extra: 1996 / 1969,
  29173. bottom: 115 / 2111
  29174. }
  29175. },
  29176. back: {
  29177. height: math.unit(6, "feet"),
  29178. weight: math.unit(235, "lb"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/theo-pangolin/back.svg",
  29182. extra: 1979 / 1979,
  29183. bottom: 40 / 2019
  29184. }
  29185. },
  29186. feral: {
  29187. height: math.unit(2, "feet"),
  29188. weight: math.unit(30, "lb"),
  29189. name: "Feral",
  29190. image: {
  29191. source: "./media/characters/theo-pangolin/feral.svg",
  29192. extra: 803 / 791,
  29193. bottom: 181 / 984
  29194. }
  29195. },
  29196. footFive: {
  29197. height: math.unit(1.43, "feet"),
  29198. name: "Foot (Five Toes)",
  29199. image: {
  29200. source: "./media/characters/theo-pangolin/foot-five.svg"
  29201. }
  29202. },
  29203. footFour: {
  29204. height: math.unit(1.43, "feet"),
  29205. name: "Foot (Four Toes)",
  29206. image: {
  29207. source: "./media/characters/theo-pangolin/foot-four.svg"
  29208. }
  29209. },
  29210. handFour: {
  29211. height: math.unit(0.81, "feet"),
  29212. name: "Hand (Four Fingers)",
  29213. image: {
  29214. source: "./media/characters/theo-pangolin/hand-four.svg"
  29215. }
  29216. },
  29217. handThree: {
  29218. height: math.unit(0.81, "feet"),
  29219. name: "Hand (Three Fingers)",
  29220. image: {
  29221. source: "./media/characters/theo-pangolin/hand-three.svg"
  29222. }
  29223. },
  29224. headFront: {
  29225. height: math.unit(1.37, "feet"),
  29226. name: "Head (Front)",
  29227. image: {
  29228. source: "./media/characters/theo-pangolin/head-front.svg"
  29229. }
  29230. },
  29231. headSide: {
  29232. height: math.unit(1.43, "feet"),
  29233. name: "Head (Side)",
  29234. image: {
  29235. source: "./media/characters/theo-pangolin/head-side.svg"
  29236. }
  29237. },
  29238. tongue: {
  29239. height: math.unit(2.29, "feet"),
  29240. name: "Tongue",
  29241. image: {
  29242. source: "./media/characters/theo-pangolin/tongue.svg"
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(6, "feet")
  29250. },
  29251. {
  29252. name: "Macro",
  29253. height: math.unit(400, "feet"),
  29254. default: true
  29255. },
  29256. ]
  29257. ))
  29258. characterMakers.push(() => makeCharacter(
  29259. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29260. {
  29261. front: {
  29262. height: math.unit(6, "inches"),
  29263. weight: math.unit(0.036, "kg"),
  29264. name: "Front",
  29265. image: {
  29266. source: "./media/characters/renée/front.svg",
  29267. extra: 900 / 886,
  29268. bottom: 8 / 908
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Nano",
  29275. height: math.unit(1, "nm")
  29276. },
  29277. {
  29278. name: "Micro",
  29279. height: math.unit(1, "mm")
  29280. },
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(6, "inches")
  29284. },
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(2000, "feet"),
  29288. default: true
  29289. },
  29290. {
  29291. name: "Megamacro",
  29292. height: math.unit(2, "km")
  29293. },
  29294. {
  29295. name: "Gigamacro",
  29296. height: math.unit(2000, "km")
  29297. },
  29298. {
  29299. name: "Teramacro",
  29300. height: math.unit(250000, "km")
  29301. },
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(4, "meters"),
  29309. weight: math.unit(150, "kg"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/caledvwlch/front.svg",
  29313. extra: 1760 / 1551,
  29314. bottom: 28 / 1788
  29315. }
  29316. },
  29317. side: {
  29318. height: math.unit(4, "meters"),
  29319. weight: math.unit(150, "kg"),
  29320. name: "Side",
  29321. image: {
  29322. source: "./media/characters/caledvwlch/side.svg",
  29323. extra: 1605 / 1536,
  29324. bottom: 31 / 1636
  29325. }
  29326. },
  29327. back: {
  29328. height: math.unit(4, "meters"),
  29329. weight: math.unit(150, "kg"),
  29330. name: "Back",
  29331. image: {
  29332. source: "./media/characters/caledvwlch/back.svg",
  29333. extra: 1635 / 1565,
  29334. bottom: 27 / 1662
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "\"Incognito\"",
  29341. height: math.unit(4, "meters")
  29342. },
  29343. {
  29344. name: "Small rampage",
  29345. height: math.unit(600, "meters")
  29346. },
  29347. {
  29348. name: "Mega",
  29349. height: math.unit(30, "km")
  29350. },
  29351. {
  29352. name: "Home-size",
  29353. height: math.unit(50, "km"),
  29354. default: true
  29355. },
  29356. {
  29357. name: "Giga",
  29358. height: math.unit(300, "km")
  29359. },
  29360. {
  29361. name: "Lounging",
  29362. height: math.unit(11000, "km")
  29363. },
  29364. {
  29365. name: "Planet snacking",
  29366. height: math.unit(2000000, "km")
  29367. },
  29368. ]
  29369. ))
  29370. characterMakers.push(() => makeCharacter(
  29371. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29372. {
  29373. front: {
  29374. height: math.unit(6, "feet"),
  29375. weight: math.unit(215, "lb"),
  29376. name: "Front",
  29377. image: {
  29378. source: "./media/characters/sapphire-svell/front.svg",
  29379. extra: 495 / 455,
  29380. bottom: 20 / 515
  29381. }
  29382. },
  29383. back: {
  29384. height: math.unit(6, "feet"),
  29385. weight: math.unit(216, "lb"),
  29386. name: "Back",
  29387. image: {
  29388. source: "./media/characters/sapphire-svell/back.svg",
  29389. extra: 497 / 477,
  29390. bottom: 7 / 504
  29391. }
  29392. },
  29393. maw: {
  29394. height: math.unit(1.57, "feet"),
  29395. name: "Maw",
  29396. image: {
  29397. source: "./media/characters/sapphire-svell/maw.svg"
  29398. }
  29399. },
  29400. foot: {
  29401. height: math.unit(1.07, "feet"),
  29402. name: "Foot",
  29403. image: {
  29404. source: "./media/characters/sapphire-svell/foot.svg"
  29405. }
  29406. },
  29407. toering: {
  29408. height: math.unit(1.7, "inch"),
  29409. name: "Toering",
  29410. image: {
  29411. source: "./media/characters/sapphire-svell/toering.svg"
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(300, "feet"),
  29419. default: true
  29420. },
  29421. {
  29422. name: "Augmented",
  29423. height: math.unit(1250, "feet")
  29424. },
  29425. {
  29426. name: "Unleashed",
  29427. height: math.unit(3000, "feet")
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29433. {
  29434. side: {
  29435. height: math.unit(2 + 3 / 12, "feet"),
  29436. weight: math.unit(110, "lb"),
  29437. name: "Side",
  29438. image: {
  29439. source: "./media/characters/glitch-flux/side.svg",
  29440. extra: 997 / 805,
  29441. bottom: 20 / 1017
  29442. }
  29443. },
  29444. },
  29445. [
  29446. {
  29447. name: "Normal",
  29448. height: math.unit(2 + 3 / 12, "feet"),
  29449. default: true
  29450. },
  29451. ]
  29452. ))
  29453. characterMakers.push(() => makeCharacter(
  29454. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29455. {
  29456. front: {
  29457. height: math.unit(4, "meters"),
  29458. name: "Front",
  29459. image: {
  29460. source: "./media/characters/mid/front.svg",
  29461. extra: 507 / 476,
  29462. bottom: 17 / 524
  29463. }
  29464. },
  29465. back: {
  29466. height: math.unit(4, "meters"),
  29467. name: "Back",
  29468. image: {
  29469. source: "./media/characters/mid/back.svg",
  29470. extra: 519 / 487,
  29471. bottom: 7 / 526
  29472. }
  29473. },
  29474. stuck: {
  29475. height: math.unit(2.2, "meters"),
  29476. name: "Stuck",
  29477. image: {
  29478. source: "./media/characters/mid/stuck.svg",
  29479. extra: 1951 / 1869,
  29480. bottom: 88 / 2039
  29481. }
  29482. }
  29483. },
  29484. [
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(4, "meters"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Big",
  29492. height: math.unit(10, "meters")
  29493. },
  29494. {
  29495. name: "Macro",
  29496. height: math.unit(800, "meters")
  29497. },
  29498. {
  29499. name: "Megamacro",
  29500. height: math.unit(100, "km")
  29501. },
  29502. {
  29503. name: "Overgrown",
  29504. height: math.unit(1, "parsec")
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(2.5, "meters"),
  29513. weight: math.unit(225, "kg"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/iris/front.svg",
  29517. extra: 3348 / 3251,
  29518. bottom: 205 / 3553
  29519. }
  29520. },
  29521. maw: {
  29522. height: math.unit(0.56, "meter"),
  29523. name: "Maw",
  29524. image: {
  29525. source: "./media/characters/iris/maw.svg"
  29526. }
  29527. },
  29528. },
  29529. [
  29530. {
  29531. name: "Mewter cat",
  29532. height: math.unit(1.2, "meters")
  29533. },
  29534. {
  29535. name: "Minimacro",
  29536. height: math.unit(2.5, "meters"),
  29537. default: true
  29538. },
  29539. {
  29540. name: "Macro",
  29541. height: math.unit(180, "meters")
  29542. },
  29543. {
  29544. name: "Megamacro",
  29545. height: math.unit(2746, "meters")
  29546. },
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29551. {
  29552. front: {
  29553. height: math.unit(6, "feet"),
  29554. weight: math.unit(135, "lb"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/axel/front.svg",
  29558. extra: 908 / 908,
  29559. bottom: 58 / 966
  29560. }
  29561. },
  29562. side: {
  29563. height: math.unit(6, "feet"),
  29564. weight: math.unit(135, "lb"),
  29565. name: "Side",
  29566. image: {
  29567. source: "./media/characters/axel/side.svg",
  29568. extra: 958 / 958,
  29569. bottom: 11 / 969
  29570. }
  29571. },
  29572. back: {
  29573. height: math.unit(6, "feet"),
  29574. weight: math.unit(135, "lb"),
  29575. name: "Back",
  29576. image: {
  29577. source: "./media/characters/axel/back.svg",
  29578. extra: 887 / 887,
  29579. bottom: 34 / 921
  29580. }
  29581. },
  29582. head: {
  29583. height: math.unit(1.07, "feet"),
  29584. name: "Head",
  29585. image: {
  29586. source: "./media/characters/axel/head.svg"
  29587. }
  29588. },
  29589. beak: {
  29590. height: math.unit(1.4, "feet"),
  29591. name: "Beak",
  29592. image: {
  29593. source: "./media/characters/axel/beak.svg"
  29594. }
  29595. },
  29596. beakSide: {
  29597. height: math.unit(1.4, "feet"),
  29598. name: "Beak Side",
  29599. image: {
  29600. source: "./media/characters/axel/beak-side.svg"
  29601. }
  29602. },
  29603. sheath: {
  29604. height: math.unit(0.5, "feet"),
  29605. name: "Sheath",
  29606. image: {
  29607. source: "./media/characters/axel/sheath.svg"
  29608. }
  29609. },
  29610. dick: {
  29611. height: math.unit(0.98, "feet"),
  29612. name: "Dick",
  29613. image: {
  29614. source: "./media/characters/axel/dick.svg"
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Macro",
  29621. height: math.unit(68, "meters"),
  29622. default: true
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(3.5, "meters"),
  29631. weight: math.unit(1200, "kg"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/joanna/front.svg",
  29635. extra: 1596 / 1488,
  29636. bottom: 29 / 1625
  29637. }
  29638. },
  29639. back: {
  29640. height: math.unit(3.5, "meters"),
  29641. weight: math.unit(1200, "kg"),
  29642. name: "Back",
  29643. image: {
  29644. source: "./media/characters/joanna/back.svg",
  29645. extra: 1594 / 1495,
  29646. bottom: 26 / 1620
  29647. }
  29648. },
  29649. frontShorts: {
  29650. height: math.unit(3.5, "meters"),
  29651. weight: math.unit(1200, "kg"),
  29652. name: "Front (Shorts)",
  29653. image: {
  29654. source: "./media/characters/joanna/front-shorts.svg",
  29655. extra: 1596 / 1488,
  29656. bottom: 29 / 1625
  29657. }
  29658. },
  29659. frontBiker: {
  29660. height: math.unit(3.5, "meters"),
  29661. weight: math.unit(1200, "kg"),
  29662. name: "Front (Biker)",
  29663. image: {
  29664. source: "./media/characters/joanna/front-biker.svg",
  29665. extra: 1596 / 1488,
  29666. bottom: 29 / 1625
  29667. }
  29668. },
  29669. backBiker: {
  29670. height: math.unit(3.5, "meters"),
  29671. weight: math.unit(1200, "kg"),
  29672. name: "Back (Biker)",
  29673. image: {
  29674. source: "./media/characters/joanna/back-biker.svg",
  29675. extra: 1594 / 1495,
  29676. bottom: 88 / 1682
  29677. }
  29678. },
  29679. bikeLeft: {
  29680. height: math.unit(2.4, "meters"),
  29681. weight: math.unit(1600, "kg"),
  29682. name: "Bike (Left)",
  29683. image: {
  29684. source: "./media/characters/joanna/bike-left.svg",
  29685. extra: 720 / 720,
  29686. bottom: 8 / 728
  29687. }
  29688. },
  29689. bikeRight: {
  29690. height: math.unit(2.4, "meters"),
  29691. weight: math.unit(1600, "kg"),
  29692. name: "Bike (Right)",
  29693. image: {
  29694. source: "./media/characters/joanna/bike-right.svg",
  29695. extra: 720 / 720,
  29696. bottom: 8 / 728
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Incognito",
  29703. height: math.unit(3.5, "meters")
  29704. },
  29705. {
  29706. name: "Casual Big",
  29707. height: math.unit(200, "meters")
  29708. },
  29709. {
  29710. name: "Macro",
  29711. height: math.unit(600, "meters")
  29712. },
  29713. {
  29714. name: "Original",
  29715. height: math.unit(20, "km"),
  29716. default: true
  29717. },
  29718. {
  29719. name: "Giga",
  29720. height: math.unit(400, "km")
  29721. },
  29722. {
  29723. name: "Lounging",
  29724. height: math.unit(1500, "km")
  29725. },
  29726. {
  29727. name: "Planetary",
  29728. height: math.unit(200000, "km")
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(6, "feet"),
  29737. weight: math.unit(150, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/hugo-sigil/front.svg",
  29741. extra: 522 / 500,
  29742. bottom: 2 / 524
  29743. }
  29744. },
  29745. back: {
  29746. height: math.unit(6, "feet"),
  29747. weight: math.unit(150, "lb"),
  29748. name: "Back",
  29749. image: {
  29750. source: "./media/characters/hugo-sigil/back.svg",
  29751. extra: 519 / 495,
  29752. bottom: 5 / 524
  29753. }
  29754. },
  29755. maw: {
  29756. height: math.unit(1.4, "feet"),
  29757. weight: math.unit(150, "lb"),
  29758. name: "Maw",
  29759. image: {
  29760. source: "./media/characters/hugo-sigil/maw.svg"
  29761. }
  29762. },
  29763. feet: {
  29764. height: math.unit(1.56, "feet"),
  29765. weight: math.unit(150, "lb"),
  29766. name: "Feet",
  29767. image: {
  29768. source: "./media/characters/hugo-sigil/feet.svg",
  29769. extra: 177 / 177,
  29770. bottom: 12 / 189
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(6, "feet")
  29778. },
  29779. {
  29780. name: "Macro",
  29781. height: math.unit(200, "feet"),
  29782. default: true
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29788. {
  29789. front: {
  29790. height: math.unit(6, "feet"),
  29791. weight: math.unit(150, "lb"),
  29792. name: "Front",
  29793. image: {
  29794. source: "./media/characters/peri/front.svg",
  29795. extra: 2354 / 2233,
  29796. bottom: 49 / 2403
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Really Small",
  29803. height: math.unit(1, "nm")
  29804. },
  29805. {
  29806. name: "Micro",
  29807. height: math.unit(4, "inches")
  29808. },
  29809. {
  29810. name: "Normal",
  29811. height: math.unit(7, "inches"),
  29812. default: true
  29813. },
  29814. {
  29815. name: "Macro",
  29816. height: math.unit(400, "feet")
  29817. },
  29818. {
  29819. name: "Megamacro",
  29820. height: math.unit(100, "miles")
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29826. {
  29827. frontSlim: {
  29828. height: math.unit(7, "feet"),
  29829. name: "Front (Slim)",
  29830. image: {
  29831. source: "./media/characters/issilora/front-slim.svg",
  29832. extra: 529 / 449,
  29833. bottom: 53 / 582
  29834. }
  29835. },
  29836. sideSlim: {
  29837. height: math.unit(7, "feet"),
  29838. name: "Side (Slim)",
  29839. image: {
  29840. source: "./media/characters/issilora/side-slim.svg",
  29841. extra: 570 / 480,
  29842. bottom: 30 / 600
  29843. }
  29844. },
  29845. backSlim: {
  29846. height: math.unit(7, "feet"),
  29847. name: "Back (Slim)",
  29848. image: {
  29849. source: "./media/characters/issilora/back-slim.svg",
  29850. extra: 537 / 455,
  29851. bottom: 46 / 583
  29852. }
  29853. },
  29854. frontBuff: {
  29855. height: math.unit(7, "feet"),
  29856. name: "Front (Buff)",
  29857. image: {
  29858. source: "./media/characters/issilora/front-buff.svg",
  29859. extra: 2310 / 2035,
  29860. bottom: 335 / 2645
  29861. }
  29862. },
  29863. head: {
  29864. height: math.unit(1.94, "feet"),
  29865. name: "Head",
  29866. image: {
  29867. source: "./media/characters/issilora/head.svg"
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Minimum",
  29874. height: math.unit(7, "feet")
  29875. },
  29876. {
  29877. name: "Comfortable",
  29878. height: math.unit(17, "feet")
  29879. },
  29880. {
  29881. name: "Fun Size",
  29882. height: math.unit(47, "feet")
  29883. },
  29884. {
  29885. name: "Natural Macro",
  29886. height: math.unit(137, "feet"),
  29887. default: true
  29888. },
  29889. {
  29890. name: "Maximum Kaiju",
  29891. height: math.unit(397, "feet")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29897. {
  29898. front: {
  29899. height: math.unit(50 + 9/12, "feet"),
  29900. weight: math.unit(32.8, "tons"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/irb'iiritaahn/front.svg",
  29904. extra: 1878/1826,
  29905. bottom: 326/2204
  29906. }
  29907. },
  29908. back: {
  29909. height: math.unit(50 + 9/12, "feet"),
  29910. weight: math.unit(32.8, "tons"),
  29911. name: "Back",
  29912. image: {
  29913. source: "./media/characters/irb'iiritaahn/back.svg",
  29914. extra: 2052/2018,
  29915. bottom: 152/2204
  29916. }
  29917. },
  29918. head: {
  29919. height: math.unit(12.86, "feet"),
  29920. name: "Head",
  29921. image: {
  29922. source: "./media/characters/irb'iiritaahn/head.svg"
  29923. }
  29924. },
  29925. maw: {
  29926. height: math.unit(9.66, "feet"),
  29927. name: "Maw",
  29928. image: {
  29929. source: "./media/characters/irb'iiritaahn/maw.svg"
  29930. }
  29931. },
  29932. frontDick: {
  29933. height: math.unit(8.78461, "feet"),
  29934. name: "Front Dick",
  29935. image: {
  29936. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29937. }
  29938. },
  29939. rearDick: {
  29940. height: math.unit(8.78461, "feet"),
  29941. name: "Rear Dick",
  29942. image: {
  29943. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29944. }
  29945. },
  29946. rearDickUnfolded: {
  29947. height: math.unit(8.78, "feet"),
  29948. name: "Rear Dick (Unfolded)",
  29949. image: {
  29950. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29951. }
  29952. },
  29953. wings: {
  29954. height: math.unit(43, "feet"),
  29955. name: "Wings",
  29956. image: {
  29957. source: "./media/characters/irb'iiritaahn/wings.svg"
  29958. }
  29959. },
  29960. },
  29961. [
  29962. {
  29963. name: "Macro",
  29964. height: math.unit(50 + 9/12, "feet"),
  29965. default: true
  29966. },
  29967. ]
  29968. ))
  29969. characterMakers.push(() => makeCharacter(
  29970. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29971. {
  29972. front: {
  29973. height: math.unit(205, "cm"),
  29974. weight: math.unit(102, "kg"),
  29975. name: "Front",
  29976. image: {
  29977. source: "./media/characters/irbisgreif/front.svg",
  29978. extra: 785/706,
  29979. bottom: 13/798
  29980. }
  29981. },
  29982. back: {
  29983. height: math.unit(205, "cm"),
  29984. weight: math.unit(102, "kg"),
  29985. name: "Back",
  29986. image: {
  29987. source: "./media/characters/irbisgreif/back.svg",
  29988. extra: 713/701,
  29989. bottom: 26/739
  29990. }
  29991. },
  29992. frontDressed: {
  29993. height: math.unit(216, "cm"),
  29994. weight: math.unit(102, "kg"),
  29995. name: "Front-dressed",
  29996. image: {
  29997. source: "./media/characters/irbisgreif/front-dressed.svg",
  29998. extra: 902/776,
  29999. bottom: 14/916
  30000. }
  30001. },
  30002. sideDressed: {
  30003. height: math.unit(195, "cm"),
  30004. weight: math.unit(102, "kg"),
  30005. name: "Side-dressed",
  30006. image: {
  30007. source: "./media/characters/irbisgreif/side-dressed.svg",
  30008. extra: 788/688,
  30009. bottom: 21/809
  30010. }
  30011. },
  30012. backDressed: {
  30013. height: math.unit(216, "cm"),
  30014. weight: math.unit(102, "kg"),
  30015. name: "Back-dressed",
  30016. image: {
  30017. source: "./media/characters/irbisgreif/back-dressed.svg",
  30018. extra: 901/783,
  30019. bottom: 10/911
  30020. }
  30021. },
  30022. dick: {
  30023. height: math.unit(0.49, "feet"),
  30024. name: "Dick",
  30025. image: {
  30026. source: "./media/characters/irbisgreif/dick.svg"
  30027. }
  30028. },
  30029. wingTop: {
  30030. height: math.unit(1.93 , "feet"),
  30031. name: "Wing-top",
  30032. image: {
  30033. source: "./media/characters/irbisgreif/wing-top.svg"
  30034. }
  30035. },
  30036. wingBottom: {
  30037. height: math.unit(1.93 , "feet"),
  30038. name: "Wing-bottom",
  30039. image: {
  30040. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30041. }
  30042. },
  30043. },
  30044. [
  30045. {
  30046. name: "Normal",
  30047. height: math.unit(216, "cm"),
  30048. default: true
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30054. {
  30055. front: {
  30056. height: math.unit(6, "feet"),
  30057. weight: math.unit(150, "lb"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/pride/front.svg",
  30061. extra: 1299/1230,
  30062. bottom: 18/1317
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(7, "feet")
  30070. },
  30071. {
  30072. name: "Mini-macro",
  30073. height: math.unit(11, "feet")
  30074. },
  30075. {
  30076. name: "Macro",
  30077. height: math.unit(15, "meters"),
  30078. default: true
  30079. },
  30080. {
  30081. name: "Macro+",
  30082. height: math.unit(40, "meters")
  30083. },
  30084. ]
  30085. ))
  30086. characterMakers.push(() => makeCharacter(
  30087. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30088. {
  30089. front: {
  30090. height: math.unit(4 + 2 / 12, "feet"),
  30091. weight: math.unit(95, "lb"),
  30092. name: "Front",
  30093. image: {
  30094. source: "./media/characters/vaelophis-nyx/front.svg",
  30095. extra: 2532/2330,
  30096. bottom: 0/2532
  30097. }
  30098. },
  30099. back: {
  30100. height: math.unit(4 + 2 / 12, "feet"),
  30101. weight: math.unit(95, "lb"),
  30102. name: "Back",
  30103. image: {
  30104. source: "./media/characters/vaelophis-nyx/back.svg",
  30105. extra: 2484/2361,
  30106. bottom: 0/2484
  30107. }
  30108. },
  30109. feralSide: {
  30110. height: math.unit(2 + 1/12, "feet"),
  30111. weight: math.unit(20, "lb"),
  30112. name: "Feral (Side)",
  30113. image: {
  30114. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30115. extra: 1721/1581,
  30116. bottom: 70/1791
  30117. }
  30118. },
  30119. feralLazing: {
  30120. height: math.unit(1.08, "feet"),
  30121. weight: math.unit(20, "lb"),
  30122. name: "Feral (Lazing)",
  30123. image: {
  30124. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30125. extra: 822/822,
  30126. bottom: 248/1070
  30127. }
  30128. },
  30129. ear: {
  30130. height: math.unit(0.416, "feet"),
  30131. name: "Ear",
  30132. image: {
  30133. source: "./media/characters/vaelophis-nyx/ear.svg"
  30134. }
  30135. },
  30136. eye: {
  30137. height: math.unit(0.0748, "feet"),
  30138. name: "Eye",
  30139. image: {
  30140. source: "./media/characters/vaelophis-nyx/eye.svg"
  30141. }
  30142. },
  30143. mouth: {
  30144. height: math.unit(0.378, "feet"),
  30145. name: "Mouth",
  30146. image: {
  30147. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30148. }
  30149. },
  30150. spade: {
  30151. height: math.unit(0.55, "feet"),
  30152. name: "Spade",
  30153. image: {
  30154. source: "./media/characters/vaelophis-nyx/spade.svg"
  30155. }
  30156. },
  30157. },
  30158. [
  30159. {
  30160. name: "Normal",
  30161. height: math.unit(4 + 2/12, "feet"),
  30162. default: true
  30163. },
  30164. ]
  30165. ))
  30166. characterMakers.push(() => makeCharacter(
  30167. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30168. {
  30169. front: {
  30170. height: math.unit(7, "feet"),
  30171. weight: math.unit(231, "lb"),
  30172. name: "Front",
  30173. image: {
  30174. source: "./media/characters/flux/front.svg",
  30175. extra: 919/871,
  30176. bottom: 0/919
  30177. }
  30178. },
  30179. back: {
  30180. height: math.unit(7, "feet"),
  30181. weight: math.unit(231, "lb"),
  30182. name: "Back",
  30183. image: {
  30184. source: "./media/characters/flux/back.svg",
  30185. extra: 1040/992,
  30186. bottom: 0/1040
  30187. }
  30188. },
  30189. frontDressed: {
  30190. height: math.unit(7, "feet"),
  30191. weight: math.unit(231, "lb"),
  30192. name: "Front (Dressed)",
  30193. image: {
  30194. source: "./media/characters/flux/front-dressed.svg",
  30195. extra: 919/871,
  30196. bottom: 0/919
  30197. }
  30198. },
  30199. feralSide: {
  30200. height: math.unit(5, "feet"),
  30201. weight: math.unit(150, "lb"),
  30202. name: "Feral (Side)",
  30203. image: {
  30204. source: "./media/characters/flux/feral-side.svg",
  30205. extra: 598/528,
  30206. bottom: 28/626
  30207. }
  30208. },
  30209. head: {
  30210. height: math.unit(1.585, "feet"),
  30211. name: "Head",
  30212. image: {
  30213. source: "./media/characters/flux/head.svg"
  30214. }
  30215. },
  30216. headSide: {
  30217. height: math.unit(1.74, "feet"),
  30218. name: "Head (Side)",
  30219. image: {
  30220. source: "./media/characters/flux/head-side.svg"
  30221. }
  30222. },
  30223. headSideFire: {
  30224. height: math.unit(1.76, "feet"),
  30225. name: "Head (Side, Fire)",
  30226. image: {
  30227. source: "./media/characters/flux/head-side-fire.svg"
  30228. }
  30229. },
  30230. },
  30231. [
  30232. {
  30233. name: "Normal",
  30234. height: math.unit(7, "feet"),
  30235. default: true
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(9, "feet"),
  30244. weight: math.unit(1012, "lb"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/ulfra-lupae/front.svg",
  30248. extra: 1083/1011,
  30249. bottom: 67/1150
  30250. }
  30251. },
  30252. },
  30253. [
  30254. {
  30255. name: "Micro",
  30256. height: math.unit(6, "inches")
  30257. },
  30258. {
  30259. name: "Socializing",
  30260. height: math.unit(6 + 5/12, "feet")
  30261. },
  30262. {
  30263. name: "Normal",
  30264. height: math.unit(9, "feet"),
  30265. default: true
  30266. },
  30267. {
  30268. name: "Macro",
  30269. height: math.unit(150, "feet")
  30270. },
  30271. ]
  30272. ))
  30273. characterMakers.push(() => makeCharacter(
  30274. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30275. {
  30276. front: {
  30277. height: math.unit(5 + 2/12, "feet"),
  30278. weight: math.unit(120, "lb"),
  30279. name: "Front",
  30280. image: {
  30281. source: "./media/characters/timber/front.svg",
  30282. extra: 2814/2705,
  30283. bottom: 181/2995
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Normal",
  30290. height: math.unit(5 + 2/12, "feet"),
  30291. default: true
  30292. },
  30293. ]
  30294. ))
  30295. characterMakers.push(() => makeCharacter(
  30296. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30297. {
  30298. front: {
  30299. height: math.unit(5 + 7/12, "feet"),
  30300. weight: math.unit(220, "lb"),
  30301. name: "Front",
  30302. image: {
  30303. source: "./media/characters/nicki/front.svg",
  30304. extra: 453/419,
  30305. bottom: 7/460
  30306. }
  30307. },
  30308. frontAlt: {
  30309. height: math.unit(5 + 7/12, "feet"),
  30310. weight: math.unit(220, "lb"),
  30311. name: "Front-alt",
  30312. image: {
  30313. source: "./media/characters/nicki/front-alt.svg",
  30314. extra: 435/411,
  30315. bottom: 12/447
  30316. }
  30317. },
  30318. back: {
  30319. height: math.unit(5 + 7/12, "feet"),
  30320. weight: math.unit(220, "lb"),
  30321. name: "Back",
  30322. image: {
  30323. source: "./media/characters/nicki/back.svg",
  30324. extra: 440/413,
  30325. bottom: 19/459
  30326. }
  30327. },
  30328. taur: {
  30329. height: math.unit(7 + 6/12, "feet"),
  30330. weight: math.unit(700, "lb"),
  30331. name: "Taur",
  30332. image: {
  30333. source: "./media/characters/nicki/taur.svg",
  30334. extra: 975/773,
  30335. bottom: 0/975
  30336. }
  30337. },
  30338. frontNsfw: {
  30339. height: math.unit(5 + 7/12, "feet"),
  30340. weight: math.unit(220, "lb"),
  30341. name: "Front (NSFW)",
  30342. image: {
  30343. source: "./media/characters/nicki/front-nsfw.svg",
  30344. extra: 453/419,
  30345. bottom: 7/460
  30346. }
  30347. },
  30348. frontNsfwAlt: {
  30349. height: math.unit(5 + 7/12, "feet"),
  30350. weight: math.unit(220, "lb"),
  30351. name: "Front (Alt, NSFW)",
  30352. image: {
  30353. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30354. extra: 435/411,
  30355. bottom: 12/447
  30356. }
  30357. },
  30358. backNsfw: {
  30359. height: math.unit(5 + 7/12, "feet"),
  30360. weight: math.unit(220, "lb"),
  30361. name: "Back (NSFW)",
  30362. image: {
  30363. source: "./media/characters/nicki/back-nsfw.svg",
  30364. extra: 440/413,
  30365. bottom: 19/459
  30366. }
  30367. },
  30368. head: {
  30369. height: math.unit(2.1, "feet"),
  30370. name: "Head",
  30371. image: {
  30372. source: "./media/characters/nicki/head.svg"
  30373. }
  30374. },
  30375. paw: {
  30376. height: math.unit(1.88, "feet"),
  30377. name: "Paw",
  30378. image: {
  30379. source: "./media/characters/nicki/paw.svg"
  30380. }
  30381. },
  30382. },
  30383. [
  30384. {
  30385. name: "Normal",
  30386. height: math.unit(5 + 7/12, "feet"),
  30387. default: true
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(7 + 10/12, "feet"),
  30396. weight: math.unit(3.5, "tons"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/lee/front.svg",
  30400. extra: 1773/1615,
  30401. bottom: 86/1859
  30402. }
  30403. },
  30404. hand: {
  30405. height: math.unit(1.78, "feet"),
  30406. name: "Hand",
  30407. image: {
  30408. source: "./media/characters/lee/hand.svg"
  30409. }
  30410. },
  30411. maw: {
  30412. height: math.unit(1.18, "feet"),
  30413. name: "Maw",
  30414. image: {
  30415. source: "./media/characters/lee/maw.svg"
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(7 + 10/12, "feet"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30429. {
  30430. front: {
  30431. height: math.unit(9, "feet"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/guti/front.svg",
  30435. extra: 4551/4355,
  30436. bottom: 123/4674
  30437. }
  30438. },
  30439. tongue: {
  30440. height: math.unit(1, "feet"),
  30441. name: "Tongue",
  30442. image: {
  30443. source: "./media/characters/guti/tongue.svg"
  30444. }
  30445. },
  30446. paw: {
  30447. height: math.unit(1.18, "feet"),
  30448. name: "Paw",
  30449. image: {
  30450. source: "./media/characters/guti/paw.svg"
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Normal",
  30457. height: math.unit(9, "feet"),
  30458. default: true
  30459. },
  30460. ]
  30461. ))
  30462. characterMakers.push(() => makeCharacter(
  30463. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30464. {
  30465. side: {
  30466. height: math.unit(5, "meters"),
  30467. name: "Side",
  30468. image: {
  30469. source: "./media/characters/vesper/side.svg",
  30470. extra: 1605/1518,
  30471. bottom: 0/1605
  30472. }
  30473. },
  30474. },
  30475. [
  30476. {
  30477. name: "Small",
  30478. height: math.unit(5, "meters")
  30479. },
  30480. {
  30481. name: "Sage",
  30482. height: math.unit(100, "meters"),
  30483. default: true
  30484. },
  30485. {
  30486. name: "Fun Size",
  30487. height: math.unit(600, "meters")
  30488. },
  30489. {
  30490. name: "Goddess",
  30491. height: math.unit(20000, "km")
  30492. },
  30493. {
  30494. name: "Maximum",
  30495. height: math.unit(5, "galaxies")
  30496. },
  30497. ]
  30498. ))
  30499. characterMakers.push(() => makeCharacter(
  30500. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30501. {
  30502. front: {
  30503. height: math.unit(6 + 3/12, "feet"),
  30504. weight: math.unit(190, "lb"),
  30505. name: "Front",
  30506. image: {
  30507. source: "./media/characters/gawain/front.svg",
  30508. extra: 2222/2139,
  30509. bottom: 90/2312
  30510. }
  30511. },
  30512. back: {
  30513. height: math.unit(6 + 3/12, "feet"),
  30514. weight: math.unit(190, "lb"),
  30515. name: "Back",
  30516. image: {
  30517. source: "./media/characters/gawain/back.svg",
  30518. extra: 2199/2111,
  30519. bottom: 73/2272
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Normal",
  30526. height: math.unit(6 + 3/12, "feet"),
  30527. default: true
  30528. },
  30529. ]
  30530. ))
  30531. characterMakers.push(() => makeCharacter(
  30532. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30533. {
  30534. side: {
  30535. height: math.unit(3.5, "meters"),
  30536. weight: math.unit(16000, "lb"),
  30537. name: "Side",
  30538. image: {
  30539. source: "./media/characters/dascalti/side.svg",
  30540. extra: 392/273,
  30541. bottom: 47/439
  30542. }
  30543. },
  30544. breath: {
  30545. height: math.unit(7.4, "feet"),
  30546. name: "Breath",
  30547. image: {
  30548. source: "./media/characters/dascalti/breath.svg"
  30549. }
  30550. },
  30551. fed: {
  30552. height: math.unit(3.6, "meters"),
  30553. weight: math.unit(16000, "lb"),
  30554. name: "Fed",
  30555. image: {
  30556. source: "./media/characters/dascalti/fed.svg",
  30557. extra: 1419/820,
  30558. bottom: 95/1514
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Normal",
  30565. height: math.unit(3.5, "meters"),
  30566. default: true
  30567. },
  30568. ]
  30569. ))
  30570. characterMakers.push(() => makeCharacter(
  30571. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30572. {
  30573. front: {
  30574. height: math.unit(3 + 5/12, "feet"),
  30575. name: "Front",
  30576. image: {
  30577. source: "./media/characters/mauve/front.svg",
  30578. extra: 1126/1033,
  30579. bottom: 65/1191
  30580. }
  30581. },
  30582. side: {
  30583. height: math.unit(3 + 5/12, "feet"),
  30584. name: "Side",
  30585. image: {
  30586. source: "./media/characters/mauve/side.svg",
  30587. extra: 1089/1001,
  30588. bottom: 29/1118
  30589. }
  30590. },
  30591. back: {
  30592. height: math.unit(3 + 5/12, "feet"),
  30593. name: "Back",
  30594. image: {
  30595. source: "./media/characters/mauve/back.svg",
  30596. extra: 1173/1053,
  30597. bottom: 109/1282
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(3 + 5/12, "feet"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(6 + 3/12, "feet"),
  30614. weight: math.unit(430, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/carlos/front.svg",
  30618. extra: 1964/1913,
  30619. bottom: 70/2034
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(6 + 3/12, "feet"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30633. {
  30634. back: {
  30635. height: math.unit(5 + 10/12, "feet"),
  30636. weight: math.unit(200, "lb"),
  30637. name: "Back",
  30638. image: {
  30639. source: "./media/characters/jax/back.svg",
  30640. extra: 764/739,
  30641. bottom: 25/789
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(5 + 10/12, "feet"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(8, "feet"),
  30658. weight: math.unit(250, "lb"),
  30659. name: "Front",
  30660. image: {
  30661. source: "./media/characters/eikthynir/front.svg",
  30662. extra: 1332/1166,
  30663. bottom: 82/1414
  30664. }
  30665. },
  30666. back: {
  30667. height: math.unit(8, "feet"),
  30668. weight: math.unit(250, "lb"),
  30669. name: "Back",
  30670. image: {
  30671. source: "./media/characters/eikthynir/back.svg",
  30672. extra: 1342/1190,
  30673. bottom: 19/1361
  30674. }
  30675. },
  30676. dick: {
  30677. height: math.unit(2.35, "feet"),
  30678. name: "Dick",
  30679. image: {
  30680. source: "./media/characters/eikthynir/dick.svg"
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Normal",
  30687. height: math.unit(8, "feet"),
  30688. default: true
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30694. {
  30695. front: {
  30696. height: math.unit(99, "meters"),
  30697. weight: math.unit(13000, "tons"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/zlmos/front.svg",
  30701. extra: 2202/1992,
  30702. bottom: 315/2517
  30703. }
  30704. },
  30705. },
  30706. [
  30707. {
  30708. name: "Macro",
  30709. height: math.unit(99, "meters"),
  30710. default: true
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(6 + 5/12, "feet"),
  30719. name: "Front",
  30720. image: {
  30721. source: "./media/characters/purri/front.svg",
  30722. extra: 1698/1610,
  30723. bottom: 32/1730
  30724. }
  30725. },
  30726. frontAlt: {
  30727. height: math.unit(6 + 5/12, "feet"),
  30728. name: "Front (Alt)",
  30729. image: {
  30730. source: "./media/characters/purri/front-alt.svg",
  30731. extra: 450/420,
  30732. bottom: 26/476
  30733. }
  30734. },
  30735. boots: {
  30736. height: math.unit(5.5, "feet"),
  30737. name: "Boots",
  30738. image: {
  30739. source: "./media/characters/purri/boots.svg",
  30740. extra: 905/853,
  30741. bottom: 18/923
  30742. }
  30743. },
  30744. lying: {
  30745. height: math.unit(2, "feet"),
  30746. name: "Lying",
  30747. image: {
  30748. source: "./media/characters/purri/lying.svg",
  30749. extra: 940/843,
  30750. bottom: 146/1086
  30751. }
  30752. },
  30753. devious: {
  30754. height: math.unit(1.77, "feet"),
  30755. name: "Devious",
  30756. image: {
  30757. source: "./media/characters/purri/devious.svg",
  30758. extra: 1440/1155,
  30759. bottom: 147/1587
  30760. }
  30761. },
  30762. bean: {
  30763. height: math.unit(1.94, "feet"),
  30764. name: "Bean",
  30765. image: {
  30766. source: "./media/characters/purri/bean.svg"
  30767. }
  30768. },
  30769. },
  30770. [
  30771. {
  30772. name: "Micro",
  30773. height: math.unit(1, "mm")
  30774. },
  30775. {
  30776. name: "Normal",
  30777. height: math.unit(6 + 5/12, "feet"),
  30778. default: true
  30779. },
  30780. {
  30781. name: "Macro :3c",
  30782. height: math.unit(2, "miles")
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(6 + 2/12, "feet"),
  30791. weight: math.unit(250, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/moonlight/front.svg",
  30795. extra: 1044/908,
  30796. bottom: 56/1100
  30797. }
  30798. },
  30799. paw: {
  30800. height: math.unit(1, "feet"),
  30801. name: "Paw",
  30802. image: {
  30803. source: "./media/characters/moonlight/paw.svg"
  30804. }
  30805. },
  30806. paws: {
  30807. height: math.unit(0.98, "feet"),
  30808. name: "Paws",
  30809. image: {
  30810. source: "./media/characters/moonlight/paws.svg",
  30811. extra: 939/939,
  30812. bottom: 50/989
  30813. }
  30814. },
  30815. mouth: {
  30816. height: math.unit(0.48, "feet"),
  30817. name: "Mouth",
  30818. image: {
  30819. source: "./media/characters/moonlight/mouth.svg"
  30820. }
  30821. },
  30822. dick: {
  30823. height: math.unit(1.46, "feet"),
  30824. name: "Dick",
  30825. image: {
  30826. source: "./media/characters/moonlight/dick.svg"
  30827. }
  30828. },
  30829. },
  30830. [
  30831. {
  30832. name: "Normal",
  30833. height: math.unit(6 + 2/12, "feet"),
  30834. default: true
  30835. },
  30836. {
  30837. name: "Macro",
  30838. height: math.unit(300, "feet")
  30839. },
  30840. {
  30841. name: "Macro+",
  30842. height: math.unit(1, "mile")
  30843. },
  30844. {
  30845. name: "Mt. Moon",
  30846. height: math.unit(5, "miles")
  30847. },
  30848. {
  30849. name: "Megamacro",
  30850. height: math.unit(15, "miles")
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30856. {
  30857. back: {
  30858. height: math.unit(6, "feet"),
  30859. weight: math.unit(150, "lb"),
  30860. name: "Back",
  30861. image: {
  30862. source: "./media/characters/sylen/back.svg",
  30863. extra: 1335/1273,
  30864. bottom: 107/1442
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Normal",
  30871. height: math.unit(5 + 5/12, "feet")
  30872. },
  30873. {
  30874. name: "Megamacro",
  30875. height: math.unit(3, "miles"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30882. {
  30883. front: {
  30884. height: math.unit(6, "feet"),
  30885. weight: math.unit(190, "lb"),
  30886. name: "Front",
  30887. image: {
  30888. source: "./media/characters/huttser/front.svg",
  30889. extra: 1152/1058,
  30890. bottom: 23/1175
  30891. }
  30892. },
  30893. side: {
  30894. height: math.unit(6, "feet"),
  30895. weight: math.unit(190, "lb"),
  30896. name: "Side",
  30897. image: {
  30898. source: "./media/characters/huttser/side.svg",
  30899. extra: 1174/1065,
  30900. bottom: 18/1192
  30901. }
  30902. },
  30903. back: {
  30904. height: math.unit(6, "feet"),
  30905. weight: math.unit(190, "lb"),
  30906. name: "Back",
  30907. image: {
  30908. source: "./media/characters/huttser/back.svg",
  30909. extra: 1158/1056,
  30910. bottom: 12/1170
  30911. }
  30912. },
  30913. },
  30914. [
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30919. {
  30920. side: {
  30921. height: math.unit(12 + 9/12, "feet"),
  30922. weight: math.unit(15000, "lb"),
  30923. name: "Side",
  30924. image: {
  30925. source: "./media/characters/faan/side.svg",
  30926. extra: 2747/2697,
  30927. bottom: 0/2747
  30928. }
  30929. },
  30930. front: {
  30931. height: math.unit(12 + 9/12, "feet"),
  30932. weight: math.unit(15000, "lb"),
  30933. name: "Front",
  30934. image: {
  30935. source: "./media/characters/faan/front.svg",
  30936. extra: 607/571,
  30937. bottom: 24/631
  30938. }
  30939. },
  30940. head: {
  30941. height: math.unit(2.85, "feet"),
  30942. name: "Head",
  30943. image: {
  30944. source: "./media/characters/faan/head.svg"
  30945. }
  30946. },
  30947. headAlt: {
  30948. height: math.unit(3.13, "feet"),
  30949. name: "Head-alt",
  30950. image: {
  30951. source: "./media/characters/faan/head-alt.svg"
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(12 + 9/12, "feet"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(6, "feet"),
  30968. weight: math.unit(300, "lb"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/tanio/front.svg",
  30972. extra: 711/673,
  30973. bottom: 25/736
  30974. }
  30975. },
  30976. },
  30977. [
  30978. {
  30979. name: "Normal",
  30980. height: math.unit(6, "feet"),
  30981. default: true
  30982. },
  30983. ]
  30984. ))
  30985. characterMakers.push(() => makeCharacter(
  30986. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30987. {
  30988. front: {
  30989. height: math.unit(3, "inches"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/noboru/front.svg",
  30993. extra: 1039/932,
  30994. bottom: 18/1057
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Micro",
  31001. height: math.unit(3, "inches"),
  31002. default: true
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31008. {
  31009. front: {
  31010. height: math.unit(1.85, "meters"),
  31011. weight: math.unit(80, "kg"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/daniel-barrett/front.svg",
  31015. extra: 355/337,
  31016. bottom: 9/364
  31017. }
  31018. },
  31019. },
  31020. [
  31021. {
  31022. name: "Pico",
  31023. height: math.unit(0.0433, "mm")
  31024. },
  31025. {
  31026. name: "Nano",
  31027. height: math.unit(1.5, "mm")
  31028. },
  31029. {
  31030. name: "Micro",
  31031. height: math.unit(5.3, "cm"),
  31032. default: true
  31033. },
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(1.85, "meters")
  31037. },
  31038. {
  31039. name: "Macro",
  31040. height: math.unit(64.7, "meters")
  31041. },
  31042. {
  31043. name: "Megamacro",
  31044. height: math.unit(2.26, "km")
  31045. },
  31046. {
  31047. name: "Gigamacro",
  31048. height: math.unit(79, "km")
  31049. },
  31050. {
  31051. name: "Teramacro",
  31052. height: math.unit(2765, "km")
  31053. },
  31054. {
  31055. name: "Petamacro",
  31056. height: math.unit(96678, "km")
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(30, "meters"),
  31065. weight: math.unit(400, "tons"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/zeel/front.svg",
  31069. extra: 2599/2599,
  31070. bottom: 226/2825
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Macro",
  31077. height: math.unit(30, "meters"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(6 + 7/12, "feet"),
  31087. weight: math.unit(210, "lb"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/tarn/front.svg",
  31091. extra: 3517/3220,
  31092. bottom: 91/3608
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(6 + 7/12, "feet"),
  31097. weight: math.unit(210, "lb"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/tarn/back.svg",
  31101. extra: 3566/3241,
  31102. bottom: 34/3600
  31103. }
  31104. },
  31105. dick: {
  31106. height: math.unit(1.65, "feet"),
  31107. name: "Dick",
  31108. image: {
  31109. source: "./media/characters/tarn/dick.svg"
  31110. }
  31111. },
  31112. paw: {
  31113. height: math.unit(1.80, "feet"),
  31114. name: "Paw",
  31115. image: {
  31116. source: "./media/characters/tarn/paw.svg"
  31117. }
  31118. },
  31119. tongue: {
  31120. height: math.unit(0.97, "feet"),
  31121. name: "Tongue",
  31122. image: {
  31123. source: "./media/characters/tarn/tongue.svg"
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Micro",
  31130. height: math.unit(4, "inches")
  31131. },
  31132. {
  31133. name: "Normal",
  31134. height: math.unit(6 + 7/12, "feet"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Macro",
  31139. height: math.unit(300, "feet")
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31145. {
  31146. front: {
  31147. height: math.unit(5 + 7/12, "feet"),
  31148. weight: math.unit(80, "kg"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31152. extra: 3023/2865,
  31153. bottom: 33/3056
  31154. }
  31155. },
  31156. back: {
  31157. height: math.unit(5 + 7/12, "feet"),
  31158. weight: math.unit(80, "kg"),
  31159. name: "Back",
  31160. image: {
  31161. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31162. extra: 3020/2886,
  31163. bottom: 30/3050
  31164. }
  31165. },
  31166. dick: {
  31167. height: math.unit(0.98, "feet"),
  31168. name: "Dick",
  31169. image: {
  31170. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31171. }
  31172. },
  31173. anatomy: {
  31174. height: math.unit(2.86, "feet"),
  31175. name: "Anatomy",
  31176. image: {
  31177. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31178. }
  31179. },
  31180. },
  31181. [
  31182. {
  31183. name: "Really Small",
  31184. height: math.unit(2, "inches")
  31185. },
  31186. {
  31187. name: "Micro",
  31188. height: math.unit(5.583, "inches")
  31189. },
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(5 + 7/12, "feet"),
  31193. default: true
  31194. },
  31195. {
  31196. name: "Macro",
  31197. height: math.unit(67, "feet")
  31198. },
  31199. {
  31200. name: "Megamacro",
  31201. height: math.unit(134, "feet")
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31207. {
  31208. front: {
  31209. height: math.unit(9, "feet"),
  31210. weight: math.unit(120, "lb"),
  31211. name: "Front",
  31212. image: {
  31213. source: "./media/characters/sally/front.svg",
  31214. extra: 1506/1349,
  31215. bottom: 66/1572
  31216. }
  31217. },
  31218. },
  31219. [
  31220. {
  31221. name: "Normal",
  31222. height: math.unit(9, "feet"),
  31223. default: true
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31229. {
  31230. front: {
  31231. height: math.unit(8, "feet"),
  31232. weight: math.unit(900, "lb"),
  31233. name: "Front",
  31234. image: {
  31235. source: "./media/characters/owen/front.svg",
  31236. extra: 1761/1657,
  31237. bottom: 74/1835
  31238. }
  31239. },
  31240. side: {
  31241. height: math.unit(8, "feet"),
  31242. weight: math.unit(900, "lb"),
  31243. name: "Side",
  31244. image: {
  31245. source: "./media/characters/owen/side.svg",
  31246. extra: 1797/1734,
  31247. bottom: 30/1827
  31248. }
  31249. },
  31250. back: {
  31251. height: math.unit(8, "feet"),
  31252. weight: math.unit(900, "lb"),
  31253. name: "Back",
  31254. image: {
  31255. source: "./media/characters/owen/back.svg",
  31256. extra: 1796/1706,
  31257. bottom: 59/1855
  31258. }
  31259. },
  31260. maw: {
  31261. height: math.unit(1.76, "feet"),
  31262. name: "Maw",
  31263. image: {
  31264. source: "./media/characters/owen/maw.svg"
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(8, "feet"),
  31272. default: true
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31278. {
  31279. front: {
  31280. height: math.unit(4, "feet"),
  31281. weight: math.unit(400, "lb"),
  31282. name: "Front",
  31283. image: {
  31284. source: "./media/characters/ryth/front.svg",
  31285. extra: 876/691,
  31286. bottom: 25/901
  31287. }
  31288. },
  31289. },
  31290. [
  31291. {
  31292. name: "Normal",
  31293. height: math.unit(4, "feet"),
  31294. default: true
  31295. },
  31296. ]
  31297. ))
  31298. characterMakers.push(() => makeCharacter(
  31299. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31300. {
  31301. front: {
  31302. height: math.unit(7, "feet"),
  31303. weight: math.unit(180, "lb"),
  31304. name: "Front",
  31305. image: {
  31306. source: "./media/characters/necrolance/front.svg",
  31307. extra: 1062/947,
  31308. bottom: 41/1103
  31309. }
  31310. },
  31311. back: {
  31312. height: math.unit(7, "feet"),
  31313. weight: math.unit(180, "lb"),
  31314. name: "Back",
  31315. image: {
  31316. source: "./media/characters/necrolance/back.svg",
  31317. extra: 1045/984,
  31318. bottom: 14/1059
  31319. }
  31320. },
  31321. wing: {
  31322. height: math.unit(2.67, "feet"),
  31323. name: "Wing",
  31324. image: {
  31325. source: "./media/characters/necrolance/wing.svg"
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(7, "feet"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31339. {
  31340. front: {
  31341. height: math.unit(76, "meters"),
  31342. weight: math.unit(30000, "tons"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/tyler/front.svg",
  31346. extra: 1640/1640,
  31347. bottom: 114/1754
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Macro",
  31354. height: math.unit(76, "meters"),
  31355. default: true
  31356. },
  31357. ]
  31358. ))
  31359. characterMakers.push(() => makeCharacter(
  31360. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31361. {
  31362. front: {
  31363. height: math.unit(4 + 11/12, "feet"),
  31364. weight: math.unit(132, "lb"),
  31365. name: "Front",
  31366. image: {
  31367. source: "./media/characters/icey/front.svg",
  31368. extra: 2750/2550,
  31369. bottom: 33/2783
  31370. }
  31371. },
  31372. back: {
  31373. height: math.unit(4 + 11/12, "feet"),
  31374. weight: math.unit(132, "lb"),
  31375. name: "Back",
  31376. image: {
  31377. source: "./media/characters/icey/back.svg",
  31378. extra: 2624/2481,
  31379. bottom: 35/2659
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Normal",
  31386. height: math.unit(4 + 11/12, "feet"),
  31387. default: true
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(100, "feet"),
  31396. weight: math.unit(0, "lb"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/smile/front.svg",
  31400. extra: 2983/2912,
  31401. bottom: 162/3145
  31402. }
  31403. },
  31404. back: {
  31405. height: math.unit(100, "feet"),
  31406. weight: math.unit(0, "lb"),
  31407. name: "Back",
  31408. image: {
  31409. source: "./media/characters/smile/back.svg",
  31410. extra: 3143/3031,
  31411. bottom: 91/3234
  31412. }
  31413. },
  31414. head: {
  31415. height: math.unit(26.3, "feet"),
  31416. weight: math.unit(0, "lb"),
  31417. name: "Head",
  31418. image: {
  31419. source: "./media/characters/smile/head.svg"
  31420. }
  31421. },
  31422. collar: {
  31423. height: math.unit(5.3, "feet"),
  31424. weight: math.unit(0, "lb"),
  31425. name: "Collar",
  31426. image: {
  31427. source: "./media/characters/smile/collar.svg"
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Macro",
  31434. height: math.unit(100, "feet"),
  31435. default: true
  31436. },
  31437. ]
  31438. ))
  31439. characterMakers.push(() => makeCharacter(
  31440. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31441. {
  31442. dragon: {
  31443. height: math.unit(26, "feet"),
  31444. weight: math.unit(36, "tons"),
  31445. name: "Dragon",
  31446. image: {
  31447. source: "./media/characters/arimphae/dragon.svg",
  31448. extra: 1574/983,
  31449. bottom: 357/1931
  31450. }
  31451. },
  31452. drake: {
  31453. height: math.unit(9, "feet"),
  31454. weight: math.unit(1.5, "tons"),
  31455. name: "Drake",
  31456. image: {
  31457. source: "./media/characters/arimphae/drake.svg",
  31458. extra: 1120/925,
  31459. bottom: 435/1555
  31460. }
  31461. },
  31462. },
  31463. [
  31464. {
  31465. name: "Small",
  31466. height: math.unit(26*5/9, "feet")
  31467. },
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(26, "feet"),
  31471. default: true
  31472. },
  31473. ]
  31474. ))
  31475. characterMakers.push(() => makeCharacter(
  31476. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31477. {
  31478. front: {
  31479. height: math.unit(8 + 9/12, "feet"),
  31480. name: "Front",
  31481. image: {
  31482. source: "./media/characters/xander/front.svg",
  31483. extra: 848/673,
  31484. bottom: 62/910
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(8 + 9/12, "feet"),
  31492. default: true
  31493. },
  31494. {
  31495. name: "Gaze Grabber",
  31496. height: math.unit(13 + 8/12, "feet")
  31497. },
  31498. {
  31499. name: "Jaw Dropper",
  31500. height: math.unit(27, "feet")
  31501. },
  31502. {
  31503. name: "Show Stopper",
  31504. height: math.unit(136, "feet")
  31505. },
  31506. {
  31507. name: "Superstar",
  31508. height: math.unit(1.9e6, "miles")
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31514. {
  31515. side: {
  31516. height: math.unit(2100, "feet"),
  31517. name: "Side",
  31518. image: {
  31519. source: "./media/characters/osiris/side.svg",
  31520. extra: 1105/939,
  31521. bottom: 167/1272
  31522. }
  31523. },
  31524. },
  31525. [
  31526. {
  31527. name: "Macro",
  31528. height: math.unit(2100, "feet"),
  31529. default: true
  31530. },
  31531. ]
  31532. ))
  31533. characterMakers.push(() => makeCharacter(
  31534. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31535. {
  31536. front: {
  31537. height: math.unit(6 + 8/12, "feet"),
  31538. weight: math.unit(225, "lb"),
  31539. name: "Front",
  31540. image: {
  31541. source: "./media/characters/rhys-londe/front.svg",
  31542. extra: 2258/2141,
  31543. bottom: 188/2446
  31544. }
  31545. },
  31546. back: {
  31547. height: math.unit(6 + 8/12, "feet"),
  31548. weight: math.unit(225, "lb"),
  31549. name: "Back",
  31550. image: {
  31551. source: "./media/characters/rhys-londe/back.svg",
  31552. extra: 2237/2137,
  31553. bottom: 63/2300
  31554. }
  31555. },
  31556. frontNsfw: {
  31557. height: math.unit(6 + 8/12, "feet"),
  31558. weight: math.unit(225, "lb"),
  31559. name: "Front (NSFW)",
  31560. image: {
  31561. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31562. extra: 2258/2141,
  31563. bottom: 188/2446
  31564. }
  31565. },
  31566. backNsfw: {
  31567. height: math.unit(6 + 8/12, "feet"),
  31568. weight: math.unit(225, "lb"),
  31569. name: "Back (NSFW)",
  31570. image: {
  31571. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31572. extra: 2237/2137,
  31573. bottom: 63/2300
  31574. }
  31575. },
  31576. dick: {
  31577. height: math.unit(30, "inches"),
  31578. name: "Dick",
  31579. image: {
  31580. source: "./media/characters/rhys-londe/dick.svg"
  31581. }
  31582. },
  31583. maw: {
  31584. height: math.unit(1.6, "feet"),
  31585. name: "Maw",
  31586. image: {
  31587. source: "./media/characters/rhys-londe/maw.svg"
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Normal",
  31594. height: math.unit(6 + 8/12, "feet"),
  31595. default: true
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(3 + 10/12, "feet"),
  31604. weight: math.unit(90, "lb"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/taivas-ensim/front.svg",
  31608. extra: 1327/1216,
  31609. bottom: 96/1423
  31610. }
  31611. },
  31612. back: {
  31613. height: math.unit(3 + 10/12, "feet"),
  31614. weight: math.unit(90, "lb"),
  31615. name: "Back",
  31616. image: {
  31617. source: "./media/characters/taivas-ensim/back.svg",
  31618. extra: 1355/1247,
  31619. bottom: 11/1366
  31620. }
  31621. },
  31622. frontNsfw: {
  31623. height: math.unit(3 + 10/12, "feet"),
  31624. weight: math.unit(90, "lb"),
  31625. name: "Front (NSFW)",
  31626. image: {
  31627. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31628. extra: 1327/1216,
  31629. bottom: 96/1423
  31630. }
  31631. },
  31632. backNsfw: {
  31633. height: math.unit(3 + 10/12, "feet"),
  31634. weight: math.unit(90, "lb"),
  31635. name: "Back (NSFW)",
  31636. image: {
  31637. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31638. extra: 1355/1247,
  31639. bottom: 11/1366
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(3 + 10/12, "feet"),
  31647. default: true
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(9 + 6/12, "feet"),
  31656. weight: math.unit(940, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/byliss/front.svg",
  31660. extra: 1327/1290,
  31661. bottom: 82/1409
  31662. }
  31663. },
  31664. back: {
  31665. height: math.unit(9 + 6/12, "feet"),
  31666. weight: math.unit(940, "lb"),
  31667. name: "Back",
  31668. image: {
  31669. source: "./media/characters/byliss/back.svg",
  31670. extra: 1376/1349,
  31671. bottom: 9/1385
  31672. }
  31673. },
  31674. frontNsfw: {
  31675. height: math.unit(9 + 6/12, "feet"),
  31676. weight: math.unit(940, "lb"),
  31677. name: "Front (NSFW)",
  31678. image: {
  31679. source: "./media/characters/byliss/front-nsfw.svg",
  31680. extra: 1327/1290,
  31681. bottom: 82/1409
  31682. }
  31683. },
  31684. backNsfw: {
  31685. height: math.unit(9 + 6/12, "feet"),
  31686. weight: math.unit(940, "lb"),
  31687. name: "Back (NSFW)",
  31688. image: {
  31689. source: "./media/characters/byliss/back-nsfw.svg",
  31690. extra: 1376/1349,
  31691. bottom: 9/1385
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(9 + 6/12, "feet"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31705. {
  31706. full: {
  31707. height: math.unit(5 + 2/12, "feet"),
  31708. weight: math.unit(164, "lb"),
  31709. name: "Full",
  31710. image: {
  31711. source: "./media/characters/noraly/full.svg",
  31712. extra: 1114/1059,
  31713. bottom: 35/1149
  31714. }
  31715. },
  31716. fuller: {
  31717. height: math.unit(5 + 2/12, "feet"),
  31718. weight: math.unit(230, "lb"),
  31719. name: "Fuller",
  31720. image: {
  31721. source: "./media/characters/noraly/fuller.svg",
  31722. extra: 1114/1059,
  31723. bottom: 35/1149
  31724. }
  31725. },
  31726. fullest: {
  31727. height: math.unit(5 + 2/12, "feet"),
  31728. weight: math.unit(300, "lb"),
  31729. name: "Fullest",
  31730. image: {
  31731. source: "./media/characters/noraly/fullest.svg",
  31732. extra: 1114/1059,
  31733. bottom: 35/1149
  31734. }
  31735. },
  31736. },
  31737. [
  31738. {
  31739. name: "Normal",
  31740. height: math.unit(5 + 2/12, "feet"),
  31741. default: true
  31742. },
  31743. ]
  31744. ))
  31745. characterMakers.push(() => makeCharacter(
  31746. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31747. {
  31748. front: {
  31749. height: math.unit(5 + 2/12, "feet"),
  31750. weight: math.unit(210, "lb"),
  31751. name: "Front",
  31752. image: {
  31753. source: "./media/characters/pera/front.svg",
  31754. extra: 1560/1531,
  31755. bottom: 165/1725
  31756. }
  31757. },
  31758. back: {
  31759. height: math.unit(5 + 2/12, "feet"),
  31760. weight: math.unit(210, "lb"),
  31761. name: "Back",
  31762. image: {
  31763. source: "./media/characters/pera/back.svg",
  31764. extra: 1523/1493,
  31765. bottom: 152/1675
  31766. }
  31767. },
  31768. dick: {
  31769. height: math.unit(2.4, "feet"),
  31770. name: "Dick",
  31771. image: {
  31772. source: "./media/characters/pera/dick.svg"
  31773. }
  31774. },
  31775. },
  31776. [
  31777. {
  31778. name: "Normal",
  31779. height: math.unit(5 + 2/12, "feet"),
  31780. default: true
  31781. },
  31782. ]
  31783. ))
  31784. characterMakers.push(() => makeCharacter(
  31785. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31786. {
  31787. front: {
  31788. height: math.unit(12, "feet"),
  31789. weight: math.unit(3200, "lb"),
  31790. name: "Front",
  31791. image: {
  31792. source: "./media/characters/julian/front.svg",
  31793. extra: 2962/2701,
  31794. bottom: 184/3146
  31795. }
  31796. },
  31797. maw: {
  31798. height: math.unit(5.35, "feet"),
  31799. name: "Maw",
  31800. image: {
  31801. source: "./media/characters/julian/maw.svg"
  31802. }
  31803. },
  31804. paw: {
  31805. height: math.unit(3.07, "feet"),
  31806. name: "Paw",
  31807. image: {
  31808. source: "./media/characters/julian/paw.svg"
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Default",
  31815. height: math.unit(12, "feet"),
  31816. default: true
  31817. },
  31818. {
  31819. name: "Big",
  31820. height: math.unit(50, "feet")
  31821. },
  31822. {
  31823. name: "Really Big",
  31824. height: math.unit(1, "mile")
  31825. },
  31826. {
  31827. name: "Extremely Big",
  31828. height: math.unit(100, "miles")
  31829. },
  31830. {
  31831. name: "Planet Hugger",
  31832. height: math.unit(200, "megameters")
  31833. },
  31834. {
  31835. name: "Unreasonably Big",
  31836. height: math.unit(1e300, "meters")
  31837. },
  31838. ]
  31839. ))
  31840. characterMakers.push(() => makeCharacter(
  31841. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31842. {
  31843. solgooleo: {
  31844. height: math.unit(4, "meters"),
  31845. weight: math.unit(6000*1.5, "kg"),
  31846. volume: math.unit(6000, "liters"),
  31847. name: "Solgooleo",
  31848. image: {
  31849. source: "./media/characters/pi/solgooleo.svg",
  31850. extra: 388/331,
  31851. bottom: 29/417
  31852. }
  31853. },
  31854. },
  31855. [
  31856. {
  31857. name: "Normal",
  31858. height: math.unit(4, "meters"),
  31859. default: true
  31860. },
  31861. ]
  31862. ))
  31863. characterMakers.push(() => makeCharacter(
  31864. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31865. {
  31866. front: {
  31867. height: math.unit(8 + 2/12, "feet"),
  31868. weight: math.unit(4, "tons"),
  31869. name: "Front",
  31870. image: {
  31871. source: "./media/characters/shaun/front.svg",
  31872. extra: 1550/1505,
  31873. bottom: 353/1903
  31874. }
  31875. },
  31876. },
  31877. [
  31878. {
  31879. name: "Lorg",
  31880. height: math.unit(8 + 2/12, "feet"),
  31881. default: true
  31882. },
  31883. ]
  31884. ))
  31885. characterMakers.push(() => makeCharacter(
  31886. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31887. {
  31888. front: {
  31889. height: math.unit(7, "feet"),
  31890. name: "Front",
  31891. image: {
  31892. source: "./media/characters/sini/front.svg",
  31893. extra: 726/678,
  31894. bottom: 35/761
  31895. }
  31896. },
  31897. back: {
  31898. height: math.unit(7, "feet"),
  31899. name: "Back",
  31900. image: {
  31901. source: "./media/characters/sini/back.svg",
  31902. extra: 743/701,
  31903. bottom: 12/755
  31904. }
  31905. },
  31906. mawAnthro: {
  31907. height: math.unit(2.14, "feet"),
  31908. name: "Maw (Anthro)",
  31909. image: {
  31910. source: "./media/characters/sini/maw-anthro.svg"
  31911. }
  31912. },
  31913. dick: {
  31914. height: math.unit(1.45, "feet"),
  31915. name: "Dick (Anthro)",
  31916. image: {
  31917. source: "./media/characters/sini/dick-anthro.svg"
  31918. }
  31919. },
  31920. feral: {
  31921. height: math.unit(13, "feet"),
  31922. name: "Feral",
  31923. image: {
  31924. source: "./media/characters/sini/feral.svg",
  31925. extra: 814/605,
  31926. bottom: 11/825
  31927. }
  31928. },
  31929. mawFeral: {
  31930. height: math.unit(4.6, "feet"),
  31931. name: "Maw-feral",
  31932. image: {
  31933. source: "./media/characters/sini/maw-feral.svg"
  31934. }
  31935. },
  31936. footFeral: {
  31937. height: math.unit(4.2, "feet"),
  31938. name: "Foot-feral",
  31939. image: {
  31940. source: "./media/characters/sini/foot-feral.svg"
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(7, "feet"),
  31948. default: true
  31949. },
  31950. ]
  31951. ))
  31952. //characters
  31953. function makeCharacters() {
  31954. const results = [];
  31955. characterMakers.forEach(character => {
  31956. results.push(character());
  31957. });
  31958. return results;
  31959. }